user.pb.go 613 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060150611506215063150641506515066150671506815069150701507115072150731507415075150761507715078150791508015081150821508315084150851508615087150881508915090150911509215093150941509515096150971509815099151001510115102151031510415105151061510715108151091511015111151121511315114151151511615117151181511915120151211512215123151241512515126151271512815129151301513115132151331513415135151361513715138151391514015141151421514315144151451514615147151481514915150151511515215153151541515515156151571515815159151601516115162151631516415165151661516715168151691517015171151721517315174151751517615177151781517915180151811518215183151841518515186151871518815189151901519115192151931519415195151961519715198151991520015201152021520315204152051520615207152081520915210152111521215213152141521515216152171521815219152201522115222152231522415225152261522715228152291523015231152321523315234152351523615237152381523915240152411524215243152441524515246152471524815249152501525115252152531525415255152561525715258152591526015261152621526315264152651526615267152681526915270152711527215273152741527515276152771527815279152801528115282152831528415285152861528715288152891529015291152921529315294152951529615297152981529915300153011530215303153041530515306153071530815309153101531115312153131531415315153161531715318153191532015321153221532315324153251532615327153281532915330153311533215333153341533515336153371533815339153401534115342153431534415345153461534715348153491535015351153521535315354153551535615357153581535915360153611536215363153641536515366153671536815369153701537115372153731537415375153761537715378153791538015381153821538315384153851538615387153881538915390153911539215393153941539515396153971539815399154001540115402154031540415405154061540715408154091541015411154121541315414154151541615417154181541915420154211542215423154241542515426154271542815429154301543115432154331543415435154361543715438154391544015441154421544315444154451544615447154481544915450154511545215453154541545515456154571545815459154601546115462154631546415465154661546715468154691547015471154721547315474154751547615477154781547915480154811548215483154841548515486154871548815489154901549115492154931549415495154961549715498154991550015501155021550315504155051550615507155081550915510155111551215513155141551515516155171551815519155201552115522155231552415525155261552715528155291553015531155321553315534155351553615537155381553915540155411554215543155441554515546155471554815549155501555115552155531555415555155561555715558155591556015561155621556315564155651556615567155681556915570155711557215573155741557515576155771557815579155801558115582155831558415585155861558715588155891559015591155921559315594155951559615597155981559915600156011560215603156041560515606156071560815609156101561115612156131561415615156161561715618156191562015621156221562315624156251562615627156281562915630156311563215633156341563515636156371563815639156401564115642156431564415645156461564715648156491565015651156521565315654156551565615657156581565915660156611566215663156641566515666156671566815669156701567115672156731567415675156761567715678156791568015681156821568315684156851568615687156881568915690156911569215693156941569515696156971569815699157001570115702157031570415705157061570715708157091571015711157121571315714157151571615717157181571915720157211572215723157241572515726157271572815729157301573115732157331573415735157361573715738157391574015741157421574315744157451574615747157481574915750157511575215753157541575515756157571575815759157601576115762157631576415765157661576715768157691577015771157721577315774157751577615777157781577915780157811578215783157841578515786157871578815789157901579115792157931579415795157961579715798157991580015801158021580315804158051580615807158081580915810158111581215813158141581515816158171581815819158201582115822158231582415825158261582715828158291583015831158321583315834158351583615837158381583915840158411584215843158441584515846158471584815849158501585115852158531585415855158561585715858158591586015861158621586315864158651586615867158681586915870158711587215873158741587515876158771587815879158801588115882158831588415885158861588715888158891589015891158921589315894158951589615897158981589915900159011590215903159041590515906159071590815909159101591115912159131591415915159161591715918159191592015921159221592315924159251592615927159281592915930159311593215933159341593515936159371593815939159401594115942159431594415945159461594715948159491595015951159521595315954159551595615957159581595915960159611596215963159641596515966159671596815969159701597115972159731597415975159761597715978159791598015981159821598315984159851598615987159881598915990159911599215993159941599515996159971599815999160001600116002160031600416005160061600716008160091601016011160121601316014160151601616017160181601916020160211602216023160241602516026160271602816029160301603116032160331603416035160361603716038160391604016041160421604316044160451604616047160481604916050160511605216053160541605516056160571605816059160601606116062160631606416065160661606716068160691607016071160721607316074160751607616077160781607916080160811608216083160841608516086160871608816089160901609116092160931609416095160961609716098160991610016101161021610316104161051610616107161081610916110161111611216113161141611516116161171611816119161201612116122161231612416125161261612716128161291613016131161321613316134161351613616137161381613916140161411614216143161441614516146161471614816149161501615116152161531615416155161561615716158161591616016161161621616316164161651616616167161681616916170161711617216173161741617516176161771617816179161801618116182161831618416185161861618716188161891619016191161921619316194161951619616197161981619916200162011620216203162041620516206162071620816209162101621116212162131621416215162161621716218162191622016221162221622316224162251622616227162281622916230162311623216233162341623516236162371623816239162401624116242162431624416245162461624716248162491625016251162521625316254162551625616257162581625916260162611626216263162641626516266162671626816269162701627116272162731627416275162761627716278162791628016281162821628316284162851628616287162881628916290162911629216293162941629516296162971629816299163001630116302163031630416305163061630716308163091631016311163121631316314163151631616317163181631916320163211632216323163241632516326163271632816329163301633116332163331633416335163361633716338163391634016341163421634316344163451634616347163481634916350163511635216353163541635516356163571635816359163601636116362163631636416365163661636716368163691637016371163721637316374163751637616377163781637916380163811638216383163841638516386163871638816389163901639116392163931639416395163961639716398163991640016401164021640316404164051640616407164081640916410164111641216413164141641516416164171641816419164201642116422164231642416425164261642716428164291643016431164321643316434164351643616437164381643916440164411644216443164441644516446164471644816449164501645116452164531645416455164561645716458164591646016461164621646316464164651646616467164681646916470164711647216473164741647516476164771647816479164801648116482164831648416485164861648716488164891649016491164921649316494164951649616497164981649916500165011650216503165041650516506165071650816509165101651116512165131651416515165161651716518165191652016521165221652316524165251652616527165281652916530165311653216533165341653516536165371653816539165401654116542165431654416545165461654716548165491655016551165521655316554165551655616557165581655916560165611656216563165641656516566165671656816569165701657116572165731657416575165761657716578165791658016581165821658316584165851658616587165881658916590165911659216593165941659516596165971659816599166001660116602166031660416605166061660716608166091661016611166121661316614166151661616617166181661916620166211662216623166241662516626166271662816629166301663116632166331663416635166361663716638166391664016641166421664316644166451664616647166481664916650166511665216653166541665516656166571665816659166601666116662166631666416665166661666716668166691667016671166721667316674166751667616677166781667916680166811668216683166841668516686166871668816689166901669116692166931669416695166961669716698166991670016701167021670316704167051670616707167081670916710167111671216713167141671516716167171671816719167201672116722167231672416725167261672716728167291673016731167321673316734167351673616737167381673916740167411674216743167441674516746167471674816749167501675116752167531675416755167561675716758167591676016761167621676316764167651676616767167681676916770167711677216773167741677516776167771677816779167801678116782167831678416785167861678716788167891679016791167921679316794167951679616797167981679916800168011680216803168041680516806168071680816809168101681116812168131681416815168161681716818168191682016821168221682316824168251682616827168281682916830168311683216833168341683516836168371683816839168401684116842168431684416845168461684716848168491685016851168521685316854168551685616857168581685916860168611686216863168641686516866168671686816869168701687116872168731687416875168761687716878168791688016881168821688316884168851688616887168881688916890168911689216893168941689516896168971689816899169001690116902169031690416905169061690716908169091691016911169121691316914169151691616917169181691916920169211692216923169241692516926169271692816929169301693116932169331693416935169361693716938169391694016941169421694316944169451694616947169481694916950169511695216953169541695516956169571695816959169601696116962169631696416965169661696716968169691697016971169721697316974169751697616977169781697916980169811698216983169841698516986169871698816989169901699116992169931699416995169961699716998169991700017001170021700317004170051700617007170081700917010170111701217013170141701517016170171701817019170201702117022170231702417025170261702717028170291703017031170321703317034170351703617037170381703917040170411704217043170441704517046170471704817049170501705117052170531705417055170561705717058170591706017061170621706317064170651706617067170681706917070170711707217073170741707517076170771707817079170801708117082170831708417085170861708717088170891709017091170921709317094170951709617097170981709917100171011710217103171041710517106171071710817109171101711117112171131711417115171161711717118171191712017121171221712317124171251712617127171281712917130171311713217133171341713517136171371713817139171401714117142171431714417145171461714717148171491715017151171521715317154171551715617157171581715917160171611716217163171641716517166171671716817169171701717117172171731717417175171761717717178171791718017181171821718317184171851718617187171881718917190171911719217193171941719517196171971719817199172001720117202172031720417205172061720717208172091721017211172121721317214172151721617217172181721917220172211722217223172241722517226172271722817229172301723117232172331723417235172361723717238172391724017241172421724317244172451724617247172481724917250172511725217253172541725517256172571725817259172601726117262172631726417265172661726717268172691727017271172721727317274172751727617277172781727917280172811728217283172841728517286172871728817289172901729117292172931729417295172961729717298172991730017301173021730317304173051730617307173081730917310173111731217313173141731517316173171731817319173201732117322173231732417325173261732717328173291733017331173321733317334173351733617337173381733917340173411734217343173441734517346173471734817349173501735117352173531735417355173561735717358173591736017361173621736317364173651736617367173681736917370173711737217373173741737517376173771737817379173801738117382173831738417385173861738717388173891739017391173921739317394173951739617397173981739917400174011740217403174041740517406174071740817409174101741117412174131741417415174161741717418174191742017421174221742317424174251742617427174281742917430174311743217433174341743517436174371743817439174401744117442174431744417445174461744717448174491745017451174521745317454174551745617457174581745917460174611746217463174641746517466174671746817469174701747117472174731747417475174761747717478174791748017481174821748317484174851748617487174881748917490174911749217493174941749517496174971749817499175001750117502175031750417505175061750717508175091751017511175121751317514175151751617517175181751917520175211752217523175241752517526175271752817529175301753117532175331753417535175361753717538175391754017541175421754317544175451754617547175481754917550175511755217553175541755517556175571755817559175601756117562175631756417565175661756717568175691757017571175721757317574175751757617577175781757917580175811758217583175841758517586175871758817589175901759117592175931759417595175961759717598175991760017601176021760317604176051760617607176081760917610176111761217613176141761517616176171761817619176201762117622176231762417625176261762717628176291763017631176321763317634176351763617637176381763917640176411764217643176441764517646176471764817649176501765117652176531765417655176561765717658176591766017661176621766317664176651766617667176681766917670176711767217673176741767517676176771767817679176801768117682176831768417685176861768717688176891769017691176921769317694176951769617697176981769917700177011770217703177041770517706177071770817709177101771117712177131771417715177161771717718177191772017721177221772317724177251772617727177281772917730177311773217733177341773517736177371773817739177401774117742177431774417745177461774717748177491775017751177521775317754177551775617757177581775917760177611776217763177641776517766177671776817769177701777117772177731777417775177761777717778177791778017781177821778317784177851778617787177881778917790177911779217793177941779517796177971779817799178001780117802178031780417805178061780717808178091781017811178121781317814178151781617817
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: user.proto
  3. package serverproto
  4. import (
  5. fmt "fmt"
  6. proto "github.com/golang/protobuf/proto"
  7. math "math"
  8. )
  9. // Reference imports to suppress errors if they are not otherwise used.
  10. var _ = proto.Marshal
  11. var _ = fmt.Errorf
  12. var _ = math.Inf
  13. // This is a compile-time assertion to ensure that this generated file
  14. // is compatible with the proto package it is being compiled against.
  15. // A compilation error at this line likely means your copy of the
  16. // proto package needs to be updated.
  17. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  18. type AccountRole struct {
  19. OpenId string `protobuf:"bytes,1,opt,name=open_id,json=openId,proto3" json:"open_id,omitempty"`
  20. Platform string `protobuf:"bytes,2,opt,name=platform,proto3" json:"platform,omitempty"`
  21. Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
  22. PhonePlatform int32 `protobuf:"varint,4,opt,name=phone_platform,json=phonePlatform,proto3" json:"phone_platform,omitempty"`
  23. RegisterTime uint64 `protobuf:"varint,5,opt,name=register_time,json=registerTime,proto3" json:"register_time,omitempty"`
  24. ZoneId int32 `protobuf:"varint,6,opt,name=ZoneId,proto3" json:"ZoneId,omitempty"`
  25. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  26. XXX_unrecognized []byte `json:"-"`
  27. XXX_sizecache int32 `json:"-"`
  28. }
  29. func (m *AccountRole) Reset() { *m = AccountRole{} }
  30. func (m *AccountRole) String() string { return proto.CompactTextString(m) }
  31. func (*AccountRole) ProtoMessage() {}
  32. func (*AccountRole) Descriptor() ([]byte, []int) {
  33. return fileDescriptor_116e343673f7ffaf, []int{0}
  34. }
  35. func (m *AccountRole) XXX_Unmarshal(b []byte) error {
  36. return xxx_messageInfo_AccountRole.Unmarshal(m, b)
  37. }
  38. func (m *AccountRole) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  39. return xxx_messageInfo_AccountRole.Marshal(b, m, deterministic)
  40. }
  41. func (m *AccountRole) XXX_Merge(src proto.Message) {
  42. xxx_messageInfo_AccountRole.Merge(m, src)
  43. }
  44. func (m *AccountRole) XXX_Size() int {
  45. return xxx_messageInfo_AccountRole.Size(m)
  46. }
  47. func (m *AccountRole) XXX_DiscardUnknown() {
  48. xxx_messageInfo_AccountRole.DiscardUnknown(m)
  49. }
  50. var xxx_messageInfo_AccountRole proto.InternalMessageInfo
  51. func (m *AccountRole) GetOpenId() string {
  52. if m != nil {
  53. return m.OpenId
  54. }
  55. return ""
  56. }
  57. func (m *AccountRole) GetPlatform() string {
  58. if m != nil {
  59. return m.Platform
  60. }
  61. return ""
  62. }
  63. func (m *AccountRole) GetUid() uint64 {
  64. if m != nil {
  65. return m.Uid
  66. }
  67. return 0
  68. }
  69. func (m *AccountRole) GetPhonePlatform() int32 {
  70. if m != nil {
  71. return m.PhonePlatform
  72. }
  73. return 0
  74. }
  75. func (m *AccountRole) GetRegisterTime() uint64 {
  76. if m != nil {
  77. return m.RegisterTime
  78. }
  79. return 0
  80. }
  81. func (m *AccountRole) GetZoneId() int32 {
  82. if m != nil {
  83. return m.ZoneId
  84. }
  85. return 0
  86. }
  87. // 后续需要做战场时,的重连信息(战场所在的服务器信息)
  88. type ReconnectInfo struct {
  89. PvpNode string `protobuf:"bytes,1,opt,name=pvp_node,json=pvpNode,proto3" json:"pvp_node,omitempty"`
  90. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  91. XXX_unrecognized []byte `json:"-"`
  92. XXX_sizecache int32 `json:"-"`
  93. }
  94. func (m *ReconnectInfo) Reset() { *m = ReconnectInfo{} }
  95. func (m *ReconnectInfo) String() string { return proto.CompactTextString(m) }
  96. func (*ReconnectInfo) ProtoMessage() {}
  97. func (*ReconnectInfo) Descriptor() ([]byte, []int) {
  98. return fileDescriptor_116e343673f7ffaf, []int{1}
  99. }
  100. func (m *ReconnectInfo) XXX_Unmarshal(b []byte) error {
  101. return xxx_messageInfo_ReconnectInfo.Unmarshal(m, b)
  102. }
  103. func (m *ReconnectInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  104. return xxx_messageInfo_ReconnectInfo.Marshal(b, m, deterministic)
  105. }
  106. func (m *ReconnectInfo) XXX_Merge(src proto.Message) {
  107. xxx_messageInfo_ReconnectInfo.Merge(m, src)
  108. }
  109. func (m *ReconnectInfo) XXX_Size() int {
  110. return xxx_messageInfo_ReconnectInfo.Size(m)
  111. }
  112. func (m *ReconnectInfo) XXX_DiscardUnknown() {
  113. xxx_messageInfo_ReconnectInfo.DiscardUnknown(m)
  114. }
  115. var xxx_messageInfo_ReconnectInfo proto.InternalMessageInfo
  116. func (m *ReconnectInfo) GetPvpNode() string {
  117. if m != nil {
  118. return m.PvpNode
  119. }
  120. return ""
  121. }
  122. type UserConnectInfo struct {
  123. LogicNode string `protobuf:"bytes,1,opt,name=logic_node,json=logicNode,proto3" json:"logic_node,omitempty"`
  124. TimeStamp int64 `protobuf:"varint,2,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
  125. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  126. XXX_unrecognized []byte `json:"-"`
  127. XXX_sizecache int32 `json:"-"`
  128. }
  129. func (m *UserConnectInfo) Reset() { *m = UserConnectInfo{} }
  130. func (m *UserConnectInfo) String() string { return proto.CompactTextString(m) }
  131. func (*UserConnectInfo) ProtoMessage() {}
  132. func (*UserConnectInfo) Descriptor() ([]byte, []int) {
  133. return fileDescriptor_116e343673f7ffaf, []int{2}
  134. }
  135. func (m *UserConnectInfo) XXX_Unmarshal(b []byte) error {
  136. return xxx_messageInfo_UserConnectInfo.Unmarshal(m, b)
  137. }
  138. func (m *UserConnectInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  139. return xxx_messageInfo_UserConnectInfo.Marshal(b, m, deterministic)
  140. }
  141. func (m *UserConnectInfo) XXX_Merge(src proto.Message) {
  142. xxx_messageInfo_UserConnectInfo.Merge(m, src)
  143. }
  144. func (m *UserConnectInfo) XXX_Size() int {
  145. return xxx_messageInfo_UserConnectInfo.Size(m)
  146. }
  147. func (m *UserConnectInfo) XXX_DiscardUnknown() {
  148. xxx_messageInfo_UserConnectInfo.DiscardUnknown(m)
  149. }
  150. var xxx_messageInfo_UserConnectInfo proto.InternalMessageInfo
  151. func (m *UserConnectInfo) GetLogicNode() string {
  152. if m != nil {
  153. return m.LogicNode
  154. }
  155. return ""
  156. }
  157. func (m *UserConnectInfo) GetTimeStamp() int64 {
  158. if m != nil {
  159. return m.TimeStamp
  160. }
  161. return 0
  162. }
  163. // key value 类型
  164. type KeyValueType struct {
  165. Key int32 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  166. Value int32 `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
  167. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  168. XXX_unrecognized []byte `json:"-"`
  169. XXX_sizecache int32 `json:"-"`
  170. }
  171. func (m *KeyValueType) Reset() { *m = KeyValueType{} }
  172. func (m *KeyValueType) String() string { return proto.CompactTextString(m) }
  173. func (*KeyValueType) ProtoMessage() {}
  174. func (*KeyValueType) Descriptor() ([]byte, []int) {
  175. return fileDescriptor_116e343673f7ffaf, []int{3}
  176. }
  177. func (m *KeyValueType) XXX_Unmarshal(b []byte) error {
  178. return xxx_messageInfo_KeyValueType.Unmarshal(m, b)
  179. }
  180. func (m *KeyValueType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  181. return xxx_messageInfo_KeyValueType.Marshal(b, m, deterministic)
  182. }
  183. func (m *KeyValueType) XXX_Merge(src proto.Message) {
  184. xxx_messageInfo_KeyValueType.Merge(m, src)
  185. }
  186. func (m *KeyValueType) XXX_Size() int {
  187. return xxx_messageInfo_KeyValueType.Size(m)
  188. }
  189. func (m *KeyValueType) XXX_DiscardUnknown() {
  190. xxx_messageInfo_KeyValueType.DiscardUnknown(m)
  191. }
  192. var xxx_messageInfo_KeyValueType proto.InternalMessageInfo
  193. func (m *KeyValueType) GetKey() int32 {
  194. if m != nil {
  195. return m.Key
  196. }
  197. return 0
  198. }
  199. func (m *KeyValueType) GetValue() int32 {
  200. if m != nil {
  201. return m.Value
  202. }
  203. return 0
  204. }
  205. type KeyValueTypeList struct {
  206. Key int32 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  207. ValueList []int32 `protobuf:"varint,2,rep,packed,name=value_list,json=valueList,proto3" json:"value_list,omitempty"`
  208. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  209. XXX_unrecognized []byte `json:"-"`
  210. XXX_sizecache int32 `json:"-"`
  211. }
  212. func (m *KeyValueTypeList) Reset() { *m = KeyValueTypeList{} }
  213. func (m *KeyValueTypeList) String() string { return proto.CompactTextString(m) }
  214. func (*KeyValueTypeList) ProtoMessage() {}
  215. func (*KeyValueTypeList) Descriptor() ([]byte, []int) {
  216. return fileDescriptor_116e343673f7ffaf, []int{4}
  217. }
  218. func (m *KeyValueTypeList) XXX_Unmarshal(b []byte) error {
  219. return xxx_messageInfo_KeyValueTypeList.Unmarshal(m, b)
  220. }
  221. func (m *KeyValueTypeList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  222. return xxx_messageInfo_KeyValueTypeList.Marshal(b, m, deterministic)
  223. }
  224. func (m *KeyValueTypeList) XXX_Merge(src proto.Message) {
  225. xxx_messageInfo_KeyValueTypeList.Merge(m, src)
  226. }
  227. func (m *KeyValueTypeList) XXX_Size() int {
  228. return xxx_messageInfo_KeyValueTypeList.Size(m)
  229. }
  230. func (m *KeyValueTypeList) XXX_DiscardUnknown() {
  231. xxx_messageInfo_KeyValueTypeList.DiscardUnknown(m)
  232. }
  233. var xxx_messageInfo_KeyValueTypeList proto.InternalMessageInfo
  234. func (m *KeyValueTypeList) GetKey() int32 {
  235. if m != nil {
  236. return m.Key
  237. }
  238. return 0
  239. }
  240. func (m *KeyValueTypeList) GetValueList() []int32 {
  241. if m != nil {
  242. return m.ValueList
  243. }
  244. return nil
  245. }
  246. type KeyValueType64 struct {
  247. Key uint64 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  248. Value int32 `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
  249. Value2 int32 `protobuf:"varint,3,opt,name=value2,proto3" json:"value2,omitempty"`
  250. Value3 int32 `protobuf:"varint,4,opt,name=value3,proto3" json:"value3,omitempty"`
  251. StrVal string `protobuf:"bytes,5,opt,name=str_val,json=strVal,proto3" json:"str_val,omitempty"`
  252. Value4 uint64 `protobuf:"varint,6,opt,name=value4,proto3" json:"value4,omitempty"`
  253. Value5 bool `protobuf:"varint,7,opt,name=value5,proto3" json:"value5,omitempty"`
  254. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  255. XXX_unrecognized []byte `json:"-"`
  256. XXX_sizecache int32 `json:"-"`
  257. }
  258. func (m *KeyValueType64) Reset() { *m = KeyValueType64{} }
  259. func (m *KeyValueType64) String() string { return proto.CompactTextString(m) }
  260. func (*KeyValueType64) ProtoMessage() {}
  261. func (*KeyValueType64) Descriptor() ([]byte, []int) {
  262. return fileDescriptor_116e343673f7ffaf, []int{5}
  263. }
  264. func (m *KeyValueType64) XXX_Unmarshal(b []byte) error {
  265. return xxx_messageInfo_KeyValueType64.Unmarshal(m, b)
  266. }
  267. func (m *KeyValueType64) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  268. return xxx_messageInfo_KeyValueType64.Marshal(b, m, deterministic)
  269. }
  270. func (m *KeyValueType64) XXX_Merge(src proto.Message) {
  271. xxx_messageInfo_KeyValueType64.Merge(m, src)
  272. }
  273. func (m *KeyValueType64) XXX_Size() int {
  274. return xxx_messageInfo_KeyValueType64.Size(m)
  275. }
  276. func (m *KeyValueType64) XXX_DiscardUnknown() {
  277. xxx_messageInfo_KeyValueType64.DiscardUnknown(m)
  278. }
  279. var xxx_messageInfo_KeyValueType64 proto.InternalMessageInfo
  280. func (m *KeyValueType64) GetKey() uint64 {
  281. if m != nil {
  282. return m.Key
  283. }
  284. return 0
  285. }
  286. func (m *KeyValueType64) GetValue() int32 {
  287. if m != nil {
  288. return m.Value
  289. }
  290. return 0
  291. }
  292. func (m *KeyValueType64) GetValue2() int32 {
  293. if m != nil {
  294. return m.Value2
  295. }
  296. return 0
  297. }
  298. func (m *KeyValueType64) GetValue3() int32 {
  299. if m != nil {
  300. return m.Value3
  301. }
  302. return 0
  303. }
  304. func (m *KeyValueType64) GetStrVal() string {
  305. if m != nil {
  306. return m.StrVal
  307. }
  308. return ""
  309. }
  310. func (m *KeyValueType64) GetValue4() uint64 {
  311. if m != nil {
  312. return m.Value4
  313. }
  314. return 0
  315. }
  316. func (m *KeyValueType64) GetValue5() bool {
  317. if m != nil {
  318. return m.Value5
  319. }
  320. return false
  321. }
  322. type KeyValueType64Str struct {
  323. Key uint64 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  324. StrVal string `protobuf:"bytes,2,opt,name=str_val,json=strVal,proto3" json:"str_val,omitempty"`
  325. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  326. XXX_unrecognized []byte `json:"-"`
  327. XXX_sizecache int32 `json:"-"`
  328. }
  329. func (m *KeyValueType64Str) Reset() { *m = KeyValueType64Str{} }
  330. func (m *KeyValueType64Str) String() string { return proto.CompactTextString(m) }
  331. func (*KeyValueType64Str) ProtoMessage() {}
  332. func (*KeyValueType64Str) Descriptor() ([]byte, []int) {
  333. return fileDescriptor_116e343673f7ffaf, []int{6}
  334. }
  335. func (m *KeyValueType64Str) XXX_Unmarshal(b []byte) error {
  336. return xxx_messageInfo_KeyValueType64Str.Unmarshal(m, b)
  337. }
  338. func (m *KeyValueType64Str) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  339. return xxx_messageInfo_KeyValueType64Str.Marshal(b, m, deterministic)
  340. }
  341. func (m *KeyValueType64Str) XXX_Merge(src proto.Message) {
  342. xxx_messageInfo_KeyValueType64Str.Merge(m, src)
  343. }
  344. func (m *KeyValueType64Str) XXX_Size() int {
  345. return xxx_messageInfo_KeyValueType64Str.Size(m)
  346. }
  347. func (m *KeyValueType64Str) XXX_DiscardUnknown() {
  348. xxx_messageInfo_KeyValueType64Str.DiscardUnknown(m)
  349. }
  350. var xxx_messageInfo_KeyValueType64Str proto.InternalMessageInfo
  351. func (m *KeyValueType64Str) GetKey() uint64 {
  352. if m != nil {
  353. return m.Key
  354. }
  355. return 0
  356. }
  357. func (m *KeyValueType64Str) GetStrVal() string {
  358. if m != nil {
  359. return m.StrVal
  360. }
  361. return ""
  362. }
  363. type KeyValueFloat32 struct {
  364. Key int32 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  365. Value float32 `protobuf:"fixed32,2,opt,name=value,proto3" json:"value,omitempty"`
  366. Value64 float64 `protobuf:"fixed64,3,opt,name=value64,proto3" json:"value64,omitempty"`
  367. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  368. XXX_unrecognized []byte `json:"-"`
  369. XXX_sizecache int32 `json:"-"`
  370. }
  371. func (m *KeyValueFloat32) Reset() { *m = KeyValueFloat32{} }
  372. func (m *KeyValueFloat32) String() string { return proto.CompactTextString(m) }
  373. func (*KeyValueFloat32) ProtoMessage() {}
  374. func (*KeyValueFloat32) Descriptor() ([]byte, []int) {
  375. return fileDescriptor_116e343673f7ffaf, []int{7}
  376. }
  377. func (m *KeyValueFloat32) XXX_Unmarshal(b []byte) error {
  378. return xxx_messageInfo_KeyValueFloat32.Unmarshal(m, b)
  379. }
  380. func (m *KeyValueFloat32) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  381. return xxx_messageInfo_KeyValueFloat32.Marshal(b, m, deterministic)
  382. }
  383. func (m *KeyValueFloat32) XXX_Merge(src proto.Message) {
  384. xxx_messageInfo_KeyValueFloat32.Merge(m, src)
  385. }
  386. func (m *KeyValueFloat32) XXX_Size() int {
  387. return xxx_messageInfo_KeyValueFloat32.Size(m)
  388. }
  389. func (m *KeyValueFloat32) XXX_DiscardUnknown() {
  390. xxx_messageInfo_KeyValueFloat32.DiscardUnknown(m)
  391. }
  392. var xxx_messageInfo_KeyValueFloat32 proto.InternalMessageInfo
  393. func (m *KeyValueFloat32) GetKey() int32 {
  394. if m != nil {
  395. return m.Key
  396. }
  397. return 0
  398. }
  399. func (m *KeyValueFloat32) GetValue() float32 {
  400. if m != nil {
  401. return m.Value
  402. }
  403. return 0
  404. }
  405. func (m *KeyValueFloat32) GetValue64() float64 {
  406. if m != nil {
  407. return m.Value64
  408. }
  409. return 0
  410. }
  411. type UKeyValueType struct {
  412. Key uint32 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  413. Value uint32 `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
  414. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  415. XXX_unrecognized []byte `json:"-"`
  416. XXX_sizecache int32 `json:"-"`
  417. }
  418. func (m *UKeyValueType) Reset() { *m = UKeyValueType{} }
  419. func (m *UKeyValueType) String() string { return proto.CompactTextString(m) }
  420. func (*UKeyValueType) ProtoMessage() {}
  421. func (*UKeyValueType) Descriptor() ([]byte, []int) {
  422. return fileDescriptor_116e343673f7ffaf, []int{8}
  423. }
  424. func (m *UKeyValueType) XXX_Unmarshal(b []byte) error {
  425. return xxx_messageInfo_UKeyValueType.Unmarshal(m, b)
  426. }
  427. func (m *UKeyValueType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  428. return xxx_messageInfo_UKeyValueType.Marshal(b, m, deterministic)
  429. }
  430. func (m *UKeyValueType) XXX_Merge(src proto.Message) {
  431. xxx_messageInfo_UKeyValueType.Merge(m, src)
  432. }
  433. func (m *UKeyValueType) XXX_Size() int {
  434. return xxx_messageInfo_UKeyValueType.Size(m)
  435. }
  436. func (m *UKeyValueType) XXX_DiscardUnknown() {
  437. xxx_messageInfo_UKeyValueType.DiscardUnknown(m)
  438. }
  439. var xxx_messageInfo_UKeyValueType proto.InternalMessageInfo
  440. func (m *UKeyValueType) GetKey() uint32 {
  441. if m != nil {
  442. return m.Key
  443. }
  444. return 0
  445. }
  446. func (m *UKeyValueType) GetValue() uint32 {
  447. if m != nil {
  448. return m.Value
  449. }
  450. return 0
  451. }
  452. // 6部位信息
  453. type SlotDetailData struct {
  454. Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level,omitempty"`
  455. EquipId int32 `protobuf:"varint,2,opt,name=equip_id,json=equipId,proto3" json:"equip_id,omitempty"`
  456. CardIdList []int32 `protobuf:"varint,3,rep,packed,name=card_id_list,json=cardIdList,proto3" json:"card_id_list,omitempty"`
  457. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  458. XXX_unrecognized []byte `json:"-"`
  459. XXX_sizecache int32 `json:"-"`
  460. }
  461. func (m *SlotDetailData) Reset() { *m = SlotDetailData{} }
  462. func (m *SlotDetailData) String() string { return proto.CompactTextString(m) }
  463. func (*SlotDetailData) ProtoMessage() {}
  464. func (*SlotDetailData) Descriptor() ([]byte, []int) {
  465. return fileDescriptor_116e343673f7ffaf, []int{9}
  466. }
  467. func (m *SlotDetailData) XXX_Unmarshal(b []byte) error {
  468. return xxx_messageInfo_SlotDetailData.Unmarshal(m, b)
  469. }
  470. func (m *SlotDetailData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  471. return xxx_messageInfo_SlotDetailData.Marshal(b, m, deterministic)
  472. }
  473. func (m *SlotDetailData) XXX_Merge(src proto.Message) {
  474. xxx_messageInfo_SlotDetailData.Merge(m, src)
  475. }
  476. func (m *SlotDetailData) XXX_Size() int {
  477. return xxx_messageInfo_SlotDetailData.Size(m)
  478. }
  479. func (m *SlotDetailData) XXX_DiscardUnknown() {
  480. xxx_messageInfo_SlotDetailData.DiscardUnknown(m)
  481. }
  482. var xxx_messageInfo_SlotDetailData proto.InternalMessageInfo
  483. func (m *SlotDetailData) GetLevel() int32 {
  484. if m != nil {
  485. return m.Level
  486. }
  487. return 0
  488. }
  489. func (m *SlotDetailData) GetEquipId() int32 {
  490. if m != nil {
  491. return m.EquipId
  492. }
  493. return 0
  494. }
  495. func (m *SlotDetailData) GetCardIdList() []int32 {
  496. if m != nil {
  497. return m.CardIdList
  498. }
  499. return nil
  500. }
  501. // 坑位信息
  502. type SlotData struct {
  503. HeroId int32 `protobuf:"varint,1,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  504. SlotList []*SlotDetailData `protobuf:"bytes,2,rep,name=slot_list,json=slotList,proto3" json:"slot_list,omitempty"`
  505. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  506. XXX_unrecognized []byte `json:"-"`
  507. XXX_sizecache int32 `json:"-"`
  508. }
  509. func (m *SlotData) Reset() { *m = SlotData{} }
  510. func (m *SlotData) String() string { return proto.CompactTextString(m) }
  511. func (*SlotData) ProtoMessage() {}
  512. func (*SlotData) Descriptor() ([]byte, []int) {
  513. return fileDescriptor_116e343673f7ffaf, []int{10}
  514. }
  515. func (m *SlotData) XXX_Unmarshal(b []byte) error {
  516. return xxx_messageInfo_SlotData.Unmarshal(m, b)
  517. }
  518. func (m *SlotData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  519. return xxx_messageInfo_SlotData.Marshal(b, m, deterministic)
  520. }
  521. func (m *SlotData) XXX_Merge(src proto.Message) {
  522. xxx_messageInfo_SlotData.Merge(m, src)
  523. }
  524. func (m *SlotData) XXX_Size() int {
  525. return xxx_messageInfo_SlotData.Size(m)
  526. }
  527. func (m *SlotData) XXX_DiscardUnknown() {
  528. xxx_messageInfo_SlotData.DiscardUnknown(m)
  529. }
  530. var xxx_messageInfo_SlotData proto.InternalMessageInfo
  531. func (m *SlotData) GetHeroId() int32 {
  532. if m != nil {
  533. return m.HeroId
  534. }
  535. return 0
  536. }
  537. func (m *SlotData) GetSlotList() []*SlotDetailData {
  538. if m != nil {
  539. return m.SlotList
  540. }
  541. return nil
  542. }
  543. // 宠物6坑位信息
  544. // 宠物印记信息
  545. type PetEquipData struct {
  546. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  547. EquipCfgId int32 `protobuf:"varint,2,opt,name=equip_cfg_id,json=equipCfgId,proto3" json:"equip_cfg_id,omitempty"`
  548. Level int32 `protobuf:"varint,3,opt,name=level,proto3" json:"level,omitempty"`
  549. EquipPetId uint32 `protobuf:"varint,4,opt,name=equip_pet_id,json=equipPetId,proto3" json:"equip_pet_id,omitempty"`
  550. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  551. XXX_unrecognized []byte `json:"-"`
  552. XXX_sizecache int32 `json:"-"`
  553. }
  554. func (m *PetEquipData) Reset() { *m = PetEquipData{} }
  555. func (m *PetEquipData) String() string { return proto.CompactTextString(m) }
  556. func (*PetEquipData) ProtoMessage() {}
  557. func (*PetEquipData) Descriptor() ([]byte, []int) {
  558. return fileDescriptor_116e343673f7ffaf, []int{11}
  559. }
  560. func (m *PetEquipData) XXX_Unmarshal(b []byte) error {
  561. return xxx_messageInfo_PetEquipData.Unmarshal(m, b)
  562. }
  563. func (m *PetEquipData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  564. return xxx_messageInfo_PetEquipData.Marshal(b, m, deterministic)
  565. }
  566. func (m *PetEquipData) XXX_Merge(src proto.Message) {
  567. xxx_messageInfo_PetEquipData.Merge(m, src)
  568. }
  569. func (m *PetEquipData) XXX_Size() int {
  570. return xxx_messageInfo_PetEquipData.Size(m)
  571. }
  572. func (m *PetEquipData) XXX_DiscardUnknown() {
  573. xxx_messageInfo_PetEquipData.DiscardUnknown(m)
  574. }
  575. var xxx_messageInfo_PetEquipData proto.InternalMessageInfo
  576. func (m *PetEquipData) GetId() uint32 {
  577. if m != nil {
  578. return m.Id
  579. }
  580. return 0
  581. }
  582. func (m *PetEquipData) GetEquipCfgId() int32 {
  583. if m != nil {
  584. return m.EquipCfgId
  585. }
  586. return 0
  587. }
  588. func (m *PetEquipData) GetLevel() int32 {
  589. if m != nil {
  590. return m.Level
  591. }
  592. return 0
  593. }
  594. func (m *PetEquipData) GetEquipPetId() uint32 {
  595. if m != nil {
  596. return m.EquipPetId
  597. }
  598. return 0
  599. }
  600. // 宠物6坑位信息(6个部位)
  601. type PetSlotDetailData struct {
  602. Idx int32 `protobuf:"varint,1,opt,name=idx,proto3" json:"idx,omitempty"`
  603. EquipId uint32 `protobuf:"varint,2,opt,name=equip_id,json=equipId,proto3" json:"equip_id,omitempty"`
  604. StoneIdList []int32 `protobuf:"varint,3,rep,packed,name=stone_id_list,json=stoneIdList,proto3" json:"stone_id_list,omitempty"`
  605. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  606. XXX_unrecognized []byte `json:"-"`
  607. XXX_sizecache int32 `json:"-"`
  608. }
  609. func (m *PetSlotDetailData) Reset() { *m = PetSlotDetailData{} }
  610. func (m *PetSlotDetailData) String() string { return proto.CompactTextString(m) }
  611. func (*PetSlotDetailData) ProtoMessage() {}
  612. func (*PetSlotDetailData) Descriptor() ([]byte, []int) {
  613. return fileDescriptor_116e343673f7ffaf, []int{12}
  614. }
  615. func (m *PetSlotDetailData) XXX_Unmarshal(b []byte) error {
  616. return xxx_messageInfo_PetSlotDetailData.Unmarshal(m, b)
  617. }
  618. func (m *PetSlotDetailData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  619. return xxx_messageInfo_PetSlotDetailData.Marshal(b, m, deterministic)
  620. }
  621. func (m *PetSlotDetailData) XXX_Merge(src proto.Message) {
  622. xxx_messageInfo_PetSlotDetailData.Merge(m, src)
  623. }
  624. func (m *PetSlotDetailData) XXX_Size() int {
  625. return xxx_messageInfo_PetSlotDetailData.Size(m)
  626. }
  627. func (m *PetSlotDetailData) XXX_DiscardUnknown() {
  628. xxx_messageInfo_PetSlotDetailData.DiscardUnknown(m)
  629. }
  630. var xxx_messageInfo_PetSlotDetailData proto.InternalMessageInfo
  631. func (m *PetSlotDetailData) GetIdx() int32 {
  632. if m != nil {
  633. return m.Idx
  634. }
  635. return 0
  636. }
  637. func (m *PetSlotDetailData) GetEquipId() uint32 {
  638. if m != nil {
  639. return m.EquipId
  640. }
  641. return 0
  642. }
  643. func (m *PetSlotDetailData) GetStoneIdList() []int32 {
  644. if m != nil {
  645. return m.StoneIdList
  646. }
  647. return nil
  648. }
  649. // 技能信息
  650. type SkillData struct {
  651. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  652. Point int32 `protobuf:"varint,2,opt,name=point,proto3" json:"point,omitempty"`
  653. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  654. XXX_unrecognized []byte `json:"-"`
  655. XXX_sizecache int32 `json:"-"`
  656. }
  657. func (m *SkillData) Reset() { *m = SkillData{} }
  658. func (m *SkillData) String() string { return proto.CompactTextString(m) }
  659. func (*SkillData) ProtoMessage() {}
  660. func (*SkillData) Descriptor() ([]byte, []int) {
  661. return fileDescriptor_116e343673f7ffaf, []int{13}
  662. }
  663. func (m *SkillData) XXX_Unmarshal(b []byte) error {
  664. return xxx_messageInfo_SkillData.Unmarshal(m, b)
  665. }
  666. func (m *SkillData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  667. return xxx_messageInfo_SkillData.Marshal(b, m, deterministic)
  668. }
  669. func (m *SkillData) XXX_Merge(src proto.Message) {
  670. xxx_messageInfo_SkillData.Merge(m, src)
  671. }
  672. func (m *SkillData) XXX_Size() int {
  673. return xxx_messageInfo_SkillData.Size(m)
  674. }
  675. func (m *SkillData) XXX_DiscardUnknown() {
  676. xxx_messageInfo_SkillData.DiscardUnknown(m)
  677. }
  678. var xxx_messageInfo_SkillData proto.InternalMessageInfo
  679. func (m *SkillData) GetId() int32 {
  680. if m != nil {
  681. return m.Id
  682. }
  683. return 0
  684. }
  685. func (m *SkillData) GetPoint() int32 {
  686. if m != nil {
  687. return m.Point
  688. }
  689. return 0
  690. }
  691. type ChangeJob struct {
  692. TaskList []*TaskData `protobuf:"bytes,1,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  693. HeroId int32 `protobuf:"varint,2,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  694. JobFushState uint32 `protobuf:"varint,3,opt,name=job_fush_state,json=jobFushState,proto3" json:"job_fush_state,omitempty"`
  695. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  696. XXX_unrecognized []byte `json:"-"`
  697. XXX_sizecache int32 `json:"-"`
  698. }
  699. func (m *ChangeJob) Reset() { *m = ChangeJob{} }
  700. func (m *ChangeJob) String() string { return proto.CompactTextString(m) }
  701. func (*ChangeJob) ProtoMessage() {}
  702. func (*ChangeJob) Descriptor() ([]byte, []int) {
  703. return fileDescriptor_116e343673f7ffaf, []int{14}
  704. }
  705. func (m *ChangeJob) XXX_Unmarshal(b []byte) error {
  706. return xxx_messageInfo_ChangeJob.Unmarshal(m, b)
  707. }
  708. func (m *ChangeJob) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  709. return xxx_messageInfo_ChangeJob.Marshal(b, m, deterministic)
  710. }
  711. func (m *ChangeJob) XXX_Merge(src proto.Message) {
  712. xxx_messageInfo_ChangeJob.Merge(m, src)
  713. }
  714. func (m *ChangeJob) XXX_Size() int {
  715. return xxx_messageInfo_ChangeJob.Size(m)
  716. }
  717. func (m *ChangeJob) XXX_DiscardUnknown() {
  718. xxx_messageInfo_ChangeJob.DiscardUnknown(m)
  719. }
  720. var xxx_messageInfo_ChangeJob proto.InternalMessageInfo
  721. func (m *ChangeJob) GetTaskList() []*TaskData {
  722. if m != nil {
  723. return m.TaskList
  724. }
  725. return nil
  726. }
  727. func (m *ChangeJob) GetHeroId() int32 {
  728. if m != nil {
  729. return m.HeroId
  730. }
  731. return 0
  732. }
  733. func (m *ChangeJob) GetJobFushState() uint32 {
  734. if m != nil {
  735. return m.JobFushState
  736. }
  737. return 0
  738. }
  739. // 宠物觉醒(当前伙伴跟随的宠物觉醒信息,觉醒槽位跟着角色走)
  740. type PetQiyueSlotInfo struct {
  741. SlotIdx int32 `protobuf:"varint,1,opt,name=slot_idx,json=slotIdx,proto3" json:"slot_idx,omitempty"`
  742. PetId uint32 `protobuf:"varint,2,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  743. PetCfgId int32 `protobuf:"varint,3,opt,name=pet_cfg_id,json=petCfgId,proto3" json:"pet_cfg_id,omitempty"`
  744. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  745. XXX_unrecognized []byte `json:"-"`
  746. XXX_sizecache int32 `json:"-"`
  747. }
  748. func (m *PetQiyueSlotInfo) Reset() { *m = PetQiyueSlotInfo{} }
  749. func (m *PetQiyueSlotInfo) String() string { return proto.CompactTextString(m) }
  750. func (*PetQiyueSlotInfo) ProtoMessage() {}
  751. func (*PetQiyueSlotInfo) Descriptor() ([]byte, []int) {
  752. return fileDescriptor_116e343673f7ffaf, []int{15}
  753. }
  754. func (m *PetQiyueSlotInfo) XXX_Unmarshal(b []byte) error {
  755. return xxx_messageInfo_PetQiyueSlotInfo.Unmarshal(m, b)
  756. }
  757. func (m *PetQiyueSlotInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  758. return xxx_messageInfo_PetQiyueSlotInfo.Marshal(b, m, deterministic)
  759. }
  760. func (m *PetQiyueSlotInfo) XXX_Merge(src proto.Message) {
  761. xxx_messageInfo_PetQiyueSlotInfo.Merge(m, src)
  762. }
  763. func (m *PetQiyueSlotInfo) XXX_Size() int {
  764. return xxx_messageInfo_PetQiyueSlotInfo.Size(m)
  765. }
  766. func (m *PetQiyueSlotInfo) XXX_DiscardUnknown() {
  767. xxx_messageInfo_PetQiyueSlotInfo.DiscardUnknown(m)
  768. }
  769. var xxx_messageInfo_PetQiyueSlotInfo proto.InternalMessageInfo
  770. func (m *PetQiyueSlotInfo) GetSlotIdx() int32 {
  771. if m != nil {
  772. return m.SlotIdx
  773. }
  774. return 0
  775. }
  776. func (m *PetQiyueSlotInfo) GetPetId() uint32 {
  777. if m != nil {
  778. return m.PetId
  779. }
  780. return 0
  781. }
  782. func (m *PetQiyueSlotInfo) GetPetCfgId() int32 {
  783. if m != nil {
  784. return m.PetCfgId
  785. }
  786. return 0
  787. }
  788. type PetQiyueInfo struct {
  789. PetId uint32 `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  790. QiyueSlotList []*PetQiyueSlotInfo `protobuf:"bytes,2,rep,name=qiyue_slot_list,json=qiyueSlotList,proto3" json:"qiyue_slot_list,omitempty"`
  791. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  792. XXX_unrecognized []byte `json:"-"`
  793. XXX_sizecache int32 `json:"-"`
  794. }
  795. func (m *PetQiyueInfo) Reset() { *m = PetQiyueInfo{} }
  796. func (m *PetQiyueInfo) String() string { return proto.CompactTextString(m) }
  797. func (*PetQiyueInfo) ProtoMessage() {}
  798. func (*PetQiyueInfo) Descriptor() ([]byte, []int) {
  799. return fileDescriptor_116e343673f7ffaf, []int{16}
  800. }
  801. func (m *PetQiyueInfo) XXX_Unmarshal(b []byte) error {
  802. return xxx_messageInfo_PetQiyueInfo.Unmarshal(m, b)
  803. }
  804. func (m *PetQiyueInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  805. return xxx_messageInfo_PetQiyueInfo.Marshal(b, m, deterministic)
  806. }
  807. func (m *PetQiyueInfo) XXX_Merge(src proto.Message) {
  808. xxx_messageInfo_PetQiyueInfo.Merge(m, src)
  809. }
  810. func (m *PetQiyueInfo) XXX_Size() int {
  811. return xxx_messageInfo_PetQiyueInfo.Size(m)
  812. }
  813. func (m *PetQiyueInfo) XXX_DiscardUnknown() {
  814. xxx_messageInfo_PetQiyueInfo.DiscardUnknown(m)
  815. }
  816. var xxx_messageInfo_PetQiyueInfo proto.InternalMessageInfo
  817. func (m *PetQiyueInfo) GetPetId() uint32 {
  818. if m != nil {
  819. return m.PetId
  820. }
  821. return 0
  822. }
  823. func (m *PetQiyueInfo) GetQiyueSlotList() []*PetQiyueSlotInfo {
  824. if m != nil {
  825. return m.QiyueSlotList
  826. }
  827. return nil
  828. }
  829. // 宠物契约属性
  830. type PetQiyueAttr struct {
  831. PetId uint32 `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  832. BattleAttrList []*KeyValueFloat32 `protobuf:"bytes,2,rep,name=battle_attr_list,json=battleAttrList,proto3" json:"battle_attr_list,omitempty"`
  833. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  834. XXX_unrecognized []byte `json:"-"`
  835. XXX_sizecache int32 `json:"-"`
  836. }
  837. func (m *PetQiyueAttr) Reset() { *m = PetQiyueAttr{} }
  838. func (m *PetQiyueAttr) String() string { return proto.CompactTextString(m) }
  839. func (*PetQiyueAttr) ProtoMessage() {}
  840. func (*PetQiyueAttr) Descriptor() ([]byte, []int) {
  841. return fileDescriptor_116e343673f7ffaf, []int{17}
  842. }
  843. func (m *PetQiyueAttr) XXX_Unmarshal(b []byte) error {
  844. return xxx_messageInfo_PetQiyueAttr.Unmarshal(m, b)
  845. }
  846. func (m *PetQiyueAttr) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  847. return xxx_messageInfo_PetQiyueAttr.Marshal(b, m, deterministic)
  848. }
  849. func (m *PetQiyueAttr) XXX_Merge(src proto.Message) {
  850. xxx_messageInfo_PetQiyueAttr.Merge(m, src)
  851. }
  852. func (m *PetQiyueAttr) XXX_Size() int {
  853. return xxx_messageInfo_PetQiyueAttr.Size(m)
  854. }
  855. func (m *PetQiyueAttr) XXX_DiscardUnknown() {
  856. xxx_messageInfo_PetQiyueAttr.DiscardUnknown(m)
  857. }
  858. var xxx_messageInfo_PetQiyueAttr proto.InternalMessageInfo
  859. func (m *PetQiyueAttr) GetPetId() uint32 {
  860. if m != nil {
  861. return m.PetId
  862. }
  863. return 0
  864. }
  865. func (m *PetQiyueAttr) GetBattleAttrList() []*KeyValueFloat32 {
  866. if m != nil {
  867. return m.BattleAttrList
  868. }
  869. return nil
  870. }
  871. // 玩家角色结构中的strength_level和advance_level不使用
  872. type HeroData struct {
  873. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  874. ConfigId int32 `protobuf:"varint,2,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  875. FightPower int32 `protobuf:"varint,3,opt,name=fight_power,json=fightPower,proto3" json:"fight_power,omitempty"`
  876. IsBattle bool `protobuf:"varint,4,opt,name=is_battle,json=isBattle,proto3" json:"is_battle,omitempty"`
  877. BaseLevel int32 `protobuf:"varint,5,opt,name=base_level,json=baseLevel,proto3" json:"base_level,omitempty"`
  878. AdvanceLevel int32 `protobuf:"varint,6,opt,name=advance_level,json=advanceLevel,proto3" json:"advance_level,omitempty"`
  879. StrengthLevel int32 `protobuf:"varint,7,opt,name=strength_level,json=strengthLevel,proto3" json:"strength_level,omitempty"`
  880. Slot *SlotData `protobuf:"bytes,8,opt,name=slot,proto3" json:"slot,omitempty"`
  881. Skill *RoleSkill `protobuf:"bytes,9,opt,name=skill,proto3" json:"skill,omitempty"`
  882. AttrList []*KeyValueType `protobuf:"bytes,10,rep,name=attr_list,json=attrList,proto3" json:"attr_list,omitempty"`
  883. AttrPoint int32 `protobuf:"varint,11,opt,name=attr_point,json=attrPoint,proto3" json:"attr_point,omitempty"`
  884. BattlePetId uint32 `protobuf:"varint,12,opt,name=battle_pet_id,json=battlePetId,proto3" json:"battle_pet_id,omitempty"`
  885. PetFightPower uint64 `protobuf:"varint,13,opt,name=pet_fight_power,json=petFightPower,proto3" json:"pet_fight_power,omitempty"`
  886. QualityList []*KeyValueType `protobuf:"bytes,14,rep,name=quality_list,json=qualityList,proto3" json:"quality_list,omitempty"`
  887. RepressSkillPvpVal int32 `protobuf:"varint,15,opt,name=repress_skill_pvp_val,json=repressSkillPvpVal,proto3" json:"repress_skill_pvp_val,omitempty"`
  888. SkillEquipSlot *SkillEquipSlotData `protobuf:"bytes,16,opt,name=skill_equip_slot,json=skillEquipSlot,proto3" json:"skill_equip_slot,omitempty"`
  889. PetQiyueData *PetQiyueInfo `protobuf:"bytes,17,opt,name=pet_qiyue_data,json=petQiyueData,proto3" json:"pet_qiyue_data,omitempty"`
  890. // 有可能没有(老号)
  891. BattleAttrListOld []*KeyValueType `protobuf:"bytes,50,rep,name=battle_attr_list_old,json=battleAttrListOld,proto3" json:"battle_attr_list_old,omitempty"`
  892. BattleAttrList []*KeyValueFloat32 `protobuf:"bytes,51,rep,name=battle_attr_list,json=battleAttrList,proto3" json:"battle_attr_list,omitempty"`
  893. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  894. XXX_unrecognized []byte `json:"-"`
  895. XXX_sizecache int32 `json:"-"`
  896. }
  897. func (m *HeroData) Reset() { *m = HeroData{} }
  898. func (m *HeroData) String() string { return proto.CompactTextString(m) }
  899. func (*HeroData) ProtoMessage() {}
  900. func (*HeroData) Descriptor() ([]byte, []int) {
  901. return fileDescriptor_116e343673f7ffaf, []int{18}
  902. }
  903. func (m *HeroData) XXX_Unmarshal(b []byte) error {
  904. return xxx_messageInfo_HeroData.Unmarshal(m, b)
  905. }
  906. func (m *HeroData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  907. return xxx_messageInfo_HeroData.Marshal(b, m, deterministic)
  908. }
  909. func (m *HeroData) XXX_Merge(src proto.Message) {
  910. xxx_messageInfo_HeroData.Merge(m, src)
  911. }
  912. func (m *HeroData) XXX_Size() int {
  913. return xxx_messageInfo_HeroData.Size(m)
  914. }
  915. func (m *HeroData) XXX_DiscardUnknown() {
  916. xxx_messageInfo_HeroData.DiscardUnknown(m)
  917. }
  918. var xxx_messageInfo_HeroData proto.InternalMessageInfo
  919. func (m *HeroData) GetId() int32 {
  920. if m != nil {
  921. return m.Id
  922. }
  923. return 0
  924. }
  925. func (m *HeroData) GetConfigId() int32 {
  926. if m != nil {
  927. return m.ConfigId
  928. }
  929. return 0
  930. }
  931. func (m *HeroData) GetFightPower() int32 {
  932. if m != nil {
  933. return m.FightPower
  934. }
  935. return 0
  936. }
  937. func (m *HeroData) GetIsBattle() bool {
  938. if m != nil {
  939. return m.IsBattle
  940. }
  941. return false
  942. }
  943. func (m *HeroData) GetBaseLevel() int32 {
  944. if m != nil {
  945. return m.BaseLevel
  946. }
  947. return 0
  948. }
  949. func (m *HeroData) GetAdvanceLevel() int32 {
  950. if m != nil {
  951. return m.AdvanceLevel
  952. }
  953. return 0
  954. }
  955. func (m *HeroData) GetStrengthLevel() int32 {
  956. if m != nil {
  957. return m.StrengthLevel
  958. }
  959. return 0
  960. }
  961. func (m *HeroData) GetSlot() *SlotData {
  962. if m != nil {
  963. return m.Slot
  964. }
  965. return nil
  966. }
  967. func (m *HeroData) GetSkill() *RoleSkill {
  968. if m != nil {
  969. return m.Skill
  970. }
  971. return nil
  972. }
  973. func (m *HeroData) GetAttrList() []*KeyValueType {
  974. if m != nil {
  975. return m.AttrList
  976. }
  977. return nil
  978. }
  979. func (m *HeroData) GetAttrPoint() int32 {
  980. if m != nil {
  981. return m.AttrPoint
  982. }
  983. return 0
  984. }
  985. func (m *HeroData) GetBattlePetId() uint32 {
  986. if m != nil {
  987. return m.BattlePetId
  988. }
  989. return 0
  990. }
  991. func (m *HeroData) GetPetFightPower() uint64 {
  992. if m != nil {
  993. return m.PetFightPower
  994. }
  995. return 0
  996. }
  997. func (m *HeroData) GetQualityList() []*KeyValueType {
  998. if m != nil {
  999. return m.QualityList
  1000. }
  1001. return nil
  1002. }
  1003. func (m *HeroData) GetRepressSkillPvpVal() int32 {
  1004. if m != nil {
  1005. return m.RepressSkillPvpVal
  1006. }
  1007. return 0
  1008. }
  1009. func (m *HeroData) GetSkillEquipSlot() *SkillEquipSlotData {
  1010. if m != nil {
  1011. return m.SkillEquipSlot
  1012. }
  1013. return nil
  1014. }
  1015. func (m *HeroData) GetPetQiyueData() *PetQiyueInfo {
  1016. if m != nil {
  1017. return m.PetQiyueData
  1018. }
  1019. return nil
  1020. }
  1021. func (m *HeroData) GetBattleAttrListOld() []*KeyValueType {
  1022. if m != nil {
  1023. return m.BattleAttrListOld
  1024. }
  1025. return nil
  1026. }
  1027. func (m *HeroData) GetBattleAttrList() []*KeyValueFloat32 {
  1028. if m != nil {
  1029. return m.BattleAttrList
  1030. }
  1031. return nil
  1032. }
  1033. // 时装数据
  1034. type FashionData struct {
  1035. Eye int32 `protobuf:"varint,1,opt,name=eye,proto3" json:"eye,omitempty"`
  1036. Hair int32 `protobuf:"varint,2,opt,name=hair,proto3" json:"hair,omitempty"`
  1037. HairAvatar int32 `protobuf:"varint,3,opt,name=hair_avatar,json=hairAvatar,proto3" json:"hair_avatar,omitempty"`
  1038. FashionUpList []int32 `protobuf:"varint,4,rep,packed,name=fashion_up_list,json=fashionUpList,proto3" json:"fashion_up_list,omitempty"`
  1039. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1040. XXX_unrecognized []byte `json:"-"`
  1041. XXX_sizecache int32 `json:"-"`
  1042. }
  1043. func (m *FashionData) Reset() { *m = FashionData{} }
  1044. func (m *FashionData) String() string { return proto.CompactTextString(m) }
  1045. func (*FashionData) ProtoMessage() {}
  1046. func (*FashionData) Descriptor() ([]byte, []int) {
  1047. return fileDescriptor_116e343673f7ffaf, []int{19}
  1048. }
  1049. func (m *FashionData) XXX_Unmarshal(b []byte) error {
  1050. return xxx_messageInfo_FashionData.Unmarshal(m, b)
  1051. }
  1052. func (m *FashionData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1053. return xxx_messageInfo_FashionData.Marshal(b, m, deterministic)
  1054. }
  1055. func (m *FashionData) XXX_Merge(src proto.Message) {
  1056. xxx_messageInfo_FashionData.Merge(m, src)
  1057. }
  1058. func (m *FashionData) XXX_Size() int {
  1059. return xxx_messageInfo_FashionData.Size(m)
  1060. }
  1061. func (m *FashionData) XXX_DiscardUnknown() {
  1062. xxx_messageInfo_FashionData.DiscardUnknown(m)
  1063. }
  1064. var xxx_messageInfo_FashionData proto.InternalMessageInfo
  1065. func (m *FashionData) GetEye() int32 {
  1066. if m != nil {
  1067. return m.Eye
  1068. }
  1069. return 0
  1070. }
  1071. func (m *FashionData) GetHair() int32 {
  1072. if m != nil {
  1073. return m.Hair
  1074. }
  1075. return 0
  1076. }
  1077. func (m *FashionData) GetHairAvatar() int32 {
  1078. if m != nil {
  1079. return m.HairAvatar
  1080. }
  1081. return 0
  1082. }
  1083. func (m *FashionData) GetFashionUpList() []int32 {
  1084. if m != nil {
  1085. return m.FashionUpList
  1086. }
  1087. return nil
  1088. }
  1089. type FashionAttr struct {
  1090. JobType int32 `protobuf:"varint,1,opt,name=jobType,proto3" json:"jobType,omitempty"`
  1091. AttrId int32 `protobuf:"varint,2,opt,name=attrId,proto3" json:"attrId,omitempty"`
  1092. Value int32 `protobuf:"varint,3,opt,name=value,proto3" json:"value,omitempty"`
  1093. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1094. XXX_unrecognized []byte `json:"-"`
  1095. XXX_sizecache int32 `json:"-"`
  1096. }
  1097. func (m *FashionAttr) Reset() { *m = FashionAttr{} }
  1098. func (m *FashionAttr) String() string { return proto.CompactTextString(m) }
  1099. func (*FashionAttr) ProtoMessage() {}
  1100. func (*FashionAttr) Descriptor() ([]byte, []int) {
  1101. return fileDescriptor_116e343673f7ffaf, []int{20}
  1102. }
  1103. func (m *FashionAttr) XXX_Unmarshal(b []byte) error {
  1104. return xxx_messageInfo_FashionAttr.Unmarshal(m, b)
  1105. }
  1106. func (m *FashionAttr) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1107. return xxx_messageInfo_FashionAttr.Marshal(b, m, deterministic)
  1108. }
  1109. func (m *FashionAttr) XXX_Merge(src proto.Message) {
  1110. xxx_messageInfo_FashionAttr.Merge(m, src)
  1111. }
  1112. func (m *FashionAttr) XXX_Size() int {
  1113. return xxx_messageInfo_FashionAttr.Size(m)
  1114. }
  1115. func (m *FashionAttr) XXX_DiscardUnknown() {
  1116. xxx_messageInfo_FashionAttr.DiscardUnknown(m)
  1117. }
  1118. var xxx_messageInfo_FashionAttr proto.InternalMessageInfo
  1119. func (m *FashionAttr) GetJobType() int32 {
  1120. if m != nil {
  1121. return m.JobType
  1122. }
  1123. return 0
  1124. }
  1125. func (m *FashionAttr) GetAttrId() int32 {
  1126. if m != nil {
  1127. return m.AttrId
  1128. }
  1129. return 0
  1130. }
  1131. func (m *FashionAttr) GetValue() int32 {
  1132. if m != nil {
  1133. return m.Value
  1134. }
  1135. return 0
  1136. }
  1137. type HeadFrameData struct {
  1138. HeadFrameId int32 `protobuf:"varint,1,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  1139. HeadFrameTime int64 `protobuf:"varint,2,opt,name=head_frame_time,json=headFrameTime,proto3" json:"head_frame_time,omitempty"`
  1140. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1141. XXX_unrecognized []byte `json:"-"`
  1142. XXX_sizecache int32 `json:"-"`
  1143. }
  1144. func (m *HeadFrameData) Reset() { *m = HeadFrameData{} }
  1145. func (m *HeadFrameData) String() string { return proto.CompactTextString(m) }
  1146. func (*HeadFrameData) ProtoMessage() {}
  1147. func (*HeadFrameData) Descriptor() ([]byte, []int) {
  1148. return fileDescriptor_116e343673f7ffaf, []int{21}
  1149. }
  1150. func (m *HeadFrameData) XXX_Unmarshal(b []byte) error {
  1151. return xxx_messageInfo_HeadFrameData.Unmarshal(m, b)
  1152. }
  1153. func (m *HeadFrameData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1154. return xxx_messageInfo_HeadFrameData.Marshal(b, m, deterministic)
  1155. }
  1156. func (m *HeadFrameData) XXX_Merge(src proto.Message) {
  1157. xxx_messageInfo_HeadFrameData.Merge(m, src)
  1158. }
  1159. func (m *HeadFrameData) XXX_Size() int {
  1160. return xxx_messageInfo_HeadFrameData.Size(m)
  1161. }
  1162. func (m *HeadFrameData) XXX_DiscardUnknown() {
  1163. xxx_messageInfo_HeadFrameData.DiscardUnknown(m)
  1164. }
  1165. var xxx_messageInfo_HeadFrameData proto.InternalMessageInfo
  1166. func (m *HeadFrameData) GetHeadFrameId() int32 {
  1167. if m != nil {
  1168. return m.HeadFrameId
  1169. }
  1170. return 0
  1171. }
  1172. func (m *HeadFrameData) GetHeadFrameTime() int64 {
  1173. if m != nil {
  1174. return m.HeadFrameTime
  1175. }
  1176. return 0
  1177. }
  1178. // 头像信息
  1179. type HeadInfo struct {
  1180. HeadVersion int32 `protobuf:"varint,1,opt,name=head_version,json=headVersion,proto3" json:"head_version,omitempty"`
  1181. HeadList []int32 `protobuf:"varint,2,rep,packed,name=head_list,json=headList,proto3" json:"head_list,omitempty"`
  1182. HeadFrameList []*HeadFrameData `protobuf:"bytes,3,rep,name=head_frame_list,json=headFrameList,proto3" json:"head_frame_list,omitempty"`
  1183. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1184. XXX_unrecognized []byte `json:"-"`
  1185. XXX_sizecache int32 `json:"-"`
  1186. }
  1187. func (m *HeadInfo) Reset() { *m = HeadInfo{} }
  1188. func (m *HeadInfo) String() string { return proto.CompactTextString(m) }
  1189. func (*HeadInfo) ProtoMessage() {}
  1190. func (*HeadInfo) Descriptor() ([]byte, []int) {
  1191. return fileDescriptor_116e343673f7ffaf, []int{22}
  1192. }
  1193. func (m *HeadInfo) XXX_Unmarshal(b []byte) error {
  1194. return xxx_messageInfo_HeadInfo.Unmarshal(m, b)
  1195. }
  1196. func (m *HeadInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1197. return xxx_messageInfo_HeadInfo.Marshal(b, m, deterministic)
  1198. }
  1199. func (m *HeadInfo) XXX_Merge(src proto.Message) {
  1200. xxx_messageInfo_HeadInfo.Merge(m, src)
  1201. }
  1202. func (m *HeadInfo) XXX_Size() int {
  1203. return xxx_messageInfo_HeadInfo.Size(m)
  1204. }
  1205. func (m *HeadInfo) XXX_DiscardUnknown() {
  1206. xxx_messageInfo_HeadInfo.DiscardUnknown(m)
  1207. }
  1208. var xxx_messageInfo_HeadInfo proto.InternalMessageInfo
  1209. func (m *HeadInfo) GetHeadVersion() int32 {
  1210. if m != nil {
  1211. return m.HeadVersion
  1212. }
  1213. return 0
  1214. }
  1215. func (m *HeadInfo) GetHeadList() []int32 {
  1216. if m != nil {
  1217. return m.HeadList
  1218. }
  1219. return nil
  1220. }
  1221. func (m *HeadInfo) GetHeadFrameList() []*HeadFrameData {
  1222. if m != nil {
  1223. return m.HeadFrameList
  1224. }
  1225. return nil
  1226. }
  1227. // 玩家附属属性
  1228. type RoleData struct {
  1229. BaseExp int32 `protobuf:"varint,1,opt,name=base_exp,json=baseExp,proto3" json:"base_exp,omitempty"`
  1230. JobExp int32 `protobuf:"varint,2,opt,name=job_exp,json=jobExp,proto3" json:"job_exp,omitempty"`
  1231. JobLevel int32 `protobuf:"varint,3,opt,name=job_level,json=jobLevel,proto3" json:"job_level,omitempty"`
  1232. HeroExp int32 `protobuf:"varint,4,opt,name=hero_exp,json=heroExp,proto3" json:"hero_exp,omitempty"`
  1233. HeroData *HeroData `protobuf:"bytes,5,opt,name=hero_data,json=heroData,proto3" json:"hero_data,omitempty"`
  1234. FightPower uint64 `protobuf:"varint,6,opt,name=fight_power,json=fightPower,proto3" json:"fight_power,omitempty"`
  1235. Cruise int32 `protobuf:"varint,7,opt,name=cruise,proto3" json:"cruise,omitempty"`
  1236. MaxCruise int32 `protobuf:"varint,8,opt,name=max_cruise,json=maxCruise,proto3" json:"max_cruise,omitempty"`
  1237. HeadId int32 `protobuf:"varint,9,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  1238. LastLoginTime uint64 `protobuf:"varint,10,opt,name=last_login_time,json=lastLoginTime,proto3" json:"last_login_time,omitempty"`
  1239. SkillBox int32 `protobuf:"varint,11,opt,name=skill_box,json=skillBox,proto3" json:"skill_box,omitempty"`
  1240. BossRewardList []*KeyValueType `protobuf:"bytes,12,rep,name=boss_reward_list,json=bossRewardList,proto3" json:"boss_reward_list,omitempty"`
  1241. SkillResetCount int32 `protobuf:"varint,13,opt,name=skill_reset_count,json=skillResetCount,proto3" json:"skill_reset_count,omitempty"`
  1242. HeadFrameId int32 `protobuf:"varint,14,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  1243. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1244. XXX_unrecognized []byte `json:"-"`
  1245. XXX_sizecache int32 `json:"-"`
  1246. }
  1247. func (m *RoleData) Reset() { *m = RoleData{} }
  1248. func (m *RoleData) String() string { return proto.CompactTextString(m) }
  1249. func (*RoleData) ProtoMessage() {}
  1250. func (*RoleData) Descriptor() ([]byte, []int) {
  1251. return fileDescriptor_116e343673f7ffaf, []int{23}
  1252. }
  1253. func (m *RoleData) XXX_Unmarshal(b []byte) error {
  1254. return xxx_messageInfo_RoleData.Unmarshal(m, b)
  1255. }
  1256. func (m *RoleData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1257. return xxx_messageInfo_RoleData.Marshal(b, m, deterministic)
  1258. }
  1259. func (m *RoleData) XXX_Merge(src proto.Message) {
  1260. xxx_messageInfo_RoleData.Merge(m, src)
  1261. }
  1262. func (m *RoleData) XXX_Size() int {
  1263. return xxx_messageInfo_RoleData.Size(m)
  1264. }
  1265. func (m *RoleData) XXX_DiscardUnknown() {
  1266. xxx_messageInfo_RoleData.DiscardUnknown(m)
  1267. }
  1268. var xxx_messageInfo_RoleData proto.InternalMessageInfo
  1269. func (m *RoleData) GetBaseExp() int32 {
  1270. if m != nil {
  1271. return m.BaseExp
  1272. }
  1273. return 0
  1274. }
  1275. func (m *RoleData) GetJobExp() int32 {
  1276. if m != nil {
  1277. return m.JobExp
  1278. }
  1279. return 0
  1280. }
  1281. func (m *RoleData) GetJobLevel() int32 {
  1282. if m != nil {
  1283. return m.JobLevel
  1284. }
  1285. return 0
  1286. }
  1287. func (m *RoleData) GetHeroExp() int32 {
  1288. if m != nil {
  1289. return m.HeroExp
  1290. }
  1291. return 0
  1292. }
  1293. func (m *RoleData) GetHeroData() *HeroData {
  1294. if m != nil {
  1295. return m.HeroData
  1296. }
  1297. return nil
  1298. }
  1299. func (m *RoleData) GetFightPower() uint64 {
  1300. if m != nil {
  1301. return m.FightPower
  1302. }
  1303. return 0
  1304. }
  1305. func (m *RoleData) GetCruise() int32 {
  1306. if m != nil {
  1307. return m.Cruise
  1308. }
  1309. return 0
  1310. }
  1311. func (m *RoleData) GetMaxCruise() int32 {
  1312. if m != nil {
  1313. return m.MaxCruise
  1314. }
  1315. return 0
  1316. }
  1317. func (m *RoleData) GetHeadId() int32 {
  1318. if m != nil {
  1319. return m.HeadId
  1320. }
  1321. return 0
  1322. }
  1323. func (m *RoleData) GetLastLoginTime() uint64 {
  1324. if m != nil {
  1325. return m.LastLoginTime
  1326. }
  1327. return 0
  1328. }
  1329. func (m *RoleData) GetSkillBox() int32 {
  1330. if m != nil {
  1331. return m.SkillBox
  1332. }
  1333. return 0
  1334. }
  1335. func (m *RoleData) GetBossRewardList() []*KeyValueType {
  1336. if m != nil {
  1337. return m.BossRewardList
  1338. }
  1339. return nil
  1340. }
  1341. func (m *RoleData) GetSkillResetCount() int32 {
  1342. if m != nil {
  1343. return m.SkillResetCount
  1344. }
  1345. return 0
  1346. }
  1347. func (m *RoleData) GetHeadFrameId() int32 {
  1348. if m != nil {
  1349. return m.HeadFrameId
  1350. }
  1351. return 0
  1352. }
  1353. // 角色基本信息(不包括其他系统部分)
  1354. type RoleBase struct {
  1355. Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1356. NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  1357. Desc string `protobuf:"bytes,3,opt,name=desc,proto3" json:"desc,omitempty"`
  1358. Sex int32 `protobuf:"varint,4,opt,name=sex,proto3" json:"sex,omitempty"`
  1359. Country int32 `protobuf:"varint,5,opt,name=country,proto3" json:"country,omitempty"`
  1360. GuideId int32 `protobuf:"varint,6,opt,name=guide_id,json=guideId,proto3" json:"guide_id,omitempty"`
  1361. Coin uint64 `protobuf:"varint,7,opt,name=coin,proto3" json:"coin,omitempty"`
  1362. Rmb uint32 `protobuf:"varint,8,opt,name=rmb,proto3" json:"rmb,omitempty"`
  1363. ResList []*KeyValueType `protobuf:"bytes,9,rep,name=res_list,json=resList,proto3" json:"res_list,omitempty"`
  1364. RoleData *RoleData `protobuf:"bytes,10,opt,name=role_data,json=roleData,proto3" json:"role_data,omitempty"`
  1365. FashionData *FashionData `protobuf:"bytes,11,opt,name=fashion_data,json=fashionData,proto3" json:"fashion_data,omitempty"`
  1366. Head_Info *HeadInfo `protobuf:"bytes,13,opt,name=head_Info,json=headInfo,proto3" json:"head_Info,omitempty"`
  1367. StoryId []int32 `protobuf:"varint,14,rep,packed,name=story_id,json=storyId,proto3" json:"story_id,omitempty"`
  1368. Cguide *KeyValueType `protobuf:"bytes,15,opt,name=cguide,proto3" json:"cguide,omitempty"`
  1369. MapAnimation *KeyValueType `protobuf:"bytes,16,opt,name=map_animation,json=mapAnimation,proto3" json:"map_animation,omitempty"`
  1370. BanTime uint64 `protobuf:"varint,17,opt,name=ban_time,json=banTime,proto3" json:"ban_time,omitempty"`
  1371. TotalRecharge float32 `protobuf:"fixed32,18,opt,name=total_recharge,json=totalRecharge,proto3" json:"total_recharge,omitempty"`
  1372. DayRecharge float32 `protobuf:"fixed32,19,opt,name=day_recharge,json=dayRecharge,proto3" json:"day_recharge,omitempty"`
  1373. VipLevel int32 `protobuf:"varint,20,opt,name=vip_level,json=vipLevel,proto3" json:"vip_level,omitempty"`
  1374. LastRechargeTime uint64 `protobuf:"varint,21,opt,name=last_recharge_time,json=lastRechargeTime,proto3" json:"last_recharge_time,omitempty"`
  1375. QuestionReward int32 `protobuf:"varint,22,opt,name=question_reward,json=questionReward,proto3" json:"question_reward,omitempty"`
  1376. CreateReward bool `protobuf:"varint,23,opt,name=create_reward,json=createReward,proto3" json:"create_reward,omitempty"`
  1377. BanType int32 `protobuf:"varint,24,opt,name=ban_type,json=banType,proto3" json:"ban_type,omitempty"`
  1378. ChatBanTime uint64 `protobuf:"varint,25,opt,name=chat_ban_time,json=chatBanTime,proto3" json:"chat_ban_time,omitempty"`
  1379. ChatBanType int32 `protobuf:"varint,26,opt,name=chat_ban_type,json=chatBanType,proto3" json:"chat_ban_type,omitempty"`
  1380. TotalOnlineTime int32 `protobuf:"varint,27,opt,name=total_online_time,json=totalOnlineTime,proto3" json:"total_online_time,omitempty"`
  1381. OnlineStamp uint64 `protobuf:"varint,28,opt,name=online_stamp,json=onlineStamp,proto3" json:"online_stamp,omitempty"`
  1382. OnlineRewardId int32 `protobuf:"varint,29,opt,name=online_reward_id,json=onlineRewardId,proto3" json:"online_reward_id,omitempty"`
  1383. DailyResetTimeStamp uint64 `protobuf:"varint,30,opt,name=daily_reset_time_stamp,json=dailyResetTimeStamp,proto3" json:"daily_reset_time_stamp,omitempty"`
  1384. RepressSkillPvpVal int32 `protobuf:"varint,31,opt,name=repress_skill_pvp_val,json=repressSkillPvpVal,proto3" json:"repress_skill_pvp_val,omitempty"`
  1385. BtZhenDayRecharge float32 `protobuf:"fixed32,50,opt,name=bt_zhen_day_recharge,json=btZhenDayRecharge,proto3" json:"bt_zhen_day_recharge,omitempty"`
  1386. BtJiaDayRecharge int32 `protobuf:"varint,51,opt,name=bt_jia_day_recharge,json=btJiaDayRecharge,proto3" json:"bt_jia_day_recharge,omitempty"`
  1387. BtJiaTotalRecharge uint64 `protobuf:"varint,52,opt,name=bt_jia_total_recharge,json=btJiaTotalRecharge,proto3" json:"bt_jia_total_recharge,omitempty"`
  1388. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1389. XXX_unrecognized []byte `json:"-"`
  1390. XXX_sizecache int32 `json:"-"`
  1391. }
  1392. func (m *RoleBase) Reset() { *m = RoleBase{} }
  1393. func (m *RoleBase) String() string { return proto.CompactTextString(m) }
  1394. func (*RoleBase) ProtoMessage() {}
  1395. func (*RoleBase) Descriptor() ([]byte, []int) {
  1396. return fileDescriptor_116e343673f7ffaf, []int{24}
  1397. }
  1398. func (m *RoleBase) XXX_Unmarshal(b []byte) error {
  1399. return xxx_messageInfo_RoleBase.Unmarshal(m, b)
  1400. }
  1401. func (m *RoleBase) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1402. return xxx_messageInfo_RoleBase.Marshal(b, m, deterministic)
  1403. }
  1404. func (m *RoleBase) XXX_Merge(src proto.Message) {
  1405. xxx_messageInfo_RoleBase.Merge(m, src)
  1406. }
  1407. func (m *RoleBase) XXX_Size() int {
  1408. return xxx_messageInfo_RoleBase.Size(m)
  1409. }
  1410. func (m *RoleBase) XXX_DiscardUnknown() {
  1411. xxx_messageInfo_RoleBase.DiscardUnknown(m)
  1412. }
  1413. var xxx_messageInfo_RoleBase proto.InternalMessageInfo
  1414. func (m *RoleBase) GetId() uint64 {
  1415. if m != nil {
  1416. return m.Id
  1417. }
  1418. return 0
  1419. }
  1420. func (m *RoleBase) GetNickName() string {
  1421. if m != nil {
  1422. return m.NickName
  1423. }
  1424. return ""
  1425. }
  1426. func (m *RoleBase) GetDesc() string {
  1427. if m != nil {
  1428. return m.Desc
  1429. }
  1430. return ""
  1431. }
  1432. func (m *RoleBase) GetSex() int32 {
  1433. if m != nil {
  1434. return m.Sex
  1435. }
  1436. return 0
  1437. }
  1438. func (m *RoleBase) GetCountry() int32 {
  1439. if m != nil {
  1440. return m.Country
  1441. }
  1442. return 0
  1443. }
  1444. func (m *RoleBase) GetGuideId() int32 {
  1445. if m != nil {
  1446. return m.GuideId
  1447. }
  1448. return 0
  1449. }
  1450. func (m *RoleBase) GetCoin() uint64 {
  1451. if m != nil {
  1452. return m.Coin
  1453. }
  1454. return 0
  1455. }
  1456. func (m *RoleBase) GetRmb() uint32 {
  1457. if m != nil {
  1458. return m.Rmb
  1459. }
  1460. return 0
  1461. }
  1462. func (m *RoleBase) GetResList() []*KeyValueType {
  1463. if m != nil {
  1464. return m.ResList
  1465. }
  1466. return nil
  1467. }
  1468. func (m *RoleBase) GetRoleData() *RoleData {
  1469. if m != nil {
  1470. return m.RoleData
  1471. }
  1472. return nil
  1473. }
  1474. func (m *RoleBase) GetFashionData() *FashionData {
  1475. if m != nil {
  1476. return m.FashionData
  1477. }
  1478. return nil
  1479. }
  1480. func (m *RoleBase) GetHead_Info() *HeadInfo {
  1481. if m != nil {
  1482. return m.Head_Info
  1483. }
  1484. return nil
  1485. }
  1486. func (m *RoleBase) GetStoryId() []int32 {
  1487. if m != nil {
  1488. return m.StoryId
  1489. }
  1490. return nil
  1491. }
  1492. func (m *RoleBase) GetCguide() *KeyValueType {
  1493. if m != nil {
  1494. return m.Cguide
  1495. }
  1496. return nil
  1497. }
  1498. func (m *RoleBase) GetMapAnimation() *KeyValueType {
  1499. if m != nil {
  1500. return m.MapAnimation
  1501. }
  1502. return nil
  1503. }
  1504. func (m *RoleBase) GetBanTime() uint64 {
  1505. if m != nil {
  1506. return m.BanTime
  1507. }
  1508. return 0
  1509. }
  1510. func (m *RoleBase) GetTotalRecharge() float32 {
  1511. if m != nil {
  1512. return m.TotalRecharge
  1513. }
  1514. return 0
  1515. }
  1516. func (m *RoleBase) GetDayRecharge() float32 {
  1517. if m != nil {
  1518. return m.DayRecharge
  1519. }
  1520. return 0
  1521. }
  1522. func (m *RoleBase) GetVipLevel() int32 {
  1523. if m != nil {
  1524. return m.VipLevel
  1525. }
  1526. return 0
  1527. }
  1528. func (m *RoleBase) GetLastRechargeTime() uint64 {
  1529. if m != nil {
  1530. return m.LastRechargeTime
  1531. }
  1532. return 0
  1533. }
  1534. func (m *RoleBase) GetQuestionReward() int32 {
  1535. if m != nil {
  1536. return m.QuestionReward
  1537. }
  1538. return 0
  1539. }
  1540. func (m *RoleBase) GetCreateReward() bool {
  1541. if m != nil {
  1542. return m.CreateReward
  1543. }
  1544. return false
  1545. }
  1546. func (m *RoleBase) GetBanType() int32 {
  1547. if m != nil {
  1548. return m.BanType
  1549. }
  1550. return 0
  1551. }
  1552. func (m *RoleBase) GetChatBanTime() uint64 {
  1553. if m != nil {
  1554. return m.ChatBanTime
  1555. }
  1556. return 0
  1557. }
  1558. func (m *RoleBase) GetChatBanType() int32 {
  1559. if m != nil {
  1560. return m.ChatBanType
  1561. }
  1562. return 0
  1563. }
  1564. func (m *RoleBase) GetTotalOnlineTime() int32 {
  1565. if m != nil {
  1566. return m.TotalOnlineTime
  1567. }
  1568. return 0
  1569. }
  1570. func (m *RoleBase) GetOnlineStamp() uint64 {
  1571. if m != nil {
  1572. return m.OnlineStamp
  1573. }
  1574. return 0
  1575. }
  1576. func (m *RoleBase) GetOnlineRewardId() int32 {
  1577. if m != nil {
  1578. return m.OnlineRewardId
  1579. }
  1580. return 0
  1581. }
  1582. func (m *RoleBase) GetDailyResetTimeStamp() uint64 {
  1583. if m != nil {
  1584. return m.DailyResetTimeStamp
  1585. }
  1586. return 0
  1587. }
  1588. func (m *RoleBase) GetRepressSkillPvpVal() int32 {
  1589. if m != nil {
  1590. return m.RepressSkillPvpVal
  1591. }
  1592. return 0
  1593. }
  1594. func (m *RoleBase) GetBtZhenDayRecharge() float32 {
  1595. if m != nil {
  1596. return m.BtZhenDayRecharge
  1597. }
  1598. return 0
  1599. }
  1600. func (m *RoleBase) GetBtJiaDayRecharge() int32 {
  1601. if m != nil {
  1602. return m.BtJiaDayRecharge
  1603. }
  1604. return 0
  1605. }
  1606. func (m *RoleBase) GetBtJiaTotalRecharge() uint64 {
  1607. if m != nil {
  1608. return m.BtJiaTotalRecharge
  1609. }
  1610. return 0
  1611. }
  1612. // 神器槽位详细信息
  1613. type SkillEquipSlotDetailData struct {
  1614. SkillEquipId uint32 `protobuf:"varint,1,opt,name=skill_equip_id,json=skillEquipId,proto3" json:"skill_equip_id,omitempty"`
  1615. SkillEquipConfigId int32 `protobuf:"varint,2,opt,name=skill_equip_config_id,json=skillEquipConfigId,proto3" json:"skill_equip_config_id,omitempty"`
  1616. SkillEquipStarLevel int32 `protobuf:"varint,3,opt,name=skill_equip_star_level,json=skillEquipStarLevel,proto3" json:"skill_equip_star_level,omitempty"`
  1617. SlotLevel int32 `protobuf:"varint,4,opt,name=slot_level,json=slotLevel,proto3" json:"slot_level,omitempty"`
  1618. SlotAttrs []*KeyValueType `protobuf:"bytes,5,rep,name=slot_attrs,json=slotAttrs,proto3" json:"slot_attrs,omitempty"`
  1619. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1620. XXX_unrecognized []byte `json:"-"`
  1621. XXX_sizecache int32 `json:"-"`
  1622. }
  1623. func (m *SkillEquipSlotDetailData) Reset() { *m = SkillEquipSlotDetailData{} }
  1624. func (m *SkillEquipSlotDetailData) String() string { return proto.CompactTextString(m) }
  1625. func (*SkillEquipSlotDetailData) ProtoMessage() {}
  1626. func (*SkillEquipSlotDetailData) Descriptor() ([]byte, []int) {
  1627. return fileDescriptor_116e343673f7ffaf, []int{25}
  1628. }
  1629. func (m *SkillEquipSlotDetailData) XXX_Unmarshal(b []byte) error {
  1630. return xxx_messageInfo_SkillEquipSlotDetailData.Unmarshal(m, b)
  1631. }
  1632. func (m *SkillEquipSlotDetailData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1633. return xxx_messageInfo_SkillEquipSlotDetailData.Marshal(b, m, deterministic)
  1634. }
  1635. func (m *SkillEquipSlotDetailData) XXX_Merge(src proto.Message) {
  1636. xxx_messageInfo_SkillEquipSlotDetailData.Merge(m, src)
  1637. }
  1638. func (m *SkillEquipSlotDetailData) XXX_Size() int {
  1639. return xxx_messageInfo_SkillEquipSlotDetailData.Size(m)
  1640. }
  1641. func (m *SkillEquipSlotDetailData) XXX_DiscardUnknown() {
  1642. xxx_messageInfo_SkillEquipSlotDetailData.DiscardUnknown(m)
  1643. }
  1644. var xxx_messageInfo_SkillEquipSlotDetailData proto.InternalMessageInfo
  1645. func (m *SkillEquipSlotDetailData) GetSkillEquipId() uint32 {
  1646. if m != nil {
  1647. return m.SkillEquipId
  1648. }
  1649. return 0
  1650. }
  1651. func (m *SkillEquipSlotDetailData) GetSkillEquipConfigId() int32 {
  1652. if m != nil {
  1653. return m.SkillEquipConfigId
  1654. }
  1655. return 0
  1656. }
  1657. func (m *SkillEquipSlotDetailData) GetSkillEquipStarLevel() int32 {
  1658. if m != nil {
  1659. return m.SkillEquipStarLevel
  1660. }
  1661. return 0
  1662. }
  1663. func (m *SkillEquipSlotDetailData) GetSlotLevel() int32 {
  1664. if m != nil {
  1665. return m.SlotLevel
  1666. }
  1667. return 0
  1668. }
  1669. func (m *SkillEquipSlotDetailData) GetSlotAttrs() []*KeyValueType {
  1670. if m != nil {
  1671. return m.SlotAttrs
  1672. }
  1673. return nil
  1674. }
  1675. // 神器槽位列表详细数据
  1676. type SkillEquipSlotData struct {
  1677. HeroId int32 `protobuf:"varint,1,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  1678. SlotList []*SkillEquipSlotDetailData `protobuf:"bytes,2,rep,name=slot_list,json=slotList,proto3" json:"slot_list,omitempty"`
  1679. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1680. XXX_unrecognized []byte `json:"-"`
  1681. XXX_sizecache int32 `json:"-"`
  1682. }
  1683. func (m *SkillEquipSlotData) Reset() { *m = SkillEquipSlotData{} }
  1684. func (m *SkillEquipSlotData) String() string { return proto.CompactTextString(m) }
  1685. func (*SkillEquipSlotData) ProtoMessage() {}
  1686. func (*SkillEquipSlotData) Descriptor() ([]byte, []int) {
  1687. return fileDescriptor_116e343673f7ffaf, []int{26}
  1688. }
  1689. func (m *SkillEquipSlotData) XXX_Unmarshal(b []byte) error {
  1690. return xxx_messageInfo_SkillEquipSlotData.Unmarshal(m, b)
  1691. }
  1692. func (m *SkillEquipSlotData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1693. return xxx_messageInfo_SkillEquipSlotData.Marshal(b, m, deterministic)
  1694. }
  1695. func (m *SkillEquipSlotData) XXX_Merge(src proto.Message) {
  1696. xxx_messageInfo_SkillEquipSlotData.Merge(m, src)
  1697. }
  1698. func (m *SkillEquipSlotData) XXX_Size() int {
  1699. return xxx_messageInfo_SkillEquipSlotData.Size(m)
  1700. }
  1701. func (m *SkillEquipSlotData) XXX_DiscardUnknown() {
  1702. xxx_messageInfo_SkillEquipSlotData.DiscardUnknown(m)
  1703. }
  1704. var xxx_messageInfo_SkillEquipSlotData proto.InternalMessageInfo
  1705. func (m *SkillEquipSlotData) GetHeroId() int32 {
  1706. if m != nil {
  1707. return m.HeroId
  1708. }
  1709. return 0
  1710. }
  1711. func (m *SkillEquipSlotData) GetSlotList() []*SkillEquipSlotDetailData {
  1712. if m != nil {
  1713. return m.SlotList
  1714. }
  1715. return nil
  1716. }
  1717. // 神器数据
  1718. type SkillEquipData struct {
  1719. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1720. ConfigId int32 `protobuf:"varint,2,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  1721. StarLevel int32 `protobuf:"varint,3,opt,name=star_level,json=starLevel,proto3" json:"star_level,omitempty"`
  1722. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1723. XXX_unrecognized []byte `json:"-"`
  1724. XXX_sizecache int32 `json:"-"`
  1725. }
  1726. func (m *SkillEquipData) Reset() { *m = SkillEquipData{} }
  1727. func (m *SkillEquipData) String() string { return proto.CompactTextString(m) }
  1728. func (*SkillEquipData) ProtoMessage() {}
  1729. func (*SkillEquipData) Descriptor() ([]byte, []int) {
  1730. return fileDescriptor_116e343673f7ffaf, []int{27}
  1731. }
  1732. func (m *SkillEquipData) XXX_Unmarshal(b []byte) error {
  1733. return xxx_messageInfo_SkillEquipData.Unmarshal(m, b)
  1734. }
  1735. func (m *SkillEquipData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1736. return xxx_messageInfo_SkillEquipData.Marshal(b, m, deterministic)
  1737. }
  1738. func (m *SkillEquipData) XXX_Merge(src proto.Message) {
  1739. xxx_messageInfo_SkillEquipData.Merge(m, src)
  1740. }
  1741. func (m *SkillEquipData) XXX_Size() int {
  1742. return xxx_messageInfo_SkillEquipData.Size(m)
  1743. }
  1744. func (m *SkillEquipData) XXX_DiscardUnknown() {
  1745. xxx_messageInfo_SkillEquipData.DiscardUnknown(m)
  1746. }
  1747. var xxx_messageInfo_SkillEquipData proto.InternalMessageInfo
  1748. func (m *SkillEquipData) GetId() uint32 {
  1749. if m != nil {
  1750. return m.Id
  1751. }
  1752. return 0
  1753. }
  1754. func (m *SkillEquipData) GetConfigId() int32 {
  1755. if m != nil {
  1756. return m.ConfigId
  1757. }
  1758. return 0
  1759. }
  1760. func (m *SkillEquipData) GetStarLevel() int32 {
  1761. if m != nil {
  1762. return m.StarLevel
  1763. }
  1764. return 0
  1765. }
  1766. type SkillEquipChangeData struct {
  1767. SkillEquipData *SkillEquipData `protobuf:"bytes,1,opt,name=skill_equip_data,json=skillEquipData,proto3" json:"skill_equip_data,omitempty"`
  1768. Add bool `protobuf:"varint,2,opt,name=add,proto3" json:"add,omitempty"`
  1769. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1770. XXX_unrecognized []byte `json:"-"`
  1771. XXX_sizecache int32 `json:"-"`
  1772. }
  1773. func (m *SkillEquipChangeData) Reset() { *m = SkillEquipChangeData{} }
  1774. func (m *SkillEquipChangeData) String() string { return proto.CompactTextString(m) }
  1775. func (*SkillEquipChangeData) ProtoMessage() {}
  1776. func (*SkillEquipChangeData) Descriptor() ([]byte, []int) {
  1777. return fileDescriptor_116e343673f7ffaf, []int{28}
  1778. }
  1779. func (m *SkillEquipChangeData) XXX_Unmarshal(b []byte) error {
  1780. return xxx_messageInfo_SkillEquipChangeData.Unmarshal(m, b)
  1781. }
  1782. func (m *SkillEquipChangeData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1783. return xxx_messageInfo_SkillEquipChangeData.Marshal(b, m, deterministic)
  1784. }
  1785. func (m *SkillEquipChangeData) XXX_Merge(src proto.Message) {
  1786. xxx_messageInfo_SkillEquipChangeData.Merge(m, src)
  1787. }
  1788. func (m *SkillEquipChangeData) XXX_Size() int {
  1789. return xxx_messageInfo_SkillEquipChangeData.Size(m)
  1790. }
  1791. func (m *SkillEquipChangeData) XXX_DiscardUnknown() {
  1792. xxx_messageInfo_SkillEquipChangeData.DiscardUnknown(m)
  1793. }
  1794. var xxx_messageInfo_SkillEquipChangeData proto.InternalMessageInfo
  1795. func (m *SkillEquipChangeData) GetSkillEquipData() *SkillEquipData {
  1796. if m != nil {
  1797. return m.SkillEquipData
  1798. }
  1799. return nil
  1800. }
  1801. func (m *SkillEquipChangeData) GetAdd() bool {
  1802. if m != nil {
  1803. return m.Add
  1804. }
  1805. return false
  1806. }
  1807. // 玩家神器列表
  1808. type RoleSkillEquip struct {
  1809. MaxSkillEquipId uint32 `protobuf:"varint,1,opt,name=max_skill_equip_id,json=maxSkillEquipId,proto3" json:"max_skill_equip_id,omitempty"`
  1810. SkillEquipList []*SkillEquipData `protobuf:"bytes,2,rep,name=skill_equip_list,json=skillEquipList,proto3" json:"skill_equip_list,omitempty"`
  1811. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1812. XXX_unrecognized []byte `json:"-"`
  1813. XXX_sizecache int32 `json:"-"`
  1814. }
  1815. func (m *RoleSkillEquip) Reset() { *m = RoleSkillEquip{} }
  1816. func (m *RoleSkillEquip) String() string { return proto.CompactTextString(m) }
  1817. func (*RoleSkillEquip) ProtoMessage() {}
  1818. func (*RoleSkillEquip) Descriptor() ([]byte, []int) {
  1819. return fileDescriptor_116e343673f7ffaf, []int{29}
  1820. }
  1821. func (m *RoleSkillEquip) XXX_Unmarshal(b []byte) error {
  1822. return xxx_messageInfo_RoleSkillEquip.Unmarshal(m, b)
  1823. }
  1824. func (m *RoleSkillEquip) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1825. return xxx_messageInfo_RoleSkillEquip.Marshal(b, m, deterministic)
  1826. }
  1827. func (m *RoleSkillEquip) XXX_Merge(src proto.Message) {
  1828. xxx_messageInfo_RoleSkillEquip.Merge(m, src)
  1829. }
  1830. func (m *RoleSkillEquip) XXX_Size() int {
  1831. return xxx_messageInfo_RoleSkillEquip.Size(m)
  1832. }
  1833. func (m *RoleSkillEquip) XXX_DiscardUnknown() {
  1834. xxx_messageInfo_RoleSkillEquip.DiscardUnknown(m)
  1835. }
  1836. var xxx_messageInfo_RoleSkillEquip proto.InternalMessageInfo
  1837. func (m *RoleSkillEquip) GetMaxSkillEquipId() uint32 {
  1838. if m != nil {
  1839. return m.MaxSkillEquipId
  1840. }
  1841. return 0
  1842. }
  1843. func (m *RoleSkillEquip) GetSkillEquipList() []*SkillEquipData {
  1844. if m != nil {
  1845. return m.SkillEquipList
  1846. }
  1847. return nil
  1848. }
  1849. // ///////////////////////////////////////////////////////////////////////////
  1850. type EquipData struct {
  1851. ConfigId int32 `protobuf:"varint,1,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  1852. Num int32 `protobuf:"varint,2,opt,name=num,proto3" json:"num,omitempty"`
  1853. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1854. XXX_unrecognized []byte `json:"-"`
  1855. XXX_sizecache int32 `json:"-"`
  1856. }
  1857. func (m *EquipData) Reset() { *m = EquipData{} }
  1858. func (m *EquipData) String() string { return proto.CompactTextString(m) }
  1859. func (*EquipData) ProtoMessage() {}
  1860. func (*EquipData) Descriptor() ([]byte, []int) {
  1861. return fileDescriptor_116e343673f7ffaf, []int{30}
  1862. }
  1863. func (m *EquipData) XXX_Unmarshal(b []byte) error {
  1864. return xxx_messageInfo_EquipData.Unmarshal(m, b)
  1865. }
  1866. func (m *EquipData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1867. return xxx_messageInfo_EquipData.Marshal(b, m, deterministic)
  1868. }
  1869. func (m *EquipData) XXX_Merge(src proto.Message) {
  1870. xxx_messageInfo_EquipData.Merge(m, src)
  1871. }
  1872. func (m *EquipData) XXX_Size() int {
  1873. return xxx_messageInfo_EquipData.Size(m)
  1874. }
  1875. func (m *EquipData) XXX_DiscardUnknown() {
  1876. xxx_messageInfo_EquipData.DiscardUnknown(m)
  1877. }
  1878. var xxx_messageInfo_EquipData proto.InternalMessageInfo
  1879. func (m *EquipData) GetConfigId() int32 {
  1880. if m != nil {
  1881. return m.ConfigId
  1882. }
  1883. return 0
  1884. }
  1885. func (m *EquipData) GetNum() int32 {
  1886. if m != nil {
  1887. return m.Num
  1888. }
  1889. return 0
  1890. }
  1891. type RoleEquip struct {
  1892. EquipList []*EquipData `protobuf:"bytes,1,rep,name=equip_list,json=equipList,proto3" json:"equip_list,omitempty"`
  1893. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1894. XXX_unrecognized []byte `json:"-"`
  1895. XXX_sizecache int32 `json:"-"`
  1896. }
  1897. func (m *RoleEquip) Reset() { *m = RoleEquip{} }
  1898. func (m *RoleEquip) String() string { return proto.CompactTextString(m) }
  1899. func (*RoleEquip) ProtoMessage() {}
  1900. func (*RoleEquip) Descriptor() ([]byte, []int) {
  1901. return fileDescriptor_116e343673f7ffaf, []int{31}
  1902. }
  1903. func (m *RoleEquip) XXX_Unmarshal(b []byte) error {
  1904. return xxx_messageInfo_RoleEquip.Unmarshal(m, b)
  1905. }
  1906. func (m *RoleEquip) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1907. return xxx_messageInfo_RoleEquip.Marshal(b, m, deterministic)
  1908. }
  1909. func (m *RoleEquip) XXX_Merge(src proto.Message) {
  1910. xxx_messageInfo_RoleEquip.Merge(m, src)
  1911. }
  1912. func (m *RoleEquip) XXX_Size() int {
  1913. return xxx_messageInfo_RoleEquip.Size(m)
  1914. }
  1915. func (m *RoleEquip) XXX_DiscardUnknown() {
  1916. xxx_messageInfo_RoleEquip.DiscardUnknown(m)
  1917. }
  1918. var xxx_messageInfo_RoleEquip proto.InternalMessageInfo
  1919. func (m *RoleEquip) GetEquipList() []*EquipData {
  1920. if m != nil {
  1921. return m.EquipList
  1922. }
  1923. return nil
  1924. }
  1925. // 道具数据
  1926. type ItemData struct {
  1927. Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  1928. ConfigId int32 `protobuf:"varint,2,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  1929. Num uint32 `protobuf:"varint,3,opt,name=num,proto3" json:"num,omitempty"`
  1930. TimeStamp uint32 `protobuf:"varint,4,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
  1931. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1932. XXX_unrecognized []byte `json:"-"`
  1933. XXX_sizecache int32 `json:"-"`
  1934. }
  1935. func (m *ItemData) Reset() { *m = ItemData{} }
  1936. func (m *ItemData) String() string { return proto.CompactTextString(m) }
  1937. func (*ItemData) ProtoMessage() {}
  1938. func (*ItemData) Descriptor() ([]byte, []int) {
  1939. return fileDescriptor_116e343673f7ffaf, []int{32}
  1940. }
  1941. func (m *ItemData) XXX_Unmarshal(b []byte) error {
  1942. return xxx_messageInfo_ItemData.Unmarshal(m, b)
  1943. }
  1944. func (m *ItemData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1945. return xxx_messageInfo_ItemData.Marshal(b, m, deterministic)
  1946. }
  1947. func (m *ItemData) XXX_Merge(src proto.Message) {
  1948. xxx_messageInfo_ItemData.Merge(m, src)
  1949. }
  1950. func (m *ItemData) XXX_Size() int {
  1951. return xxx_messageInfo_ItemData.Size(m)
  1952. }
  1953. func (m *ItemData) XXX_DiscardUnknown() {
  1954. xxx_messageInfo_ItemData.DiscardUnknown(m)
  1955. }
  1956. var xxx_messageInfo_ItemData proto.InternalMessageInfo
  1957. func (m *ItemData) GetId() uint64 {
  1958. if m != nil {
  1959. return m.Id
  1960. }
  1961. return 0
  1962. }
  1963. func (m *ItemData) GetConfigId() int32 {
  1964. if m != nil {
  1965. return m.ConfigId
  1966. }
  1967. return 0
  1968. }
  1969. func (m *ItemData) GetNum() uint32 {
  1970. if m != nil {
  1971. return m.Num
  1972. }
  1973. return 0
  1974. }
  1975. func (m *ItemData) GetTimeStamp() uint32 {
  1976. if m != nil {
  1977. return m.TimeStamp
  1978. }
  1979. return 0
  1980. }
  1981. // 碎片数据
  1982. type ChipData struct {
  1983. ConfigId int32 `protobuf:"varint,1,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  1984. Num uint32 `protobuf:"varint,2,opt,name=num,proto3" json:"num,omitempty"`
  1985. TimeStamp uint32 `protobuf:"varint,3,opt,name=time_stamp,json=timeStamp,proto3" json:"time_stamp,omitempty"`
  1986. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1987. XXX_unrecognized []byte `json:"-"`
  1988. XXX_sizecache int32 `json:"-"`
  1989. }
  1990. func (m *ChipData) Reset() { *m = ChipData{} }
  1991. func (m *ChipData) String() string { return proto.CompactTextString(m) }
  1992. func (*ChipData) ProtoMessage() {}
  1993. func (*ChipData) Descriptor() ([]byte, []int) {
  1994. return fileDescriptor_116e343673f7ffaf, []int{33}
  1995. }
  1996. func (m *ChipData) XXX_Unmarshal(b []byte) error {
  1997. return xxx_messageInfo_ChipData.Unmarshal(m, b)
  1998. }
  1999. func (m *ChipData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2000. return xxx_messageInfo_ChipData.Marshal(b, m, deterministic)
  2001. }
  2002. func (m *ChipData) XXX_Merge(src proto.Message) {
  2003. xxx_messageInfo_ChipData.Merge(m, src)
  2004. }
  2005. func (m *ChipData) XXX_Size() int {
  2006. return xxx_messageInfo_ChipData.Size(m)
  2007. }
  2008. func (m *ChipData) XXX_DiscardUnknown() {
  2009. xxx_messageInfo_ChipData.DiscardUnknown(m)
  2010. }
  2011. var xxx_messageInfo_ChipData proto.InternalMessageInfo
  2012. func (m *ChipData) GetConfigId() int32 {
  2013. if m != nil {
  2014. return m.ConfigId
  2015. }
  2016. return 0
  2017. }
  2018. func (m *ChipData) GetNum() uint32 {
  2019. if m != nil {
  2020. return m.Num
  2021. }
  2022. return 0
  2023. }
  2024. func (m *ChipData) GetTimeStamp() uint32 {
  2025. if m != nil {
  2026. return m.TimeStamp
  2027. }
  2028. return 0
  2029. }
  2030. type RoleBag struct {
  2031. ItemList []*ItemData `protobuf:"bytes,1,rep,name=item_list,json=itemList,proto3" json:"item_list,omitempty"`
  2032. BagCount int32 `protobuf:"varint,2,opt,name=bag_count,json=bagCount,proto3" json:"bag_count,omitempty"`
  2033. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2034. XXX_unrecognized []byte `json:"-"`
  2035. XXX_sizecache int32 `json:"-"`
  2036. }
  2037. func (m *RoleBag) Reset() { *m = RoleBag{} }
  2038. func (m *RoleBag) String() string { return proto.CompactTextString(m) }
  2039. func (*RoleBag) ProtoMessage() {}
  2040. func (*RoleBag) Descriptor() ([]byte, []int) {
  2041. return fileDescriptor_116e343673f7ffaf, []int{34}
  2042. }
  2043. func (m *RoleBag) XXX_Unmarshal(b []byte) error {
  2044. return xxx_messageInfo_RoleBag.Unmarshal(m, b)
  2045. }
  2046. func (m *RoleBag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2047. return xxx_messageInfo_RoleBag.Marshal(b, m, deterministic)
  2048. }
  2049. func (m *RoleBag) XXX_Merge(src proto.Message) {
  2050. xxx_messageInfo_RoleBag.Merge(m, src)
  2051. }
  2052. func (m *RoleBag) XXX_Size() int {
  2053. return xxx_messageInfo_RoleBag.Size(m)
  2054. }
  2055. func (m *RoleBag) XXX_DiscardUnknown() {
  2056. xxx_messageInfo_RoleBag.DiscardUnknown(m)
  2057. }
  2058. var xxx_messageInfo_RoleBag proto.InternalMessageInfo
  2059. func (m *RoleBag) GetItemList() []*ItemData {
  2060. if m != nil {
  2061. return m.ItemList
  2062. }
  2063. return nil
  2064. }
  2065. func (m *RoleBag) GetBagCount() int32 {
  2066. if m != nil {
  2067. return m.BagCount
  2068. }
  2069. return 0
  2070. }
  2071. type RoleHero struct {
  2072. HeroData []*HeroData `protobuf:"bytes,1,rep,name=hero_data,json=heroData,proto3" json:"hero_data,omitempty"`
  2073. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2074. XXX_unrecognized []byte `json:"-"`
  2075. XXX_sizecache int32 `json:"-"`
  2076. }
  2077. func (m *RoleHero) Reset() { *m = RoleHero{} }
  2078. func (m *RoleHero) String() string { return proto.CompactTextString(m) }
  2079. func (*RoleHero) ProtoMessage() {}
  2080. func (*RoleHero) Descriptor() ([]byte, []int) {
  2081. return fileDescriptor_116e343673f7ffaf, []int{35}
  2082. }
  2083. func (m *RoleHero) XXX_Unmarshal(b []byte) error {
  2084. return xxx_messageInfo_RoleHero.Unmarshal(m, b)
  2085. }
  2086. func (m *RoleHero) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2087. return xxx_messageInfo_RoleHero.Marshal(b, m, deterministic)
  2088. }
  2089. func (m *RoleHero) XXX_Merge(src proto.Message) {
  2090. xxx_messageInfo_RoleHero.Merge(m, src)
  2091. }
  2092. func (m *RoleHero) XXX_Size() int {
  2093. return xxx_messageInfo_RoleHero.Size(m)
  2094. }
  2095. func (m *RoleHero) XXX_DiscardUnknown() {
  2096. xxx_messageInfo_RoleHero.DiscardUnknown(m)
  2097. }
  2098. var xxx_messageInfo_RoleHero proto.InternalMessageInfo
  2099. func (m *RoleHero) GetHeroData() []*HeroData {
  2100. if m != nil {
  2101. return m.HeroData
  2102. }
  2103. return nil
  2104. }
  2105. type RoleChip struct {
  2106. ChipList []*ChipData `protobuf:"bytes,1,rep,name=chip_list,json=chipList,proto3" json:"chip_list,omitempty"`
  2107. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2108. XXX_unrecognized []byte `json:"-"`
  2109. XXX_sizecache int32 `json:"-"`
  2110. }
  2111. func (m *RoleChip) Reset() { *m = RoleChip{} }
  2112. func (m *RoleChip) String() string { return proto.CompactTextString(m) }
  2113. func (*RoleChip) ProtoMessage() {}
  2114. func (*RoleChip) Descriptor() ([]byte, []int) {
  2115. return fileDescriptor_116e343673f7ffaf, []int{36}
  2116. }
  2117. func (m *RoleChip) XXX_Unmarshal(b []byte) error {
  2118. return xxx_messageInfo_RoleChip.Unmarshal(m, b)
  2119. }
  2120. func (m *RoleChip) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2121. return xxx_messageInfo_RoleChip.Marshal(b, m, deterministic)
  2122. }
  2123. func (m *RoleChip) XXX_Merge(src proto.Message) {
  2124. xxx_messageInfo_RoleChip.Merge(m, src)
  2125. }
  2126. func (m *RoleChip) XXX_Size() int {
  2127. return xxx_messageInfo_RoleChip.Size(m)
  2128. }
  2129. func (m *RoleChip) XXX_DiscardUnknown() {
  2130. xxx_messageInfo_RoleChip.DiscardUnknown(m)
  2131. }
  2132. var xxx_messageInfo_RoleChip proto.InternalMessageInfo
  2133. func (m *RoleChip) GetChipList() []*ChipData {
  2134. if m != nil {
  2135. return m.ChipList
  2136. }
  2137. return nil
  2138. }
  2139. // 当前职业对应拥有的技能
  2140. type JobSkillData struct {
  2141. JobStage int32 `protobuf:"varint,1,opt,name=job_stage,json=jobStage,proto3" json:"job_stage,omitempty"`
  2142. UnlockSkillList []*KeyValueType `protobuf:"bytes,2,rep,name=unlock_skill_list,json=unlockSkillList,proto3" json:"unlock_skill_list,omitempty"`
  2143. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2144. XXX_unrecognized []byte `json:"-"`
  2145. XXX_sizecache int32 `json:"-"`
  2146. }
  2147. func (m *JobSkillData) Reset() { *m = JobSkillData{} }
  2148. func (m *JobSkillData) String() string { return proto.CompactTextString(m) }
  2149. func (*JobSkillData) ProtoMessage() {}
  2150. func (*JobSkillData) Descriptor() ([]byte, []int) {
  2151. return fileDescriptor_116e343673f7ffaf, []int{37}
  2152. }
  2153. func (m *JobSkillData) XXX_Unmarshal(b []byte) error {
  2154. return xxx_messageInfo_JobSkillData.Unmarshal(m, b)
  2155. }
  2156. func (m *JobSkillData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2157. return xxx_messageInfo_JobSkillData.Marshal(b, m, deterministic)
  2158. }
  2159. func (m *JobSkillData) XXX_Merge(src proto.Message) {
  2160. xxx_messageInfo_JobSkillData.Merge(m, src)
  2161. }
  2162. func (m *JobSkillData) XXX_Size() int {
  2163. return xxx_messageInfo_JobSkillData.Size(m)
  2164. }
  2165. func (m *JobSkillData) XXX_DiscardUnknown() {
  2166. xxx_messageInfo_JobSkillData.DiscardUnknown(m)
  2167. }
  2168. var xxx_messageInfo_JobSkillData proto.InternalMessageInfo
  2169. func (m *JobSkillData) GetJobStage() int32 {
  2170. if m != nil {
  2171. return m.JobStage
  2172. }
  2173. return 0
  2174. }
  2175. func (m *JobSkillData) GetUnlockSkillList() []*KeyValueType {
  2176. if m != nil {
  2177. return m.UnlockSkillList
  2178. }
  2179. return nil
  2180. }
  2181. // 技能槽位信息
  2182. type RoleSkillSlot struct {
  2183. SkillId int32 `protobuf:"varint,1,opt,name=skill_id,json=skillId,proto3" json:"skill_id,omitempty"`
  2184. Unlock int32 `protobuf:"varint,2,opt,name=unlock,proto3" json:"unlock,omitempty"`
  2185. DefaultSkillId int32 `protobuf:"varint,3,opt,name=default_skill_id,json=defaultSkillId,proto3" json:"default_skill_id,omitempty"`
  2186. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2187. XXX_unrecognized []byte `json:"-"`
  2188. XXX_sizecache int32 `json:"-"`
  2189. }
  2190. func (m *RoleSkillSlot) Reset() { *m = RoleSkillSlot{} }
  2191. func (m *RoleSkillSlot) String() string { return proto.CompactTextString(m) }
  2192. func (*RoleSkillSlot) ProtoMessage() {}
  2193. func (*RoleSkillSlot) Descriptor() ([]byte, []int) {
  2194. return fileDescriptor_116e343673f7ffaf, []int{38}
  2195. }
  2196. func (m *RoleSkillSlot) XXX_Unmarshal(b []byte) error {
  2197. return xxx_messageInfo_RoleSkillSlot.Unmarshal(m, b)
  2198. }
  2199. func (m *RoleSkillSlot) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2200. return xxx_messageInfo_RoleSkillSlot.Marshal(b, m, deterministic)
  2201. }
  2202. func (m *RoleSkillSlot) XXX_Merge(src proto.Message) {
  2203. xxx_messageInfo_RoleSkillSlot.Merge(m, src)
  2204. }
  2205. func (m *RoleSkillSlot) XXX_Size() int {
  2206. return xxx_messageInfo_RoleSkillSlot.Size(m)
  2207. }
  2208. func (m *RoleSkillSlot) XXX_DiscardUnknown() {
  2209. xxx_messageInfo_RoleSkillSlot.DiscardUnknown(m)
  2210. }
  2211. var xxx_messageInfo_RoleSkillSlot proto.InternalMessageInfo
  2212. func (m *RoleSkillSlot) GetSkillId() int32 {
  2213. if m != nil {
  2214. return m.SkillId
  2215. }
  2216. return 0
  2217. }
  2218. func (m *RoleSkillSlot) GetUnlock() int32 {
  2219. if m != nil {
  2220. return m.Unlock
  2221. }
  2222. return 0
  2223. }
  2224. func (m *RoleSkillSlot) GetDefaultSkillId() int32 {
  2225. if m != nil {
  2226. return m.DefaultSkillId
  2227. }
  2228. return 0
  2229. }
  2230. type RoleSkill struct {
  2231. JobSkillList []*JobSkillData `protobuf:"bytes,1,rep,name=job_skill_list,json=jobSkillList,proto3" json:"job_skill_list,omitempty"`
  2232. SkillList []*RoleSkillSlot `protobuf:"bytes,2,rep,name=skill_list,json=skillList,proto3" json:"skill_list,omitempty"`
  2233. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2234. XXX_unrecognized []byte `json:"-"`
  2235. XXX_sizecache int32 `json:"-"`
  2236. }
  2237. func (m *RoleSkill) Reset() { *m = RoleSkill{} }
  2238. func (m *RoleSkill) String() string { return proto.CompactTextString(m) }
  2239. func (*RoleSkill) ProtoMessage() {}
  2240. func (*RoleSkill) Descriptor() ([]byte, []int) {
  2241. return fileDescriptor_116e343673f7ffaf, []int{39}
  2242. }
  2243. func (m *RoleSkill) XXX_Unmarshal(b []byte) error {
  2244. return xxx_messageInfo_RoleSkill.Unmarshal(m, b)
  2245. }
  2246. func (m *RoleSkill) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2247. return xxx_messageInfo_RoleSkill.Marshal(b, m, deterministic)
  2248. }
  2249. func (m *RoleSkill) XXX_Merge(src proto.Message) {
  2250. xxx_messageInfo_RoleSkill.Merge(m, src)
  2251. }
  2252. func (m *RoleSkill) XXX_Size() int {
  2253. return xxx_messageInfo_RoleSkill.Size(m)
  2254. }
  2255. func (m *RoleSkill) XXX_DiscardUnknown() {
  2256. xxx_messageInfo_RoleSkill.DiscardUnknown(m)
  2257. }
  2258. var xxx_messageInfo_RoleSkill proto.InternalMessageInfo
  2259. func (m *RoleSkill) GetJobSkillList() []*JobSkillData {
  2260. if m != nil {
  2261. return m.JobSkillList
  2262. }
  2263. return nil
  2264. }
  2265. func (m *RoleSkill) GetSkillList() []*RoleSkillSlot {
  2266. if m != nil {
  2267. return m.SkillList
  2268. }
  2269. return nil
  2270. }
  2271. type CardData struct {
  2272. ConfigId int32 `protobuf:"varint,1,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  2273. Num int32 `protobuf:"varint,2,opt,name=num,proto3" json:"num,omitempty"`
  2274. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2275. XXX_unrecognized []byte `json:"-"`
  2276. XXX_sizecache int32 `json:"-"`
  2277. }
  2278. func (m *CardData) Reset() { *m = CardData{} }
  2279. func (m *CardData) String() string { return proto.CompactTextString(m) }
  2280. func (*CardData) ProtoMessage() {}
  2281. func (*CardData) Descriptor() ([]byte, []int) {
  2282. return fileDescriptor_116e343673f7ffaf, []int{40}
  2283. }
  2284. func (m *CardData) XXX_Unmarshal(b []byte) error {
  2285. return xxx_messageInfo_CardData.Unmarshal(m, b)
  2286. }
  2287. func (m *CardData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2288. return xxx_messageInfo_CardData.Marshal(b, m, deterministic)
  2289. }
  2290. func (m *CardData) XXX_Merge(src proto.Message) {
  2291. xxx_messageInfo_CardData.Merge(m, src)
  2292. }
  2293. func (m *CardData) XXX_Size() int {
  2294. return xxx_messageInfo_CardData.Size(m)
  2295. }
  2296. func (m *CardData) XXX_DiscardUnknown() {
  2297. xxx_messageInfo_CardData.DiscardUnknown(m)
  2298. }
  2299. var xxx_messageInfo_CardData proto.InternalMessageInfo
  2300. func (m *CardData) GetConfigId() int32 {
  2301. if m != nil {
  2302. return m.ConfigId
  2303. }
  2304. return 0
  2305. }
  2306. func (m *CardData) GetNum() int32 {
  2307. if m != nil {
  2308. return m.Num
  2309. }
  2310. return 0
  2311. }
  2312. type CardHandBook struct {
  2313. CardId int32 `protobuf:"varint,1,opt,name=card_id,json=cardId,proto3" json:"card_id,omitempty"`
  2314. CardLevel int32 `protobuf:"varint,2,opt,name=card_level,json=cardLevel,proto3" json:"card_level,omitempty"`
  2315. RewardRec int32 `protobuf:"varint,3,opt,name=reward_rec,json=rewardRec,proto3" json:"reward_rec,omitempty"`
  2316. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2317. XXX_unrecognized []byte `json:"-"`
  2318. XXX_sizecache int32 `json:"-"`
  2319. }
  2320. func (m *CardHandBook) Reset() { *m = CardHandBook{} }
  2321. func (m *CardHandBook) String() string { return proto.CompactTextString(m) }
  2322. func (*CardHandBook) ProtoMessage() {}
  2323. func (*CardHandBook) Descriptor() ([]byte, []int) {
  2324. return fileDescriptor_116e343673f7ffaf, []int{41}
  2325. }
  2326. func (m *CardHandBook) XXX_Unmarshal(b []byte) error {
  2327. return xxx_messageInfo_CardHandBook.Unmarshal(m, b)
  2328. }
  2329. func (m *CardHandBook) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2330. return xxx_messageInfo_CardHandBook.Marshal(b, m, deterministic)
  2331. }
  2332. func (m *CardHandBook) XXX_Merge(src proto.Message) {
  2333. xxx_messageInfo_CardHandBook.Merge(m, src)
  2334. }
  2335. func (m *CardHandBook) XXX_Size() int {
  2336. return xxx_messageInfo_CardHandBook.Size(m)
  2337. }
  2338. func (m *CardHandBook) XXX_DiscardUnknown() {
  2339. xxx_messageInfo_CardHandBook.DiscardUnknown(m)
  2340. }
  2341. var xxx_messageInfo_CardHandBook proto.InternalMessageInfo
  2342. func (m *CardHandBook) GetCardId() int32 {
  2343. if m != nil {
  2344. return m.CardId
  2345. }
  2346. return 0
  2347. }
  2348. func (m *CardHandBook) GetCardLevel() int32 {
  2349. if m != nil {
  2350. return m.CardLevel
  2351. }
  2352. return 0
  2353. }
  2354. func (m *CardHandBook) GetRewardRec() int32 {
  2355. if m != nil {
  2356. return m.RewardRec
  2357. }
  2358. return 0
  2359. }
  2360. type CardCollect struct {
  2361. CardQuality int32 `protobuf:"varint,1,opt,name=card_quality,json=cardQuality,proto3" json:"card_quality,omitempty"`
  2362. CardBook []*CardHandBook `protobuf:"bytes,2,rep,name=card_book,json=cardBook,proto3" json:"card_book,omitempty"`
  2363. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2364. XXX_unrecognized []byte `json:"-"`
  2365. XXX_sizecache int32 `json:"-"`
  2366. }
  2367. func (m *CardCollect) Reset() { *m = CardCollect{} }
  2368. func (m *CardCollect) String() string { return proto.CompactTextString(m) }
  2369. func (*CardCollect) ProtoMessage() {}
  2370. func (*CardCollect) Descriptor() ([]byte, []int) {
  2371. return fileDescriptor_116e343673f7ffaf, []int{42}
  2372. }
  2373. func (m *CardCollect) XXX_Unmarshal(b []byte) error {
  2374. return xxx_messageInfo_CardCollect.Unmarshal(m, b)
  2375. }
  2376. func (m *CardCollect) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2377. return xxx_messageInfo_CardCollect.Marshal(b, m, deterministic)
  2378. }
  2379. func (m *CardCollect) XXX_Merge(src proto.Message) {
  2380. xxx_messageInfo_CardCollect.Merge(m, src)
  2381. }
  2382. func (m *CardCollect) XXX_Size() int {
  2383. return xxx_messageInfo_CardCollect.Size(m)
  2384. }
  2385. func (m *CardCollect) XXX_DiscardUnknown() {
  2386. xxx_messageInfo_CardCollect.DiscardUnknown(m)
  2387. }
  2388. var xxx_messageInfo_CardCollect proto.InternalMessageInfo
  2389. func (m *CardCollect) GetCardQuality() int32 {
  2390. if m != nil {
  2391. return m.CardQuality
  2392. }
  2393. return 0
  2394. }
  2395. func (m *CardCollect) GetCardBook() []*CardHandBook {
  2396. if m != nil {
  2397. return m.CardBook
  2398. }
  2399. return nil
  2400. }
  2401. type RoleCard struct {
  2402. CardList []*CardData `protobuf:"bytes,1,rep,name=card_list,json=cardList,proto3" json:"card_list,omitempty"`
  2403. CardSlotList []int32 `protobuf:"varint,2,rep,packed,name=card_slot_list,json=cardSlotList,proto3" json:"card_slot_list,omitempty"`
  2404. CardCollect []*CardCollect `protobuf:"bytes,3,rep,name=card_collect,json=cardCollect,proto3" json:"card_collect,omitempty"`
  2405. TotalCardNumList []*KeyValueType `protobuf:"bytes,4,rep,name=total_card_num_list,json=totalCardNumList,proto3" json:"total_card_num_list,omitempty"`
  2406. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2407. XXX_unrecognized []byte `json:"-"`
  2408. XXX_sizecache int32 `json:"-"`
  2409. }
  2410. func (m *RoleCard) Reset() { *m = RoleCard{} }
  2411. func (m *RoleCard) String() string { return proto.CompactTextString(m) }
  2412. func (*RoleCard) ProtoMessage() {}
  2413. func (*RoleCard) Descriptor() ([]byte, []int) {
  2414. return fileDescriptor_116e343673f7ffaf, []int{43}
  2415. }
  2416. func (m *RoleCard) XXX_Unmarshal(b []byte) error {
  2417. return xxx_messageInfo_RoleCard.Unmarshal(m, b)
  2418. }
  2419. func (m *RoleCard) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2420. return xxx_messageInfo_RoleCard.Marshal(b, m, deterministic)
  2421. }
  2422. func (m *RoleCard) XXX_Merge(src proto.Message) {
  2423. xxx_messageInfo_RoleCard.Merge(m, src)
  2424. }
  2425. func (m *RoleCard) XXX_Size() int {
  2426. return xxx_messageInfo_RoleCard.Size(m)
  2427. }
  2428. func (m *RoleCard) XXX_DiscardUnknown() {
  2429. xxx_messageInfo_RoleCard.DiscardUnknown(m)
  2430. }
  2431. var xxx_messageInfo_RoleCard proto.InternalMessageInfo
  2432. func (m *RoleCard) GetCardList() []*CardData {
  2433. if m != nil {
  2434. return m.CardList
  2435. }
  2436. return nil
  2437. }
  2438. func (m *RoleCard) GetCardSlotList() []int32 {
  2439. if m != nil {
  2440. return m.CardSlotList
  2441. }
  2442. return nil
  2443. }
  2444. func (m *RoleCard) GetCardCollect() []*CardCollect {
  2445. if m != nil {
  2446. return m.CardCollect
  2447. }
  2448. return nil
  2449. }
  2450. func (m *RoleCard) GetTotalCardNumList() []*KeyValueType {
  2451. if m != nil {
  2452. return m.TotalCardNumList
  2453. }
  2454. return nil
  2455. }
  2456. type RoleFashionData struct {
  2457. FashionId int32 `protobuf:"varint,1,opt,name=fashion_id,json=fashionId,proto3" json:"fashion_id,omitempty"`
  2458. FashionLvl int32 `protobuf:"varint,2,opt,name=fashion_lvl,json=fashionLvl,proto3" json:"fashion_lvl,omitempty"`
  2459. FashionWear bool `protobuf:"varint,3,opt,name=fashion_wear,json=fashionWear,proto3" json:"fashion_wear,omitempty"`
  2460. ResetAttrs []*FashionAttr `protobuf:"bytes,4,rep,name=resetAttrs,proto3" json:"resetAttrs,omitempty"`
  2461. Attrs []*FashionAttr `protobuf:"bytes,5,rep,name=attrs,proto3" json:"attrs,omitempty"`
  2462. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2463. XXX_unrecognized []byte `json:"-"`
  2464. XXX_sizecache int32 `json:"-"`
  2465. }
  2466. func (m *RoleFashionData) Reset() { *m = RoleFashionData{} }
  2467. func (m *RoleFashionData) String() string { return proto.CompactTextString(m) }
  2468. func (*RoleFashionData) ProtoMessage() {}
  2469. func (*RoleFashionData) Descriptor() ([]byte, []int) {
  2470. return fileDescriptor_116e343673f7ffaf, []int{44}
  2471. }
  2472. func (m *RoleFashionData) XXX_Unmarshal(b []byte) error {
  2473. return xxx_messageInfo_RoleFashionData.Unmarshal(m, b)
  2474. }
  2475. func (m *RoleFashionData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2476. return xxx_messageInfo_RoleFashionData.Marshal(b, m, deterministic)
  2477. }
  2478. func (m *RoleFashionData) XXX_Merge(src proto.Message) {
  2479. xxx_messageInfo_RoleFashionData.Merge(m, src)
  2480. }
  2481. func (m *RoleFashionData) XXX_Size() int {
  2482. return xxx_messageInfo_RoleFashionData.Size(m)
  2483. }
  2484. func (m *RoleFashionData) XXX_DiscardUnknown() {
  2485. xxx_messageInfo_RoleFashionData.DiscardUnknown(m)
  2486. }
  2487. var xxx_messageInfo_RoleFashionData proto.InternalMessageInfo
  2488. func (m *RoleFashionData) GetFashionId() int32 {
  2489. if m != nil {
  2490. return m.FashionId
  2491. }
  2492. return 0
  2493. }
  2494. func (m *RoleFashionData) GetFashionLvl() int32 {
  2495. if m != nil {
  2496. return m.FashionLvl
  2497. }
  2498. return 0
  2499. }
  2500. func (m *RoleFashionData) GetFashionWear() bool {
  2501. if m != nil {
  2502. return m.FashionWear
  2503. }
  2504. return false
  2505. }
  2506. func (m *RoleFashionData) GetResetAttrs() []*FashionAttr {
  2507. if m != nil {
  2508. return m.ResetAttrs
  2509. }
  2510. return nil
  2511. }
  2512. func (m *RoleFashionData) GetAttrs() []*FashionAttr {
  2513. if m != nil {
  2514. return m.Attrs
  2515. }
  2516. return nil
  2517. }
  2518. type RoleFashion struct {
  2519. FashionList []int32 `protobuf:"varint,1,rep,packed,name=fashion_list,json=fashionList,proto3" json:"fashion_list,omitempty"`
  2520. FashionData []*RoleFashionData `protobuf:"bytes,2,rep,name=fashion_data,json=fashionData,proto3" json:"fashion_data,omitempty"`
  2521. Lvs []*KeyValueType `protobuf:"bytes,3,rep,name=lvs,proto3" json:"lvs,omitempty"`
  2522. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2523. XXX_unrecognized []byte `json:"-"`
  2524. XXX_sizecache int32 `json:"-"`
  2525. }
  2526. func (m *RoleFashion) Reset() { *m = RoleFashion{} }
  2527. func (m *RoleFashion) String() string { return proto.CompactTextString(m) }
  2528. func (*RoleFashion) ProtoMessage() {}
  2529. func (*RoleFashion) Descriptor() ([]byte, []int) {
  2530. return fileDescriptor_116e343673f7ffaf, []int{45}
  2531. }
  2532. func (m *RoleFashion) XXX_Unmarshal(b []byte) error {
  2533. return xxx_messageInfo_RoleFashion.Unmarshal(m, b)
  2534. }
  2535. func (m *RoleFashion) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2536. return xxx_messageInfo_RoleFashion.Marshal(b, m, deterministic)
  2537. }
  2538. func (m *RoleFashion) XXX_Merge(src proto.Message) {
  2539. xxx_messageInfo_RoleFashion.Merge(m, src)
  2540. }
  2541. func (m *RoleFashion) XXX_Size() int {
  2542. return xxx_messageInfo_RoleFashion.Size(m)
  2543. }
  2544. func (m *RoleFashion) XXX_DiscardUnknown() {
  2545. xxx_messageInfo_RoleFashion.DiscardUnknown(m)
  2546. }
  2547. var xxx_messageInfo_RoleFashion proto.InternalMessageInfo
  2548. func (m *RoleFashion) GetFashionList() []int32 {
  2549. if m != nil {
  2550. return m.FashionList
  2551. }
  2552. return nil
  2553. }
  2554. func (m *RoleFashion) GetFashionData() []*RoleFashionData {
  2555. if m != nil {
  2556. return m.FashionData
  2557. }
  2558. return nil
  2559. }
  2560. func (m *RoleFashion) GetLvs() []*KeyValueType {
  2561. if m != nil {
  2562. return m.Lvs
  2563. }
  2564. return nil
  2565. }
  2566. // //////////////////////AOI
  2567. type RoleMap struct {
  2568. MapType int32 `protobuf:"varint,1,opt,name=map_type,json=mapType,proto3" json:"map_type,omitempty"`
  2569. Pos *Position `protobuf:"bytes,2,opt,name=pos,proto3" json:"pos,omitempty"`
  2570. WorldBossCount int32 `protobuf:"varint,3,opt,name=world_boss_count,json=worldBossCount,proto3" json:"world_boss_count,omitempty"`
  2571. WorldBossChallengeList []int32 `protobuf:"varint,4,rep,packed,name=world_boss_challenge_list,json=worldBossChallengeList,proto3" json:"world_boss_challenge_list,omitempty"`
  2572. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2573. XXX_unrecognized []byte `json:"-"`
  2574. XXX_sizecache int32 `json:"-"`
  2575. }
  2576. func (m *RoleMap) Reset() { *m = RoleMap{} }
  2577. func (m *RoleMap) String() string { return proto.CompactTextString(m) }
  2578. func (*RoleMap) ProtoMessage() {}
  2579. func (*RoleMap) Descriptor() ([]byte, []int) {
  2580. return fileDescriptor_116e343673f7ffaf, []int{46}
  2581. }
  2582. func (m *RoleMap) XXX_Unmarshal(b []byte) error {
  2583. return xxx_messageInfo_RoleMap.Unmarshal(m, b)
  2584. }
  2585. func (m *RoleMap) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2586. return xxx_messageInfo_RoleMap.Marshal(b, m, deterministic)
  2587. }
  2588. func (m *RoleMap) XXX_Merge(src proto.Message) {
  2589. xxx_messageInfo_RoleMap.Merge(m, src)
  2590. }
  2591. func (m *RoleMap) XXX_Size() int {
  2592. return xxx_messageInfo_RoleMap.Size(m)
  2593. }
  2594. func (m *RoleMap) XXX_DiscardUnknown() {
  2595. xxx_messageInfo_RoleMap.DiscardUnknown(m)
  2596. }
  2597. var xxx_messageInfo_RoleMap proto.InternalMessageInfo
  2598. func (m *RoleMap) GetMapType() int32 {
  2599. if m != nil {
  2600. return m.MapType
  2601. }
  2602. return 0
  2603. }
  2604. func (m *RoleMap) GetPos() *Position {
  2605. if m != nil {
  2606. return m.Pos
  2607. }
  2608. return nil
  2609. }
  2610. func (m *RoleMap) GetWorldBossCount() int32 {
  2611. if m != nil {
  2612. return m.WorldBossCount
  2613. }
  2614. return 0
  2615. }
  2616. func (m *RoleMap) GetWorldBossChallengeList() []int32 {
  2617. if m != nil {
  2618. return m.WorldBossChallengeList
  2619. }
  2620. return nil
  2621. }
  2622. type Position struct {
  2623. X float32 `protobuf:"fixed32,1,opt,name=x,proto3" json:"x,omitempty"`
  2624. Y float32 `protobuf:"fixed32,2,opt,name=y,proto3" json:"y,omitempty"`
  2625. Z float32 `protobuf:"fixed32,3,opt,name=z,proto3" json:"z,omitempty"`
  2626. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2627. XXX_unrecognized []byte `json:"-"`
  2628. XXX_sizecache int32 `json:"-"`
  2629. }
  2630. func (m *Position) Reset() { *m = Position{} }
  2631. func (m *Position) String() string { return proto.CompactTextString(m) }
  2632. func (*Position) ProtoMessage() {}
  2633. func (*Position) Descriptor() ([]byte, []int) {
  2634. return fileDescriptor_116e343673f7ffaf, []int{47}
  2635. }
  2636. func (m *Position) XXX_Unmarshal(b []byte) error {
  2637. return xxx_messageInfo_Position.Unmarshal(m, b)
  2638. }
  2639. func (m *Position) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2640. return xxx_messageInfo_Position.Marshal(b, m, deterministic)
  2641. }
  2642. func (m *Position) XXX_Merge(src proto.Message) {
  2643. xxx_messageInfo_Position.Merge(m, src)
  2644. }
  2645. func (m *Position) XXX_Size() int {
  2646. return xxx_messageInfo_Position.Size(m)
  2647. }
  2648. func (m *Position) XXX_DiscardUnknown() {
  2649. xxx_messageInfo_Position.DiscardUnknown(m)
  2650. }
  2651. var xxx_messageInfo_Position proto.InternalMessageInfo
  2652. func (m *Position) GetX() float32 {
  2653. if m != nil {
  2654. return m.X
  2655. }
  2656. return 0
  2657. }
  2658. func (m *Position) GetY() float32 {
  2659. if m != nil {
  2660. return m.Y
  2661. }
  2662. return 0
  2663. }
  2664. func (m *Position) GetZ() float32 {
  2665. if m != nil {
  2666. return m.Z
  2667. }
  2668. return 0
  2669. }
  2670. type Vector3 struct {
  2671. X float32 `protobuf:"fixed32,1,opt,name=x,proto3" json:"x,omitempty"`
  2672. Y float32 `protobuf:"fixed32,2,opt,name=y,proto3" json:"y,omitempty"`
  2673. Z float32 `protobuf:"fixed32,3,opt,name=z,proto3" json:"z,omitempty"`
  2674. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2675. XXX_unrecognized []byte `json:"-"`
  2676. XXX_sizecache int32 `json:"-"`
  2677. }
  2678. func (m *Vector3) Reset() { *m = Vector3{} }
  2679. func (m *Vector3) String() string { return proto.CompactTextString(m) }
  2680. func (*Vector3) ProtoMessage() {}
  2681. func (*Vector3) Descriptor() ([]byte, []int) {
  2682. return fileDescriptor_116e343673f7ffaf, []int{48}
  2683. }
  2684. func (m *Vector3) XXX_Unmarshal(b []byte) error {
  2685. return xxx_messageInfo_Vector3.Unmarshal(m, b)
  2686. }
  2687. func (m *Vector3) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2688. return xxx_messageInfo_Vector3.Marshal(b, m, deterministic)
  2689. }
  2690. func (m *Vector3) XXX_Merge(src proto.Message) {
  2691. xxx_messageInfo_Vector3.Merge(m, src)
  2692. }
  2693. func (m *Vector3) XXX_Size() int {
  2694. return xxx_messageInfo_Vector3.Size(m)
  2695. }
  2696. func (m *Vector3) XXX_DiscardUnknown() {
  2697. xxx_messageInfo_Vector3.DiscardUnknown(m)
  2698. }
  2699. var xxx_messageInfo_Vector3 proto.InternalMessageInfo
  2700. func (m *Vector3) GetX() float32 {
  2701. if m != nil {
  2702. return m.X
  2703. }
  2704. return 0
  2705. }
  2706. func (m *Vector3) GetY() float32 {
  2707. if m != nil {
  2708. return m.Y
  2709. }
  2710. return 0
  2711. }
  2712. func (m *Vector3) GetZ() float32 {
  2713. if m != nil {
  2714. return m.Z
  2715. }
  2716. return 0
  2717. }
  2718. type Player struct {
  2719. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  2720. Pos *Position `protobuf:"bytes,2,opt,name=pos,proto3" json:"pos,omitempty"`
  2721. UType int32 `protobuf:"varint,3,opt,name=u_type,json=uType,proto3" json:"u_type,omitempty"`
  2722. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2723. XXX_unrecognized []byte `json:"-"`
  2724. XXX_sizecache int32 `json:"-"`
  2725. }
  2726. func (m *Player) Reset() { *m = Player{} }
  2727. func (m *Player) String() string { return proto.CompactTextString(m) }
  2728. func (*Player) ProtoMessage() {}
  2729. func (*Player) Descriptor() ([]byte, []int) {
  2730. return fileDescriptor_116e343673f7ffaf, []int{49}
  2731. }
  2732. func (m *Player) XXX_Unmarshal(b []byte) error {
  2733. return xxx_messageInfo_Player.Unmarshal(m, b)
  2734. }
  2735. func (m *Player) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2736. return xxx_messageInfo_Player.Marshal(b, m, deterministic)
  2737. }
  2738. func (m *Player) XXX_Merge(src proto.Message) {
  2739. xxx_messageInfo_Player.Merge(m, src)
  2740. }
  2741. func (m *Player) XXX_Size() int {
  2742. return xxx_messageInfo_Player.Size(m)
  2743. }
  2744. func (m *Player) XXX_DiscardUnknown() {
  2745. xxx_messageInfo_Player.DiscardUnknown(m)
  2746. }
  2747. var xxx_messageInfo_Player proto.InternalMessageInfo
  2748. func (m *Player) GetUid() uint64 {
  2749. if m != nil {
  2750. return m.Uid
  2751. }
  2752. return 0
  2753. }
  2754. func (m *Player) GetPos() *Position {
  2755. if m != nil {
  2756. return m.Pos
  2757. }
  2758. return nil
  2759. }
  2760. func (m *Player) GetUType() int32 {
  2761. if m != nil {
  2762. return m.UType
  2763. }
  2764. return 0
  2765. }
  2766. // 地图显示玩家数据
  2767. type PlayerShowInfo struct {
  2768. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  2769. Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
  2770. VipLevel int32 `protobuf:"varint,3,opt,name=vip_level,json=vipLevel,proto3" json:"vip_level,omitempty"`
  2771. Gender int32 `protobuf:"varint,4,opt,name=gender,proto3" json:"gender,omitempty"`
  2772. JobId int32 `protobuf:"varint,5,opt,name=job_id,json=jobId,proto3" json:"job_id,omitempty"`
  2773. NickName string `protobuf:"bytes,6,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  2774. FashionData *FashionData `protobuf:"bytes,7,opt,name=fashion_data,json=fashionData,proto3" json:"fashion_data,omitempty"`
  2775. ActionId int32 `protobuf:"varint,8,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
  2776. HeadId int32 `protobuf:"varint,9,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  2777. ImgId int32 `protobuf:"varint,10,opt,name=img_id,json=imgId,proto3" json:"img_id,omitempty"`
  2778. HeadFrameId int32 `protobuf:"varint,11,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  2779. FightPower int32 `protobuf:"varint,12,opt,name=fight_power,json=fightPower,proto3" json:"fight_power,omitempty"`
  2780. FromZone int32 `protobuf:"varint,20,opt,name=from_zone,json=fromZone,proto3" json:"from_zone,omitempty"`
  2781. RealZone int32 `protobuf:"varint,21,opt,name=real_zone,json=realZone,proto3" json:"real_zone,omitempty"`
  2782. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2783. XXX_unrecognized []byte `json:"-"`
  2784. XXX_sizecache int32 `json:"-"`
  2785. }
  2786. func (m *PlayerShowInfo) Reset() { *m = PlayerShowInfo{} }
  2787. func (m *PlayerShowInfo) String() string { return proto.CompactTextString(m) }
  2788. func (*PlayerShowInfo) ProtoMessage() {}
  2789. func (*PlayerShowInfo) Descriptor() ([]byte, []int) {
  2790. return fileDescriptor_116e343673f7ffaf, []int{50}
  2791. }
  2792. func (m *PlayerShowInfo) XXX_Unmarshal(b []byte) error {
  2793. return xxx_messageInfo_PlayerShowInfo.Unmarshal(m, b)
  2794. }
  2795. func (m *PlayerShowInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2796. return xxx_messageInfo_PlayerShowInfo.Marshal(b, m, deterministic)
  2797. }
  2798. func (m *PlayerShowInfo) XXX_Merge(src proto.Message) {
  2799. xxx_messageInfo_PlayerShowInfo.Merge(m, src)
  2800. }
  2801. func (m *PlayerShowInfo) XXX_Size() int {
  2802. return xxx_messageInfo_PlayerShowInfo.Size(m)
  2803. }
  2804. func (m *PlayerShowInfo) XXX_DiscardUnknown() {
  2805. xxx_messageInfo_PlayerShowInfo.DiscardUnknown(m)
  2806. }
  2807. var xxx_messageInfo_PlayerShowInfo proto.InternalMessageInfo
  2808. func (m *PlayerShowInfo) GetUid() uint64 {
  2809. if m != nil {
  2810. return m.Uid
  2811. }
  2812. return 0
  2813. }
  2814. func (m *PlayerShowInfo) GetLevel() int32 {
  2815. if m != nil {
  2816. return m.Level
  2817. }
  2818. return 0
  2819. }
  2820. func (m *PlayerShowInfo) GetVipLevel() int32 {
  2821. if m != nil {
  2822. return m.VipLevel
  2823. }
  2824. return 0
  2825. }
  2826. func (m *PlayerShowInfo) GetGender() int32 {
  2827. if m != nil {
  2828. return m.Gender
  2829. }
  2830. return 0
  2831. }
  2832. func (m *PlayerShowInfo) GetJobId() int32 {
  2833. if m != nil {
  2834. return m.JobId
  2835. }
  2836. return 0
  2837. }
  2838. func (m *PlayerShowInfo) GetNickName() string {
  2839. if m != nil {
  2840. return m.NickName
  2841. }
  2842. return ""
  2843. }
  2844. func (m *PlayerShowInfo) GetFashionData() *FashionData {
  2845. if m != nil {
  2846. return m.FashionData
  2847. }
  2848. return nil
  2849. }
  2850. func (m *PlayerShowInfo) GetActionId() int32 {
  2851. if m != nil {
  2852. return m.ActionId
  2853. }
  2854. return 0
  2855. }
  2856. func (m *PlayerShowInfo) GetHeadId() int32 {
  2857. if m != nil {
  2858. return m.HeadId
  2859. }
  2860. return 0
  2861. }
  2862. func (m *PlayerShowInfo) GetImgId() int32 {
  2863. if m != nil {
  2864. return m.ImgId
  2865. }
  2866. return 0
  2867. }
  2868. func (m *PlayerShowInfo) GetHeadFrameId() int32 {
  2869. if m != nil {
  2870. return m.HeadFrameId
  2871. }
  2872. return 0
  2873. }
  2874. func (m *PlayerShowInfo) GetFightPower() int32 {
  2875. if m != nil {
  2876. return m.FightPower
  2877. }
  2878. return 0
  2879. }
  2880. func (m *PlayerShowInfo) GetFromZone() int32 {
  2881. if m != nil {
  2882. return m.FromZone
  2883. }
  2884. return 0
  2885. }
  2886. func (m *PlayerShowInfo) GetRealZone() int32 {
  2887. if m != nil {
  2888. return m.RealZone
  2889. }
  2890. return 0
  2891. }
  2892. // 玩家详细信息
  2893. type OtherPlayerDetailInfo struct {
  2894. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  2895. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2896. XXX_unrecognized []byte `json:"-"`
  2897. XXX_sizecache int32 `json:"-"`
  2898. }
  2899. func (m *OtherPlayerDetailInfo) Reset() { *m = OtherPlayerDetailInfo{} }
  2900. func (m *OtherPlayerDetailInfo) String() string { return proto.CompactTextString(m) }
  2901. func (*OtherPlayerDetailInfo) ProtoMessage() {}
  2902. func (*OtherPlayerDetailInfo) Descriptor() ([]byte, []int) {
  2903. return fileDescriptor_116e343673f7ffaf, []int{51}
  2904. }
  2905. func (m *OtherPlayerDetailInfo) XXX_Unmarshal(b []byte) error {
  2906. return xxx_messageInfo_OtherPlayerDetailInfo.Unmarshal(m, b)
  2907. }
  2908. func (m *OtherPlayerDetailInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2909. return xxx_messageInfo_OtherPlayerDetailInfo.Marshal(b, m, deterministic)
  2910. }
  2911. func (m *OtherPlayerDetailInfo) XXX_Merge(src proto.Message) {
  2912. xxx_messageInfo_OtherPlayerDetailInfo.Merge(m, src)
  2913. }
  2914. func (m *OtherPlayerDetailInfo) XXX_Size() int {
  2915. return xxx_messageInfo_OtherPlayerDetailInfo.Size(m)
  2916. }
  2917. func (m *OtherPlayerDetailInfo) XXX_DiscardUnknown() {
  2918. xxx_messageInfo_OtherPlayerDetailInfo.DiscardUnknown(m)
  2919. }
  2920. var xxx_messageInfo_OtherPlayerDetailInfo proto.InternalMessageInfo
  2921. func (m *OtherPlayerDetailInfo) GetUid() uint64 {
  2922. if m != nil {
  2923. return m.Uid
  2924. }
  2925. return 0
  2926. }
  2927. type UnitPosAndDir struct {
  2928. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  2929. Pos *Vector3 `protobuf:"bytes,2,opt,name=pos,proto3" json:"pos,omitempty"`
  2930. Dir *Vector3 `protobuf:"bytes,3,opt,name=dir,proto3" json:"dir,omitempty"`
  2931. IsOnGround bool `protobuf:"varint,4,opt,name=is_on_ground,json=isOnGround,proto3" json:"is_on_ground,omitempty"`
  2932. UType int32 `protobuf:"varint,5,opt,name=u_type,json=uType,proto3" json:"u_type,omitempty"`
  2933. ParamId int32 `protobuf:"varint,6,opt,name=param_id,json=paramId,proto3" json:"param_id,omitempty"`
  2934. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  2935. XXX_unrecognized []byte `json:"-"`
  2936. XXX_sizecache int32 `json:"-"`
  2937. }
  2938. func (m *UnitPosAndDir) Reset() { *m = UnitPosAndDir{} }
  2939. func (m *UnitPosAndDir) String() string { return proto.CompactTextString(m) }
  2940. func (*UnitPosAndDir) ProtoMessage() {}
  2941. func (*UnitPosAndDir) Descriptor() ([]byte, []int) {
  2942. return fileDescriptor_116e343673f7ffaf, []int{52}
  2943. }
  2944. func (m *UnitPosAndDir) XXX_Unmarshal(b []byte) error {
  2945. return xxx_messageInfo_UnitPosAndDir.Unmarshal(m, b)
  2946. }
  2947. func (m *UnitPosAndDir) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  2948. return xxx_messageInfo_UnitPosAndDir.Marshal(b, m, deterministic)
  2949. }
  2950. func (m *UnitPosAndDir) XXX_Merge(src proto.Message) {
  2951. xxx_messageInfo_UnitPosAndDir.Merge(m, src)
  2952. }
  2953. func (m *UnitPosAndDir) XXX_Size() int {
  2954. return xxx_messageInfo_UnitPosAndDir.Size(m)
  2955. }
  2956. func (m *UnitPosAndDir) XXX_DiscardUnknown() {
  2957. xxx_messageInfo_UnitPosAndDir.DiscardUnknown(m)
  2958. }
  2959. var xxx_messageInfo_UnitPosAndDir proto.InternalMessageInfo
  2960. func (m *UnitPosAndDir) GetUid() uint64 {
  2961. if m != nil {
  2962. return m.Uid
  2963. }
  2964. return 0
  2965. }
  2966. func (m *UnitPosAndDir) GetPos() *Vector3 {
  2967. if m != nil {
  2968. return m.Pos
  2969. }
  2970. return nil
  2971. }
  2972. func (m *UnitPosAndDir) GetDir() *Vector3 {
  2973. if m != nil {
  2974. return m.Dir
  2975. }
  2976. return nil
  2977. }
  2978. func (m *UnitPosAndDir) GetIsOnGround() bool {
  2979. if m != nil {
  2980. return m.IsOnGround
  2981. }
  2982. return false
  2983. }
  2984. func (m *UnitPosAndDir) GetUType() int32 {
  2985. if m != nil {
  2986. return m.UType
  2987. }
  2988. return 0
  2989. }
  2990. func (m *UnitPosAndDir) GetParamId() int32 {
  2991. if m != nil {
  2992. return m.ParamId
  2993. }
  2994. return 0
  2995. }
  2996. // //////////////////////Battle
  2997. // 快速战斗
  2998. type QuickBattleData struct {
  2999. MaxTimes int32 `protobuf:"varint,1,opt,name=max_times,json=maxTimes,proto3" json:"max_times,omitempty"`
  3000. DayTimes int32 `protobuf:"varint,2,opt,name=day_times,json=dayTimes,proto3" json:"day_times,omitempty"`
  3001. DrawTime uint64 `protobuf:"varint,3,opt,name=draw_time,json=drawTime,proto3" json:"draw_time,omitempty"`
  3002. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3003. XXX_unrecognized []byte `json:"-"`
  3004. XXX_sizecache int32 `json:"-"`
  3005. }
  3006. func (m *QuickBattleData) Reset() { *m = QuickBattleData{} }
  3007. func (m *QuickBattleData) String() string { return proto.CompactTextString(m) }
  3008. func (*QuickBattleData) ProtoMessage() {}
  3009. func (*QuickBattleData) Descriptor() ([]byte, []int) {
  3010. return fileDescriptor_116e343673f7ffaf, []int{53}
  3011. }
  3012. func (m *QuickBattleData) XXX_Unmarshal(b []byte) error {
  3013. return xxx_messageInfo_QuickBattleData.Unmarshal(m, b)
  3014. }
  3015. func (m *QuickBattleData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3016. return xxx_messageInfo_QuickBattleData.Marshal(b, m, deterministic)
  3017. }
  3018. func (m *QuickBattleData) XXX_Merge(src proto.Message) {
  3019. xxx_messageInfo_QuickBattleData.Merge(m, src)
  3020. }
  3021. func (m *QuickBattleData) XXX_Size() int {
  3022. return xxx_messageInfo_QuickBattleData.Size(m)
  3023. }
  3024. func (m *QuickBattleData) XXX_DiscardUnknown() {
  3025. xxx_messageInfo_QuickBattleData.DiscardUnknown(m)
  3026. }
  3027. var xxx_messageInfo_QuickBattleData proto.InternalMessageInfo
  3028. func (m *QuickBattleData) GetMaxTimes() int32 {
  3029. if m != nil {
  3030. return m.MaxTimes
  3031. }
  3032. return 0
  3033. }
  3034. func (m *QuickBattleData) GetDayTimes() int32 {
  3035. if m != nil {
  3036. return m.DayTimes
  3037. }
  3038. return 0
  3039. }
  3040. func (m *QuickBattleData) GetDrawTime() uint64 {
  3041. if m != nil {
  3042. return m.DrawTime
  3043. }
  3044. return 0
  3045. }
  3046. type BattleEvilBossData struct {
  3047. PosIdx int32 `protobuf:"varint,1,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  3048. BossId int32 `protobuf:"varint,2,opt,name=boss_id,json=bossId,proto3" json:"boss_id,omitempty"`
  3049. ExpireTime uint64 `protobuf:"varint,3,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"`
  3050. RewardEvilExp int32 `protobuf:"varint,4,opt,name=reward_evil_exp,json=rewardEvilExp,proto3" json:"reward_evil_exp,omitempty"`
  3051. RefreshTime int32 `protobuf:"varint,5,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  3052. Quality int32 `protobuf:"varint,6,opt,name=quality,proto3" json:"quality,omitempty"`
  3053. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3054. XXX_unrecognized []byte `json:"-"`
  3055. XXX_sizecache int32 `json:"-"`
  3056. }
  3057. func (m *BattleEvilBossData) Reset() { *m = BattleEvilBossData{} }
  3058. func (m *BattleEvilBossData) String() string { return proto.CompactTextString(m) }
  3059. func (*BattleEvilBossData) ProtoMessage() {}
  3060. func (*BattleEvilBossData) Descriptor() ([]byte, []int) {
  3061. return fileDescriptor_116e343673f7ffaf, []int{54}
  3062. }
  3063. func (m *BattleEvilBossData) XXX_Unmarshal(b []byte) error {
  3064. return xxx_messageInfo_BattleEvilBossData.Unmarshal(m, b)
  3065. }
  3066. func (m *BattleEvilBossData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3067. return xxx_messageInfo_BattleEvilBossData.Marshal(b, m, deterministic)
  3068. }
  3069. func (m *BattleEvilBossData) XXX_Merge(src proto.Message) {
  3070. xxx_messageInfo_BattleEvilBossData.Merge(m, src)
  3071. }
  3072. func (m *BattleEvilBossData) XXX_Size() int {
  3073. return xxx_messageInfo_BattleEvilBossData.Size(m)
  3074. }
  3075. func (m *BattleEvilBossData) XXX_DiscardUnknown() {
  3076. xxx_messageInfo_BattleEvilBossData.DiscardUnknown(m)
  3077. }
  3078. var xxx_messageInfo_BattleEvilBossData proto.InternalMessageInfo
  3079. func (m *BattleEvilBossData) GetPosIdx() int32 {
  3080. if m != nil {
  3081. return m.PosIdx
  3082. }
  3083. return 0
  3084. }
  3085. func (m *BattleEvilBossData) GetBossId() int32 {
  3086. if m != nil {
  3087. return m.BossId
  3088. }
  3089. return 0
  3090. }
  3091. func (m *BattleEvilBossData) GetExpireTime() uint64 {
  3092. if m != nil {
  3093. return m.ExpireTime
  3094. }
  3095. return 0
  3096. }
  3097. func (m *BattleEvilBossData) GetRewardEvilExp() int32 {
  3098. if m != nil {
  3099. return m.RewardEvilExp
  3100. }
  3101. return 0
  3102. }
  3103. func (m *BattleEvilBossData) GetRefreshTime() int32 {
  3104. if m != nil {
  3105. return m.RefreshTime
  3106. }
  3107. return 0
  3108. }
  3109. func (m *BattleEvilBossData) GetQuality() int32 {
  3110. if m != nil {
  3111. return m.Quality
  3112. }
  3113. return 0
  3114. }
  3115. type BattleEvilData struct {
  3116. FreeCount int32 `protobuf:"varint,1,opt,name=free_count,json=freeCount,proto3" json:"free_count,omitempty"`
  3117. FreeLimit bool `protobuf:"varint,2,opt,name=free_limit,json=freeLimit,proto3" json:"free_limit,omitempty"`
  3118. ChallengeCount int32 `protobuf:"varint,3,opt,name=challenge_count,json=challengeCount,proto3" json:"challenge_count,omitempty"`
  3119. EvilLevel int32 `protobuf:"varint,4,opt,name=evil_level,json=evilLevel,proto3" json:"evil_level,omitempty"`
  3120. BossList []*BattleEvilBossData `protobuf:"bytes,5,rep,name=boss_list,json=bossList,proto3" json:"boss_list,omitempty"`
  3121. QualityChallengeCount []*KeyValueType `protobuf:"bytes,6,rep,name=quality_challenge_count,json=qualityChallengeCount,proto3" json:"quality_challenge_count,omitempty"`
  3122. TotalCount int32 `protobuf:"varint,7,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
  3123. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3124. XXX_unrecognized []byte `json:"-"`
  3125. XXX_sizecache int32 `json:"-"`
  3126. }
  3127. func (m *BattleEvilData) Reset() { *m = BattleEvilData{} }
  3128. func (m *BattleEvilData) String() string { return proto.CompactTextString(m) }
  3129. func (*BattleEvilData) ProtoMessage() {}
  3130. func (*BattleEvilData) Descriptor() ([]byte, []int) {
  3131. return fileDescriptor_116e343673f7ffaf, []int{55}
  3132. }
  3133. func (m *BattleEvilData) XXX_Unmarshal(b []byte) error {
  3134. return xxx_messageInfo_BattleEvilData.Unmarshal(m, b)
  3135. }
  3136. func (m *BattleEvilData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3137. return xxx_messageInfo_BattleEvilData.Marshal(b, m, deterministic)
  3138. }
  3139. func (m *BattleEvilData) XXX_Merge(src proto.Message) {
  3140. xxx_messageInfo_BattleEvilData.Merge(m, src)
  3141. }
  3142. func (m *BattleEvilData) XXX_Size() int {
  3143. return xxx_messageInfo_BattleEvilData.Size(m)
  3144. }
  3145. func (m *BattleEvilData) XXX_DiscardUnknown() {
  3146. xxx_messageInfo_BattleEvilData.DiscardUnknown(m)
  3147. }
  3148. var xxx_messageInfo_BattleEvilData proto.InternalMessageInfo
  3149. func (m *BattleEvilData) GetFreeCount() int32 {
  3150. if m != nil {
  3151. return m.FreeCount
  3152. }
  3153. return 0
  3154. }
  3155. func (m *BattleEvilData) GetFreeLimit() bool {
  3156. if m != nil {
  3157. return m.FreeLimit
  3158. }
  3159. return false
  3160. }
  3161. func (m *BattleEvilData) GetChallengeCount() int32 {
  3162. if m != nil {
  3163. return m.ChallengeCount
  3164. }
  3165. return 0
  3166. }
  3167. func (m *BattleEvilData) GetEvilLevel() int32 {
  3168. if m != nil {
  3169. return m.EvilLevel
  3170. }
  3171. return 0
  3172. }
  3173. func (m *BattleEvilData) GetBossList() []*BattleEvilBossData {
  3174. if m != nil {
  3175. return m.BossList
  3176. }
  3177. return nil
  3178. }
  3179. func (m *BattleEvilData) GetQualityChallengeCount() []*KeyValueType {
  3180. if m != nil {
  3181. return m.QualityChallengeCount
  3182. }
  3183. return nil
  3184. }
  3185. func (m *BattleEvilData) GetTotalCount() int32 {
  3186. if m != nil {
  3187. return m.TotalCount
  3188. }
  3189. return 0
  3190. }
  3191. // 远征之门
  3192. type BattleExpeditionActor struct {
  3193. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  3194. Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
  3195. Hp int32 `protobuf:"varint,3,opt,name=hp,proto3" json:"hp,omitempty"`
  3196. Sp int32 `protobuf:"varint,4,opt,name=sp,proto3" json:"sp,omitempty"`
  3197. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3198. XXX_unrecognized []byte `json:"-"`
  3199. XXX_sizecache int32 `json:"-"`
  3200. }
  3201. func (m *BattleExpeditionActor) Reset() { *m = BattleExpeditionActor{} }
  3202. func (m *BattleExpeditionActor) String() string { return proto.CompactTextString(m) }
  3203. func (*BattleExpeditionActor) ProtoMessage() {}
  3204. func (*BattleExpeditionActor) Descriptor() ([]byte, []int) {
  3205. return fileDescriptor_116e343673f7ffaf, []int{56}
  3206. }
  3207. func (m *BattleExpeditionActor) XXX_Unmarshal(b []byte) error {
  3208. return xxx_messageInfo_BattleExpeditionActor.Unmarshal(m, b)
  3209. }
  3210. func (m *BattleExpeditionActor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3211. return xxx_messageInfo_BattleExpeditionActor.Marshal(b, m, deterministic)
  3212. }
  3213. func (m *BattleExpeditionActor) XXX_Merge(src proto.Message) {
  3214. xxx_messageInfo_BattleExpeditionActor.Merge(m, src)
  3215. }
  3216. func (m *BattleExpeditionActor) XXX_Size() int {
  3217. return xxx_messageInfo_BattleExpeditionActor.Size(m)
  3218. }
  3219. func (m *BattleExpeditionActor) XXX_DiscardUnknown() {
  3220. xxx_messageInfo_BattleExpeditionActor.DiscardUnknown(m)
  3221. }
  3222. var xxx_messageInfo_BattleExpeditionActor proto.InternalMessageInfo
  3223. func (m *BattleExpeditionActor) GetId() int32 {
  3224. if m != nil {
  3225. return m.Id
  3226. }
  3227. return 0
  3228. }
  3229. func (m *BattleExpeditionActor) GetLevel() int32 {
  3230. if m != nil {
  3231. return m.Level
  3232. }
  3233. return 0
  3234. }
  3235. func (m *BattleExpeditionActor) GetHp() int32 {
  3236. if m != nil {
  3237. return m.Hp
  3238. }
  3239. return 0
  3240. }
  3241. func (m *BattleExpeditionActor) GetSp() int32 {
  3242. if m != nil {
  3243. return m.Sp
  3244. }
  3245. return 0
  3246. }
  3247. type BattleExpeditionReward struct {
  3248. ExpeditionType int32 `protobuf:"varint,1,opt,name=expedition_type,json=expeditionType,proto3" json:"expedition_type,omitempty"`
  3249. RewardState []int32 `protobuf:"varint,2,rep,packed,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  3250. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3251. XXX_unrecognized []byte `json:"-"`
  3252. XXX_sizecache int32 `json:"-"`
  3253. }
  3254. func (m *BattleExpeditionReward) Reset() { *m = BattleExpeditionReward{} }
  3255. func (m *BattleExpeditionReward) String() string { return proto.CompactTextString(m) }
  3256. func (*BattleExpeditionReward) ProtoMessage() {}
  3257. func (*BattleExpeditionReward) Descriptor() ([]byte, []int) {
  3258. return fileDescriptor_116e343673f7ffaf, []int{57}
  3259. }
  3260. func (m *BattleExpeditionReward) XXX_Unmarshal(b []byte) error {
  3261. return xxx_messageInfo_BattleExpeditionReward.Unmarshal(m, b)
  3262. }
  3263. func (m *BattleExpeditionReward) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3264. return xxx_messageInfo_BattleExpeditionReward.Marshal(b, m, deterministic)
  3265. }
  3266. func (m *BattleExpeditionReward) XXX_Merge(src proto.Message) {
  3267. xxx_messageInfo_BattleExpeditionReward.Merge(m, src)
  3268. }
  3269. func (m *BattleExpeditionReward) XXX_Size() int {
  3270. return xxx_messageInfo_BattleExpeditionReward.Size(m)
  3271. }
  3272. func (m *BattleExpeditionReward) XXX_DiscardUnknown() {
  3273. xxx_messageInfo_BattleExpeditionReward.DiscardUnknown(m)
  3274. }
  3275. var xxx_messageInfo_BattleExpeditionReward proto.InternalMessageInfo
  3276. func (m *BattleExpeditionReward) GetExpeditionType() int32 {
  3277. if m != nil {
  3278. return m.ExpeditionType
  3279. }
  3280. return 0
  3281. }
  3282. func (m *BattleExpeditionReward) GetRewardState() []int32 {
  3283. if m != nil {
  3284. return m.RewardState
  3285. }
  3286. return nil
  3287. }
  3288. type ExpeditionRankInfo struct {
  3289. Rank int32 `protobuf:"varint,1,opt,name=rank,proto3" json:"rank,omitempty"`
  3290. BriefInfo *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief_info,json=briefInfo,proto3" json:"brief_info,omitempty"`
  3291. Score uint32 `protobuf:"varint,3,opt,name=score,proto3" json:"score,omitempty"`
  3292. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3293. XXX_unrecognized []byte `json:"-"`
  3294. XXX_sizecache int32 `json:"-"`
  3295. }
  3296. func (m *ExpeditionRankInfo) Reset() { *m = ExpeditionRankInfo{} }
  3297. func (m *ExpeditionRankInfo) String() string { return proto.CompactTextString(m) }
  3298. func (*ExpeditionRankInfo) ProtoMessage() {}
  3299. func (*ExpeditionRankInfo) Descriptor() ([]byte, []int) {
  3300. return fileDescriptor_116e343673f7ffaf, []int{58}
  3301. }
  3302. func (m *ExpeditionRankInfo) XXX_Unmarshal(b []byte) error {
  3303. return xxx_messageInfo_ExpeditionRankInfo.Unmarshal(m, b)
  3304. }
  3305. func (m *ExpeditionRankInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3306. return xxx_messageInfo_ExpeditionRankInfo.Marshal(b, m, deterministic)
  3307. }
  3308. func (m *ExpeditionRankInfo) XXX_Merge(src proto.Message) {
  3309. xxx_messageInfo_ExpeditionRankInfo.Merge(m, src)
  3310. }
  3311. func (m *ExpeditionRankInfo) XXX_Size() int {
  3312. return xxx_messageInfo_ExpeditionRankInfo.Size(m)
  3313. }
  3314. func (m *ExpeditionRankInfo) XXX_DiscardUnknown() {
  3315. xxx_messageInfo_ExpeditionRankInfo.DiscardUnknown(m)
  3316. }
  3317. var xxx_messageInfo_ExpeditionRankInfo proto.InternalMessageInfo
  3318. func (m *ExpeditionRankInfo) GetRank() int32 {
  3319. if m != nil {
  3320. return m.Rank
  3321. }
  3322. return 0
  3323. }
  3324. func (m *ExpeditionRankInfo) GetBriefInfo() *CommonPlayerBriefInfo {
  3325. if m != nil {
  3326. return m.BriefInfo
  3327. }
  3328. return nil
  3329. }
  3330. func (m *ExpeditionRankInfo) GetScore() uint32 {
  3331. if m != nil {
  3332. return m.Score
  3333. }
  3334. return 0
  3335. }
  3336. type BattleExpedition struct {
  3337. ExpeditionType int32 `protobuf:"varint,1,opt,name=expedition_type,json=expeditionType,proto3" json:"expedition_type,omitempty"`
  3338. BattleHeroList []int32 `protobuf:"varint,2,rep,packed,name=battle_hero_list,json=battleHeroList,proto3" json:"battle_hero_list,omitempty"`
  3339. TotalExpeditionNum int32 `protobuf:"varint,3,opt,name=total_expedition_num,json=totalExpeditionNum,proto3" json:"total_expedition_num,omitempty"`
  3340. // 数据需要隔天清空(关卡数据在挑战关区域地图后可以进行重置)
  3341. ChallengeNum int32 `protobuf:"varint,4,opt,name=challenge_num,json=challengeNum,proto3" json:"challenge_num,omitempty"`
  3342. CurExpeditionType int32 `protobuf:"varint,5,opt,name=cur_expedition_type,json=curExpeditionType,proto3" json:"cur_expedition_type,omitempty"`
  3343. FinishExpeditionList []int32 `protobuf:"varint,6,rep,packed,name=finish_expedition_list,json=finishExpeditionList,proto3" json:"finish_expedition_list,omitempty"`
  3344. RewardStateList []*BattleExpeditionReward `protobuf:"bytes,7,rep,name=reward_state_list,json=rewardStateList,proto3" json:"reward_state_list,omitempty"`
  3345. CurBattleLevel int32 `protobuf:"varint,8,opt,name=cur_battle_level,json=curBattleLevel,proto3" json:"cur_battle_level,omitempty"`
  3346. BossList []*BattleExpeditionActor `protobuf:"bytes,9,rep,name=boss_list,json=bossList,proto3" json:"boss_list,omitempty"`
  3347. BattleBuffList []int32 `protobuf:"varint,10,rep,packed,name=battle_buff_list,json=battleBuffList,proto3" json:"battle_buff_list,omitempty"`
  3348. BattleSelectBuffList []int32 `protobuf:"varint,11,rep,packed,name=battle_select_buff_list,json=battleSelectBuffList,proto3" json:"battle_select_buff_list,omitempty"`
  3349. BattleHeroHpList []*BattleExpeditionActor `protobuf:"bytes,12,rep,name=battle_hero_hp_list,json=battleHeroHpList,proto3" json:"battle_hero_hp_list,omitempty"`
  3350. BattleIdx int32 `protobuf:"varint,13,opt,name=battle_idx,json=battleIdx,proto3" json:"battle_idx,omitempty"`
  3351. AssistNum *KeyValueType `protobuf:"bytes,14,opt,name=assist_num,json=assistNum,proto3" json:"assist_num,omitempty"`
  3352. BeAssistNum *KeyValueType `protobuf:"bytes,15,opt,name=be_assist_num,json=beAssistNum,proto3" json:"be_assist_num,omitempty"`
  3353. AssistState bool `protobuf:"varint,16,opt,name=assist_state,json=assistState,proto3" json:"assist_state,omitempty"`
  3354. AssistGuildEndTime uint64 `protobuf:"varint,17,opt,name=assist_guild_end_time,json=assistGuildEndTime,proto3" json:"assist_guild_end_time,omitempty"`
  3355. BeAssistUidList []*KeyValueType64 `protobuf:"bytes,18,rep,name=be_assist_uid_list,json=beAssistUidList,proto3" json:"be_assist_uid_list,omitempty"`
  3356. AssistTimeStamp uint64 `protobuf:"varint,19,opt,name=assist_time_stamp,json=assistTimeStamp,proto3" json:"assist_time_stamp,omitempty"`
  3357. CurExpeditionScore uint32 `protobuf:"varint,20,opt,name=cur_expedition_score,json=curExpeditionScore,proto3" json:"cur_expedition_score,omitempty"`
  3358. CurExpeditionScoreMax uint32 `protobuf:"varint,21,opt,name=cur_expedition_score_max,json=curExpeditionScoreMax,proto3" json:"cur_expedition_score_max,omitempty"`
  3359. ExpeditionScoreResetTime uint64 `protobuf:"varint,22,opt,name=expedition_score_reset_time,json=expeditionScoreResetTime,proto3" json:"expedition_score_reset_time,omitempty"`
  3360. ExpeditionTypeReward uint64 `protobuf:"varint,23,opt,name=expedition_type_reward,json=expeditionTypeReward,proto3" json:"expedition_type_reward,omitempty"`
  3361. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3362. XXX_unrecognized []byte `json:"-"`
  3363. XXX_sizecache int32 `json:"-"`
  3364. }
  3365. func (m *BattleExpedition) Reset() { *m = BattleExpedition{} }
  3366. func (m *BattleExpedition) String() string { return proto.CompactTextString(m) }
  3367. func (*BattleExpedition) ProtoMessage() {}
  3368. func (*BattleExpedition) Descriptor() ([]byte, []int) {
  3369. return fileDescriptor_116e343673f7ffaf, []int{59}
  3370. }
  3371. func (m *BattleExpedition) XXX_Unmarshal(b []byte) error {
  3372. return xxx_messageInfo_BattleExpedition.Unmarshal(m, b)
  3373. }
  3374. func (m *BattleExpedition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3375. return xxx_messageInfo_BattleExpedition.Marshal(b, m, deterministic)
  3376. }
  3377. func (m *BattleExpedition) XXX_Merge(src proto.Message) {
  3378. xxx_messageInfo_BattleExpedition.Merge(m, src)
  3379. }
  3380. func (m *BattleExpedition) XXX_Size() int {
  3381. return xxx_messageInfo_BattleExpedition.Size(m)
  3382. }
  3383. func (m *BattleExpedition) XXX_DiscardUnknown() {
  3384. xxx_messageInfo_BattleExpedition.DiscardUnknown(m)
  3385. }
  3386. var xxx_messageInfo_BattleExpedition proto.InternalMessageInfo
  3387. func (m *BattleExpedition) GetExpeditionType() int32 {
  3388. if m != nil {
  3389. return m.ExpeditionType
  3390. }
  3391. return 0
  3392. }
  3393. func (m *BattleExpedition) GetBattleHeroList() []int32 {
  3394. if m != nil {
  3395. return m.BattleHeroList
  3396. }
  3397. return nil
  3398. }
  3399. func (m *BattleExpedition) GetTotalExpeditionNum() int32 {
  3400. if m != nil {
  3401. return m.TotalExpeditionNum
  3402. }
  3403. return 0
  3404. }
  3405. func (m *BattleExpedition) GetChallengeNum() int32 {
  3406. if m != nil {
  3407. return m.ChallengeNum
  3408. }
  3409. return 0
  3410. }
  3411. func (m *BattleExpedition) GetCurExpeditionType() int32 {
  3412. if m != nil {
  3413. return m.CurExpeditionType
  3414. }
  3415. return 0
  3416. }
  3417. func (m *BattleExpedition) GetFinishExpeditionList() []int32 {
  3418. if m != nil {
  3419. return m.FinishExpeditionList
  3420. }
  3421. return nil
  3422. }
  3423. func (m *BattleExpedition) GetRewardStateList() []*BattleExpeditionReward {
  3424. if m != nil {
  3425. return m.RewardStateList
  3426. }
  3427. return nil
  3428. }
  3429. func (m *BattleExpedition) GetCurBattleLevel() int32 {
  3430. if m != nil {
  3431. return m.CurBattleLevel
  3432. }
  3433. return 0
  3434. }
  3435. func (m *BattleExpedition) GetBossList() []*BattleExpeditionActor {
  3436. if m != nil {
  3437. return m.BossList
  3438. }
  3439. return nil
  3440. }
  3441. func (m *BattleExpedition) GetBattleBuffList() []int32 {
  3442. if m != nil {
  3443. return m.BattleBuffList
  3444. }
  3445. return nil
  3446. }
  3447. func (m *BattleExpedition) GetBattleSelectBuffList() []int32 {
  3448. if m != nil {
  3449. return m.BattleSelectBuffList
  3450. }
  3451. return nil
  3452. }
  3453. func (m *BattleExpedition) GetBattleHeroHpList() []*BattleExpeditionActor {
  3454. if m != nil {
  3455. return m.BattleHeroHpList
  3456. }
  3457. return nil
  3458. }
  3459. func (m *BattleExpedition) GetBattleIdx() int32 {
  3460. if m != nil {
  3461. return m.BattleIdx
  3462. }
  3463. return 0
  3464. }
  3465. func (m *BattleExpedition) GetAssistNum() *KeyValueType {
  3466. if m != nil {
  3467. return m.AssistNum
  3468. }
  3469. return nil
  3470. }
  3471. func (m *BattleExpedition) GetBeAssistNum() *KeyValueType {
  3472. if m != nil {
  3473. return m.BeAssistNum
  3474. }
  3475. return nil
  3476. }
  3477. func (m *BattleExpedition) GetAssistState() bool {
  3478. if m != nil {
  3479. return m.AssistState
  3480. }
  3481. return false
  3482. }
  3483. func (m *BattleExpedition) GetAssistGuildEndTime() uint64 {
  3484. if m != nil {
  3485. return m.AssistGuildEndTime
  3486. }
  3487. return 0
  3488. }
  3489. func (m *BattleExpedition) GetBeAssistUidList() []*KeyValueType64 {
  3490. if m != nil {
  3491. return m.BeAssistUidList
  3492. }
  3493. return nil
  3494. }
  3495. func (m *BattleExpedition) GetAssistTimeStamp() uint64 {
  3496. if m != nil {
  3497. return m.AssistTimeStamp
  3498. }
  3499. return 0
  3500. }
  3501. func (m *BattleExpedition) GetCurExpeditionScore() uint32 {
  3502. if m != nil {
  3503. return m.CurExpeditionScore
  3504. }
  3505. return 0
  3506. }
  3507. func (m *BattleExpedition) GetCurExpeditionScoreMax() uint32 {
  3508. if m != nil {
  3509. return m.CurExpeditionScoreMax
  3510. }
  3511. return 0
  3512. }
  3513. func (m *BattleExpedition) GetExpeditionScoreResetTime() uint64 {
  3514. if m != nil {
  3515. return m.ExpeditionScoreResetTime
  3516. }
  3517. return 0
  3518. }
  3519. func (m *BattleExpedition) GetExpeditionTypeReward() uint64 {
  3520. if m != nil {
  3521. return m.ExpeditionTypeReward
  3522. }
  3523. return 0
  3524. }
  3525. type RushMap struct {
  3526. MapScore uint32 `protobuf:"varint,1,opt,name=map_score,json=mapScore,proto3" json:"map_score,omitempty"`
  3527. BagScore uint32 `protobuf:"varint,2,opt,name=bag_score,json=bagScore,proto3" json:"bag_score,omitempty"`
  3528. RushMapId uint32 `protobuf:"varint,3,opt,name=rush_map_id,json=rushMapId,proto3" json:"rush_map_id,omitempty"`
  3529. FightRound int32 `protobuf:"varint,4,opt,name=fight_round,json=fightRound,proto3" json:"fight_round,omitempty"`
  3530. RewardRound int32 `protobuf:"varint,5,opt,name=reward_round,json=rewardRound,proto3" json:"reward_round,omitempty"`
  3531. RankReward int32 `protobuf:"varint,6,opt,name=rank_reward,json=rankReward,proto3" json:"rank_reward,omitempty"`
  3532. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3533. XXX_unrecognized []byte `json:"-"`
  3534. XXX_sizecache int32 `json:"-"`
  3535. }
  3536. func (m *RushMap) Reset() { *m = RushMap{} }
  3537. func (m *RushMap) String() string { return proto.CompactTextString(m) }
  3538. func (*RushMap) ProtoMessage() {}
  3539. func (*RushMap) Descriptor() ([]byte, []int) {
  3540. return fileDescriptor_116e343673f7ffaf, []int{60}
  3541. }
  3542. func (m *RushMap) XXX_Unmarshal(b []byte) error {
  3543. return xxx_messageInfo_RushMap.Unmarshal(m, b)
  3544. }
  3545. func (m *RushMap) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3546. return xxx_messageInfo_RushMap.Marshal(b, m, deterministic)
  3547. }
  3548. func (m *RushMap) XXX_Merge(src proto.Message) {
  3549. xxx_messageInfo_RushMap.Merge(m, src)
  3550. }
  3551. func (m *RushMap) XXX_Size() int {
  3552. return xxx_messageInfo_RushMap.Size(m)
  3553. }
  3554. func (m *RushMap) XXX_DiscardUnknown() {
  3555. xxx_messageInfo_RushMap.DiscardUnknown(m)
  3556. }
  3557. var xxx_messageInfo_RushMap proto.InternalMessageInfo
  3558. func (m *RushMap) GetMapScore() uint32 {
  3559. if m != nil {
  3560. return m.MapScore
  3561. }
  3562. return 0
  3563. }
  3564. func (m *RushMap) GetBagScore() uint32 {
  3565. if m != nil {
  3566. return m.BagScore
  3567. }
  3568. return 0
  3569. }
  3570. func (m *RushMap) GetRushMapId() uint32 {
  3571. if m != nil {
  3572. return m.RushMapId
  3573. }
  3574. return 0
  3575. }
  3576. func (m *RushMap) GetFightRound() int32 {
  3577. if m != nil {
  3578. return m.FightRound
  3579. }
  3580. return 0
  3581. }
  3582. func (m *RushMap) GetRewardRound() int32 {
  3583. if m != nil {
  3584. return m.RewardRound
  3585. }
  3586. return 0
  3587. }
  3588. func (m *RushMap) GetRankReward() int32 {
  3589. if m != nil {
  3590. return m.RankReward
  3591. }
  3592. return 0
  3593. }
  3594. type RoleBattle struct {
  3595. LastIncomeTime uint64 `protobuf:"varint,1,opt,name=last_income_time,json=lastIncomeTime,proto3" json:"last_income_time,omitempty"`
  3596. MapLevel uint32 `protobuf:"varint,2,opt,name=map_level,json=mapLevel,proto3" json:"map_level,omitempty"`
  3597. MapId uint32 `protobuf:"varint,3,opt,name=map_id,json=mapId,proto3" json:"map_id,omitempty"`
  3598. MaxIncomeTime uint32 `protobuf:"varint,4,opt,name=max_income_time,json=maxIncomeTime,proto3" json:"max_income_time,omitempty"`
  3599. QuickBattle *QuickBattleData `protobuf:"bytes,5,opt,name=quick_battle,json=quickBattle,proto3" json:"quick_battle,omitempty"`
  3600. // 当前领取到的奖励关ID
  3601. RewardMapId uint32 `protobuf:"varint,6,opt,name=reward_map_id,json=rewardMapId,proto3" json:"reward_map_id,omitempty"`
  3602. RewardMapLevel uint32 `protobuf:"varint,7,opt,name=reward_map_level,json=rewardMapLevel,proto3" json:"reward_map_level,omitempty"`
  3603. RewardMapCount uint32 `protobuf:"varint,8,opt,name=reward_map_count,json=rewardMapCount,proto3" json:"reward_map_count,omitempty"`
  3604. // 恶魔协会
  3605. EvilInfo *BattleEvilData `protobuf:"bytes,9,opt,name=evil_info,json=evilInfo,proto3" json:"evil_info,omitempty"`
  3606. // 远征之门
  3607. ExpeditionInfo *BattleExpedition `protobuf:"bytes,10,opt,name=expedition_info,json=expeditionInfo,proto3" json:"expedition_info,omitempty"`
  3608. MapLevelTime uint64 `protobuf:"varint,11,opt,name=map_level_time,json=mapLevelTime,proto3" json:"map_level_time,omitempty"`
  3609. RushMap *RushMap `protobuf:"bytes,12,opt,name=rush_map,json=rushMap,proto3" json:"rush_map,omitempty"`
  3610. MapChallengeNumList []*KeyValueType `protobuf:"bytes,13,rep,name=map_challenge_num_list,json=mapChallengeNumList,proto3" json:"map_challenge_num_list,omitempty"`
  3611. // 战斗加速时间(客户端显示根据last_record_battle_acce_time+battle_acce_duration为最大能使用的结束时间戳)
  3612. LastRecordBattleAcceTime uint64 `protobuf:"varint,14,opt,name=last_record_battle_acce_time,json=lastRecordBattleAcceTime,proto3" json:"last_record_battle_acce_time,omitempty"`
  3613. BattleAcceDuration uint64 `protobuf:"varint,15,opt,name=battle_acce_duration,json=battleAcceDuration,proto3" json:"battle_acce_duration,omitempty"`
  3614. MapLevelHard uint32 `protobuf:"varint,16,opt,name=map_level_hard,json=mapLevelHard,proto3" json:"map_level_hard,omitempty"`
  3615. MapIdHard uint32 `protobuf:"varint,17,opt,name=map_id_hard,json=mapIdHard,proto3" json:"map_id_hard,omitempty"`
  3616. RewardMapIdHard uint32 `protobuf:"varint,18,opt,name=reward_map_id_hard,json=rewardMapIdHard,proto3" json:"reward_map_id_hard,omitempty"`
  3617. RewardMapLevelHard uint32 `protobuf:"varint,19,opt,name=reward_map_level_hard,json=rewardMapLevelHard,proto3" json:"reward_map_level_hard,omitempty"`
  3618. MapLevelHard2 uint32 `protobuf:"varint,20,opt,name=map_level_hard2,json=mapLevelHard2,proto3" json:"map_level_hard2,omitempty"`
  3619. MapIdHard2 uint32 `protobuf:"varint,21,opt,name=map_id_hard2,json=mapIdHard2,proto3" json:"map_id_hard2,omitempty"`
  3620. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3621. XXX_unrecognized []byte `json:"-"`
  3622. XXX_sizecache int32 `json:"-"`
  3623. }
  3624. func (m *RoleBattle) Reset() { *m = RoleBattle{} }
  3625. func (m *RoleBattle) String() string { return proto.CompactTextString(m) }
  3626. func (*RoleBattle) ProtoMessage() {}
  3627. func (*RoleBattle) Descriptor() ([]byte, []int) {
  3628. return fileDescriptor_116e343673f7ffaf, []int{61}
  3629. }
  3630. func (m *RoleBattle) XXX_Unmarshal(b []byte) error {
  3631. return xxx_messageInfo_RoleBattle.Unmarshal(m, b)
  3632. }
  3633. func (m *RoleBattle) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3634. return xxx_messageInfo_RoleBattle.Marshal(b, m, deterministic)
  3635. }
  3636. func (m *RoleBattle) XXX_Merge(src proto.Message) {
  3637. xxx_messageInfo_RoleBattle.Merge(m, src)
  3638. }
  3639. func (m *RoleBattle) XXX_Size() int {
  3640. return xxx_messageInfo_RoleBattle.Size(m)
  3641. }
  3642. func (m *RoleBattle) XXX_DiscardUnknown() {
  3643. xxx_messageInfo_RoleBattle.DiscardUnknown(m)
  3644. }
  3645. var xxx_messageInfo_RoleBattle proto.InternalMessageInfo
  3646. func (m *RoleBattle) GetLastIncomeTime() uint64 {
  3647. if m != nil {
  3648. return m.LastIncomeTime
  3649. }
  3650. return 0
  3651. }
  3652. func (m *RoleBattle) GetMapLevel() uint32 {
  3653. if m != nil {
  3654. return m.MapLevel
  3655. }
  3656. return 0
  3657. }
  3658. func (m *RoleBattle) GetMapId() uint32 {
  3659. if m != nil {
  3660. return m.MapId
  3661. }
  3662. return 0
  3663. }
  3664. func (m *RoleBattle) GetMaxIncomeTime() uint32 {
  3665. if m != nil {
  3666. return m.MaxIncomeTime
  3667. }
  3668. return 0
  3669. }
  3670. func (m *RoleBattle) GetQuickBattle() *QuickBattleData {
  3671. if m != nil {
  3672. return m.QuickBattle
  3673. }
  3674. return nil
  3675. }
  3676. func (m *RoleBattle) GetRewardMapId() uint32 {
  3677. if m != nil {
  3678. return m.RewardMapId
  3679. }
  3680. return 0
  3681. }
  3682. func (m *RoleBattle) GetRewardMapLevel() uint32 {
  3683. if m != nil {
  3684. return m.RewardMapLevel
  3685. }
  3686. return 0
  3687. }
  3688. func (m *RoleBattle) GetRewardMapCount() uint32 {
  3689. if m != nil {
  3690. return m.RewardMapCount
  3691. }
  3692. return 0
  3693. }
  3694. func (m *RoleBattle) GetEvilInfo() *BattleEvilData {
  3695. if m != nil {
  3696. return m.EvilInfo
  3697. }
  3698. return nil
  3699. }
  3700. func (m *RoleBattle) GetExpeditionInfo() *BattleExpedition {
  3701. if m != nil {
  3702. return m.ExpeditionInfo
  3703. }
  3704. return nil
  3705. }
  3706. func (m *RoleBattle) GetMapLevelTime() uint64 {
  3707. if m != nil {
  3708. return m.MapLevelTime
  3709. }
  3710. return 0
  3711. }
  3712. func (m *RoleBattle) GetRushMap() *RushMap {
  3713. if m != nil {
  3714. return m.RushMap
  3715. }
  3716. return nil
  3717. }
  3718. func (m *RoleBattle) GetMapChallengeNumList() []*KeyValueType {
  3719. if m != nil {
  3720. return m.MapChallengeNumList
  3721. }
  3722. return nil
  3723. }
  3724. func (m *RoleBattle) GetLastRecordBattleAcceTime() uint64 {
  3725. if m != nil {
  3726. return m.LastRecordBattleAcceTime
  3727. }
  3728. return 0
  3729. }
  3730. func (m *RoleBattle) GetBattleAcceDuration() uint64 {
  3731. if m != nil {
  3732. return m.BattleAcceDuration
  3733. }
  3734. return 0
  3735. }
  3736. func (m *RoleBattle) GetMapLevelHard() uint32 {
  3737. if m != nil {
  3738. return m.MapLevelHard
  3739. }
  3740. return 0
  3741. }
  3742. func (m *RoleBattle) GetMapIdHard() uint32 {
  3743. if m != nil {
  3744. return m.MapIdHard
  3745. }
  3746. return 0
  3747. }
  3748. func (m *RoleBattle) GetRewardMapIdHard() uint32 {
  3749. if m != nil {
  3750. return m.RewardMapIdHard
  3751. }
  3752. return 0
  3753. }
  3754. func (m *RoleBattle) GetRewardMapLevelHard() uint32 {
  3755. if m != nil {
  3756. return m.RewardMapLevelHard
  3757. }
  3758. return 0
  3759. }
  3760. func (m *RoleBattle) GetMapLevelHard2() uint32 {
  3761. if m != nil {
  3762. return m.MapLevelHard2
  3763. }
  3764. return 0
  3765. }
  3766. func (m *RoleBattle) GetMapIdHard2() uint32 {
  3767. if m != nil {
  3768. return m.MapIdHard2
  3769. }
  3770. return 0
  3771. }
  3772. type ActorPosition struct {
  3773. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  3774. Pos *Position `protobuf:"bytes,2,opt,name=pos,proto3" json:"pos,omitempty"`
  3775. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3776. XXX_unrecognized []byte `json:"-"`
  3777. XXX_sizecache int32 `json:"-"`
  3778. }
  3779. func (m *ActorPosition) Reset() { *m = ActorPosition{} }
  3780. func (m *ActorPosition) String() string { return proto.CompactTextString(m) }
  3781. func (*ActorPosition) ProtoMessage() {}
  3782. func (*ActorPosition) Descriptor() ([]byte, []int) {
  3783. return fileDescriptor_116e343673f7ffaf, []int{62}
  3784. }
  3785. func (m *ActorPosition) XXX_Unmarshal(b []byte) error {
  3786. return xxx_messageInfo_ActorPosition.Unmarshal(m, b)
  3787. }
  3788. func (m *ActorPosition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3789. return xxx_messageInfo_ActorPosition.Marshal(b, m, deterministic)
  3790. }
  3791. func (m *ActorPosition) XXX_Merge(src proto.Message) {
  3792. xxx_messageInfo_ActorPosition.Merge(m, src)
  3793. }
  3794. func (m *ActorPosition) XXX_Size() int {
  3795. return xxx_messageInfo_ActorPosition.Size(m)
  3796. }
  3797. func (m *ActorPosition) XXX_DiscardUnknown() {
  3798. xxx_messageInfo_ActorPosition.DiscardUnknown(m)
  3799. }
  3800. var xxx_messageInfo_ActorPosition proto.InternalMessageInfo
  3801. func (m *ActorPosition) GetId() uint32 {
  3802. if m != nil {
  3803. return m.Id
  3804. }
  3805. return 0
  3806. }
  3807. func (m *ActorPosition) GetPos() *Position {
  3808. if m != nil {
  3809. return m.Pos
  3810. }
  3811. return nil
  3812. }
  3813. type RankPlayerInfo struct {
  3814. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  3815. MapLevel uint32 `protobuf:"varint,2,opt,name=map_level,json=mapLevel,proto3" json:"map_level,omitempty"`
  3816. MapId uint32 `protobuf:"varint,3,opt,name=map_id,json=mapId,proto3" json:"map_id,omitempty"`
  3817. Brief *CommonPlayerBriefInfo `protobuf:"bytes,4,opt,name=brief,proto3" json:"brief,omitempty"`
  3818. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3819. XXX_unrecognized []byte `json:"-"`
  3820. XXX_sizecache int32 `json:"-"`
  3821. }
  3822. func (m *RankPlayerInfo) Reset() { *m = RankPlayerInfo{} }
  3823. func (m *RankPlayerInfo) String() string { return proto.CompactTextString(m) }
  3824. func (*RankPlayerInfo) ProtoMessage() {}
  3825. func (*RankPlayerInfo) Descriptor() ([]byte, []int) {
  3826. return fileDescriptor_116e343673f7ffaf, []int{63}
  3827. }
  3828. func (m *RankPlayerInfo) XXX_Unmarshal(b []byte) error {
  3829. return xxx_messageInfo_RankPlayerInfo.Unmarshal(m, b)
  3830. }
  3831. func (m *RankPlayerInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3832. return xxx_messageInfo_RankPlayerInfo.Marshal(b, m, deterministic)
  3833. }
  3834. func (m *RankPlayerInfo) XXX_Merge(src proto.Message) {
  3835. xxx_messageInfo_RankPlayerInfo.Merge(m, src)
  3836. }
  3837. func (m *RankPlayerInfo) XXX_Size() int {
  3838. return xxx_messageInfo_RankPlayerInfo.Size(m)
  3839. }
  3840. func (m *RankPlayerInfo) XXX_DiscardUnknown() {
  3841. xxx_messageInfo_RankPlayerInfo.DiscardUnknown(m)
  3842. }
  3843. var xxx_messageInfo_RankPlayerInfo proto.InternalMessageInfo
  3844. func (m *RankPlayerInfo) GetUid() uint64 {
  3845. if m != nil {
  3846. return m.Uid
  3847. }
  3848. return 0
  3849. }
  3850. func (m *RankPlayerInfo) GetMapLevel() uint32 {
  3851. if m != nil {
  3852. return m.MapLevel
  3853. }
  3854. return 0
  3855. }
  3856. func (m *RankPlayerInfo) GetMapId() uint32 {
  3857. if m != nil {
  3858. return m.MapId
  3859. }
  3860. return 0
  3861. }
  3862. func (m *RankPlayerInfo) GetBrief() *CommonPlayerBriefInfo {
  3863. if m != nil {
  3864. return m.Brief
  3865. }
  3866. return nil
  3867. }
  3868. // 世界boss列表信息
  3869. type WorldBossContentInfo struct {
  3870. CfgId int32 `protobuf:"varint,1,opt,name=cfg_id,json=cfgId,proto3" json:"cfg_id,omitempty"`
  3871. BossId int32 `protobuf:"varint,3,opt,name=boss_id,json=bossId,proto3" json:"boss_id,omitempty"`
  3872. BossSummonIdx int32 `protobuf:"varint,4,opt,name=boss_summon_idx,json=bossSummonIdx,proto3" json:"boss_summon_idx,omitempty"`
  3873. Brief *CommonPlayerBriefInfo `protobuf:"bytes,5,opt,name=brief,proto3" json:"brief,omitempty"`
  3874. FighterNum int32 `protobuf:"varint,6,opt,name=fighter_num,json=fighterNum,proto3" json:"fighter_num,omitempty"`
  3875. ExpireTime uint64 `protobuf:"varint,7,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"`
  3876. TotalHp int32 `protobuf:"varint,8,opt,name=total_hp,json=totalHp,proto3" json:"total_hp,omitempty"`
  3877. CurHp int32 `protobuf:"varint,9,opt,name=cur_hp,json=curHp,proto3" json:"cur_hp,omitempty"`
  3878. IsFight bool `protobuf:"varint,10,opt,name=is_fight,json=isFight,proto3" json:"is_fight,omitempty"`
  3879. NextRefreshTime uint64 `protobuf:"varint,11,opt,name=next_refresh_time,json=nextRefreshTime,proto3" json:"next_refresh_time,omitempty"`
  3880. BossSummonType int32 `protobuf:"varint,15,opt,name=boss_summon_type,json=bossSummonType,proto3" json:"boss_summon_type,omitempty"`
  3881. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3882. XXX_unrecognized []byte `json:"-"`
  3883. XXX_sizecache int32 `json:"-"`
  3884. }
  3885. func (m *WorldBossContentInfo) Reset() { *m = WorldBossContentInfo{} }
  3886. func (m *WorldBossContentInfo) String() string { return proto.CompactTextString(m) }
  3887. func (*WorldBossContentInfo) ProtoMessage() {}
  3888. func (*WorldBossContentInfo) Descriptor() ([]byte, []int) {
  3889. return fileDescriptor_116e343673f7ffaf, []int{64}
  3890. }
  3891. func (m *WorldBossContentInfo) XXX_Unmarshal(b []byte) error {
  3892. return xxx_messageInfo_WorldBossContentInfo.Unmarshal(m, b)
  3893. }
  3894. func (m *WorldBossContentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3895. return xxx_messageInfo_WorldBossContentInfo.Marshal(b, m, deterministic)
  3896. }
  3897. func (m *WorldBossContentInfo) XXX_Merge(src proto.Message) {
  3898. xxx_messageInfo_WorldBossContentInfo.Merge(m, src)
  3899. }
  3900. func (m *WorldBossContentInfo) XXX_Size() int {
  3901. return xxx_messageInfo_WorldBossContentInfo.Size(m)
  3902. }
  3903. func (m *WorldBossContentInfo) XXX_DiscardUnknown() {
  3904. xxx_messageInfo_WorldBossContentInfo.DiscardUnknown(m)
  3905. }
  3906. var xxx_messageInfo_WorldBossContentInfo proto.InternalMessageInfo
  3907. func (m *WorldBossContentInfo) GetCfgId() int32 {
  3908. if m != nil {
  3909. return m.CfgId
  3910. }
  3911. return 0
  3912. }
  3913. func (m *WorldBossContentInfo) GetBossId() int32 {
  3914. if m != nil {
  3915. return m.BossId
  3916. }
  3917. return 0
  3918. }
  3919. func (m *WorldBossContentInfo) GetBossSummonIdx() int32 {
  3920. if m != nil {
  3921. return m.BossSummonIdx
  3922. }
  3923. return 0
  3924. }
  3925. func (m *WorldBossContentInfo) GetBrief() *CommonPlayerBriefInfo {
  3926. if m != nil {
  3927. return m.Brief
  3928. }
  3929. return nil
  3930. }
  3931. func (m *WorldBossContentInfo) GetFighterNum() int32 {
  3932. if m != nil {
  3933. return m.FighterNum
  3934. }
  3935. return 0
  3936. }
  3937. func (m *WorldBossContentInfo) GetExpireTime() uint64 {
  3938. if m != nil {
  3939. return m.ExpireTime
  3940. }
  3941. return 0
  3942. }
  3943. func (m *WorldBossContentInfo) GetTotalHp() int32 {
  3944. if m != nil {
  3945. return m.TotalHp
  3946. }
  3947. return 0
  3948. }
  3949. func (m *WorldBossContentInfo) GetCurHp() int32 {
  3950. if m != nil {
  3951. return m.CurHp
  3952. }
  3953. return 0
  3954. }
  3955. func (m *WorldBossContentInfo) GetIsFight() bool {
  3956. if m != nil {
  3957. return m.IsFight
  3958. }
  3959. return false
  3960. }
  3961. func (m *WorldBossContentInfo) GetNextRefreshTime() uint64 {
  3962. if m != nil {
  3963. return m.NextRefreshTime
  3964. }
  3965. return 0
  3966. }
  3967. func (m *WorldBossContentInfo) GetBossSummonType() int32 {
  3968. if m != nil {
  3969. return m.BossSummonType
  3970. }
  3971. return 0
  3972. }
  3973. // 世界boss rand点数据
  3974. type PointNameInfo struct {
  3975. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  3976. Point int32 `protobuf:"varint,2,opt,name=point,proto3" json:"point,omitempty"`
  3977. Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
  3978. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  3979. XXX_unrecognized []byte `json:"-"`
  3980. XXX_sizecache int32 `json:"-"`
  3981. }
  3982. func (m *PointNameInfo) Reset() { *m = PointNameInfo{} }
  3983. func (m *PointNameInfo) String() string { return proto.CompactTextString(m) }
  3984. func (*PointNameInfo) ProtoMessage() {}
  3985. func (*PointNameInfo) Descriptor() ([]byte, []int) {
  3986. return fileDescriptor_116e343673f7ffaf, []int{65}
  3987. }
  3988. func (m *PointNameInfo) XXX_Unmarshal(b []byte) error {
  3989. return xxx_messageInfo_PointNameInfo.Unmarshal(m, b)
  3990. }
  3991. func (m *PointNameInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  3992. return xxx_messageInfo_PointNameInfo.Marshal(b, m, deterministic)
  3993. }
  3994. func (m *PointNameInfo) XXX_Merge(src proto.Message) {
  3995. xxx_messageInfo_PointNameInfo.Merge(m, src)
  3996. }
  3997. func (m *PointNameInfo) XXX_Size() int {
  3998. return xxx_messageInfo_PointNameInfo.Size(m)
  3999. }
  4000. func (m *PointNameInfo) XXX_DiscardUnknown() {
  4001. xxx_messageInfo_PointNameInfo.DiscardUnknown(m)
  4002. }
  4003. var xxx_messageInfo_PointNameInfo proto.InternalMessageInfo
  4004. func (m *PointNameInfo) GetName() string {
  4005. if m != nil {
  4006. return m.Name
  4007. }
  4008. return ""
  4009. }
  4010. func (m *PointNameInfo) GetPoint() int32 {
  4011. if m != nil {
  4012. return m.Point
  4013. }
  4014. return 0
  4015. }
  4016. func (m *PointNameInfo) GetUid() uint64 {
  4017. if m != nil {
  4018. return m.Uid
  4019. }
  4020. return 0
  4021. }
  4022. type WorldBossRandPointInfo struct {
  4023. RewardList []int32 `protobuf:"varint,1,rep,packed,name=reward_list,json=rewardList,proto3" json:"reward_list,omitempty"`
  4024. BossId int32 `protobuf:"varint,2,opt,name=boss_id,json=bossId,proto3" json:"boss_id,omitempty"`
  4025. BossSummonIdx int32 `protobuf:"varint,3,opt,name=boss_summon_idx,json=bossSummonIdx,proto3" json:"boss_summon_idx,omitempty"`
  4026. BossSummonType int32 `protobuf:"varint,4,opt,name=boss_summon_type,json=bossSummonType,proto3" json:"boss_summon_type,omitempty"`
  4027. IsOffline bool `protobuf:"varint,5,opt,name=isOffline,proto3" json:"isOffline,omitempty"`
  4028. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4029. XXX_unrecognized []byte `json:"-"`
  4030. XXX_sizecache int32 `json:"-"`
  4031. }
  4032. func (m *WorldBossRandPointInfo) Reset() { *m = WorldBossRandPointInfo{} }
  4033. func (m *WorldBossRandPointInfo) String() string { return proto.CompactTextString(m) }
  4034. func (*WorldBossRandPointInfo) ProtoMessage() {}
  4035. func (*WorldBossRandPointInfo) Descriptor() ([]byte, []int) {
  4036. return fileDescriptor_116e343673f7ffaf, []int{66}
  4037. }
  4038. func (m *WorldBossRandPointInfo) XXX_Unmarshal(b []byte) error {
  4039. return xxx_messageInfo_WorldBossRandPointInfo.Unmarshal(m, b)
  4040. }
  4041. func (m *WorldBossRandPointInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4042. return xxx_messageInfo_WorldBossRandPointInfo.Marshal(b, m, deterministic)
  4043. }
  4044. func (m *WorldBossRandPointInfo) XXX_Merge(src proto.Message) {
  4045. xxx_messageInfo_WorldBossRandPointInfo.Merge(m, src)
  4046. }
  4047. func (m *WorldBossRandPointInfo) XXX_Size() int {
  4048. return xxx_messageInfo_WorldBossRandPointInfo.Size(m)
  4049. }
  4050. func (m *WorldBossRandPointInfo) XXX_DiscardUnknown() {
  4051. xxx_messageInfo_WorldBossRandPointInfo.DiscardUnknown(m)
  4052. }
  4053. var xxx_messageInfo_WorldBossRandPointInfo proto.InternalMessageInfo
  4054. func (m *WorldBossRandPointInfo) GetRewardList() []int32 {
  4055. if m != nil {
  4056. return m.RewardList
  4057. }
  4058. return nil
  4059. }
  4060. func (m *WorldBossRandPointInfo) GetBossId() int32 {
  4061. if m != nil {
  4062. return m.BossId
  4063. }
  4064. return 0
  4065. }
  4066. func (m *WorldBossRandPointInfo) GetBossSummonIdx() int32 {
  4067. if m != nil {
  4068. return m.BossSummonIdx
  4069. }
  4070. return 0
  4071. }
  4072. func (m *WorldBossRandPointInfo) GetBossSummonType() int32 {
  4073. if m != nil {
  4074. return m.BossSummonType
  4075. }
  4076. return 0
  4077. }
  4078. func (m *WorldBossRandPointInfo) GetIsOffline() bool {
  4079. if m != nil {
  4080. return m.IsOffline
  4081. }
  4082. return false
  4083. }
  4084. // //////////////////////Task
  4085. // key value 类型
  4086. type TaskProgressType struct {
  4087. Key int32 `protobuf:"varint,1,opt,name=key,proto3" json:"key,omitempty"`
  4088. Value int32 `protobuf:"varint,2,opt,name=value,proto3" json:"value,omitempty"`
  4089. State int32 `protobuf:"varint,3,opt,name=state,proto3" json:"state,omitempty"`
  4090. Total uint32 `protobuf:"varint,4,opt,name=total,proto3" json:"total,omitempty"`
  4091. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4092. XXX_unrecognized []byte `json:"-"`
  4093. XXX_sizecache int32 `json:"-"`
  4094. }
  4095. func (m *TaskProgressType) Reset() { *m = TaskProgressType{} }
  4096. func (m *TaskProgressType) String() string { return proto.CompactTextString(m) }
  4097. func (*TaskProgressType) ProtoMessage() {}
  4098. func (*TaskProgressType) Descriptor() ([]byte, []int) {
  4099. return fileDescriptor_116e343673f7ffaf, []int{67}
  4100. }
  4101. func (m *TaskProgressType) XXX_Unmarshal(b []byte) error {
  4102. return xxx_messageInfo_TaskProgressType.Unmarshal(m, b)
  4103. }
  4104. func (m *TaskProgressType) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4105. return xxx_messageInfo_TaskProgressType.Marshal(b, m, deterministic)
  4106. }
  4107. func (m *TaskProgressType) XXX_Merge(src proto.Message) {
  4108. xxx_messageInfo_TaskProgressType.Merge(m, src)
  4109. }
  4110. func (m *TaskProgressType) XXX_Size() int {
  4111. return xxx_messageInfo_TaskProgressType.Size(m)
  4112. }
  4113. func (m *TaskProgressType) XXX_DiscardUnknown() {
  4114. xxx_messageInfo_TaskProgressType.DiscardUnknown(m)
  4115. }
  4116. var xxx_messageInfo_TaskProgressType proto.InternalMessageInfo
  4117. func (m *TaskProgressType) GetKey() int32 {
  4118. if m != nil {
  4119. return m.Key
  4120. }
  4121. return 0
  4122. }
  4123. func (m *TaskProgressType) GetValue() int32 {
  4124. if m != nil {
  4125. return m.Value
  4126. }
  4127. return 0
  4128. }
  4129. func (m *TaskProgressType) GetState() int32 {
  4130. if m != nil {
  4131. return m.State
  4132. }
  4133. return 0
  4134. }
  4135. func (m *TaskProgressType) GetTotal() uint32 {
  4136. if m != nil {
  4137. return m.Total
  4138. }
  4139. return 0
  4140. }
  4141. type TaskData struct {
  4142. TaskId uint32 `protobuf:"varint,1,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"`
  4143. Progress []*TaskProgressType `protobuf:"bytes,2,rep,name=progress,proto3" json:"progress,omitempty"`
  4144. State uint32 `protobuf:"varint,3,opt,name=state,proto3" json:"state,omitempty"`
  4145. BeginTime uint64 `protobuf:"varint,4,opt,name=begin_time,json=beginTime,proto3" json:"begin_time,omitempty"`
  4146. TaskType int32 `protobuf:"varint,5,opt,name=task_type,json=taskType,proto3" json:"task_type,omitempty"`
  4147. HardState int32 `protobuf:"varint,6,opt,name=hard_state,json=hardState,proto3" json:"hard_state,omitempty"`
  4148. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4149. XXX_unrecognized []byte `json:"-"`
  4150. XXX_sizecache int32 `json:"-"`
  4151. }
  4152. func (m *TaskData) Reset() { *m = TaskData{} }
  4153. func (m *TaskData) String() string { return proto.CompactTextString(m) }
  4154. func (*TaskData) ProtoMessage() {}
  4155. func (*TaskData) Descriptor() ([]byte, []int) {
  4156. return fileDescriptor_116e343673f7ffaf, []int{68}
  4157. }
  4158. func (m *TaskData) XXX_Unmarshal(b []byte) error {
  4159. return xxx_messageInfo_TaskData.Unmarshal(m, b)
  4160. }
  4161. func (m *TaskData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4162. return xxx_messageInfo_TaskData.Marshal(b, m, deterministic)
  4163. }
  4164. func (m *TaskData) XXX_Merge(src proto.Message) {
  4165. xxx_messageInfo_TaskData.Merge(m, src)
  4166. }
  4167. func (m *TaskData) XXX_Size() int {
  4168. return xxx_messageInfo_TaskData.Size(m)
  4169. }
  4170. func (m *TaskData) XXX_DiscardUnknown() {
  4171. xxx_messageInfo_TaskData.DiscardUnknown(m)
  4172. }
  4173. var xxx_messageInfo_TaskData proto.InternalMessageInfo
  4174. func (m *TaskData) GetTaskId() uint32 {
  4175. if m != nil {
  4176. return m.TaskId
  4177. }
  4178. return 0
  4179. }
  4180. func (m *TaskData) GetProgress() []*TaskProgressType {
  4181. if m != nil {
  4182. return m.Progress
  4183. }
  4184. return nil
  4185. }
  4186. func (m *TaskData) GetState() uint32 {
  4187. if m != nil {
  4188. return m.State
  4189. }
  4190. return 0
  4191. }
  4192. func (m *TaskData) GetBeginTime() uint64 {
  4193. if m != nil {
  4194. return m.BeginTime
  4195. }
  4196. return 0
  4197. }
  4198. func (m *TaskData) GetTaskType() int32 {
  4199. if m != nil {
  4200. return m.TaskType
  4201. }
  4202. return 0
  4203. }
  4204. func (m *TaskData) GetHardState() int32 {
  4205. if m != nil {
  4206. return m.HardState
  4207. }
  4208. return 0
  4209. }
  4210. type HeadCond struct {
  4211. HeadId int32 `protobuf:"varint,1,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  4212. TaskList []*TaskData `protobuf:"bytes,2,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  4213. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4214. XXX_unrecognized []byte `json:"-"`
  4215. XXX_sizecache int32 `json:"-"`
  4216. }
  4217. func (m *HeadCond) Reset() { *m = HeadCond{} }
  4218. func (m *HeadCond) String() string { return proto.CompactTextString(m) }
  4219. func (*HeadCond) ProtoMessage() {}
  4220. func (*HeadCond) Descriptor() ([]byte, []int) {
  4221. return fileDescriptor_116e343673f7ffaf, []int{69}
  4222. }
  4223. func (m *HeadCond) XXX_Unmarshal(b []byte) error {
  4224. return xxx_messageInfo_HeadCond.Unmarshal(m, b)
  4225. }
  4226. func (m *HeadCond) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4227. return xxx_messageInfo_HeadCond.Marshal(b, m, deterministic)
  4228. }
  4229. func (m *HeadCond) XXX_Merge(src proto.Message) {
  4230. xxx_messageInfo_HeadCond.Merge(m, src)
  4231. }
  4232. func (m *HeadCond) XXX_Size() int {
  4233. return xxx_messageInfo_HeadCond.Size(m)
  4234. }
  4235. func (m *HeadCond) XXX_DiscardUnknown() {
  4236. xxx_messageInfo_HeadCond.DiscardUnknown(m)
  4237. }
  4238. var xxx_messageInfo_HeadCond proto.InternalMessageInfo
  4239. func (m *HeadCond) GetHeadId() int32 {
  4240. if m != nil {
  4241. return m.HeadId
  4242. }
  4243. return 0
  4244. }
  4245. func (m *HeadCond) GetTaskList() []*TaskData {
  4246. if m != nil {
  4247. return m.TaskList
  4248. }
  4249. return nil
  4250. }
  4251. type RoleHeadCond struct {
  4252. Conditions []*HeadCond `protobuf:"bytes,1,rep,name=conditions,proto3" json:"conditions,omitempty"`
  4253. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4254. XXX_unrecognized []byte `json:"-"`
  4255. XXX_sizecache int32 `json:"-"`
  4256. }
  4257. func (m *RoleHeadCond) Reset() { *m = RoleHeadCond{} }
  4258. func (m *RoleHeadCond) String() string { return proto.CompactTextString(m) }
  4259. func (*RoleHeadCond) ProtoMessage() {}
  4260. func (*RoleHeadCond) Descriptor() ([]byte, []int) {
  4261. return fileDescriptor_116e343673f7ffaf, []int{70}
  4262. }
  4263. func (m *RoleHeadCond) XXX_Unmarshal(b []byte) error {
  4264. return xxx_messageInfo_RoleHeadCond.Unmarshal(m, b)
  4265. }
  4266. func (m *RoleHeadCond) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4267. return xxx_messageInfo_RoleHeadCond.Marshal(b, m, deterministic)
  4268. }
  4269. func (m *RoleHeadCond) XXX_Merge(src proto.Message) {
  4270. xxx_messageInfo_RoleHeadCond.Merge(m, src)
  4271. }
  4272. func (m *RoleHeadCond) XXX_Size() int {
  4273. return xxx_messageInfo_RoleHeadCond.Size(m)
  4274. }
  4275. func (m *RoleHeadCond) XXX_DiscardUnknown() {
  4276. xxx_messageInfo_RoleHeadCond.DiscardUnknown(m)
  4277. }
  4278. var xxx_messageInfo_RoleHeadCond proto.InternalMessageInfo
  4279. func (m *RoleHeadCond) GetConditions() []*HeadCond {
  4280. if m != nil {
  4281. return m.Conditions
  4282. }
  4283. return nil
  4284. }
  4285. type HeroCond struct {
  4286. HeroId int32 `protobuf:"varint,1,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  4287. TaskList []*TaskData `protobuf:"bytes,2,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  4288. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4289. XXX_unrecognized []byte `json:"-"`
  4290. XXX_sizecache int32 `json:"-"`
  4291. }
  4292. func (m *HeroCond) Reset() { *m = HeroCond{} }
  4293. func (m *HeroCond) String() string { return proto.CompactTextString(m) }
  4294. func (*HeroCond) ProtoMessage() {}
  4295. func (*HeroCond) Descriptor() ([]byte, []int) {
  4296. return fileDescriptor_116e343673f7ffaf, []int{71}
  4297. }
  4298. func (m *HeroCond) XXX_Unmarshal(b []byte) error {
  4299. return xxx_messageInfo_HeroCond.Unmarshal(m, b)
  4300. }
  4301. func (m *HeroCond) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4302. return xxx_messageInfo_HeroCond.Marshal(b, m, deterministic)
  4303. }
  4304. func (m *HeroCond) XXX_Merge(src proto.Message) {
  4305. xxx_messageInfo_HeroCond.Merge(m, src)
  4306. }
  4307. func (m *HeroCond) XXX_Size() int {
  4308. return xxx_messageInfo_HeroCond.Size(m)
  4309. }
  4310. func (m *HeroCond) XXX_DiscardUnknown() {
  4311. xxx_messageInfo_HeroCond.DiscardUnknown(m)
  4312. }
  4313. var xxx_messageInfo_HeroCond proto.InternalMessageInfo
  4314. func (m *HeroCond) GetHeroId() int32 {
  4315. if m != nil {
  4316. return m.HeroId
  4317. }
  4318. return 0
  4319. }
  4320. func (m *HeroCond) GetTaskList() []*TaskData {
  4321. if m != nil {
  4322. return m.TaskList
  4323. }
  4324. return nil
  4325. }
  4326. type RoleHeroCond struct {
  4327. Conditions []*HeroCond `protobuf:"bytes,1,rep,name=conditions,proto3" json:"conditions,omitempty"`
  4328. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4329. XXX_unrecognized []byte `json:"-"`
  4330. XXX_sizecache int32 `json:"-"`
  4331. }
  4332. func (m *RoleHeroCond) Reset() { *m = RoleHeroCond{} }
  4333. func (m *RoleHeroCond) String() string { return proto.CompactTextString(m) }
  4334. func (*RoleHeroCond) ProtoMessage() {}
  4335. func (*RoleHeroCond) Descriptor() ([]byte, []int) {
  4336. return fileDescriptor_116e343673f7ffaf, []int{72}
  4337. }
  4338. func (m *RoleHeroCond) XXX_Unmarshal(b []byte) error {
  4339. return xxx_messageInfo_RoleHeroCond.Unmarshal(m, b)
  4340. }
  4341. func (m *RoleHeroCond) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4342. return xxx_messageInfo_RoleHeroCond.Marshal(b, m, deterministic)
  4343. }
  4344. func (m *RoleHeroCond) XXX_Merge(src proto.Message) {
  4345. xxx_messageInfo_RoleHeroCond.Merge(m, src)
  4346. }
  4347. func (m *RoleHeroCond) XXX_Size() int {
  4348. return xxx_messageInfo_RoleHeroCond.Size(m)
  4349. }
  4350. func (m *RoleHeroCond) XXX_DiscardUnknown() {
  4351. xxx_messageInfo_RoleHeroCond.DiscardUnknown(m)
  4352. }
  4353. var xxx_messageInfo_RoleHeroCond proto.InternalMessageInfo
  4354. func (m *RoleHeroCond) GetConditions() []*HeroCond {
  4355. if m != nil {
  4356. return m.Conditions
  4357. }
  4358. return nil
  4359. }
  4360. type RoleTask struct {
  4361. TaskList []*TaskData `protobuf:"bytes,1,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  4362. Condition []*ChangeJob `protobuf:"bytes,2,rep,name=condition,proto3" json:"condition,omitempty"`
  4363. HeadCond *RoleHeadCond `protobuf:"bytes,3,opt,name=head_cond,json=headCond,proto3" json:"head_cond,omitempty"`
  4364. HeroCond *RoleHeroCond `protobuf:"bytes,4,opt,name=hero_cond,json=heroCond,proto3" json:"hero_cond,omitempty"`
  4365. DailyTaskScore *KeyValueType `protobuf:"bytes,5,opt,name=daily_task_score,json=dailyTaskScore,proto3" json:"daily_task_score,omitempty"`
  4366. WeekTaskScore *KeyValueType `protobuf:"bytes,6,opt,name=week_task_score,json=weekTaskScore,proto3" json:"week_task_score,omitempty"`
  4367. // 任务通用累计计数
  4368. TotalAddZeny uint64 `protobuf:"varint,7,opt,name=total_add_zeny,json=totalAddZeny,proto3" json:"total_add_zeny,omitempty"`
  4369. AccumulativeCardMvp int32 `protobuf:"varint,8,opt,name=accumulative_card_mvp,json=accumulativeCardMvp,proto3" json:"accumulative_card_mvp,omitempty"`
  4370. Latest5HourTime uint64 `protobuf:"varint,9,opt,name=latest5_hour_time,json=latest5HourTime,proto3" json:"latest5_hour_time,omitempty"`
  4371. LatestWeek5HourTime uint64 `protobuf:"varint,10,opt,name=latest_week5_hour_time,json=latestWeek5HourTime,proto3" json:"latest_week5_hour_time,omitempty"`
  4372. TypeRecCount []*KeyValueType `protobuf:"bytes,11,rep,name=type_rec_count,json=typeRecCount,proto3" json:"type_rec_count,omitempty"`
  4373. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4374. XXX_unrecognized []byte `json:"-"`
  4375. XXX_sizecache int32 `json:"-"`
  4376. }
  4377. func (m *RoleTask) Reset() { *m = RoleTask{} }
  4378. func (m *RoleTask) String() string { return proto.CompactTextString(m) }
  4379. func (*RoleTask) ProtoMessage() {}
  4380. func (*RoleTask) Descriptor() ([]byte, []int) {
  4381. return fileDescriptor_116e343673f7ffaf, []int{73}
  4382. }
  4383. func (m *RoleTask) XXX_Unmarshal(b []byte) error {
  4384. return xxx_messageInfo_RoleTask.Unmarshal(m, b)
  4385. }
  4386. func (m *RoleTask) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4387. return xxx_messageInfo_RoleTask.Marshal(b, m, deterministic)
  4388. }
  4389. func (m *RoleTask) XXX_Merge(src proto.Message) {
  4390. xxx_messageInfo_RoleTask.Merge(m, src)
  4391. }
  4392. func (m *RoleTask) XXX_Size() int {
  4393. return xxx_messageInfo_RoleTask.Size(m)
  4394. }
  4395. func (m *RoleTask) XXX_DiscardUnknown() {
  4396. xxx_messageInfo_RoleTask.DiscardUnknown(m)
  4397. }
  4398. var xxx_messageInfo_RoleTask proto.InternalMessageInfo
  4399. func (m *RoleTask) GetTaskList() []*TaskData {
  4400. if m != nil {
  4401. return m.TaskList
  4402. }
  4403. return nil
  4404. }
  4405. func (m *RoleTask) GetCondition() []*ChangeJob {
  4406. if m != nil {
  4407. return m.Condition
  4408. }
  4409. return nil
  4410. }
  4411. func (m *RoleTask) GetHeadCond() *RoleHeadCond {
  4412. if m != nil {
  4413. return m.HeadCond
  4414. }
  4415. return nil
  4416. }
  4417. func (m *RoleTask) GetHeroCond() *RoleHeroCond {
  4418. if m != nil {
  4419. return m.HeroCond
  4420. }
  4421. return nil
  4422. }
  4423. func (m *RoleTask) GetDailyTaskScore() *KeyValueType {
  4424. if m != nil {
  4425. return m.DailyTaskScore
  4426. }
  4427. return nil
  4428. }
  4429. func (m *RoleTask) GetWeekTaskScore() *KeyValueType {
  4430. if m != nil {
  4431. return m.WeekTaskScore
  4432. }
  4433. return nil
  4434. }
  4435. func (m *RoleTask) GetTotalAddZeny() uint64 {
  4436. if m != nil {
  4437. return m.TotalAddZeny
  4438. }
  4439. return 0
  4440. }
  4441. func (m *RoleTask) GetAccumulativeCardMvp() int32 {
  4442. if m != nil {
  4443. return m.AccumulativeCardMvp
  4444. }
  4445. return 0
  4446. }
  4447. func (m *RoleTask) GetLatest5HourTime() uint64 {
  4448. if m != nil {
  4449. return m.Latest5HourTime
  4450. }
  4451. return 0
  4452. }
  4453. func (m *RoleTask) GetLatestWeek5HourTime() uint64 {
  4454. if m != nil {
  4455. return m.LatestWeek5HourTime
  4456. }
  4457. return 0
  4458. }
  4459. func (m *RoleTask) GetTypeRecCount() []*KeyValueType {
  4460. if m != nil {
  4461. return m.TypeRecCount
  4462. }
  4463. return nil
  4464. }
  4465. type SlotFightPower struct {
  4466. HeroId int32 `protobuf:"varint,1,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  4467. HeroFightPower uint64 `protobuf:"varint,2,opt,name=hero_fight_power,json=heroFightPower,proto3" json:"hero_fight_power,omitempty"`
  4468. PetFightPower uint64 `protobuf:"varint,3,opt,name=pet_fight_power,json=petFightPower,proto3" json:"pet_fight_power,omitempty"`
  4469. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4470. XXX_unrecognized []byte `json:"-"`
  4471. XXX_sizecache int32 `json:"-"`
  4472. }
  4473. func (m *SlotFightPower) Reset() { *m = SlotFightPower{} }
  4474. func (m *SlotFightPower) String() string { return proto.CompactTextString(m) }
  4475. func (*SlotFightPower) ProtoMessage() {}
  4476. func (*SlotFightPower) Descriptor() ([]byte, []int) {
  4477. return fileDescriptor_116e343673f7ffaf, []int{74}
  4478. }
  4479. func (m *SlotFightPower) XXX_Unmarshal(b []byte) error {
  4480. return xxx_messageInfo_SlotFightPower.Unmarshal(m, b)
  4481. }
  4482. func (m *SlotFightPower) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4483. return xxx_messageInfo_SlotFightPower.Marshal(b, m, deterministic)
  4484. }
  4485. func (m *SlotFightPower) XXX_Merge(src proto.Message) {
  4486. xxx_messageInfo_SlotFightPower.Merge(m, src)
  4487. }
  4488. func (m *SlotFightPower) XXX_Size() int {
  4489. return xxx_messageInfo_SlotFightPower.Size(m)
  4490. }
  4491. func (m *SlotFightPower) XXX_DiscardUnknown() {
  4492. xxx_messageInfo_SlotFightPower.DiscardUnknown(m)
  4493. }
  4494. var xxx_messageInfo_SlotFightPower proto.InternalMessageInfo
  4495. func (m *SlotFightPower) GetHeroId() int32 {
  4496. if m != nil {
  4497. return m.HeroId
  4498. }
  4499. return 0
  4500. }
  4501. func (m *SlotFightPower) GetHeroFightPower() uint64 {
  4502. if m != nil {
  4503. return m.HeroFightPower
  4504. }
  4505. return 0
  4506. }
  4507. func (m *SlotFightPower) GetPetFightPower() uint64 {
  4508. if m != nil {
  4509. return m.PetFightPower
  4510. }
  4511. return 0
  4512. }
  4513. type FightPowerData struct {
  4514. TotalFightpower uint32 `protobuf:"varint,1,opt,name=total_fightpower,json=totalFightpower,proto3" json:"total_fightpower,omitempty"`
  4515. SlotFightpower []*SlotFightPower `protobuf:"bytes,2,rep,name=slot_fightpower,json=slotFightpower,proto3" json:"slot_fightpower,omitempty"`
  4516. PetBondFightpower uint32 `protobuf:"varint,3,opt,name=pet_bond_fightpower,json=petBondFightpower,proto3" json:"pet_bond_fightpower,omitempty"`
  4517. ActorFightpower []*SlotFightPower `protobuf:"bytes,4,rep,name=actor_fightpower,json=actorFightpower,proto3" json:"actor_fightpower,omitempty"`
  4518. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4519. XXX_unrecognized []byte `json:"-"`
  4520. XXX_sizecache int32 `json:"-"`
  4521. }
  4522. func (m *FightPowerData) Reset() { *m = FightPowerData{} }
  4523. func (m *FightPowerData) String() string { return proto.CompactTextString(m) }
  4524. func (*FightPowerData) ProtoMessage() {}
  4525. func (*FightPowerData) Descriptor() ([]byte, []int) {
  4526. return fileDescriptor_116e343673f7ffaf, []int{75}
  4527. }
  4528. func (m *FightPowerData) XXX_Unmarshal(b []byte) error {
  4529. return xxx_messageInfo_FightPowerData.Unmarshal(m, b)
  4530. }
  4531. func (m *FightPowerData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4532. return xxx_messageInfo_FightPowerData.Marshal(b, m, deterministic)
  4533. }
  4534. func (m *FightPowerData) XXX_Merge(src proto.Message) {
  4535. xxx_messageInfo_FightPowerData.Merge(m, src)
  4536. }
  4537. func (m *FightPowerData) XXX_Size() int {
  4538. return xxx_messageInfo_FightPowerData.Size(m)
  4539. }
  4540. func (m *FightPowerData) XXX_DiscardUnknown() {
  4541. xxx_messageInfo_FightPowerData.DiscardUnknown(m)
  4542. }
  4543. var xxx_messageInfo_FightPowerData proto.InternalMessageInfo
  4544. func (m *FightPowerData) GetTotalFightpower() uint32 {
  4545. if m != nil {
  4546. return m.TotalFightpower
  4547. }
  4548. return 0
  4549. }
  4550. func (m *FightPowerData) GetSlotFightpower() []*SlotFightPower {
  4551. if m != nil {
  4552. return m.SlotFightpower
  4553. }
  4554. return nil
  4555. }
  4556. func (m *FightPowerData) GetPetBondFightpower() uint32 {
  4557. if m != nil {
  4558. return m.PetBondFightpower
  4559. }
  4560. return 0
  4561. }
  4562. func (m *FightPowerData) GetActorFightpower() []*SlotFightPower {
  4563. if m != nil {
  4564. return m.ActorFightpower
  4565. }
  4566. return nil
  4567. }
  4568. // //////////////////////Arena
  4569. type RushArena struct {
  4570. RushRound int32 `protobuf:"varint,1,opt,name=rush_round,json=rushRound,proto3" json:"rush_round,omitempty"`
  4571. Count int32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  4572. Reward int32 `protobuf:"varint,3,opt,name=reward,proto3" json:"reward,omitempty"`
  4573. RankReward int32 `protobuf:"varint,4,opt,name=rank_reward,json=rankReward,proto3" json:"rank_reward,omitempty"`
  4574. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4575. XXX_unrecognized []byte `json:"-"`
  4576. XXX_sizecache int32 `json:"-"`
  4577. }
  4578. func (m *RushArena) Reset() { *m = RushArena{} }
  4579. func (m *RushArena) String() string { return proto.CompactTextString(m) }
  4580. func (*RushArena) ProtoMessage() {}
  4581. func (*RushArena) Descriptor() ([]byte, []int) {
  4582. return fileDescriptor_116e343673f7ffaf, []int{76}
  4583. }
  4584. func (m *RushArena) XXX_Unmarshal(b []byte) error {
  4585. return xxx_messageInfo_RushArena.Unmarshal(m, b)
  4586. }
  4587. func (m *RushArena) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4588. return xxx_messageInfo_RushArena.Marshal(b, m, deterministic)
  4589. }
  4590. func (m *RushArena) XXX_Merge(src proto.Message) {
  4591. xxx_messageInfo_RushArena.Merge(m, src)
  4592. }
  4593. func (m *RushArena) XXX_Size() int {
  4594. return xxx_messageInfo_RushArena.Size(m)
  4595. }
  4596. func (m *RushArena) XXX_DiscardUnknown() {
  4597. xxx_messageInfo_RushArena.DiscardUnknown(m)
  4598. }
  4599. var xxx_messageInfo_RushArena proto.InternalMessageInfo
  4600. func (m *RushArena) GetRushRound() int32 {
  4601. if m != nil {
  4602. return m.RushRound
  4603. }
  4604. return 0
  4605. }
  4606. func (m *RushArena) GetCount() int32 {
  4607. if m != nil {
  4608. return m.Count
  4609. }
  4610. return 0
  4611. }
  4612. func (m *RushArena) GetReward() int32 {
  4613. if m != nil {
  4614. return m.Reward
  4615. }
  4616. return 0
  4617. }
  4618. func (m *RushArena) GetRankReward() int32 {
  4619. if m != nil {
  4620. return m.RankReward
  4621. }
  4622. return 0
  4623. }
  4624. type ArenaInfo struct {
  4625. ChallengeCount int32 `protobuf:"varint,1,opt,name=challenge_count,json=challengeCount,proto3" json:"challenge_count,omitempty"`
  4626. RewardCount int32 `protobuf:"varint,2,opt,name=reward_count,json=rewardCount,proto3" json:"reward_count,omitempty"`
  4627. BuyCount int32 `protobuf:"varint,3,opt,name=buy_count,json=buyCount,proto3" json:"buy_count,omitempty"`
  4628. Score int32 `protobuf:"varint,4,opt,name=score,proto3" json:"score,omitempty"`
  4629. WinCount int32 `protobuf:"varint,5,opt,name=win_count,json=winCount,proto3" json:"win_count,omitempty"`
  4630. TotalCount int32 `protobuf:"varint,6,opt,name=total_count,json=totalCount,proto3" json:"total_count,omitempty"`
  4631. OldScore int32 `protobuf:"varint,7,opt,name=old_score,json=oldScore,proto3" json:"old_score,omitempty"`
  4632. WinStreak int32 `protobuf:"varint,8,opt,name=win_streak,json=winStreak,proto3" json:"win_streak,omitempty"`
  4633. FailedStreak int32 `protobuf:"varint,9,opt,name=failed_streak,json=failedStreak,proto3" json:"failed_streak,omitempty"`
  4634. LastChallengePlayer uint64 `protobuf:"varint,10,opt,name=last_challenge_player,json=lastChallengePlayer,proto3" json:"last_challenge_player,omitempty"`
  4635. SelfHeroList []int32 `protobuf:"varint,11,rep,packed,name=self_hero_list,json=selfHeroList,proto3" json:"self_hero_list,omitempty"`
  4636. ArenaSeasonId int32 `protobuf:"varint,12,opt,name=arena_season_id,json=arenaSeasonId,proto3" json:"arena_season_id,omitempty"`
  4637. LastArenaSeasonTime uint64 `protobuf:"varint,13,opt,name=last_arena_season_time,json=lastArenaSeasonTime,proto3" json:"last_arena_season_time,omitempty"`
  4638. // 历史记录换赛季不清空
  4639. RecordWinCount int32 `protobuf:"varint,14,opt,name=record_win_count,json=recordWinCount,proto3" json:"record_win_count,omitempty"`
  4640. RecordTotalCount int32 `protobuf:"varint,15,opt,name=record_total_count,json=recordTotalCount,proto3" json:"record_total_count,omitempty"`
  4641. RushArena *RushArena `protobuf:"bytes,16,opt,name=rush_arena,json=rushArena,proto3" json:"rush_arena,omitempty"`
  4642. ArenaSeasonIdReduce int32 `protobuf:"varint,17,opt,name=arena_season_id_reduce,json=arenaSeasonIdReduce,proto3" json:"arena_season_id_reduce,omitempty"`
  4643. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4644. XXX_unrecognized []byte `json:"-"`
  4645. XXX_sizecache int32 `json:"-"`
  4646. }
  4647. func (m *ArenaInfo) Reset() { *m = ArenaInfo{} }
  4648. func (m *ArenaInfo) String() string { return proto.CompactTextString(m) }
  4649. func (*ArenaInfo) ProtoMessage() {}
  4650. func (*ArenaInfo) Descriptor() ([]byte, []int) {
  4651. return fileDescriptor_116e343673f7ffaf, []int{77}
  4652. }
  4653. func (m *ArenaInfo) XXX_Unmarshal(b []byte) error {
  4654. return xxx_messageInfo_ArenaInfo.Unmarshal(m, b)
  4655. }
  4656. func (m *ArenaInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4657. return xxx_messageInfo_ArenaInfo.Marshal(b, m, deterministic)
  4658. }
  4659. func (m *ArenaInfo) XXX_Merge(src proto.Message) {
  4660. xxx_messageInfo_ArenaInfo.Merge(m, src)
  4661. }
  4662. func (m *ArenaInfo) XXX_Size() int {
  4663. return xxx_messageInfo_ArenaInfo.Size(m)
  4664. }
  4665. func (m *ArenaInfo) XXX_DiscardUnknown() {
  4666. xxx_messageInfo_ArenaInfo.DiscardUnknown(m)
  4667. }
  4668. var xxx_messageInfo_ArenaInfo proto.InternalMessageInfo
  4669. func (m *ArenaInfo) GetChallengeCount() int32 {
  4670. if m != nil {
  4671. return m.ChallengeCount
  4672. }
  4673. return 0
  4674. }
  4675. func (m *ArenaInfo) GetRewardCount() int32 {
  4676. if m != nil {
  4677. return m.RewardCount
  4678. }
  4679. return 0
  4680. }
  4681. func (m *ArenaInfo) GetBuyCount() int32 {
  4682. if m != nil {
  4683. return m.BuyCount
  4684. }
  4685. return 0
  4686. }
  4687. func (m *ArenaInfo) GetScore() int32 {
  4688. if m != nil {
  4689. return m.Score
  4690. }
  4691. return 0
  4692. }
  4693. func (m *ArenaInfo) GetWinCount() int32 {
  4694. if m != nil {
  4695. return m.WinCount
  4696. }
  4697. return 0
  4698. }
  4699. func (m *ArenaInfo) GetTotalCount() int32 {
  4700. if m != nil {
  4701. return m.TotalCount
  4702. }
  4703. return 0
  4704. }
  4705. func (m *ArenaInfo) GetOldScore() int32 {
  4706. if m != nil {
  4707. return m.OldScore
  4708. }
  4709. return 0
  4710. }
  4711. func (m *ArenaInfo) GetWinStreak() int32 {
  4712. if m != nil {
  4713. return m.WinStreak
  4714. }
  4715. return 0
  4716. }
  4717. func (m *ArenaInfo) GetFailedStreak() int32 {
  4718. if m != nil {
  4719. return m.FailedStreak
  4720. }
  4721. return 0
  4722. }
  4723. func (m *ArenaInfo) GetLastChallengePlayer() uint64 {
  4724. if m != nil {
  4725. return m.LastChallengePlayer
  4726. }
  4727. return 0
  4728. }
  4729. func (m *ArenaInfo) GetSelfHeroList() []int32 {
  4730. if m != nil {
  4731. return m.SelfHeroList
  4732. }
  4733. return nil
  4734. }
  4735. func (m *ArenaInfo) GetArenaSeasonId() int32 {
  4736. if m != nil {
  4737. return m.ArenaSeasonId
  4738. }
  4739. return 0
  4740. }
  4741. func (m *ArenaInfo) GetLastArenaSeasonTime() uint64 {
  4742. if m != nil {
  4743. return m.LastArenaSeasonTime
  4744. }
  4745. return 0
  4746. }
  4747. func (m *ArenaInfo) GetRecordWinCount() int32 {
  4748. if m != nil {
  4749. return m.RecordWinCount
  4750. }
  4751. return 0
  4752. }
  4753. func (m *ArenaInfo) GetRecordTotalCount() int32 {
  4754. if m != nil {
  4755. return m.RecordTotalCount
  4756. }
  4757. return 0
  4758. }
  4759. func (m *ArenaInfo) GetRushArena() *RushArena {
  4760. if m != nil {
  4761. return m.RushArena
  4762. }
  4763. return nil
  4764. }
  4765. func (m *ArenaInfo) GetArenaSeasonIdReduce() int32 {
  4766. if m != nil {
  4767. return m.ArenaSeasonIdReduce
  4768. }
  4769. return 0
  4770. }
  4771. // 道场排行信息
  4772. type ArenaRankInfo struct {
  4773. Rank int32 `protobuf:"varint,1,opt,name=rank,proto3" json:"rank,omitempty"`
  4774. BriefInfo *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief_info,json=briefInfo,proto3" json:"brief_info,omitempty"`
  4775. Score int32 `protobuf:"varint,3,opt,name=score,proto3" json:"score,omitempty"`
  4776. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4777. XXX_unrecognized []byte `json:"-"`
  4778. XXX_sizecache int32 `json:"-"`
  4779. }
  4780. func (m *ArenaRankInfo) Reset() { *m = ArenaRankInfo{} }
  4781. func (m *ArenaRankInfo) String() string { return proto.CompactTextString(m) }
  4782. func (*ArenaRankInfo) ProtoMessage() {}
  4783. func (*ArenaRankInfo) Descriptor() ([]byte, []int) {
  4784. return fileDescriptor_116e343673f7ffaf, []int{78}
  4785. }
  4786. func (m *ArenaRankInfo) XXX_Unmarshal(b []byte) error {
  4787. return xxx_messageInfo_ArenaRankInfo.Unmarshal(m, b)
  4788. }
  4789. func (m *ArenaRankInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4790. return xxx_messageInfo_ArenaRankInfo.Marshal(b, m, deterministic)
  4791. }
  4792. func (m *ArenaRankInfo) XXX_Merge(src proto.Message) {
  4793. xxx_messageInfo_ArenaRankInfo.Merge(m, src)
  4794. }
  4795. func (m *ArenaRankInfo) XXX_Size() int {
  4796. return xxx_messageInfo_ArenaRankInfo.Size(m)
  4797. }
  4798. func (m *ArenaRankInfo) XXX_DiscardUnknown() {
  4799. xxx_messageInfo_ArenaRankInfo.DiscardUnknown(m)
  4800. }
  4801. var xxx_messageInfo_ArenaRankInfo proto.InternalMessageInfo
  4802. func (m *ArenaRankInfo) GetRank() int32 {
  4803. if m != nil {
  4804. return m.Rank
  4805. }
  4806. return 0
  4807. }
  4808. func (m *ArenaRankInfo) GetBriefInfo() *CommonPlayerBriefInfo {
  4809. if m != nil {
  4810. return m.BriefInfo
  4811. }
  4812. return nil
  4813. }
  4814. func (m *ArenaRankInfo) GetScore() int32 {
  4815. if m != nil {
  4816. return m.Score
  4817. }
  4818. return 0
  4819. }
  4820. type RoleArena struct {
  4821. Arena *ArenaInfo `protobuf:"bytes,1,opt,name=arena,proto3" json:"arena,omitempty"`
  4822. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4823. XXX_unrecognized []byte `json:"-"`
  4824. XXX_sizecache int32 `json:"-"`
  4825. }
  4826. func (m *RoleArena) Reset() { *m = RoleArena{} }
  4827. func (m *RoleArena) String() string { return proto.CompactTextString(m) }
  4828. func (*RoleArena) ProtoMessage() {}
  4829. func (*RoleArena) Descriptor() ([]byte, []int) {
  4830. return fileDescriptor_116e343673f7ffaf, []int{79}
  4831. }
  4832. func (m *RoleArena) XXX_Unmarshal(b []byte) error {
  4833. return xxx_messageInfo_RoleArena.Unmarshal(m, b)
  4834. }
  4835. func (m *RoleArena) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4836. return xxx_messageInfo_RoleArena.Marshal(b, m, deterministic)
  4837. }
  4838. func (m *RoleArena) XXX_Merge(src proto.Message) {
  4839. xxx_messageInfo_RoleArena.Merge(m, src)
  4840. }
  4841. func (m *RoleArena) XXX_Size() int {
  4842. return xxx_messageInfo_RoleArena.Size(m)
  4843. }
  4844. func (m *RoleArena) XXX_DiscardUnknown() {
  4845. xxx_messageInfo_RoleArena.DiscardUnknown(m)
  4846. }
  4847. var xxx_messageInfo_RoleArena proto.InternalMessageInfo
  4848. func (m *RoleArena) GetArena() *ArenaInfo {
  4849. if m != nil {
  4850. return m.Arena
  4851. }
  4852. return nil
  4853. }
  4854. // //////////////////////mail
  4855. type MailContent struct {
  4856. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  4857. ConfigId int32 `protobuf:"varint,2,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  4858. Type int32 `protobuf:"varint,3,opt,name=type,proto3" json:"type,omitempty"`
  4859. RewardList []*KeyValueType `protobuf:"bytes,4,rep,name=reward_list,json=rewardList,proto3" json:"reward_list,omitempty"`
  4860. BeginTime uint64 `protobuf:"varint,5,opt,name=begin_time,json=beginTime,proto3" json:"begin_time,omitempty"`
  4861. ExpireTime uint64 `protobuf:"varint,6,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"`
  4862. // 0未读取 1已读取 | 00未获取 10已获取 | 000 未删除 100 已删除
  4863. State int32 `protobuf:"varint,7,opt,name=state,proto3" json:"state,omitempty"`
  4864. ParamList []int32 `protobuf:"varint,8,rep,packed,name=param_list,json=paramList,proto3" json:"param_list,omitempty"`
  4865. Title string `protobuf:"bytes,9,opt,name=title,proto3" json:"title,omitempty"`
  4866. Content string `protobuf:"bytes,10,opt,name=content,proto3" json:"content,omitempty"`
  4867. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4868. XXX_unrecognized []byte `json:"-"`
  4869. XXX_sizecache int32 `json:"-"`
  4870. }
  4871. func (m *MailContent) Reset() { *m = MailContent{} }
  4872. func (m *MailContent) String() string { return proto.CompactTextString(m) }
  4873. func (*MailContent) ProtoMessage() {}
  4874. func (*MailContent) Descriptor() ([]byte, []int) {
  4875. return fileDescriptor_116e343673f7ffaf, []int{80}
  4876. }
  4877. func (m *MailContent) XXX_Unmarshal(b []byte) error {
  4878. return xxx_messageInfo_MailContent.Unmarshal(m, b)
  4879. }
  4880. func (m *MailContent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4881. return xxx_messageInfo_MailContent.Marshal(b, m, deterministic)
  4882. }
  4883. func (m *MailContent) XXX_Merge(src proto.Message) {
  4884. xxx_messageInfo_MailContent.Merge(m, src)
  4885. }
  4886. func (m *MailContent) XXX_Size() int {
  4887. return xxx_messageInfo_MailContent.Size(m)
  4888. }
  4889. func (m *MailContent) XXX_DiscardUnknown() {
  4890. xxx_messageInfo_MailContent.DiscardUnknown(m)
  4891. }
  4892. var xxx_messageInfo_MailContent proto.InternalMessageInfo
  4893. func (m *MailContent) GetId() int32 {
  4894. if m != nil {
  4895. return m.Id
  4896. }
  4897. return 0
  4898. }
  4899. func (m *MailContent) GetConfigId() int32 {
  4900. if m != nil {
  4901. return m.ConfigId
  4902. }
  4903. return 0
  4904. }
  4905. func (m *MailContent) GetType() int32 {
  4906. if m != nil {
  4907. return m.Type
  4908. }
  4909. return 0
  4910. }
  4911. func (m *MailContent) GetRewardList() []*KeyValueType {
  4912. if m != nil {
  4913. return m.RewardList
  4914. }
  4915. return nil
  4916. }
  4917. func (m *MailContent) GetBeginTime() uint64 {
  4918. if m != nil {
  4919. return m.BeginTime
  4920. }
  4921. return 0
  4922. }
  4923. func (m *MailContent) GetExpireTime() uint64 {
  4924. if m != nil {
  4925. return m.ExpireTime
  4926. }
  4927. return 0
  4928. }
  4929. func (m *MailContent) GetState() int32 {
  4930. if m != nil {
  4931. return m.State
  4932. }
  4933. return 0
  4934. }
  4935. func (m *MailContent) GetParamList() []int32 {
  4936. if m != nil {
  4937. return m.ParamList
  4938. }
  4939. return nil
  4940. }
  4941. func (m *MailContent) GetTitle() string {
  4942. if m != nil {
  4943. return m.Title
  4944. }
  4945. return ""
  4946. }
  4947. func (m *MailContent) GetContent() string {
  4948. if m != nil {
  4949. return m.Content
  4950. }
  4951. return ""
  4952. }
  4953. type RoleMail struct {
  4954. MailList []*MailContent `protobuf:"bytes,1,rep,name=mail_list,json=mailList,proto3" json:"mail_list,omitempty"`
  4955. MaxMailId int32 `protobuf:"varint,2,opt,name=max_mail_id,json=maxMailId,proto3" json:"max_mail_id,omitempty"`
  4956. CurrGlobalMailId int32 `protobuf:"varint,3,opt,name=curr_global_mail_id,json=currGlobalMailId,proto3" json:"curr_global_mail_id,omitempty"`
  4957. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  4958. XXX_unrecognized []byte `json:"-"`
  4959. XXX_sizecache int32 `json:"-"`
  4960. }
  4961. func (m *RoleMail) Reset() { *m = RoleMail{} }
  4962. func (m *RoleMail) String() string { return proto.CompactTextString(m) }
  4963. func (*RoleMail) ProtoMessage() {}
  4964. func (*RoleMail) Descriptor() ([]byte, []int) {
  4965. return fileDescriptor_116e343673f7ffaf, []int{81}
  4966. }
  4967. func (m *RoleMail) XXX_Unmarshal(b []byte) error {
  4968. return xxx_messageInfo_RoleMail.Unmarshal(m, b)
  4969. }
  4970. func (m *RoleMail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  4971. return xxx_messageInfo_RoleMail.Marshal(b, m, deterministic)
  4972. }
  4973. func (m *RoleMail) XXX_Merge(src proto.Message) {
  4974. xxx_messageInfo_RoleMail.Merge(m, src)
  4975. }
  4976. func (m *RoleMail) XXX_Size() int {
  4977. return xxx_messageInfo_RoleMail.Size(m)
  4978. }
  4979. func (m *RoleMail) XXX_DiscardUnknown() {
  4980. xxx_messageInfo_RoleMail.DiscardUnknown(m)
  4981. }
  4982. var xxx_messageInfo_RoleMail proto.InternalMessageInfo
  4983. func (m *RoleMail) GetMailList() []*MailContent {
  4984. if m != nil {
  4985. return m.MailList
  4986. }
  4987. return nil
  4988. }
  4989. func (m *RoleMail) GetMaxMailId() int32 {
  4990. if m != nil {
  4991. return m.MaxMailId
  4992. }
  4993. return 0
  4994. }
  4995. func (m *RoleMail) GetCurrGlobalMailId() int32 {
  4996. if m != nil {
  4997. return m.CurrGlobalMailId
  4998. }
  4999. return 0
  5000. }
  5001. // //////////////////////ReadInfo 小红点数据
  5002. type RoleRed struct {
  5003. IsUnreadMail bool `protobuf:"varint,1,opt,name=is_unread_mail,json=isUnreadMail,proto3" json:"is_unread_mail,omitempty"`
  5004. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5005. XXX_unrecognized []byte `json:"-"`
  5006. XXX_sizecache int32 `json:"-"`
  5007. }
  5008. func (m *RoleRed) Reset() { *m = RoleRed{} }
  5009. func (m *RoleRed) String() string { return proto.CompactTextString(m) }
  5010. func (*RoleRed) ProtoMessage() {}
  5011. func (*RoleRed) Descriptor() ([]byte, []int) {
  5012. return fileDescriptor_116e343673f7ffaf, []int{82}
  5013. }
  5014. func (m *RoleRed) XXX_Unmarshal(b []byte) error {
  5015. return xxx_messageInfo_RoleRed.Unmarshal(m, b)
  5016. }
  5017. func (m *RoleRed) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5018. return xxx_messageInfo_RoleRed.Marshal(b, m, deterministic)
  5019. }
  5020. func (m *RoleRed) XXX_Merge(src proto.Message) {
  5021. xxx_messageInfo_RoleRed.Merge(m, src)
  5022. }
  5023. func (m *RoleRed) XXX_Size() int {
  5024. return xxx_messageInfo_RoleRed.Size(m)
  5025. }
  5026. func (m *RoleRed) XXX_DiscardUnknown() {
  5027. xxx_messageInfo_RoleRed.DiscardUnknown(m)
  5028. }
  5029. var xxx_messageInfo_RoleRed proto.InternalMessageInfo
  5030. func (m *RoleRed) GetIsUnreadMail() bool {
  5031. if m != nil {
  5032. return m.IsUnreadMail
  5033. }
  5034. return false
  5035. }
  5036. // //////////////////////Competition 赛季玩法
  5037. // 赛季结算信息
  5038. type CompetitionRewardInfo struct {
  5039. RewardIdx int32 `protobuf:"varint,1,opt,name=reward_idx,json=rewardIdx,proto3" json:"reward_idx,omitempty"`
  5040. RewardEndTme uint64 `protobuf:"varint,2,opt,name=reward_end_tme,json=rewardEndTme,proto3" json:"reward_end_tme,omitempty"`
  5041. // 参数说明
  5042. // 1,2赛季类型,对应档位礼包id
  5043. ParamList []int32 `protobuf:"varint,3,rep,packed,name=param_list,json=paramList,proto3" json:"param_list,omitempty"`
  5044. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5045. XXX_unrecognized []byte `json:"-"`
  5046. XXX_sizecache int32 `json:"-"`
  5047. }
  5048. func (m *CompetitionRewardInfo) Reset() { *m = CompetitionRewardInfo{} }
  5049. func (m *CompetitionRewardInfo) String() string { return proto.CompactTextString(m) }
  5050. func (*CompetitionRewardInfo) ProtoMessage() {}
  5051. func (*CompetitionRewardInfo) Descriptor() ([]byte, []int) {
  5052. return fileDescriptor_116e343673f7ffaf, []int{83}
  5053. }
  5054. func (m *CompetitionRewardInfo) XXX_Unmarshal(b []byte) error {
  5055. return xxx_messageInfo_CompetitionRewardInfo.Unmarshal(m, b)
  5056. }
  5057. func (m *CompetitionRewardInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5058. return xxx_messageInfo_CompetitionRewardInfo.Marshal(b, m, deterministic)
  5059. }
  5060. func (m *CompetitionRewardInfo) XXX_Merge(src proto.Message) {
  5061. xxx_messageInfo_CompetitionRewardInfo.Merge(m, src)
  5062. }
  5063. func (m *CompetitionRewardInfo) XXX_Size() int {
  5064. return xxx_messageInfo_CompetitionRewardInfo.Size(m)
  5065. }
  5066. func (m *CompetitionRewardInfo) XXX_DiscardUnknown() {
  5067. xxx_messageInfo_CompetitionRewardInfo.DiscardUnknown(m)
  5068. }
  5069. var xxx_messageInfo_CompetitionRewardInfo proto.InternalMessageInfo
  5070. func (m *CompetitionRewardInfo) GetRewardIdx() int32 {
  5071. if m != nil {
  5072. return m.RewardIdx
  5073. }
  5074. return 0
  5075. }
  5076. func (m *CompetitionRewardInfo) GetRewardEndTme() uint64 {
  5077. if m != nil {
  5078. return m.RewardEndTme
  5079. }
  5080. return 0
  5081. }
  5082. func (m *CompetitionRewardInfo) GetParamList() []int32 {
  5083. if m != nil {
  5084. return m.ParamList
  5085. }
  5086. return nil
  5087. }
  5088. // 历史赛季信息
  5089. type CompetitionInfo struct {
  5090. CompetitionId int32 `protobuf:"varint,1,opt,name=competition_id,json=competitionId,proto3" json:"competition_id,omitempty"`
  5091. CurEndTime uint64 `protobuf:"varint,2,opt,name=cur_end_time,json=curEndTime,proto3" json:"cur_end_time,omitempty"`
  5092. RewardInfoList []*CompetitionRewardInfo `protobuf:"bytes,3,rep,name=reward_info_list,json=rewardInfoList,proto3" json:"reward_info_list,omitempty"`
  5093. ComParam int32 `protobuf:"varint,4,opt,name=com_param,json=comParam,proto3" json:"com_param,omitempty"`
  5094. ComParamAddTime uint64 `protobuf:"varint,5,opt,name=com_param_add_time,json=comParamAddTime,proto3" json:"com_param_add_time,omitempty"`
  5095. // 显示超过进度使用
  5096. SelfRank int32 `protobuf:"varint,6,opt,name=self_rank,json=selfRank,proto3" json:"self_rank,omitempty"`
  5097. TotalRank int32 `protobuf:"varint,7,opt,name=total_rank,json=totalRank,proto3" json:"total_rank,omitempty"`
  5098. // 下一档积分差距
  5099. NextComScore int32 `protobuf:"varint,8,opt,name=next_com_score,json=nextComScore,proto3" json:"next_com_score,omitempty"`
  5100. LastComScore int32 `protobuf:"varint,9,opt,name=last_com_score,json=lastComScore,proto3" json:"last_com_score,omitempty"`
  5101. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5102. XXX_unrecognized []byte `json:"-"`
  5103. XXX_sizecache int32 `json:"-"`
  5104. }
  5105. func (m *CompetitionInfo) Reset() { *m = CompetitionInfo{} }
  5106. func (m *CompetitionInfo) String() string { return proto.CompactTextString(m) }
  5107. func (*CompetitionInfo) ProtoMessage() {}
  5108. func (*CompetitionInfo) Descriptor() ([]byte, []int) {
  5109. return fileDescriptor_116e343673f7ffaf, []int{84}
  5110. }
  5111. func (m *CompetitionInfo) XXX_Unmarshal(b []byte) error {
  5112. return xxx_messageInfo_CompetitionInfo.Unmarshal(m, b)
  5113. }
  5114. func (m *CompetitionInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5115. return xxx_messageInfo_CompetitionInfo.Marshal(b, m, deterministic)
  5116. }
  5117. func (m *CompetitionInfo) XXX_Merge(src proto.Message) {
  5118. xxx_messageInfo_CompetitionInfo.Merge(m, src)
  5119. }
  5120. func (m *CompetitionInfo) XXX_Size() int {
  5121. return xxx_messageInfo_CompetitionInfo.Size(m)
  5122. }
  5123. func (m *CompetitionInfo) XXX_DiscardUnknown() {
  5124. xxx_messageInfo_CompetitionInfo.DiscardUnknown(m)
  5125. }
  5126. var xxx_messageInfo_CompetitionInfo proto.InternalMessageInfo
  5127. func (m *CompetitionInfo) GetCompetitionId() int32 {
  5128. if m != nil {
  5129. return m.CompetitionId
  5130. }
  5131. return 0
  5132. }
  5133. func (m *CompetitionInfo) GetCurEndTime() uint64 {
  5134. if m != nil {
  5135. return m.CurEndTime
  5136. }
  5137. return 0
  5138. }
  5139. func (m *CompetitionInfo) GetRewardInfoList() []*CompetitionRewardInfo {
  5140. if m != nil {
  5141. return m.RewardInfoList
  5142. }
  5143. return nil
  5144. }
  5145. func (m *CompetitionInfo) GetComParam() int32 {
  5146. if m != nil {
  5147. return m.ComParam
  5148. }
  5149. return 0
  5150. }
  5151. func (m *CompetitionInfo) GetComParamAddTime() uint64 {
  5152. if m != nil {
  5153. return m.ComParamAddTime
  5154. }
  5155. return 0
  5156. }
  5157. func (m *CompetitionInfo) GetSelfRank() int32 {
  5158. if m != nil {
  5159. return m.SelfRank
  5160. }
  5161. return 0
  5162. }
  5163. func (m *CompetitionInfo) GetTotalRank() int32 {
  5164. if m != nil {
  5165. return m.TotalRank
  5166. }
  5167. return 0
  5168. }
  5169. func (m *CompetitionInfo) GetNextComScore() int32 {
  5170. if m != nil {
  5171. return m.NextComScore
  5172. }
  5173. return 0
  5174. }
  5175. func (m *CompetitionInfo) GetLastComScore() int32 {
  5176. if m != nil {
  5177. return m.LastComScore
  5178. }
  5179. return 0
  5180. }
  5181. type DivineInfo struct {
  5182. // 占星
  5183. CurStars []int32 `protobuf:"varint,1,rep,packed,name=cur_stars,json=curStars,proto3" json:"cur_stars,omitempty"`
  5184. FailedCount int32 `protobuf:"varint,2,opt,name=failed_count,json=failedCount,proto3" json:"failed_count,omitempty"`
  5185. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5186. XXX_unrecognized []byte `json:"-"`
  5187. XXX_sizecache int32 `json:"-"`
  5188. }
  5189. func (m *DivineInfo) Reset() { *m = DivineInfo{} }
  5190. func (m *DivineInfo) String() string { return proto.CompactTextString(m) }
  5191. func (*DivineInfo) ProtoMessage() {}
  5192. func (*DivineInfo) Descriptor() ([]byte, []int) {
  5193. return fileDescriptor_116e343673f7ffaf, []int{85}
  5194. }
  5195. func (m *DivineInfo) XXX_Unmarshal(b []byte) error {
  5196. return xxx_messageInfo_DivineInfo.Unmarshal(m, b)
  5197. }
  5198. func (m *DivineInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5199. return xxx_messageInfo_DivineInfo.Marshal(b, m, deterministic)
  5200. }
  5201. func (m *DivineInfo) XXX_Merge(src proto.Message) {
  5202. xxx_messageInfo_DivineInfo.Merge(m, src)
  5203. }
  5204. func (m *DivineInfo) XXX_Size() int {
  5205. return xxx_messageInfo_DivineInfo.Size(m)
  5206. }
  5207. func (m *DivineInfo) XXX_DiscardUnknown() {
  5208. xxx_messageInfo_DivineInfo.DiscardUnknown(m)
  5209. }
  5210. var xxx_messageInfo_DivineInfo proto.InternalMessageInfo
  5211. func (m *DivineInfo) GetCurStars() []int32 {
  5212. if m != nil {
  5213. return m.CurStars
  5214. }
  5215. return nil
  5216. }
  5217. func (m *DivineInfo) GetFailedCount() int32 {
  5218. if m != nil {
  5219. return m.FailedCount
  5220. }
  5221. return 0
  5222. }
  5223. // 每日领奖数据
  5224. type DaySupplyData struct {
  5225. Begin uint64 `protobuf:"varint,1,opt,name=begin,proto3" json:"begin,omitempty"`
  5226. EndIndex uint64 `protobuf:"varint,2,opt,name=end_index,json=endIndex,proto3" json:"end_index,omitempty"`
  5227. Draw bool `protobuf:"varint,3,opt,name=draw,proto3" json:"draw,omitempty"`
  5228. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5229. XXX_unrecognized []byte `json:"-"`
  5230. XXX_sizecache int32 `json:"-"`
  5231. }
  5232. func (m *DaySupplyData) Reset() { *m = DaySupplyData{} }
  5233. func (m *DaySupplyData) String() string { return proto.CompactTextString(m) }
  5234. func (*DaySupplyData) ProtoMessage() {}
  5235. func (*DaySupplyData) Descriptor() ([]byte, []int) {
  5236. return fileDescriptor_116e343673f7ffaf, []int{86}
  5237. }
  5238. func (m *DaySupplyData) XXX_Unmarshal(b []byte) error {
  5239. return xxx_messageInfo_DaySupplyData.Unmarshal(m, b)
  5240. }
  5241. func (m *DaySupplyData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5242. return xxx_messageInfo_DaySupplyData.Marshal(b, m, deterministic)
  5243. }
  5244. func (m *DaySupplyData) XXX_Merge(src proto.Message) {
  5245. xxx_messageInfo_DaySupplyData.Merge(m, src)
  5246. }
  5247. func (m *DaySupplyData) XXX_Size() int {
  5248. return xxx_messageInfo_DaySupplyData.Size(m)
  5249. }
  5250. func (m *DaySupplyData) XXX_DiscardUnknown() {
  5251. xxx_messageInfo_DaySupplyData.DiscardUnknown(m)
  5252. }
  5253. var xxx_messageInfo_DaySupplyData proto.InternalMessageInfo
  5254. func (m *DaySupplyData) GetBegin() uint64 {
  5255. if m != nil {
  5256. return m.Begin
  5257. }
  5258. return 0
  5259. }
  5260. func (m *DaySupplyData) GetEndIndex() uint64 {
  5261. if m != nil {
  5262. return m.EndIndex
  5263. }
  5264. return 0
  5265. }
  5266. func (m *DaySupplyData) GetDraw() bool {
  5267. if m != nil {
  5268. return m.Draw
  5269. }
  5270. return false
  5271. }
  5272. // 粉丝投票数据
  5273. type FansVoteData struct {
  5274. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  5275. Rank int32 `protobuf:"varint,2,opt,name=rank,proto3" json:"rank,omitempty"`
  5276. Score int32 `protobuf:"varint,3,opt,name=score,proto3" json:"score,omitempty"`
  5277. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5278. XXX_unrecognized []byte `json:"-"`
  5279. XXX_sizecache int32 `json:"-"`
  5280. }
  5281. func (m *FansVoteData) Reset() { *m = FansVoteData{} }
  5282. func (m *FansVoteData) String() string { return proto.CompactTextString(m) }
  5283. func (*FansVoteData) ProtoMessage() {}
  5284. func (*FansVoteData) Descriptor() ([]byte, []int) {
  5285. return fileDescriptor_116e343673f7ffaf, []int{87}
  5286. }
  5287. func (m *FansVoteData) XXX_Unmarshal(b []byte) error {
  5288. return xxx_messageInfo_FansVoteData.Unmarshal(m, b)
  5289. }
  5290. func (m *FansVoteData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5291. return xxx_messageInfo_FansVoteData.Marshal(b, m, deterministic)
  5292. }
  5293. func (m *FansVoteData) XXX_Merge(src proto.Message) {
  5294. xxx_messageInfo_FansVoteData.Merge(m, src)
  5295. }
  5296. func (m *FansVoteData) XXX_Size() int {
  5297. return xxx_messageInfo_FansVoteData.Size(m)
  5298. }
  5299. func (m *FansVoteData) XXX_DiscardUnknown() {
  5300. xxx_messageInfo_FansVoteData.DiscardUnknown(m)
  5301. }
  5302. var xxx_messageInfo_FansVoteData proto.InternalMessageInfo
  5303. func (m *FansVoteData) GetName() string {
  5304. if m != nil {
  5305. return m.Name
  5306. }
  5307. return ""
  5308. }
  5309. func (m *FansVoteData) GetRank() int32 {
  5310. if m != nil {
  5311. return m.Rank
  5312. }
  5313. return 0
  5314. }
  5315. func (m *FansVoteData) GetScore() int32 {
  5316. if m != nil {
  5317. return m.Score
  5318. }
  5319. return 0
  5320. }
  5321. // 箱子排名数据
  5322. type FansBoxData struct {
  5323. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  5324. Box int32 `protobuf:"varint,2,opt,name=box,proto3" json:"box,omitempty"`
  5325. Rank int32 `protobuf:"varint,3,opt,name=rank,proto3" json:"rank,omitempty"`
  5326. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5327. XXX_unrecognized []byte `json:"-"`
  5328. XXX_sizecache int32 `json:"-"`
  5329. }
  5330. func (m *FansBoxData) Reset() { *m = FansBoxData{} }
  5331. func (m *FansBoxData) String() string { return proto.CompactTextString(m) }
  5332. func (*FansBoxData) ProtoMessage() {}
  5333. func (*FansBoxData) Descriptor() ([]byte, []int) {
  5334. return fileDescriptor_116e343673f7ffaf, []int{88}
  5335. }
  5336. func (m *FansBoxData) XXX_Unmarshal(b []byte) error {
  5337. return xxx_messageInfo_FansBoxData.Unmarshal(m, b)
  5338. }
  5339. func (m *FansBoxData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5340. return xxx_messageInfo_FansBoxData.Marshal(b, m, deterministic)
  5341. }
  5342. func (m *FansBoxData) XXX_Merge(src proto.Message) {
  5343. xxx_messageInfo_FansBoxData.Merge(m, src)
  5344. }
  5345. func (m *FansBoxData) XXX_Size() int {
  5346. return xxx_messageInfo_FansBoxData.Size(m)
  5347. }
  5348. func (m *FansBoxData) XXX_DiscardUnknown() {
  5349. xxx_messageInfo_FansBoxData.DiscardUnknown(m)
  5350. }
  5351. var xxx_messageInfo_FansBoxData proto.InternalMessageInfo
  5352. func (m *FansBoxData) GetUid() uint64 {
  5353. if m != nil {
  5354. return m.Uid
  5355. }
  5356. return 0
  5357. }
  5358. func (m *FansBoxData) GetBox() int32 {
  5359. if m != nil {
  5360. return m.Box
  5361. }
  5362. return 0
  5363. }
  5364. func (m *FansBoxData) GetRank() int32 {
  5365. if m != nil {
  5366. return m.Rank
  5367. }
  5368. return 0
  5369. }
  5370. // 排名数据
  5371. type FansRankData struct {
  5372. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  5373. Score int32 `protobuf:"varint,2,opt,name=score,proto3" json:"score,omitempty"`
  5374. Rank int32 `protobuf:"varint,3,opt,name=rank,proto3" json:"rank,omitempty"`
  5375. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5376. XXX_unrecognized []byte `json:"-"`
  5377. XXX_sizecache int32 `json:"-"`
  5378. }
  5379. func (m *FansRankData) Reset() { *m = FansRankData{} }
  5380. func (m *FansRankData) String() string { return proto.CompactTextString(m) }
  5381. func (*FansRankData) ProtoMessage() {}
  5382. func (*FansRankData) Descriptor() ([]byte, []int) {
  5383. return fileDescriptor_116e343673f7ffaf, []int{89}
  5384. }
  5385. func (m *FansRankData) XXX_Unmarshal(b []byte) error {
  5386. return xxx_messageInfo_FansRankData.Unmarshal(m, b)
  5387. }
  5388. func (m *FansRankData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5389. return xxx_messageInfo_FansRankData.Marshal(b, m, deterministic)
  5390. }
  5391. func (m *FansRankData) XXX_Merge(src proto.Message) {
  5392. xxx_messageInfo_FansRankData.Merge(m, src)
  5393. }
  5394. func (m *FansRankData) XXX_Size() int {
  5395. return xxx_messageInfo_FansRankData.Size(m)
  5396. }
  5397. func (m *FansRankData) XXX_DiscardUnknown() {
  5398. xxx_messageInfo_FansRankData.DiscardUnknown(m)
  5399. }
  5400. var xxx_messageInfo_FansRankData proto.InternalMessageInfo
  5401. func (m *FansRankData) GetUid() uint64 {
  5402. if m != nil {
  5403. return m.Uid
  5404. }
  5405. return 0
  5406. }
  5407. func (m *FansRankData) GetScore() int32 {
  5408. if m != nil {
  5409. return m.Score
  5410. }
  5411. return 0
  5412. }
  5413. func (m *FansRankData) GetRank() int32 {
  5414. if m != nil {
  5415. return m.Rank
  5416. }
  5417. return 0
  5418. }
  5419. type FansVoteDetail struct {
  5420. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  5421. VoteTime uint64 `protobuf:"varint,2,opt,name=vote_time,json=voteTime,proto3" json:"vote_time,omitempty"`
  5422. TicketCount int32 `protobuf:"varint,3,opt,name=ticket_count,json=ticketCount,proto3" json:"ticket_count,omitempty"`
  5423. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5424. XXX_unrecognized []byte `json:"-"`
  5425. XXX_sizecache int32 `json:"-"`
  5426. }
  5427. func (m *FansVoteDetail) Reset() { *m = FansVoteDetail{} }
  5428. func (m *FansVoteDetail) String() string { return proto.CompactTextString(m) }
  5429. func (*FansVoteDetail) ProtoMessage() {}
  5430. func (*FansVoteDetail) Descriptor() ([]byte, []int) {
  5431. return fileDescriptor_116e343673f7ffaf, []int{90}
  5432. }
  5433. func (m *FansVoteDetail) XXX_Unmarshal(b []byte) error {
  5434. return xxx_messageInfo_FansVoteDetail.Unmarshal(m, b)
  5435. }
  5436. func (m *FansVoteDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5437. return xxx_messageInfo_FansVoteDetail.Marshal(b, m, deterministic)
  5438. }
  5439. func (m *FansVoteDetail) XXX_Merge(src proto.Message) {
  5440. xxx_messageInfo_FansVoteDetail.Merge(m, src)
  5441. }
  5442. func (m *FansVoteDetail) XXX_Size() int {
  5443. return xxx_messageInfo_FansVoteDetail.Size(m)
  5444. }
  5445. func (m *FansVoteDetail) XXX_DiscardUnknown() {
  5446. xxx_messageInfo_FansVoteDetail.DiscardUnknown(m)
  5447. }
  5448. var xxx_messageInfo_FansVoteDetail proto.InternalMessageInfo
  5449. func (m *FansVoteDetail) GetUid() uint64 {
  5450. if m != nil {
  5451. return m.Uid
  5452. }
  5453. return 0
  5454. }
  5455. func (m *FansVoteDetail) GetVoteTime() uint64 {
  5456. if m != nil {
  5457. return m.VoteTime
  5458. }
  5459. return 0
  5460. }
  5461. func (m *FansVoteDetail) GetTicketCount() int32 {
  5462. if m != nil {
  5463. return m.TicketCount
  5464. }
  5465. return 0
  5466. }
  5467. // 请求自己的粉丝榜单
  5468. type IdolFansInfo struct {
  5469. FansList []*FansVoteDetail `protobuf:"bytes,1,rep,name=fans_list,json=fansList,proto3" json:"fans_list,omitempty"`
  5470. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5471. XXX_unrecognized []byte `json:"-"`
  5472. XXX_sizecache int32 `json:"-"`
  5473. }
  5474. func (m *IdolFansInfo) Reset() { *m = IdolFansInfo{} }
  5475. func (m *IdolFansInfo) String() string { return proto.CompactTextString(m) }
  5476. func (*IdolFansInfo) ProtoMessage() {}
  5477. func (*IdolFansInfo) Descriptor() ([]byte, []int) {
  5478. return fileDescriptor_116e343673f7ffaf, []int{91}
  5479. }
  5480. func (m *IdolFansInfo) XXX_Unmarshal(b []byte) error {
  5481. return xxx_messageInfo_IdolFansInfo.Unmarshal(m, b)
  5482. }
  5483. func (m *IdolFansInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5484. return xxx_messageInfo_IdolFansInfo.Marshal(b, m, deterministic)
  5485. }
  5486. func (m *IdolFansInfo) XXX_Merge(src proto.Message) {
  5487. xxx_messageInfo_IdolFansInfo.Merge(m, src)
  5488. }
  5489. func (m *IdolFansInfo) XXX_Size() int {
  5490. return xxx_messageInfo_IdolFansInfo.Size(m)
  5491. }
  5492. func (m *IdolFansInfo) XXX_DiscardUnknown() {
  5493. xxx_messageInfo_IdolFansInfo.DiscardUnknown(m)
  5494. }
  5495. var xxx_messageInfo_IdolFansInfo proto.InternalMessageInfo
  5496. func (m *IdolFansInfo) GetFansList() []*FansVoteDetail {
  5497. if m != nil {
  5498. return m.FansList
  5499. }
  5500. return nil
  5501. }
  5502. type IdolInfo struct {
  5503. VoteData []*KeyValueType64 `protobuf:"bytes,1,rep,name=vote_data,json=voteData,proto3" json:"vote_data,omitempty"`
  5504. DayReward []int32 `protobuf:"varint,2,rep,packed,name=day_reward,json=dayReward,proto3" json:"day_reward,omitempty"`
  5505. JoinCompetition bool `protobuf:"varint,3,opt,name=join_competition,json=joinCompetition,proto3" json:"join_competition,omitempty"`
  5506. BoxScore int32 `protobuf:"varint,4,opt,name=box_score,json=boxScore,proto3" json:"box_score,omitempty"`
  5507. FirstBegin uint64 `protobuf:"varint,5,opt,name=first_begin,json=firstBegin,proto3" json:"first_begin,omitempty"`
  5508. FirstEnd uint64 `protobuf:"varint,6,opt,name=first_end,json=firstEnd,proto3" json:"first_end,omitempty"`
  5509. SecondBegin uint64 `protobuf:"varint,7,opt,name=second_begin,json=secondBegin,proto3" json:"second_begin,omitempty"`
  5510. SecondEnd uint64 `protobuf:"varint,8,opt,name=second_end,json=secondEnd,proto3" json:"second_end,omitempty"`
  5511. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5512. XXX_unrecognized []byte `json:"-"`
  5513. XXX_sizecache int32 `json:"-"`
  5514. }
  5515. func (m *IdolInfo) Reset() { *m = IdolInfo{} }
  5516. func (m *IdolInfo) String() string { return proto.CompactTextString(m) }
  5517. func (*IdolInfo) ProtoMessage() {}
  5518. func (*IdolInfo) Descriptor() ([]byte, []int) {
  5519. return fileDescriptor_116e343673f7ffaf, []int{92}
  5520. }
  5521. func (m *IdolInfo) XXX_Unmarshal(b []byte) error {
  5522. return xxx_messageInfo_IdolInfo.Unmarshal(m, b)
  5523. }
  5524. func (m *IdolInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5525. return xxx_messageInfo_IdolInfo.Marshal(b, m, deterministic)
  5526. }
  5527. func (m *IdolInfo) XXX_Merge(src proto.Message) {
  5528. xxx_messageInfo_IdolInfo.Merge(m, src)
  5529. }
  5530. func (m *IdolInfo) XXX_Size() int {
  5531. return xxx_messageInfo_IdolInfo.Size(m)
  5532. }
  5533. func (m *IdolInfo) XXX_DiscardUnknown() {
  5534. xxx_messageInfo_IdolInfo.DiscardUnknown(m)
  5535. }
  5536. var xxx_messageInfo_IdolInfo proto.InternalMessageInfo
  5537. func (m *IdolInfo) GetVoteData() []*KeyValueType64 {
  5538. if m != nil {
  5539. return m.VoteData
  5540. }
  5541. return nil
  5542. }
  5543. func (m *IdolInfo) GetDayReward() []int32 {
  5544. if m != nil {
  5545. return m.DayReward
  5546. }
  5547. return nil
  5548. }
  5549. func (m *IdolInfo) GetJoinCompetition() bool {
  5550. if m != nil {
  5551. return m.JoinCompetition
  5552. }
  5553. return false
  5554. }
  5555. func (m *IdolInfo) GetBoxScore() int32 {
  5556. if m != nil {
  5557. return m.BoxScore
  5558. }
  5559. return 0
  5560. }
  5561. func (m *IdolInfo) GetFirstBegin() uint64 {
  5562. if m != nil {
  5563. return m.FirstBegin
  5564. }
  5565. return 0
  5566. }
  5567. func (m *IdolInfo) GetFirstEnd() uint64 {
  5568. if m != nil {
  5569. return m.FirstEnd
  5570. }
  5571. return 0
  5572. }
  5573. func (m *IdolInfo) GetSecondBegin() uint64 {
  5574. if m != nil {
  5575. return m.SecondBegin
  5576. }
  5577. return 0
  5578. }
  5579. func (m *IdolInfo) GetSecondEnd() uint64 {
  5580. if m != nil {
  5581. return m.SecondEnd
  5582. }
  5583. return 0
  5584. }
  5585. type PlayerShowData struct {
  5586. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  5587. RoleBase *RoleBase `protobuf:"bytes,2,opt,name=role_base,json=roleBase,proto3" json:"role_base,omitempty"`
  5588. HeroData *HeroData `protobuf:"bytes,3,opt,name=hero_data,json=heroData,proto3" json:"hero_data,omitempty"`
  5589. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5590. XXX_unrecognized []byte `json:"-"`
  5591. XXX_sizecache int32 `json:"-"`
  5592. }
  5593. func (m *PlayerShowData) Reset() { *m = PlayerShowData{} }
  5594. func (m *PlayerShowData) String() string { return proto.CompactTextString(m) }
  5595. func (*PlayerShowData) ProtoMessage() {}
  5596. func (*PlayerShowData) Descriptor() ([]byte, []int) {
  5597. return fileDescriptor_116e343673f7ffaf, []int{93}
  5598. }
  5599. func (m *PlayerShowData) XXX_Unmarshal(b []byte) error {
  5600. return xxx_messageInfo_PlayerShowData.Unmarshal(m, b)
  5601. }
  5602. func (m *PlayerShowData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5603. return xxx_messageInfo_PlayerShowData.Marshal(b, m, deterministic)
  5604. }
  5605. func (m *PlayerShowData) XXX_Merge(src proto.Message) {
  5606. xxx_messageInfo_PlayerShowData.Merge(m, src)
  5607. }
  5608. func (m *PlayerShowData) XXX_Size() int {
  5609. return xxx_messageInfo_PlayerShowData.Size(m)
  5610. }
  5611. func (m *PlayerShowData) XXX_DiscardUnknown() {
  5612. xxx_messageInfo_PlayerShowData.DiscardUnknown(m)
  5613. }
  5614. var xxx_messageInfo_PlayerShowData proto.InternalMessageInfo
  5615. func (m *PlayerShowData) GetUid() uint64 {
  5616. if m != nil {
  5617. return m.Uid
  5618. }
  5619. return 0
  5620. }
  5621. func (m *PlayerShowData) GetRoleBase() *RoleBase {
  5622. if m != nil {
  5623. return m.RoleBase
  5624. }
  5625. return nil
  5626. }
  5627. func (m *PlayerShowData) GetHeroData() *HeroData {
  5628. if m != nil {
  5629. return m.HeroData
  5630. }
  5631. return nil
  5632. }
  5633. type IdolSeasonData struct {
  5634. // 前三名数据
  5635. DetailList []*PlayerShowData `protobuf:"bytes,1,rep,name=detail_list,json=detailList,proto3" json:"detail_list,omitempty"`
  5636. // 前三名的票数
  5637. VoteList []*FansRankData `protobuf:"bytes,2,rep,name=vote_list,json=voteList,proto3" json:"vote_list,omitempty"`
  5638. DayReward []int32 `protobuf:"varint,3,rep,packed,name=day_reward,json=dayReward,proto3" json:"day_reward,omitempty"`
  5639. FirstBegin uint64 `protobuf:"varint,4,opt,name=first_begin,json=firstBegin,proto3" json:"first_begin,omitempty"`
  5640. FirstEnd uint64 `protobuf:"varint,5,opt,name=first_end,json=firstEnd,proto3" json:"first_end,omitempty"`
  5641. SecondBegin uint64 `protobuf:"varint,6,opt,name=second_begin,json=secondBegin,proto3" json:"second_begin,omitempty"`
  5642. SecondEnd uint64 `protobuf:"varint,7,opt,name=second_end,json=secondEnd,proto3" json:"second_end,omitempty"`
  5643. HasBoxReward bool `protobuf:"varint,8,opt,name=has_box_reward,json=hasBoxReward,proto3" json:"has_box_reward,omitempty"`
  5644. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5645. XXX_unrecognized []byte `json:"-"`
  5646. XXX_sizecache int32 `json:"-"`
  5647. }
  5648. func (m *IdolSeasonData) Reset() { *m = IdolSeasonData{} }
  5649. func (m *IdolSeasonData) String() string { return proto.CompactTextString(m) }
  5650. func (*IdolSeasonData) ProtoMessage() {}
  5651. func (*IdolSeasonData) Descriptor() ([]byte, []int) {
  5652. return fileDescriptor_116e343673f7ffaf, []int{94}
  5653. }
  5654. func (m *IdolSeasonData) XXX_Unmarshal(b []byte) error {
  5655. return xxx_messageInfo_IdolSeasonData.Unmarshal(m, b)
  5656. }
  5657. func (m *IdolSeasonData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5658. return xxx_messageInfo_IdolSeasonData.Marshal(b, m, deterministic)
  5659. }
  5660. func (m *IdolSeasonData) XXX_Merge(src proto.Message) {
  5661. xxx_messageInfo_IdolSeasonData.Merge(m, src)
  5662. }
  5663. func (m *IdolSeasonData) XXX_Size() int {
  5664. return xxx_messageInfo_IdolSeasonData.Size(m)
  5665. }
  5666. func (m *IdolSeasonData) XXX_DiscardUnknown() {
  5667. xxx_messageInfo_IdolSeasonData.DiscardUnknown(m)
  5668. }
  5669. var xxx_messageInfo_IdolSeasonData proto.InternalMessageInfo
  5670. func (m *IdolSeasonData) GetDetailList() []*PlayerShowData {
  5671. if m != nil {
  5672. return m.DetailList
  5673. }
  5674. return nil
  5675. }
  5676. func (m *IdolSeasonData) GetVoteList() []*FansRankData {
  5677. if m != nil {
  5678. return m.VoteList
  5679. }
  5680. return nil
  5681. }
  5682. func (m *IdolSeasonData) GetDayReward() []int32 {
  5683. if m != nil {
  5684. return m.DayReward
  5685. }
  5686. return nil
  5687. }
  5688. func (m *IdolSeasonData) GetFirstBegin() uint64 {
  5689. if m != nil {
  5690. return m.FirstBegin
  5691. }
  5692. return 0
  5693. }
  5694. func (m *IdolSeasonData) GetFirstEnd() uint64 {
  5695. if m != nil {
  5696. return m.FirstEnd
  5697. }
  5698. return 0
  5699. }
  5700. func (m *IdolSeasonData) GetSecondBegin() uint64 {
  5701. if m != nil {
  5702. return m.SecondBegin
  5703. }
  5704. return 0
  5705. }
  5706. func (m *IdolSeasonData) GetSecondEnd() uint64 {
  5707. if m != nil {
  5708. return m.SecondEnd
  5709. }
  5710. return 0
  5711. }
  5712. func (m *IdolSeasonData) GetHasBoxReward() bool {
  5713. if m != nil {
  5714. return m.HasBoxReward
  5715. }
  5716. return false
  5717. }
  5718. type FansVoteRewardData struct {
  5719. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  5720. IdolList []*KeyValueType64 `protobuf:"bytes,2,rep,name=idol_list,json=idolList,proto3" json:"idol_list,omitempty"`
  5721. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5722. XXX_unrecognized []byte `json:"-"`
  5723. XXX_sizecache int32 `json:"-"`
  5724. }
  5725. func (m *FansVoteRewardData) Reset() { *m = FansVoteRewardData{} }
  5726. func (m *FansVoteRewardData) String() string { return proto.CompactTextString(m) }
  5727. func (*FansVoteRewardData) ProtoMessage() {}
  5728. func (*FansVoteRewardData) Descriptor() ([]byte, []int) {
  5729. return fileDescriptor_116e343673f7ffaf, []int{95}
  5730. }
  5731. func (m *FansVoteRewardData) XXX_Unmarshal(b []byte) error {
  5732. return xxx_messageInfo_FansVoteRewardData.Unmarshal(m, b)
  5733. }
  5734. func (m *FansVoteRewardData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5735. return xxx_messageInfo_FansVoteRewardData.Marshal(b, m, deterministic)
  5736. }
  5737. func (m *FansVoteRewardData) XXX_Merge(src proto.Message) {
  5738. xxx_messageInfo_FansVoteRewardData.Merge(m, src)
  5739. }
  5740. func (m *FansVoteRewardData) XXX_Size() int {
  5741. return xxx_messageInfo_FansVoteRewardData.Size(m)
  5742. }
  5743. func (m *FansVoteRewardData) XXX_DiscardUnknown() {
  5744. xxx_messageInfo_FansVoteRewardData.DiscardUnknown(m)
  5745. }
  5746. var xxx_messageInfo_FansVoteRewardData proto.InternalMessageInfo
  5747. func (m *FansVoteRewardData) GetUid() uint64 {
  5748. if m != nil {
  5749. return m.Uid
  5750. }
  5751. return 0
  5752. }
  5753. func (m *FansVoteRewardData) GetIdolList() []*KeyValueType64 {
  5754. if m != nil {
  5755. return m.IdolList
  5756. }
  5757. return nil
  5758. }
  5759. type RoleCompetition struct {
  5760. CurCompetition *CompetitionInfo `protobuf:"bytes,1,opt,name=cur_competition,json=curCompetition,proto3" json:"cur_competition,omitempty"`
  5761. RewardCompetitionId int32 `protobuf:"varint,2,opt,name=reward_competition_id,json=rewardCompetitionId,proto3" json:"reward_competition_id,omitempty"`
  5762. RewardCompetitionSubId int32 `protobuf:"varint,3,opt,name=reward_competition_sub_id,json=rewardCompetitionSubId,proto3" json:"reward_competition_sub_id,omitempty"`
  5763. Divine *DivineInfo `protobuf:"bytes,4,opt,name=divine,proto3" json:"divine,omitempty"`
  5764. Idol *IdolInfo `protobuf:"bytes,5,opt,name=idol,proto3" json:"idol,omitempty"`
  5765. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5766. XXX_unrecognized []byte `json:"-"`
  5767. XXX_sizecache int32 `json:"-"`
  5768. }
  5769. func (m *RoleCompetition) Reset() { *m = RoleCompetition{} }
  5770. func (m *RoleCompetition) String() string { return proto.CompactTextString(m) }
  5771. func (*RoleCompetition) ProtoMessage() {}
  5772. func (*RoleCompetition) Descriptor() ([]byte, []int) {
  5773. return fileDescriptor_116e343673f7ffaf, []int{96}
  5774. }
  5775. func (m *RoleCompetition) XXX_Unmarshal(b []byte) error {
  5776. return xxx_messageInfo_RoleCompetition.Unmarshal(m, b)
  5777. }
  5778. func (m *RoleCompetition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5779. return xxx_messageInfo_RoleCompetition.Marshal(b, m, deterministic)
  5780. }
  5781. func (m *RoleCompetition) XXX_Merge(src proto.Message) {
  5782. xxx_messageInfo_RoleCompetition.Merge(m, src)
  5783. }
  5784. func (m *RoleCompetition) XXX_Size() int {
  5785. return xxx_messageInfo_RoleCompetition.Size(m)
  5786. }
  5787. func (m *RoleCompetition) XXX_DiscardUnknown() {
  5788. xxx_messageInfo_RoleCompetition.DiscardUnknown(m)
  5789. }
  5790. var xxx_messageInfo_RoleCompetition proto.InternalMessageInfo
  5791. func (m *RoleCompetition) GetCurCompetition() *CompetitionInfo {
  5792. if m != nil {
  5793. return m.CurCompetition
  5794. }
  5795. return nil
  5796. }
  5797. func (m *RoleCompetition) GetRewardCompetitionId() int32 {
  5798. if m != nil {
  5799. return m.RewardCompetitionId
  5800. }
  5801. return 0
  5802. }
  5803. func (m *RoleCompetition) GetRewardCompetitionSubId() int32 {
  5804. if m != nil {
  5805. return m.RewardCompetitionSubId
  5806. }
  5807. return 0
  5808. }
  5809. func (m *RoleCompetition) GetDivine() *DivineInfo {
  5810. if m != nil {
  5811. return m.Divine
  5812. }
  5813. return nil
  5814. }
  5815. func (m *RoleCompetition) GetIdol() *IdolInfo {
  5816. if m != nil {
  5817. return m.Idol
  5818. }
  5819. return nil
  5820. }
  5821. // //////////////////////social好友
  5822. // 每次上线时需要重新加载
  5823. type RoleFriend struct {
  5824. SubList []uint64 `protobuf:"varint,1,rep,packed,name=sub_list,json=subList,proto3" json:"sub_list,omitempty"`
  5825. FansList []uint64 `protobuf:"varint,2,rep,packed,name=fans_list,json=fansList,proto3" json:"fans_list,omitempty"`
  5826. BlackList []uint64 `protobuf:"varint,3,rep,packed,name=black_list,json=blackList,proto3" json:"black_list,omitempty"`
  5827. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5828. XXX_unrecognized []byte `json:"-"`
  5829. XXX_sizecache int32 `json:"-"`
  5830. }
  5831. func (m *RoleFriend) Reset() { *m = RoleFriend{} }
  5832. func (m *RoleFriend) String() string { return proto.CompactTextString(m) }
  5833. func (*RoleFriend) ProtoMessage() {}
  5834. func (*RoleFriend) Descriptor() ([]byte, []int) {
  5835. return fileDescriptor_116e343673f7ffaf, []int{97}
  5836. }
  5837. func (m *RoleFriend) XXX_Unmarshal(b []byte) error {
  5838. return xxx_messageInfo_RoleFriend.Unmarshal(m, b)
  5839. }
  5840. func (m *RoleFriend) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5841. return xxx_messageInfo_RoleFriend.Marshal(b, m, deterministic)
  5842. }
  5843. func (m *RoleFriend) XXX_Merge(src proto.Message) {
  5844. xxx_messageInfo_RoleFriend.Merge(m, src)
  5845. }
  5846. func (m *RoleFriend) XXX_Size() int {
  5847. return xxx_messageInfo_RoleFriend.Size(m)
  5848. }
  5849. func (m *RoleFriend) XXX_DiscardUnknown() {
  5850. xxx_messageInfo_RoleFriend.DiscardUnknown(m)
  5851. }
  5852. var xxx_messageInfo_RoleFriend proto.InternalMessageInfo
  5853. func (m *RoleFriend) GetSubList() []uint64 {
  5854. if m != nil {
  5855. return m.SubList
  5856. }
  5857. return nil
  5858. }
  5859. func (m *RoleFriend) GetFansList() []uint64 {
  5860. if m != nil {
  5861. return m.FansList
  5862. }
  5863. return nil
  5864. }
  5865. func (m *RoleFriend) GetBlackList() []uint64 {
  5866. if m != nil {
  5867. return m.BlackList
  5868. }
  5869. return nil
  5870. }
  5871. type RoleSocial struct {
  5872. FriendInfo *RoleFriend `protobuf:"bytes,1,opt,name=friendInfo,proto3" json:"friendInfo,omitempty"`
  5873. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5874. XXX_unrecognized []byte `json:"-"`
  5875. XXX_sizecache int32 `json:"-"`
  5876. }
  5877. func (m *RoleSocial) Reset() { *m = RoleSocial{} }
  5878. func (m *RoleSocial) String() string { return proto.CompactTextString(m) }
  5879. func (*RoleSocial) ProtoMessage() {}
  5880. func (*RoleSocial) Descriptor() ([]byte, []int) {
  5881. return fileDescriptor_116e343673f7ffaf, []int{98}
  5882. }
  5883. func (m *RoleSocial) XXX_Unmarshal(b []byte) error {
  5884. return xxx_messageInfo_RoleSocial.Unmarshal(m, b)
  5885. }
  5886. func (m *RoleSocial) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5887. return xxx_messageInfo_RoleSocial.Marshal(b, m, deterministic)
  5888. }
  5889. func (m *RoleSocial) XXX_Merge(src proto.Message) {
  5890. xxx_messageInfo_RoleSocial.Merge(m, src)
  5891. }
  5892. func (m *RoleSocial) XXX_Size() int {
  5893. return xxx_messageInfo_RoleSocial.Size(m)
  5894. }
  5895. func (m *RoleSocial) XXX_DiscardUnknown() {
  5896. xxx_messageInfo_RoleSocial.DiscardUnknown(m)
  5897. }
  5898. var xxx_messageInfo_RoleSocial proto.InternalMessageInfo
  5899. func (m *RoleSocial) GetFriendInfo() *RoleFriend {
  5900. if m != nil {
  5901. return m.FriendInfo
  5902. }
  5903. return nil
  5904. }
  5905. // //////////////////////common
  5906. // 战斗玩家数据
  5907. type FightRoleInfo struct {
  5908. IsRobot bool `protobuf:"varint,1,opt,name=is_robot,json=isRobot,proto3" json:"is_robot,omitempty"`
  5909. BriefInfo *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief_info,json=briefInfo,proto3" json:"brief_info,omitempty"`
  5910. // 系统数据
  5911. JobLevel int32 `protobuf:"varint,3,opt,name=job_level,json=jobLevel,proto3" json:"job_level,omitempty"`
  5912. AttrList []*KeyValueType `protobuf:"bytes,4,rep,name=attr_list,json=attrList,proto3" json:"attr_list,omitempty"`
  5913. FashionData *FashionData `protobuf:"bytes,5,opt,name=fashion_data,json=fashionData,proto3" json:"fashion_data,omitempty"`
  5914. HeroDataList []*HeroData `protobuf:"bytes,6,rep,name=hero_data_list,json=heroDataList,proto3" json:"hero_data_list,omitempty"`
  5915. MaxFightPower int32 `protobuf:"varint,7,opt,name=max_fight_power,json=maxFightPower,proto3" json:"max_fight_power,omitempty"`
  5916. BattlePetList []*PetData `protobuf:"bytes,8,rep,name=battle_pet_list,json=battlePetList,proto3" json:"battle_pet_list,omitempty"`
  5917. ChangePlayId int32 `protobuf:"varint,9,opt,name=change_play_id,json=changePlayId,proto3" json:"change_play_id,omitempty"`
  5918. RepressSkillPvpVal int32 `protobuf:"varint,10,opt,name=repress_skill_pvp_val,json=repressSkillPvpVal,proto3" json:"repress_skill_pvp_val,omitempty"`
  5919. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  5920. XXX_unrecognized []byte `json:"-"`
  5921. XXX_sizecache int32 `json:"-"`
  5922. }
  5923. func (m *FightRoleInfo) Reset() { *m = FightRoleInfo{} }
  5924. func (m *FightRoleInfo) String() string { return proto.CompactTextString(m) }
  5925. func (*FightRoleInfo) ProtoMessage() {}
  5926. func (*FightRoleInfo) Descriptor() ([]byte, []int) {
  5927. return fileDescriptor_116e343673f7ffaf, []int{99}
  5928. }
  5929. func (m *FightRoleInfo) XXX_Unmarshal(b []byte) error {
  5930. return xxx_messageInfo_FightRoleInfo.Unmarshal(m, b)
  5931. }
  5932. func (m *FightRoleInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  5933. return xxx_messageInfo_FightRoleInfo.Marshal(b, m, deterministic)
  5934. }
  5935. func (m *FightRoleInfo) XXX_Merge(src proto.Message) {
  5936. xxx_messageInfo_FightRoleInfo.Merge(m, src)
  5937. }
  5938. func (m *FightRoleInfo) XXX_Size() int {
  5939. return xxx_messageInfo_FightRoleInfo.Size(m)
  5940. }
  5941. func (m *FightRoleInfo) XXX_DiscardUnknown() {
  5942. xxx_messageInfo_FightRoleInfo.DiscardUnknown(m)
  5943. }
  5944. var xxx_messageInfo_FightRoleInfo proto.InternalMessageInfo
  5945. func (m *FightRoleInfo) GetIsRobot() bool {
  5946. if m != nil {
  5947. return m.IsRobot
  5948. }
  5949. return false
  5950. }
  5951. func (m *FightRoleInfo) GetBriefInfo() *CommonPlayerBriefInfo {
  5952. if m != nil {
  5953. return m.BriefInfo
  5954. }
  5955. return nil
  5956. }
  5957. func (m *FightRoleInfo) GetJobLevel() int32 {
  5958. if m != nil {
  5959. return m.JobLevel
  5960. }
  5961. return 0
  5962. }
  5963. func (m *FightRoleInfo) GetAttrList() []*KeyValueType {
  5964. if m != nil {
  5965. return m.AttrList
  5966. }
  5967. return nil
  5968. }
  5969. func (m *FightRoleInfo) GetFashionData() *FashionData {
  5970. if m != nil {
  5971. return m.FashionData
  5972. }
  5973. return nil
  5974. }
  5975. func (m *FightRoleInfo) GetHeroDataList() []*HeroData {
  5976. if m != nil {
  5977. return m.HeroDataList
  5978. }
  5979. return nil
  5980. }
  5981. func (m *FightRoleInfo) GetMaxFightPower() int32 {
  5982. if m != nil {
  5983. return m.MaxFightPower
  5984. }
  5985. return 0
  5986. }
  5987. func (m *FightRoleInfo) GetBattlePetList() []*PetData {
  5988. if m != nil {
  5989. return m.BattlePetList
  5990. }
  5991. return nil
  5992. }
  5993. func (m *FightRoleInfo) GetChangePlayId() int32 {
  5994. if m != nil {
  5995. return m.ChangePlayId
  5996. }
  5997. return 0
  5998. }
  5999. func (m *FightRoleInfo) GetRepressSkillPvpVal() int32 {
  6000. if m != nil {
  6001. return m.RepressSkillPvpVal
  6002. }
  6003. return 0
  6004. }
  6005. type ChatMessageInfo struct {
  6006. Message string `protobuf:"bytes,1,opt,name=message,proto3" json:"message,omitempty"`
  6007. SendTime uint64 `protobuf:"varint,2,opt,name=send_time,json=sendTime,proto3" json:"send_time,omitempty"`
  6008. SubType int32 `protobuf:"varint,3,opt,name=sub_type,json=subType,proto3" json:"sub_type,omitempty"`
  6009. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6010. XXX_unrecognized []byte `json:"-"`
  6011. XXX_sizecache int32 `json:"-"`
  6012. }
  6013. func (m *ChatMessageInfo) Reset() { *m = ChatMessageInfo{} }
  6014. func (m *ChatMessageInfo) String() string { return proto.CompactTextString(m) }
  6015. func (*ChatMessageInfo) ProtoMessage() {}
  6016. func (*ChatMessageInfo) Descriptor() ([]byte, []int) {
  6017. return fileDescriptor_116e343673f7ffaf, []int{100}
  6018. }
  6019. func (m *ChatMessageInfo) XXX_Unmarshal(b []byte) error {
  6020. return xxx_messageInfo_ChatMessageInfo.Unmarshal(m, b)
  6021. }
  6022. func (m *ChatMessageInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6023. return xxx_messageInfo_ChatMessageInfo.Marshal(b, m, deterministic)
  6024. }
  6025. func (m *ChatMessageInfo) XXX_Merge(src proto.Message) {
  6026. xxx_messageInfo_ChatMessageInfo.Merge(m, src)
  6027. }
  6028. func (m *ChatMessageInfo) XXX_Size() int {
  6029. return xxx_messageInfo_ChatMessageInfo.Size(m)
  6030. }
  6031. func (m *ChatMessageInfo) XXX_DiscardUnknown() {
  6032. xxx_messageInfo_ChatMessageInfo.DiscardUnknown(m)
  6033. }
  6034. var xxx_messageInfo_ChatMessageInfo proto.InternalMessageInfo
  6035. func (m *ChatMessageInfo) GetMessage() string {
  6036. if m != nil {
  6037. return m.Message
  6038. }
  6039. return ""
  6040. }
  6041. func (m *ChatMessageInfo) GetSendTime() uint64 {
  6042. if m != nil {
  6043. return m.SendTime
  6044. }
  6045. return 0
  6046. }
  6047. func (m *ChatMessageInfo) GetSubType() int32 {
  6048. if m != nil {
  6049. return m.SubType
  6050. }
  6051. return 0
  6052. }
  6053. type ChatPlayerBriefInfo struct {
  6054. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  6055. NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  6056. ImgId int32 `protobuf:"varint,3,opt,name=img_id,json=imgId,proto3" json:"img_id,omitempty"`
  6057. ConfigId int32 `protobuf:"varint,4,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  6058. Level int32 `protobuf:"varint,5,opt,name=level,proto3" json:"level,omitempty"`
  6059. HeadFrameId int32 `protobuf:"varint,6,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  6060. Gender int32 `protobuf:"varint,7,opt,name=gender,proto3" json:"gender,omitempty"`
  6061. VipLevel int32 `protobuf:"varint,8,opt,name=vip_level,json=vipLevel,proto3" json:"vip_level,omitempty"`
  6062. HeadId int32 `protobuf:"varint,9,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  6063. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6064. XXX_unrecognized []byte `json:"-"`
  6065. XXX_sizecache int32 `json:"-"`
  6066. }
  6067. func (m *ChatPlayerBriefInfo) Reset() { *m = ChatPlayerBriefInfo{} }
  6068. func (m *ChatPlayerBriefInfo) String() string { return proto.CompactTextString(m) }
  6069. func (*ChatPlayerBriefInfo) ProtoMessage() {}
  6070. func (*ChatPlayerBriefInfo) Descriptor() ([]byte, []int) {
  6071. return fileDescriptor_116e343673f7ffaf, []int{101}
  6072. }
  6073. func (m *ChatPlayerBriefInfo) XXX_Unmarshal(b []byte) error {
  6074. return xxx_messageInfo_ChatPlayerBriefInfo.Unmarshal(m, b)
  6075. }
  6076. func (m *ChatPlayerBriefInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6077. return xxx_messageInfo_ChatPlayerBriefInfo.Marshal(b, m, deterministic)
  6078. }
  6079. func (m *ChatPlayerBriefInfo) XXX_Merge(src proto.Message) {
  6080. xxx_messageInfo_ChatPlayerBriefInfo.Merge(m, src)
  6081. }
  6082. func (m *ChatPlayerBriefInfo) XXX_Size() int {
  6083. return xxx_messageInfo_ChatPlayerBriefInfo.Size(m)
  6084. }
  6085. func (m *ChatPlayerBriefInfo) XXX_DiscardUnknown() {
  6086. xxx_messageInfo_ChatPlayerBriefInfo.DiscardUnknown(m)
  6087. }
  6088. var xxx_messageInfo_ChatPlayerBriefInfo proto.InternalMessageInfo
  6089. func (m *ChatPlayerBriefInfo) GetUid() uint64 {
  6090. if m != nil {
  6091. return m.Uid
  6092. }
  6093. return 0
  6094. }
  6095. func (m *ChatPlayerBriefInfo) GetNickName() string {
  6096. if m != nil {
  6097. return m.NickName
  6098. }
  6099. return ""
  6100. }
  6101. func (m *ChatPlayerBriefInfo) GetImgId() int32 {
  6102. if m != nil {
  6103. return m.ImgId
  6104. }
  6105. return 0
  6106. }
  6107. func (m *ChatPlayerBriefInfo) GetConfigId() int32 {
  6108. if m != nil {
  6109. return m.ConfigId
  6110. }
  6111. return 0
  6112. }
  6113. func (m *ChatPlayerBriefInfo) GetLevel() int32 {
  6114. if m != nil {
  6115. return m.Level
  6116. }
  6117. return 0
  6118. }
  6119. func (m *ChatPlayerBriefInfo) GetHeadFrameId() int32 {
  6120. if m != nil {
  6121. return m.HeadFrameId
  6122. }
  6123. return 0
  6124. }
  6125. func (m *ChatPlayerBriefInfo) GetGender() int32 {
  6126. if m != nil {
  6127. return m.Gender
  6128. }
  6129. return 0
  6130. }
  6131. func (m *ChatPlayerBriefInfo) GetVipLevel() int32 {
  6132. if m != nil {
  6133. return m.VipLevel
  6134. }
  6135. return 0
  6136. }
  6137. func (m *ChatPlayerBriefInfo) GetHeadId() int32 {
  6138. if m != nil {
  6139. return m.HeadId
  6140. }
  6141. return 0
  6142. }
  6143. type CommonPlayerBriefInfo struct {
  6144. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  6145. NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  6146. ImgId int32 `protobuf:"varint,3,opt,name=img_id,json=imgId,proto3" json:"img_id,omitempty"`
  6147. Gender int32 `protobuf:"varint,4,opt,name=gender,proto3" json:"gender,omitempty"`
  6148. Level int32 `protobuf:"varint,5,opt,name=level,proto3" json:"level,omitempty"`
  6149. ConfigId int32 `protobuf:"varint,6,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  6150. FightPower int32 `protobuf:"varint,7,opt,name=fight_power,json=fightPower,proto3" json:"fight_power,omitempty"`
  6151. OnlineState bool `protobuf:"varint,8,opt,name=online_state,json=onlineState,proto3" json:"online_state,omitempty"`
  6152. OnlineTime uint64 `protobuf:"varint,9,opt,name=online_time,json=onlineTime,proto3" json:"online_time,omitempty"`
  6153. TowerLevel int32 `protobuf:"varint,10,opt,name=tower_level,json=towerLevel,proto3" json:"tower_level,omitempty"`
  6154. TowerTime uint64 `protobuf:"varint,11,opt,name=tower_time,json=towerTime,proto3" json:"tower_time,omitempty"`
  6155. MapLevelId int32 `protobuf:"varint,12,opt,name=map_level_id,json=mapLevelId,proto3" json:"map_level_id,omitempty"`
  6156. BattleRecordId uint64 `protobuf:"varint,13,opt,name=battle_record_id,json=battleRecordId,proto3" json:"battle_record_id,omitempty"`
  6157. HeadFrameId int32 `protobuf:"varint,14,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  6158. VipLevel int32 `protobuf:"varint,15,opt,name=vip_level,json=vipLevel,proto3" json:"vip_level,omitempty"`
  6159. SelectZone int32 `protobuf:"varint,16,opt,name=select_zone,json=selectZone,proto3" json:"select_zone,omitempty"`
  6160. HeadId int32 `protobuf:"varint,17,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  6161. // 后续字段不做保存操作
  6162. TotalRecharge float32 `protobuf:"fixed32,30,opt,name=total_recharge,json=totalRecharge,proto3" json:"total_recharge,omitempty"`
  6163. LastRechargeTime uint64 `protobuf:"varint,31,opt,name=last_recharge_time,json=lastRechargeTime,proto3" json:"last_recharge_time,omitempty"`
  6164. Rmb uint64 `protobuf:"varint,32,opt,name=rmb,proto3" json:"rmb,omitempty"`
  6165. Zeny uint64 `protobuf:"varint,33,opt,name=zeny,proto3" json:"zeny,omitempty"`
  6166. MaxFightPower uint32 `protobuf:"varint,34,opt,name=max_fight_power,json=maxFightPower,proto3" json:"max_fight_power,omitempty"`
  6167. Daochang100Tips string `protobuf:"bytes,35,opt,name=daochang100_tips,json=daochang100Tips,proto3" json:"daochang100_tips,omitempty"`
  6168. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6169. XXX_unrecognized []byte `json:"-"`
  6170. XXX_sizecache int32 `json:"-"`
  6171. }
  6172. func (m *CommonPlayerBriefInfo) Reset() { *m = CommonPlayerBriefInfo{} }
  6173. func (m *CommonPlayerBriefInfo) String() string { return proto.CompactTextString(m) }
  6174. func (*CommonPlayerBriefInfo) ProtoMessage() {}
  6175. func (*CommonPlayerBriefInfo) Descriptor() ([]byte, []int) {
  6176. return fileDescriptor_116e343673f7ffaf, []int{102}
  6177. }
  6178. func (m *CommonPlayerBriefInfo) XXX_Unmarshal(b []byte) error {
  6179. return xxx_messageInfo_CommonPlayerBriefInfo.Unmarshal(m, b)
  6180. }
  6181. func (m *CommonPlayerBriefInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6182. return xxx_messageInfo_CommonPlayerBriefInfo.Marshal(b, m, deterministic)
  6183. }
  6184. func (m *CommonPlayerBriefInfo) XXX_Merge(src proto.Message) {
  6185. xxx_messageInfo_CommonPlayerBriefInfo.Merge(m, src)
  6186. }
  6187. func (m *CommonPlayerBriefInfo) XXX_Size() int {
  6188. return xxx_messageInfo_CommonPlayerBriefInfo.Size(m)
  6189. }
  6190. func (m *CommonPlayerBriefInfo) XXX_DiscardUnknown() {
  6191. xxx_messageInfo_CommonPlayerBriefInfo.DiscardUnknown(m)
  6192. }
  6193. var xxx_messageInfo_CommonPlayerBriefInfo proto.InternalMessageInfo
  6194. func (m *CommonPlayerBriefInfo) GetUid() uint64 {
  6195. if m != nil {
  6196. return m.Uid
  6197. }
  6198. return 0
  6199. }
  6200. func (m *CommonPlayerBriefInfo) GetNickName() string {
  6201. if m != nil {
  6202. return m.NickName
  6203. }
  6204. return ""
  6205. }
  6206. func (m *CommonPlayerBriefInfo) GetImgId() int32 {
  6207. if m != nil {
  6208. return m.ImgId
  6209. }
  6210. return 0
  6211. }
  6212. func (m *CommonPlayerBriefInfo) GetGender() int32 {
  6213. if m != nil {
  6214. return m.Gender
  6215. }
  6216. return 0
  6217. }
  6218. func (m *CommonPlayerBriefInfo) GetLevel() int32 {
  6219. if m != nil {
  6220. return m.Level
  6221. }
  6222. return 0
  6223. }
  6224. func (m *CommonPlayerBriefInfo) GetConfigId() int32 {
  6225. if m != nil {
  6226. return m.ConfigId
  6227. }
  6228. return 0
  6229. }
  6230. func (m *CommonPlayerBriefInfo) GetFightPower() int32 {
  6231. if m != nil {
  6232. return m.FightPower
  6233. }
  6234. return 0
  6235. }
  6236. func (m *CommonPlayerBriefInfo) GetOnlineState() bool {
  6237. if m != nil {
  6238. return m.OnlineState
  6239. }
  6240. return false
  6241. }
  6242. func (m *CommonPlayerBriefInfo) GetOnlineTime() uint64 {
  6243. if m != nil {
  6244. return m.OnlineTime
  6245. }
  6246. return 0
  6247. }
  6248. func (m *CommonPlayerBriefInfo) GetTowerLevel() int32 {
  6249. if m != nil {
  6250. return m.TowerLevel
  6251. }
  6252. return 0
  6253. }
  6254. func (m *CommonPlayerBriefInfo) GetTowerTime() uint64 {
  6255. if m != nil {
  6256. return m.TowerTime
  6257. }
  6258. return 0
  6259. }
  6260. func (m *CommonPlayerBriefInfo) GetMapLevelId() int32 {
  6261. if m != nil {
  6262. return m.MapLevelId
  6263. }
  6264. return 0
  6265. }
  6266. func (m *CommonPlayerBriefInfo) GetBattleRecordId() uint64 {
  6267. if m != nil {
  6268. return m.BattleRecordId
  6269. }
  6270. return 0
  6271. }
  6272. func (m *CommonPlayerBriefInfo) GetHeadFrameId() int32 {
  6273. if m != nil {
  6274. return m.HeadFrameId
  6275. }
  6276. return 0
  6277. }
  6278. func (m *CommonPlayerBriefInfo) GetVipLevel() int32 {
  6279. if m != nil {
  6280. return m.VipLevel
  6281. }
  6282. return 0
  6283. }
  6284. func (m *CommonPlayerBriefInfo) GetSelectZone() int32 {
  6285. if m != nil {
  6286. return m.SelectZone
  6287. }
  6288. return 0
  6289. }
  6290. func (m *CommonPlayerBriefInfo) GetHeadId() int32 {
  6291. if m != nil {
  6292. return m.HeadId
  6293. }
  6294. return 0
  6295. }
  6296. func (m *CommonPlayerBriefInfo) GetTotalRecharge() float32 {
  6297. if m != nil {
  6298. return m.TotalRecharge
  6299. }
  6300. return 0
  6301. }
  6302. func (m *CommonPlayerBriefInfo) GetLastRechargeTime() uint64 {
  6303. if m != nil {
  6304. return m.LastRechargeTime
  6305. }
  6306. return 0
  6307. }
  6308. func (m *CommonPlayerBriefInfo) GetRmb() uint64 {
  6309. if m != nil {
  6310. return m.Rmb
  6311. }
  6312. return 0
  6313. }
  6314. func (m *CommonPlayerBriefInfo) GetZeny() uint64 {
  6315. if m != nil {
  6316. return m.Zeny
  6317. }
  6318. return 0
  6319. }
  6320. func (m *CommonPlayerBriefInfo) GetMaxFightPower() uint32 {
  6321. if m != nil {
  6322. return m.MaxFightPower
  6323. }
  6324. return 0
  6325. }
  6326. func (m *CommonPlayerBriefInfo) GetDaochang100Tips() string {
  6327. if m != nil {
  6328. return m.Daochang100Tips
  6329. }
  6330. return ""
  6331. }
  6332. type PlayerStateInfo struct {
  6333. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  6334. Online bool `protobuf:"varint,2,opt,name=online,proto3" json:"online,omitempty"`
  6335. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6336. XXX_unrecognized []byte `json:"-"`
  6337. XXX_sizecache int32 `json:"-"`
  6338. }
  6339. func (m *PlayerStateInfo) Reset() { *m = PlayerStateInfo{} }
  6340. func (m *PlayerStateInfo) String() string { return proto.CompactTextString(m) }
  6341. func (*PlayerStateInfo) ProtoMessage() {}
  6342. func (*PlayerStateInfo) Descriptor() ([]byte, []int) {
  6343. return fileDescriptor_116e343673f7ffaf, []int{103}
  6344. }
  6345. func (m *PlayerStateInfo) XXX_Unmarshal(b []byte) error {
  6346. return xxx_messageInfo_PlayerStateInfo.Unmarshal(m, b)
  6347. }
  6348. func (m *PlayerStateInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6349. return xxx_messageInfo_PlayerStateInfo.Marshal(b, m, deterministic)
  6350. }
  6351. func (m *PlayerStateInfo) XXX_Merge(src proto.Message) {
  6352. xxx_messageInfo_PlayerStateInfo.Merge(m, src)
  6353. }
  6354. func (m *PlayerStateInfo) XXX_Size() int {
  6355. return xxx_messageInfo_PlayerStateInfo.Size(m)
  6356. }
  6357. func (m *PlayerStateInfo) XXX_DiscardUnknown() {
  6358. xxx_messageInfo_PlayerStateInfo.DiscardUnknown(m)
  6359. }
  6360. var xxx_messageInfo_PlayerStateInfo proto.InternalMessageInfo
  6361. func (m *PlayerStateInfo) GetUid() uint64 {
  6362. if m != nil {
  6363. return m.Uid
  6364. }
  6365. return 0
  6366. }
  6367. func (m *PlayerStateInfo) GetOnline() bool {
  6368. if m != nil {
  6369. return m.Online
  6370. }
  6371. return false
  6372. }
  6373. type SystemMessage struct {
  6374. Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
  6375. NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  6376. ParamId []int32 `protobuf:"varint,3,rep,packed,name=param_id,json=paramId,proto3" json:"param_id,omitempty"`
  6377. SendTime uint64 `protobuf:"varint,4,opt,name=send_time,json=sendTime,proto3" json:"send_time,omitempty"`
  6378. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6379. XXX_unrecognized []byte `json:"-"`
  6380. XXX_sizecache int32 `json:"-"`
  6381. }
  6382. func (m *SystemMessage) Reset() { *m = SystemMessage{} }
  6383. func (m *SystemMessage) String() string { return proto.CompactTextString(m) }
  6384. func (*SystemMessage) ProtoMessage() {}
  6385. func (*SystemMessage) Descriptor() ([]byte, []int) {
  6386. return fileDescriptor_116e343673f7ffaf, []int{104}
  6387. }
  6388. func (m *SystemMessage) XXX_Unmarshal(b []byte) error {
  6389. return xxx_messageInfo_SystemMessage.Unmarshal(m, b)
  6390. }
  6391. func (m *SystemMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6392. return xxx_messageInfo_SystemMessage.Marshal(b, m, deterministic)
  6393. }
  6394. func (m *SystemMessage) XXX_Merge(src proto.Message) {
  6395. xxx_messageInfo_SystemMessage.Merge(m, src)
  6396. }
  6397. func (m *SystemMessage) XXX_Size() int {
  6398. return xxx_messageInfo_SystemMessage.Size(m)
  6399. }
  6400. func (m *SystemMessage) XXX_DiscardUnknown() {
  6401. xxx_messageInfo_SystemMessage.DiscardUnknown(m)
  6402. }
  6403. var xxx_messageInfo_SystemMessage proto.InternalMessageInfo
  6404. func (m *SystemMessage) GetType() int32 {
  6405. if m != nil {
  6406. return m.Type
  6407. }
  6408. return 0
  6409. }
  6410. func (m *SystemMessage) GetNickName() string {
  6411. if m != nil {
  6412. return m.NickName
  6413. }
  6414. return ""
  6415. }
  6416. func (m *SystemMessage) GetParamId() []int32 {
  6417. if m != nil {
  6418. return m.ParamId
  6419. }
  6420. return nil
  6421. }
  6422. func (m *SystemMessage) GetSendTime() uint64 {
  6423. if m != nil {
  6424. return m.SendTime
  6425. }
  6426. return 0
  6427. }
  6428. type MessageContentInfo struct {
  6429. Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
  6430. FromId *ChatPlayerBriefInfo `protobuf:"bytes,2,opt,name=from_id,json=fromId,proto3" json:"from_id,omitempty"`
  6431. Message *ChatMessageInfo `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
  6432. TargetId uint64 `protobuf:"varint,4,opt,name=target_id,json=targetId,proto3" json:"target_id,omitempty"`
  6433. ParamList []int32 `protobuf:"varint,5,rep,packed,name=param_list,json=paramList,proto3" json:"param_list,omitempty"`
  6434. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6435. XXX_unrecognized []byte `json:"-"`
  6436. XXX_sizecache int32 `json:"-"`
  6437. }
  6438. func (m *MessageContentInfo) Reset() { *m = MessageContentInfo{} }
  6439. func (m *MessageContentInfo) String() string { return proto.CompactTextString(m) }
  6440. func (*MessageContentInfo) ProtoMessage() {}
  6441. func (*MessageContentInfo) Descriptor() ([]byte, []int) {
  6442. return fileDescriptor_116e343673f7ffaf, []int{105}
  6443. }
  6444. func (m *MessageContentInfo) XXX_Unmarshal(b []byte) error {
  6445. return xxx_messageInfo_MessageContentInfo.Unmarshal(m, b)
  6446. }
  6447. func (m *MessageContentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6448. return xxx_messageInfo_MessageContentInfo.Marshal(b, m, deterministic)
  6449. }
  6450. func (m *MessageContentInfo) XXX_Merge(src proto.Message) {
  6451. xxx_messageInfo_MessageContentInfo.Merge(m, src)
  6452. }
  6453. func (m *MessageContentInfo) XXX_Size() int {
  6454. return xxx_messageInfo_MessageContentInfo.Size(m)
  6455. }
  6456. func (m *MessageContentInfo) XXX_DiscardUnknown() {
  6457. xxx_messageInfo_MessageContentInfo.DiscardUnknown(m)
  6458. }
  6459. var xxx_messageInfo_MessageContentInfo proto.InternalMessageInfo
  6460. func (m *MessageContentInfo) GetType() int32 {
  6461. if m != nil {
  6462. return m.Type
  6463. }
  6464. return 0
  6465. }
  6466. func (m *MessageContentInfo) GetFromId() *ChatPlayerBriefInfo {
  6467. if m != nil {
  6468. return m.FromId
  6469. }
  6470. return nil
  6471. }
  6472. func (m *MessageContentInfo) GetMessage() *ChatMessageInfo {
  6473. if m != nil {
  6474. return m.Message
  6475. }
  6476. return nil
  6477. }
  6478. func (m *MessageContentInfo) GetTargetId() uint64 {
  6479. if m != nil {
  6480. return m.TargetId
  6481. }
  6482. return 0
  6483. }
  6484. func (m *MessageContentInfo) GetParamList() []int32 {
  6485. if m != nil {
  6486. return m.ParamList
  6487. }
  6488. return nil
  6489. }
  6490. type RoleChat struct {
  6491. OfflineMsgPlayerList []*ChatPlayerBriefInfo `protobuf:"bytes,1,rep,name=offline_msg_player_list,json=offlineMsgPlayerList,proto3" json:"offline_msg_player_list,omitempty"`
  6492. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6493. XXX_unrecognized []byte `json:"-"`
  6494. XXX_sizecache int32 `json:"-"`
  6495. }
  6496. func (m *RoleChat) Reset() { *m = RoleChat{} }
  6497. func (m *RoleChat) String() string { return proto.CompactTextString(m) }
  6498. func (*RoleChat) ProtoMessage() {}
  6499. func (*RoleChat) Descriptor() ([]byte, []int) {
  6500. return fileDescriptor_116e343673f7ffaf, []int{106}
  6501. }
  6502. func (m *RoleChat) XXX_Unmarshal(b []byte) error {
  6503. return xxx_messageInfo_RoleChat.Unmarshal(m, b)
  6504. }
  6505. func (m *RoleChat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6506. return xxx_messageInfo_RoleChat.Marshal(b, m, deterministic)
  6507. }
  6508. func (m *RoleChat) XXX_Merge(src proto.Message) {
  6509. xxx_messageInfo_RoleChat.Merge(m, src)
  6510. }
  6511. func (m *RoleChat) XXX_Size() int {
  6512. return xxx_messageInfo_RoleChat.Size(m)
  6513. }
  6514. func (m *RoleChat) XXX_DiscardUnknown() {
  6515. xxx_messageInfo_RoleChat.DiscardUnknown(m)
  6516. }
  6517. var xxx_messageInfo_RoleChat proto.InternalMessageInfo
  6518. func (m *RoleChat) GetOfflineMsgPlayerList() []*ChatPlayerBriefInfo {
  6519. if m != nil {
  6520. return m.OfflineMsgPlayerList
  6521. }
  6522. return nil
  6523. }
  6524. type BuyInfo struct {
  6525. GoodsId int32 `protobuf:"varint,1,opt,name=goods_id,json=goodsId,proto3" json:"goods_id,omitempty"`
  6526. BuyNum int32 `protobuf:"varint,2,opt,name=buy_num,json=buyNum,proto3" json:"buy_num,omitempty"`
  6527. BuyTime uint64 `protobuf:"varint,3,opt,name=buy_time,json=buyTime,proto3" json:"buy_time,omitempty"`
  6528. RefTime int64 `protobuf:"varint,5,opt,name=ref_time,json=refTime,proto3" json:"ref_time,omitempty"`
  6529. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6530. XXX_unrecognized []byte `json:"-"`
  6531. XXX_sizecache int32 `json:"-"`
  6532. }
  6533. func (m *BuyInfo) Reset() { *m = BuyInfo{} }
  6534. func (m *BuyInfo) String() string { return proto.CompactTextString(m) }
  6535. func (*BuyInfo) ProtoMessage() {}
  6536. func (*BuyInfo) Descriptor() ([]byte, []int) {
  6537. return fileDescriptor_116e343673f7ffaf, []int{107}
  6538. }
  6539. func (m *BuyInfo) XXX_Unmarshal(b []byte) error {
  6540. return xxx_messageInfo_BuyInfo.Unmarshal(m, b)
  6541. }
  6542. func (m *BuyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6543. return xxx_messageInfo_BuyInfo.Marshal(b, m, deterministic)
  6544. }
  6545. func (m *BuyInfo) XXX_Merge(src proto.Message) {
  6546. xxx_messageInfo_BuyInfo.Merge(m, src)
  6547. }
  6548. func (m *BuyInfo) XXX_Size() int {
  6549. return xxx_messageInfo_BuyInfo.Size(m)
  6550. }
  6551. func (m *BuyInfo) XXX_DiscardUnknown() {
  6552. xxx_messageInfo_BuyInfo.DiscardUnknown(m)
  6553. }
  6554. var xxx_messageInfo_BuyInfo proto.InternalMessageInfo
  6555. func (m *BuyInfo) GetGoodsId() int32 {
  6556. if m != nil {
  6557. return m.GoodsId
  6558. }
  6559. return 0
  6560. }
  6561. func (m *BuyInfo) GetBuyNum() int32 {
  6562. if m != nil {
  6563. return m.BuyNum
  6564. }
  6565. return 0
  6566. }
  6567. func (m *BuyInfo) GetBuyTime() uint64 {
  6568. if m != nil {
  6569. return m.BuyTime
  6570. }
  6571. return 0
  6572. }
  6573. func (m *BuyInfo) GetRefTime() int64 {
  6574. if m != nil {
  6575. return m.RefTime
  6576. }
  6577. return 0
  6578. }
  6579. // 黑市类型商店数据
  6580. type SpecialShop struct {
  6581. RefreshTime int64 `protobuf:"varint,1,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  6582. GoodsList []int32 `protobuf:"varint,2,rep,packed,name=goods_list,json=goodsList,proto3" json:"goods_list,omitempty"`
  6583. RefreshCount int32 `protobuf:"varint,3,opt,name=refresh_count,json=refreshCount,proto3" json:"refresh_count,omitempty"`
  6584. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6585. XXX_unrecognized []byte `json:"-"`
  6586. XXX_sizecache int32 `json:"-"`
  6587. }
  6588. func (m *SpecialShop) Reset() { *m = SpecialShop{} }
  6589. func (m *SpecialShop) String() string { return proto.CompactTextString(m) }
  6590. func (*SpecialShop) ProtoMessage() {}
  6591. func (*SpecialShop) Descriptor() ([]byte, []int) {
  6592. return fileDescriptor_116e343673f7ffaf, []int{108}
  6593. }
  6594. func (m *SpecialShop) XXX_Unmarshal(b []byte) error {
  6595. return xxx_messageInfo_SpecialShop.Unmarshal(m, b)
  6596. }
  6597. func (m *SpecialShop) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6598. return xxx_messageInfo_SpecialShop.Marshal(b, m, deterministic)
  6599. }
  6600. func (m *SpecialShop) XXX_Merge(src proto.Message) {
  6601. xxx_messageInfo_SpecialShop.Merge(m, src)
  6602. }
  6603. func (m *SpecialShop) XXX_Size() int {
  6604. return xxx_messageInfo_SpecialShop.Size(m)
  6605. }
  6606. func (m *SpecialShop) XXX_DiscardUnknown() {
  6607. xxx_messageInfo_SpecialShop.DiscardUnknown(m)
  6608. }
  6609. var xxx_messageInfo_SpecialShop proto.InternalMessageInfo
  6610. func (m *SpecialShop) GetRefreshTime() int64 {
  6611. if m != nil {
  6612. return m.RefreshTime
  6613. }
  6614. return 0
  6615. }
  6616. func (m *SpecialShop) GetGoodsList() []int32 {
  6617. if m != nil {
  6618. return m.GoodsList
  6619. }
  6620. return nil
  6621. }
  6622. func (m *SpecialShop) GetRefreshCount() int32 {
  6623. if m != nil {
  6624. return m.RefreshCount
  6625. }
  6626. return 0
  6627. }
  6628. type ShopBuyInfo struct {
  6629. GoodsType int32 `protobuf:"varint,1,opt,name=goods_type,json=goodsType,proto3" json:"goods_type,omitempty"`
  6630. ItemInfo []*BuyInfo `protobuf:"bytes,2,rep,name=item_info,json=itemInfo,proto3" json:"item_info,omitempty"`
  6631. RefData *SpecialShop `protobuf:"bytes,3,opt,name=ref_data,json=refData,proto3" json:"ref_data,omitempty"`
  6632. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6633. XXX_unrecognized []byte `json:"-"`
  6634. XXX_sizecache int32 `json:"-"`
  6635. }
  6636. func (m *ShopBuyInfo) Reset() { *m = ShopBuyInfo{} }
  6637. func (m *ShopBuyInfo) String() string { return proto.CompactTextString(m) }
  6638. func (*ShopBuyInfo) ProtoMessage() {}
  6639. func (*ShopBuyInfo) Descriptor() ([]byte, []int) {
  6640. return fileDescriptor_116e343673f7ffaf, []int{109}
  6641. }
  6642. func (m *ShopBuyInfo) XXX_Unmarshal(b []byte) error {
  6643. return xxx_messageInfo_ShopBuyInfo.Unmarshal(m, b)
  6644. }
  6645. func (m *ShopBuyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6646. return xxx_messageInfo_ShopBuyInfo.Marshal(b, m, deterministic)
  6647. }
  6648. func (m *ShopBuyInfo) XXX_Merge(src proto.Message) {
  6649. xxx_messageInfo_ShopBuyInfo.Merge(m, src)
  6650. }
  6651. func (m *ShopBuyInfo) XXX_Size() int {
  6652. return xxx_messageInfo_ShopBuyInfo.Size(m)
  6653. }
  6654. func (m *ShopBuyInfo) XXX_DiscardUnknown() {
  6655. xxx_messageInfo_ShopBuyInfo.DiscardUnknown(m)
  6656. }
  6657. var xxx_messageInfo_ShopBuyInfo proto.InternalMessageInfo
  6658. func (m *ShopBuyInfo) GetGoodsType() int32 {
  6659. if m != nil {
  6660. return m.GoodsType
  6661. }
  6662. return 0
  6663. }
  6664. func (m *ShopBuyInfo) GetItemInfo() []*BuyInfo {
  6665. if m != nil {
  6666. return m.ItemInfo
  6667. }
  6668. return nil
  6669. }
  6670. func (m *ShopBuyInfo) GetRefData() *SpecialShop {
  6671. if m != nil {
  6672. return m.RefData
  6673. }
  6674. return nil
  6675. }
  6676. type ShopItem struct {
  6677. GoodsId int32 `protobuf:"varint,1,opt,name=goods_id,json=goodsId,proto3" json:"goods_id,omitempty"`
  6678. Price int32 `protobuf:"varint,3,opt,name=price,proto3" json:"price,omitempty"`
  6679. CurPrice int32 `protobuf:"varint,4,opt,name=cur_price,json=curPrice,proto3" json:"cur_price,omitempty"`
  6680. Dispercent int32 `protobuf:"varint,6,opt,name=dispercent,proto3" json:"dispercent,omitempty"`
  6681. Hot bool `protobuf:"varint,7,opt,name=hot,proto3" json:"hot,omitempty"`
  6682. LimitType int32 `protobuf:"varint,9,opt,name=limit_type,json=limitType,proto3" json:"limit_type,omitempty"`
  6683. Count int32 `protobuf:"varint,10,opt,name=count,proto3" json:"count,omitempty"`
  6684. Circle int32 `protobuf:"varint,11,opt,name=circle,proto3" json:"circle,omitempty"`
  6685. StartTime int64 `protobuf:"varint,13,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  6686. EndTime int64 `protobuf:"varint,14,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  6687. HdItemId int32 `protobuf:"varint,15,opt,name=hd_item_id,json=hdItemId,proto3" json:"hd_item_id,omitempty"`
  6688. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6689. XXX_unrecognized []byte `json:"-"`
  6690. XXX_sizecache int32 `json:"-"`
  6691. }
  6692. func (m *ShopItem) Reset() { *m = ShopItem{} }
  6693. func (m *ShopItem) String() string { return proto.CompactTextString(m) }
  6694. func (*ShopItem) ProtoMessage() {}
  6695. func (*ShopItem) Descriptor() ([]byte, []int) {
  6696. return fileDescriptor_116e343673f7ffaf, []int{110}
  6697. }
  6698. func (m *ShopItem) XXX_Unmarshal(b []byte) error {
  6699. return xxx_messageInfo_ShopItem.Unmarshal(m, b)
  6700. }
  6701. func (m *ShopItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6702. return xxx_messageInfo_ShopItem.Marshal(b, m, deterministic)
  6703. }
  6704. func (m *ShopItem) XXX_Merge(src proto.Message) {
  6705. xxx_messageInfo_ShopItem.Merge(m, src)
  6706. }
  6707. func (m *ShopItem) XXX_Size() int {
  6708. return xxx_messageInfo_ShopItem.Size(m)
  6709. }
  6710. func (m *ShopItem) XXX_DiscardUnknown() {
  6711. xxx_messageInfo_ShopItem.DiscardUnknown(m)
  6712. }
  6713. var xxx_messageInfo_ShopItem proto.InternalMessageInfo
  6714. func (m *ShopItem) GetGoodsId() int32 {
  6715. if m != nil {
  6716. return m.GoodsId
  6717. }
  6718. return 0
  6719. }
  6720. func (m *ShopItem) GetPrice() int32 {
  6721. if m != nil {
  6722. return m.Price
  6723. }
  6724. return 0
  6725. }
  6726. func (m *ShopItem) GetCurPrice() int32 {
  6727. if m != nil {
  6728. return m.CurPrice
  6729. }
  6730. return 0
  6731. }
  6732. func (m *ShopItem) GetDispercent() int32 {
  6733. if m != nil {
  6734. return m.Dispercent
  6735. }
  6736. return 0
  6737. }
  6738. func (m *ShopItem) GetHot() bool {
  6739. if m != nil {
  6740. return m.Hot
  6741. }
  6742. return false
  6743. }
  6744. func (m *ShopItem) GetLimitType() int32 {
  6745. if m != nil {
  6746. return m.LimitType
  6747. }
  6748. return 0
  6749. }
  6750. func (m *ShopItem) GetCount() int32 {
  6751. if m != nil {
  6752. return m.Count
  6753. }
  6754. return 0
  6755. }
  6756. func (m *ShopItem) GetCircle() int32 {
  6757. if m != nil {
  6758. return m.Circle
  6759. }
  6760. return 0
  6761. }
  6762. func (m *ShopItem) GetStartTime() int64 {
  6763. if m != nil {
  6764. return m.StartTime
  6765. }
  6766. return 0
  6767. }
  6768. func (m *ShopItem) GetEndTime() int64 {
  6769. if m != nil {
  6770. return m.EndTime
  6771. }
  6772. return 0
  6773. }
  6774. func (m *ShopItem) GetHdItemId() int32 {
  6775. if m != nil {
  6776. return m.HdItemId
  6777. }
  6778. return 0
  6779. }
  6780. type ShopData struct {
  6781. GoodsType int32 `protobuf:"varint,1,opt,name=goods_type,json=goodsType,proto3" json:"goods_type,omitempty"`
  6782. ItemInfo []*ShopItem `protobuf:"bytes,2,rep,name=item_info,json=itemInfo,proto3" json:"item_info,omitempty"`
  6783. BuyInfo []*BuyInfo `protobuf:"bytes,3,rep,name=buy_info,json=buyInfo,proto3" json:"buy_info,omitempty"`
  6784. RefreshTime int64 `protobuf:"varint,4,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  6785. RefreshCount int32 `protobuf:"varint,5,opt,name=refresh_count,json=refreshCount,proto3" json:"refresh_count,omitempty"`
  6786. DayEnd int64 `protobuf:"varint,6,opt,name=day_end,json=dayEnd,proto3" json:"day_end,omitempty"`
  6787. WeekEnd int64 `protobuf:"varint,7,opt,name=week_end,json=weekEnd,proto3" json:"week_end,omitempty"`
  6788. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6789. XXX_unrecognized []byte `json:"-"`
  6790. XXX_sizecache int32 `json:"-"`
  6791. }
  6792. func (m *ShopData) Reset() { *m = ShopData{} }
  6793. func (m *ShopData) String() string { return proto.CompactTextString(m) }
  6794. func (*ShopData) ProtoMessage() {}
  6795. func (*ShopData) Descriptor() ([]byte, []int) {
  6796. return fileDescriptor_116e343673f7ffaf, []int{111}
  6797. }
  6798. func (m *ShopData) XXX_Unmarshal(b []byte) error {
  6799. return xxx_messageInfo_ShopData.Unmarshal(m, b)
  6800. }
  6801. func (m *ShopData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6802. return xxx_messageInfo_ShopData.Marshal(b, m, deterministic)
  6803. }
  6804. func (m *ShopData) XXX_Merge(src proto.Message) {
  6805. xxx_messageInfo_ShopData.Merge(m, src)
  6806. }
  6807. func (m *ShopData) XXX_Size() int {
  6808. return xxx_messageInfo_ShopData.Size(m)
  6809. }
  6810. func (m *ShopData) XXX_DiscardUnknown() {
  6811. xxx_messageInfo_ShopData.DiscardUnknown(m)
  6812. }
  6813. var xxx_messageInfo_ShopData proto.InternalMessageInfo
  6814. func (m *ShopData) GetGoodsType() int32 {
  6815. if m != nil {
  6816. return m.GoodsType
  6817. }
  6818. return 0
  6819. }
  6820. func (m *ShopData) GetItemInfo() []*ShopItem {
  6821. if m != nil {
  6822. return m.ItemInfo
  6823. }
  6824. return nil
  6825. }
  6826. func (m *ShopData) GetBuyInfo() []*BuyInfo {
  6827. if m != nil {
  6828. return m.BuyInfo
  6829. }
  6830. return nil
  6831. }
  6832. func (m *ShopData) GetRefreshTime() int64 {
  6833. if m != nil {
  6834. return m.RefreshTime
  6835. }
  6836. return 0
  6837. }
  6838. func (m *ShopData) GetRefreshCount() int32 {
  6839. if m != nil {
  6840. return m.RefreshCount
  6841. }
  6842. return 0
  6843. }
  6844. func (m *ShopData) GetDayEnd() int64 {
  6845. if m != nil {
  6846. return m.DayEnd
  6847. }
  6848. return 0
  6849. }
  6850. func (m *ShopData) GetWeekEnd() int64 {
  6851. if m != nil {
  6852. return m.WeekEnd
  6853. }
  6854. return 0
  6855. }
  6856. type ShopList struct {
  6857. Data []*ShopData `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
  6858. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6859. XXX_unrecognized []byte `json:"-"`
  6860. XXX_sizecache int32 `json:"-"`
  6861. }
  6862. func (m *ShopList) Reset() { *m = ShopList{} }
  6863. func (m *ShopList) String() string { return proto.CompactTextString(m) }
  6864. func (*ShopList) ProtoMessage() {}
  6865. func (*ShopList) Descriptor() ([]byte, []int) {
  6866. return fileDescriptor_116e343673f7ffaf, []int{112}
  6867. }
  6868. func (m *ShopList) XXX_Unmarshal(b []byte) error {
  6869. return xxx_messageInfo_ShopList.Unmarshal(m, b)
  6870. }
  6871. func (m *ShopList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6872. return xxx_messageInfo_ShopList.Marshal(b, m, deterministic)
  6873. }
  6874. func (m *ShopList) XXX_Merge(src proto.Message) {
  6875. xxx_messageInfo_ShopList.Merge(m, src)
  6876. }
  6877. func (m *ShopList) XXX_Size() int {
  6878. return xxx_messageInfo_ShopList.Size(m)
  6879. }
  6880. func (m *ShopList) XXX_DiscardUnknown() {
  6881. xxx_messageInfo_ShopList.DiscardUnknown(m)
  6882. }
  6883. var xxx_messageInfo_ShopList proto.InternalMessageInfo
  6884. func (m *ShopList) GetData() []*ShopData {
  6885. if m != nil {
  6886. return m.Data
  6887. }
  6888. return nil
  6889. }
  6890. // 战斗玩家数据
  6891. type ViewRoleInfo struct {
  6892. Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  6893. Brief *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief,proto3" json:"brief,omitempty"`
  6894. RoleHero *HeroData `protobuf:"bytes,3,opt,name=role_hero,json=roleHero,proto3" json:"role_hero,omitempty"`
  6895. Hero *RoleHero `protobuf:"bytes,4,opt,name=hero,proto3" json:"hero,omitempty"`
  6896. Fashion *RoleFashion `protobuf:"bytes,5,opt,name=fashion,proto3" json:"fashion,omitempty"`
  6897. AttrList []*KeyValueType `protobuf:"bytes,6,rep,name=attr_list,json=attrList,proto3" json:"attr_list,omitempty"`
  6898. FashionData *FashionData `protobuf:"bytes,7,opt,name=fashion_data,json=fashionData,proto3" json:"fashion_data,omitempty"`
  6899. DanScore int32 `protobuf:"varint,8,opt,name=danScore,proto3" json:"danScore,omitempty"`
  6900. ParamList []int32 `protobuf:"varint,9,rep,packed,name=param_list,json=paramList,proto3" json:"param_list,omitempty"`
  6901. GuildName string `protobuf:"bytes,10,opt,name=guild_name,json=guildName,proto3" json:"guild_name,omitempty"`
  6902. PetList []*PetData `protobuf:"bytes,11,rep,name=pet_list,json=petList,proto3" json:"pet_list,omitempty"`
  6903. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  6904. XXX_unrecognized []byte `json:"-"`
  6905. XXX_sizecache int32 `json:"-"`
  6906. }
  6907. func (m *ViewRoleInfo) Reset() { *m = ViewRoleInfo{} }
  6908. func (m *ViewRoleInfo) String() string { return proto.CompactTextString(m) }
  6909. func (*ViewRoleInfo) ProtoMessage() {}
  6910. func (*ViewRoleInfo) Descriptor() ([]byte, []int) {
  6911. return fileDescriptor_116e343673f7ffaf, []int{113}
  6912. }
  6913. func (m *ViewRoleInfo) XXX_Unmarshal(b []byte) error {
  6914. return xxx_messageInfo_ViewRoleInfo.Unmarshal(m, b)
  6915. }
  6916. func (m *ViewRoleInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  6917. return xxx_messageInfo_ViewRoleInfo.Marshal(b, m, deterministic)
  6918. }
  6919. func (m *ViewRoleInfo) XXX_Merge(src proto.Message) {
  6920. xxx_messageInfo_ViewRoleInfo.Merge(m, src)
  6921. }
  6922. func (m *ViewRoleInfo) XXX_Size() int {
  6923. return xxx_messageInfo_ViewRoleInfo.Size(m)
  6924. }
  6925. func (m *ViewRoleInfo) XXX_DiscardUnknown() {
  6926. xxx_messageInfo_ViewRoleInfo.DiscardUnknown(m)
  6927. }
  6928. var xxx_messageInfo_ViewRoleInfo proto.InternalMessageInfo
  6929. func (m *ViewRoleInfo) GetId() uint64 {
  6930. if m != nil {
  6931. return m.Id
  6932. }
  6933. return 0
  6934. }
  6935. func (m *ViewRoleInfo) GetBrief() *CommonPlayerBriefInfo {
  6936. if m != nil {
  6937. return m.Brief
  6938. }
  6939. return nil
  6940. }
  6941. func (m *ViewRoleInfo) GetRoleHero() *HeroData {
  6942. if m != nil {
  6943. return m.RoleHero
  6944. }
  6945. return nil
  6946. }
  6947. func (m *ViewRoleInfo) GetHero() *RoleHero {
  6948. if m != nil {
  6949. return m.Hero
  6950. }
  6951. return nil
  6952. }
  6953. func (m *ViewRoleInfo) GetFashion() *RoleFashion {
  6954. if m != nil {
  6955. return m.Fashion
  6956. }
  6957. return nil
  6958. }
  6959. func (m *ViewRoleInfo) GetAttrList() []*KeyValueType {
  6960. if m != nil {
  6961. return m.AttrList
  6962. }
  6963. return nil
  6964. }
  6965. func (m *ViewRoleInfo) GetFashionData() *FashionData {
  6966. if m != nil {
  6967. return m.FashionData
  6968. }
  6969. return nil
  6970. }
  6971. func (m *ViewRoleInfo) GetDanScore() int32 {
  6972. if m != nil {
  6973. return m.DanScore
  6974. }
  6975. return 0
  6976. }
  6977. func (m *ViewRoleInfo) GetParamList() []int32 {
  6978. if m != nil {
  6979. return m.ParamList
  6980. }
  6981. return nil
  6982. }
  6983. func (m *ViewRoleInfo) GetGuildName() string {
  6984. if m != nil {
  6985. return m.GuildName
  6986. }
  6987. return ""
  6988. }
  6989. func (m *ViewRoleInfo) GetPetList() []*PetData {
  6990. if m != nil {
  6991. return m.PetList
  6992. }
  6993. return nil
  6994. }
  6995. type ShopCost struct {
  6996. ShopType int32 `protobuf:"varint,1,opt,name=shop_type,json=shopType,proto3" json:"shop_type,omitempty"`
  6997. ResType int32 `protobuf:"varint,2,opt,name=res_type,json=resType,proto3" json:"res_type,omitempty"`
  6998. ResCount uint32 `protobuf:"varint,3,opt,name=res_count,json=resCount,proto3" json:"res_count,omitempty"`
  6999. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7000. XXX_unrecognized []byte `json:"-"`
  7001. XXX_sizecache int32 `json:"-"`
  7002. }
  7003. func (m *ShopCost) Reset() { *m = ShopCost{} }
  7004. func (m *ShopCost) String() string { return proto.CompactTextString(m) }
  7005. func (*ShopCost) ProtoMessage() {}
  7006. func (*ShopCost) Descriptor() ([]byte, []int) {
  7007. return fileDescriptor_116e343673f7ffaf, []int{114}
  7008. }
  7009. func (m *ShopCost) XXX_Unmarshal(b []byte) error {
  7010. return xxx_messageInfo_ShopCost.Unmarshal(m, b)
  7011. }
  7012. func (m *ShopCost) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7013. return xxx_messageInfo_ShopCost.Marshal(b, m, deterministic)
  7014. }
  7015. func (m *ShopCost) XXX_Merge(src proto.Message) {
  7016. xxx_messageInfo_ShopCost.Merge(m, src)
  7017. }
  7018. func (m *ShopCost) XXX_Size() int {
  7019. return xxx_messageInfo_ShopCost.Size(m)
  7020. }
  7021. func (m *ShopCost) XXX_DiscardUnknown() {
  7022. xxx_messageInfo_ShopCost.DiscardUnknown(m)
  7023. }
  7024. var xxx_messageInfo_ShopCost proto.InternalMessageInfo
  7025. func (m *ShopCost) GetShopType() int32 {
  7026. if m != nil {
  7027. return m.ShopType
  7028. }
  7029. return 0
  7030. }
  7031. func (m *ShopCost) GetResType() int32 {
  7032. if m != nil {
  7033. return m.ResType
  7034. }
  7035. return 0
  7036. }
  7037. func (m *ShopCost) GetResCount() uint32 {
  7038. if m != nil {
  7039. return m.ResCount
  7040. }
  7041. return 0
  7042. }
  7043. type RoleShop struct {
  7044. Info []*ShopBuyInfo `protobuf:"bytes,1,rep,name=info,proto3" json:"info,omitempty"`
  7045. TotalBuyNum int32 `protobuf:"varint,2,opt,name=total_buy_num,json=totalBuyNum,proto3" json:"total_buy_num,omitempty"`
  7046. CostRes []*ShopCost `protobuf:"bytes,3,rep,name=cost_res,json=costRes,proto3" json:"cost_res,omitempty"`
  7047. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7048. XXX_unrecognized []byte `json:"-"`
  7049. XXX_sizecache int32 `json:"-"`
  7050. }
  7051. func (m *RoleShop) Reset() { *m = RoleShop{} }
  7052. func (m *RoleShop) String() string { return proto.CompactTextString(m) }
  7053. func (*RoleShop) ProtoMessage() {}
  7054. func (*RoleShop) Descriptor() ([]byte, []int) {
  7055. return fileDescriptor_116e343673f7ffaf, []int{115}
  7056. }
  7057. func (m *RoleShop) XXX_Unmarshal(b []byte) error {
  7058. return xxx_messageInfo_RoleShop.Unmarshal(m, b)
  7059. }
  7060. func (m *RoleShop) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7061. return xxx_messageInfo_RoleShop.Marshal(b, m, deterministic)
  7062. }
  7063. func (m *RoleShop) XXX_Merge(src proto.Message) {
  7064. xxx_messageInfo_RoleShop.Merge(m, src)
  7065. }
  7066. func (m *RoleShop) XXX_Size() int {
  7067. return xxx_messageInfo_RoleShop.Size(m)
  7068. }
  7069. func (m *RoleShop) XXX_DiscardUnknown() {
  7070. xxx_messageInfo_RoleShop.DiscardUnknown(m)
  7071. }
  7072. var xxx_messageInfo_RoleShop proto.InternalMessageInfo
  7073. func (m *RoleShop) GetInfo() []*ShopBuyInfo {
  7074. if m != nil {
  7075. return m.Info
  7076. }
  7077. return nil
  7078. }
  7079. func (m *RoleShop) GetTotalBuyNum() int32 {
  7080. if m != nil {
  7081. return m.TotalBuyNum
  7082. }
  7083. return 0
  7084. }
  7085. func (m *RoleShop) GetCostRes() []*ShopCost {
  7086. if m != nil {
  7087. return m.CostRes
  7088. }
  7089. return nil
  7090. }
  7091. type CurRoundSign struct {
  7092. LastSign int64 `protobuf:"varint,1,opt,name=last_sign,json=lastSign,proto3" json:"last_sign,omitempty"`
  7093. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7094. XXX_unrecognized []byte `json:"-"`
  7095. XXX_sizecache int32 `json:"-"`
  7096. }
  7097. func (m *CurRoundSign) Reset() { *m = CurRoundSign{} }
  7098. func (m *CurRoundSign) String() string { return proto.CompactTextString(m) }
  7099. func (*CurRoundSign) ProtoMessage() {}
  7100. func (*CurRoundSign) Descriptor() ([]byte, []int) {
  7101. return fileDescriptor_116e343673f7ffaf, []int{116}
  7102. }
  7103. func (m *CurRoundSign) XXX_Unmarshal(b []byte) error {
  7104. return xxx_messageInfo_CurRoundSign.Unmarshal(m, b)
  7105. }
  7106. func (m *CurRoundSign) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7107. return xxx_messageInfo_CurRoundSign.Marshal(b, m, deterministic)
  7108. }
  7109. func (m *CurRoundSign) XXX_Merge(src proto.Message) {
  7110. xxx_messageInfo_CurRoundSign.Merge(m, src)
  7111. }
  7112. func (m *CurRoundSign) XXX_Size() int {
  7113. return xxx_messageInfo_CurRoundSign.Size(m)
  7114. }
  7115. func (m *CurRoundSign) XXX_DiscardUnknown() {
  7116. xxx_messageInfo_CurRoundSign.DiscardUnknown(m)
  7117. }
  7118. var xxx_messageInfo_CurRoundSign proto.InternalMessageInfo
  7119. func (m *CurRoundSign) GetLastSign() int64 {
  7120. if m != nil {
  7121. return m.LastSign
  7122. }
  7123. return 0
  7124. }
  7125. // 签到相关
  7126. type SignUp struct {
  7127. SignRound int32 `protobuf:"varint,1,opt,name=sign_round,json=signRound,proto3" json:"sign_round,omitempty"`
  7128. CurDay int32 `protobuf:"varint,2,opt,name=cur_day,json=curDay,proto3" json:"cur_day,omitempty"`
  7129. CurSignInfo *CurRoundSign `protobuf:"bytes,3,opt,name=cur_sign_info,json=curSignInfo,proto3" json:"cur_sign_info,omitempty"`
  7130. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7131. XXX_unrecognized []byte `json:"-"`
  7132. XXX_sizecache int32 `json:"-"`
  7133. }
  7134. func (m *SignUp) Reset() { *m = SignUp{} }
  7135. func (m *SignUp) String() string { return proto.CompactTextString(m) }
  7136. func (*SignUp) ProtoMessage() {}
  7137. func (*SignUp) Descriptor() ([]byte, []int) {
  7138. return fileDescriptor_116e343673f7ffaf, []int{117}
  7139. }
  7140. func (m *SignUp) XXX_Unmarshal(b []byte) error {
  7141. return xxx_messageInfo_SignUp.Unmarshal(m, b)
  7142. }
  7143. func (m *SignUp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7144. return xxx_messageInfo_SignUp.Marshal(b, m, deterministic)
  7145. }
  7146. func (m *SignUp) XXX_Merge(src proto.Message) {
  7147. xxx_messageInfo_SignUp.Merge(m, src)
  7148. }
  7149. func (m *SignUp) XXX_Size() int {
  7150. return xxx_messageInfo_SignUp.Size(m)
  7151. }
  7152. func (m *SignUp) XXX_DiscardUnknown() {
  7153. xxx_messageInfo_SignUp.DiscardUnknown(m)
  7154. }
  7155. var xxx_messageInfo_SignUp proto.InternalMessageInfo
  7156. func (m *SignUp) GetSignRound() int32 {
  7157. if m != nil {
  7158. return m.SignRound
  7159. }
  7160. return 0
  7161. }
  7162. func (m *SignUp) GetCurDay() int32 {
  7163. if m != nil {
  7164. return m.CurDay
  7165. }
  7166. return 0
  7167. }
  7168. func (m *SignUp) GetCurSignInfo() *CurRoundSign {
  7169. if m != nil {
  7170. return m.CurSignInfo
  7171. }
  7172. return nil
  7173. }
  7174. // 活动数据
  7175. type RoleActivity struct {
  7176. SignInfo *SignUp `protobuf:"bytes,1,opt,name=sign_info,json=signInfo,proto3" json:"sign_info,omitempty"`
  7177. // 精彩活动
  7178. CurDayEndTime uint64 `protobuf:"varint,2,opt,name=cur_day_end_time,json=curDayEndTime,proto3" json:"cur_day_end_time,omitempty"`
  7179. ActivityDataList []*ActivitiesDetailData `protobuf:"bytes,3,rep,name=activity_data_list,json=activityDataList,proto3" json:"activity_data_list,omitempty"`
  7180. // 充值活动
  7181. // 首充大礼包时间(达到给定数值记录时间)
  7182. FirstChargeTime uint64 `protobuf:"varint,4,opt,name=first_charge_time,json=firstChargeTime,proto3" json:"first_charge_time,omitempty"`
  7183. FirstChargeRewardState int32 `protobuf:"varint,5,opt,name=first_charge_reward_state,json=firstChargeRewardState,proto3" json:"first_charge_reward_state,omitempty"`
  7184. // 超值礼包数据
  7185. UnlockChargeList []*ActivitiesUnlockRechargeData `protobuf:"bytes,6,rep,name=unlock_charge_list,json=unlockChargeList,proto3" json:"unlock_charge_list,omitempty"`
  7186. UnlockChargeHasList []*KeyValueType `protobuf:"bytes,7,rep,name=unlock_charge_has_list,json=unlockChargeHasList,proto3" json:"unlock_charge_has_list,omitempty"`
  7187. ExpiredActivityList []int32 `protobuf:"varint,8,rep,packed,name=expired_activity_list,json=expiredActivityList,proto3" json:"expired_activity_list,omitempty"`
  7188. // 服务器Load时使用
  7189. ActMsgList []*SystemMessage `protobuf:"bytes,10,rep,name=act_msg_list,json=actMsgList,proto3" json:"act_msg_list,omitempty"`
  7190. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7191. XXX_unrecognized []byte `json:"-"`
  7192. XXX_sizecache int32 `json:"-"`
  7193. }
  7194. func (m *RoleActivity) Reset() { *m = RoleActivity{} }
  7195. func (m *RoleActivity) String() string { return proto.CompactTextString(m) }
  7196. func (*RoleActivity) ProtoMessage() {}
  7197. func (*RoleActivity) Descriptor() ([]byte, []int) {
  7198. return fileDescriptor_116e343673f7ffaf, []int{118}
  7199. }
  7200. func (m *RoleActivity) XXX_Unmarshal(b []byte) error {
  7201. return xxx_messageInfo_RoleActivity.Unmarshal(m, b)
  7202. }
  7203. func (m *RoleActivity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7204. return xxx_messageInfo_RoleActivity.Marshal(b, m, deterministic)
  7205. }
  7206. func (m *RoleActivity) XXX_Merge(src proto.Message) {
  7207. xxx_messageInfo_RoleActivity.Merge(m, src)
  7208. }
  7209. func (m *RoleActivity) XXX_Size() int {
  7210. return xxx_messageInfo_RoleActivity.Size(m)
  7211. }
  7212. func (m *RoleActivity) XXX_DiscardUnknown() {
  7213. xxx_messageInfo_RoleActivity.DiscardUnknown(m)
  7214. }
  7215. var xxx_messageInfo_RoleActivity proto.InternalMessageInfo
  7216. func (m *RoleActivity) GetSignInfo() *SignUp {
  7217. if m != nil {
  7218. return m.SignInfo
  7219. }
  7220. return nil
  7221. }
  7222. func (m *RoleActivity) GetCurDayEndTime() uint64 {
  7223. if m != nil {
  7224. return m.CurDayEndTime
  7225. }
  7226. return 0
  7227. }
  7228. func (m *RoleActivity) GetActivityDataList() []*ActivitiesDetailData {
  7229. if m != nil {
  7230. return m.ActivityDataList
  7231. }
  7232. return nil
  7233. }
  7234. func (m *RoleActivity) GetFirstChargeTime() uint64 {
  7235. if m != nil {
  7236. return m.FirstChargeTime
  7237. }
  7238. return 0
  7239. }
  7240. func (m *RoleActivity) GetFirstChargeRewardState() int32 {
  7241. if m != nil {
  7242. return m.FirstChargeRewardState
  7243. }
  7244. return 0
  7245. }
  7246. func (m *RoleActivity) GetUnlockChargeList() []*ActivitiesUnlockRechargeData {
  7247. if m != nil {
  7248. return m.UnlockChargeList
  7249. }
  7250. return nil
  7251. }
  7252. func (m *RoleActivity) GetUnlockChargeHasList() []*KeyValueType {
  7253. if m != nil {
  7254. return m.UnlockChargeHasList
  7255. }
  7256. return nil
  7257. }
  7258. func (m *RoleActivity) GetExpiredActivityList() []int32 {
  7259. if m != nil {
  7260. return m.ExpiredActivityList
  7261. }
  7262. return nil
  7263. }
  7264. func (m *RoleActivity) GetActMsgList() []*SystemMessage {
  7265. if m != nil {
  7266. return m.ActMsgList
  7267. }
  7268. return nil
  7269. }
  7270. // /精彩活动
  7271. type ActivitiesDetailData struct {
  7272. ActivitiesId int32 `protobuf:"varint,1,opt,name=activities_id,json=activitiesId,proto3" json:"activities_id,omitempty"`
  7273. ActivitiesType int32 `protobuf:"varint,2,opt,name=activities_type,json=activitiesType,proto3" json:"activities_type,omitempty"`
  7274. StartTime uint64 `protobuf:"varint,3,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  7275. EndTime uint64 `protobuf:"varint,4,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  7276. CurDay int32 `protobuf:"varint,5,opt,name=cur_day,json=curDay,proto3" json:"cur_day,omitempty"`
  7277. // 连续登录活动奖励获取状态
  7278. LoginRewardList []*KeyValueType `protobuf:"bytes,6,rep,name=login_reward_list,json=loginRewardList,proto3" json:"login_reward_list,omitempty"`
  7279. // 14日目标任务
  7280. FortnightDays *ActivitiesFortnightDays `protobuf:"bytes,7,opt,name=fortnight_days,json=fortnightDays,proto3" json:"fortnight_days,omitempty"`
  7281. // 充值达到百元大礼包时的时间戳
  7282. ParamTime uint64 `protobuf:"varint,8,opt,name=param_time,json=paramTime,proto3" json:"param_time,omitempty"`
  7283. RewardState int32 `protobuf:"varint,9,opt,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  7284. // 集字活动
  7285. CollectionList []*ActivitiesCollectionData `protobuf:"bytes,10,rep,name=collection_list,json=collectionList,proto3" json:"collection_list,omitempty"`
  7286. // 好感度数据(3.8活动)
  7287. LikabilityData *ActivitiesLikabilityData `protobuf:"bytes,11,opt,name=likability_data,json=likabilityData,proto3" json:"likability_data,omitempty"`
  7288. KingTask []*TaskData `protobuf:"bytes,12,rep,name=king_task,json=kingTask,proto3" json:"king_task,omitempty"`
  7289. FightingTarget uint32 `protobuf:"varint,13,opt,name=fighting_target,json=fightingTarget,proto3" json:"fighting_target,omitempty"`
  7290. // 兑换活动
  7291. ExchangeList []*ExchangeData `protobuf:"bytes,14,rep,name=exchange_list,json=exchangeList,proto3" json:"exchange_list,omitempty"`
  7292. // 活动转盘
  7293. WheelData *ActivityWheelData `protobuf:"bytes,15,opt,name=wheel_data,json=wheelData,proto3" json:"wheel_data,omitempty"`
  7294. // 签到活动
  7295. SignData *ActivitySignIn `protobuf:"bytes,16,opt,name=sign_data,json=signData,proto3" json:"sign_data,omitempty"`
  7296. // bt RO币累计活动
  7297. BtRocoinData *ActivityBTROCoin `protobuf:"bytes,20,opt,name=bt_rocoin_data,json=btRocoinData,proto3" json:"bt_rocoin_data,omitempty"`
  7298. // 真/假每日累计充值活动
  7299. BtZhenjiaRechargeTaskList []*TaskData `protobuf:"bytes,21,rep,name=bt_zhenjia_recharge_task_list,json=btZhenjiaRechargeTaskList,proto3" json:"bt_zhenjia_recharge_task_list,omitempty"`
  7300. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7301. XXX_unrecognized []byte `json:"-"`
  7302. XXX_sizecache int32 `json:"-"`
  7303. }
  7304. func (m *ActivitiesDetailData) Reset() { *m = ActivitiesDetailData{} }
  7305. func (m *ActivitiesDetailData) String() string { return proto.CompactTextString(m) }
  7306. func (*ActivitiesDetailData) ProtoMessage() {}
  7307. func (*ActivitiesDetailData) Descriptor() ([]byte, []int) {
  7308. return fileDescriptor_116e343673f7ffaf, []int{119}
  7309. }
  7310. func (m *ActivitiesDetailData) XXX_Unmarshal(b []byte) error {
  7311. return xxx_messageInfo_ActivitiesDetailData.Unmarshal(m, b)
  7312. }
  7313. func (m *ActivitiesDetailData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7314. return xxx_messageInfo_ActivitiesDetailData.Marshal(b, m, deterministic)
  7315. }
  7316. func (m *ActivitiesDetailData) XXX_Merge(src proto.Message) {
  7317. xxx_messageInfo_ActivitiesDetailData.Merge(m, src)
  7318. }
  7319. func (m *ActivitiesDetailData) XXX_Size() int {
  7320. return xxx_messageInfo_ActivitiesDetailData.Size(m)
  7321. }
  7322. func (m *ActivitiesDetailData) XXX_DiscardUnknown() {
  7323. xxx_messageInfo_ActivitiesDetailData.DiscardUnknown(m)
  7324. }
  7325. var xxx_messageInfo_ActivitiesDetailData proto.InternalMessageInfo
  7326. func (m *ActivitiesDetailData) GetActivitiesId() int32 {
  7327. if m != nil {
  7328. return m.ActivitiesId
  7329. }
  7330. return 0
  7331. }
  7332. func (m *ActivitiesDetailData) GetActivitiesType() int32 {
  7333. if m != nil {
  7334. return m.ActivitiesType
  7335. }
  7336. return 0
  7337. }
  7338. func (m *ActivitiesDetailData) GetStartTime() uint64 {
  7339. if m != nil {
  7340. return m.StartTime
  7341. }
  7342. return 0
  7343. }
  7344. func (m *ActivitiesDetailData) GetEndTime() uint64 {
  7345. if m != nil {
  7346. return m.EndTime
  7347. }
  7348. return 0
  7349. }
  7350. func (m *ActivitiesDetailData) GetCurDay() int32 {
  7351. if m != nil {
  7352. return m.CurDay
  7353. }
  7354. return 0
  7355. }
  7356. func (m *ActivitiesDetailData) GetLoginRewardList() []*KeyValueType {
  7357. if m != nil {
  7358. return m.LoginRewardList
  7359. }
  7360. return nil
  7361. }
  7362. func (m *ActivitiesDetailData) GetFortnightDays() *ActivitiesFortnightDays {
  7363. if m != nil {
  7364. return m.FortnightDays
  7365. }
  7366. return nil
  7367. }
  7368. func (m *ActivitiesDetailData) GetParamTime() uint64 {
  7369. if m != nil {
  7370. return m.ParamTime
  7371. }
  7372. return 0
  7373. }
  7374. func (m *ActivitiesDetailData) GetRewardState() int32 {
  7375. if m != nil {
  7376. return m.RewardState
  7377. }
  7378. return 0
  7379. }
  7380. func (m *ActivitiesDetailData) GetCollectionList() []*ActivitiesCollectionData {
  7381. if m != nil {
  7382. return m.CollectionList
  7383. }
  7384. return nil
  7385. }
  7386. func (m *ActivitiesDetailData) GetLikabilityData() *ActivitiesLikabilityData {
  7387. if m != nil {
  7388. return m.LikabilityData
  7389. }
  7390. return nil
  7391. }
  7392. func (m *ActivitiesDetailData) GetKingTask() []*TaskData {
  7393. if m != nil {
  7394. return m.KingTask
  7395. }
  7396. return nil
  7397. }
  7398. func (m *ActivitiesDetailData) GetFightingTarget() uint32 {
  7399. if m != nil {
  7400. return m.FightingTarget
  7401. }
  7402. return 0
  7403. }
  7404. func (m *ActivitiesDetailData) GetExchangeList() []*ExchangeData {
  7405. if m != nil {
  7406. return m.ExchangeList
  7407. }
  7408. return nil
  7409. }
  7410. func (m *ActivitiesDetailData) GetWheelData() *ActivityWheelData {
  7411. if m != nil {
  7412. return m.WheelData
  7413. }
  7414. return nil
  7415. }
  7416. func (m *ActivitiesDetailData) GetSignData() *ActivitySignIn {
  7417. if m != nil {
  7418. return m.SignData
  7419. }
  7420. return nil
  7421. }
  7422. func (m *ActivitiesDetailData) GetBtRocoinData() *ActivityBTROCoin {
  7423. if m != nil {
  7424. return m.BtRocoinData
  7425. }
  7426. return nil
  7427. }
  7428. func (m *ActivitiesDetailData) GetBtZhenjiaRechargeTaskList() []*TaskData {
  7429. if m != nil {
  7430. return m.BtZhenjiaRechargeTaskList
  7431. }
  7432. return nil
  7433. }
  7434. type ActivityBTROCoin struct {
  7435. DailyTaskList []*TaskData `protobuf:"bytes,1,rep,name=daily_task_list,json=dailyTaskList,proto3" json:"daily_task_list,omitempty"`
  7436. WeekTaskList []*TaskData `protobuf:"bytes,2,rep,name=week_task_list,json=weekTaskList,proto3" json:"week_task_list,omitempty"`
  7437. WeekDayEndTime uint64 `protobuf:"varint,3,opt,name=week_day_end_time,json=weekDayEndTime,proto3" json:"week_day_end_time,omitempty"`
  7438. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7439. XXX_unrecognized []byte `json:"-"`
  7440. XXX_sizecache int32 `json:"-"`
  7441. }
  7442. func (m *ActivityBTROCoin) Reset() { *m = ActivityBTROCoin{} }
  7443. func (m *ActivityBTROCoin) String() string { return proto.CompactTextString(m) }
  7444. func (*ActivityBTROCoin) ProtoMessage() {}
  7445. func (*ActivityBTROCoin) Descriptor() ([]byte, []int) {
  7446. return fileDescriptor_116e343673f7ffaf, []int{120}
  7447. }
  7448. func (m *ActivityBTROCoin) XXX_Unmarshal(b []byte) error {
  7449. return xxx_messageInfo_ActivityBTROCoin.Unmarshal(m, b)
  7450. }
  7451. func (m *ActivityBTROCoin) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7452. return xxx_messageInfo_ActivityBTROCoin.Marshal(b, m, deterministic)
  7453. }
  7454. func (m *ActivityBTROCoin) XXX_Merge(src proto.Message) {
  7455. xxx_messageInfo_ActivityBTROCoin.Merge(m, src)
  7456. }
  7457. func (m *ActivityBTROCoin) XXX_Size() int {
  7458. return xxx_messageInfo_ActivityBTROCoin.Size(m)
  7459. }
  7460. func (m *ActivityBTROCoin) XXX_DiscardUnknown() {
  7461. xxx_messageInfo_ActivityBTROCoin.DiscardUnknown(m)
  7462. }
  7463. var xxx_messageInfo_ActivityBTROCoin proto.InternalMessageInfo
  7464. func (m *ActivityBTROCoin) GetDailyTaskList() []*TaskData {
  7465. if m != nil {
  7466. return m.DailyTaskList
  7467. }
  7468. return nil
  7469. }
  7470. func (m *ActivityBTROCoin) GetWeekTaskList() []*TaskData {
  7471. if m != nil {
  7472. return m.WeekTaskList
  7473. }
  7474. return nil
  7475. }
  7476. func (m *ActivityBTROCoin) GetWeekDayEndTime() uint64 {
  7477. if m != nil {
  7478. return m.WeekDayEndTime
  7479. }
  7480. return 0
  7481. }
  7482. type ActivitySignIn struct {
  7483. NextSignTime uint64 `protobuf:"varint,1,opt,name=next_sign_time,json=nextSignTime,proto3" json:"next_sign_time,omitempty"`
  7484. SignDays int32 `protobuf:"varint,2,opt,name=sign_days,json=signDays,proto3" json:"sign_days,omitempty"`
  7485. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7486. XXX_unrecognized []byte `json:"-"`
  7487. XXX_sizecache int32 `json:"-"`
  7488. }
  7489. func (m *ActivitySignIn) Reset() { *m = ActivitySignIn{} }
  7490. func (m *ActivitySignIn) String() string { return proto.CompactTextString(m) }
  7491. func (*ActivitySignIn) ProtoMessage() {}
  7492. func (*ActivitySignIn) Descriptor() ([]byte, []int) {
  7493. return fileDescriptor_116e343673f7ffaf, []int{121}
  7494. }
  7495. func (m *ActivitySignIn) XXX_Unmarshal(b []byte) error {
  7496. return xxx_messageInfo_ActivitySignIn.Unmarshal(m, b)
  7497. }
  7498. func (m *ActivitySignIn) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7499. return xxx_messageInfo_ActivitySignIn.Marshal(b, m, deterministic)
  7500. }
  7501. func (m *ActivitySignIn) XXX_Merge(src proto.Message) {
  7502. xxx_messageInfo_ActivitySignIn.Merge(m, src)
  7503. }
  7504. func (m *ActivitySignIn) XXX_Size() int {
  7505. return xxx_messageInfo_ActivitySignIn.Size(m)
  7506. }
  7507. func (m *ActivitySignIn) XXX_DiscardUnknown() {
  7508. xxx_messageInfo_ActivitySignIn.DiscardUnknown(m)
  7509. }
  7510. var xxx_messageInfo_ActivitySignIn proto.InternalMessageInfo
  7511. func (m *ActivitySignIn) GetNextSignTime() uint64 {
  7512. if m != nil {
  7513. return m.NextSignTime
  7514. }
  7515. return 0
  7516. }
  7517. func (m *ActivitySignIn) GetSignDays() int32 {
  7518. if m != nil {
  7519. return m.SignDays
  7520. }
  7521. return 0
  7522. }
  7523. // 活动转盘
  7524. type ActivityWheelData struct {
  7525. // 转盘
  7526. WheelRewardItemList []*WheelRewardItemInfo `protobuf:"bytes,1,rep,name=wheel_reward_item_list,json=wheelRewardItemList,proto3" json:"wheel_reward_item_list,omitempty"`
  7527. WheelOpen bool `protobuf:"varint,2,opt,name=wheel_open,json=wheelOpen,proto3" json:"wheel_open,omitempty"`
  7528. WheelRefreshNum int32 `protobuf:"varint,3,opt,name=wheel_refresh_num,json=wheelRefreshNum,proto3" json:"wheel_refresh_num,omitempty"`
  7529. TemplateIdx int32 `protobuf:"varint,4,opt,name=template_idx,json=templateIdx,proto3" json:"template_idx,omitempty"`
  7530. WheelNum int32 `protobuf:"varint,5,opt,name=wheel_num,json=wheelNum,proto3" json:"wheel_num,omitempty"`
  7531. WheelIdx int32 `protobuf:"varint,6,opt,name=wheel_idx,json=wheelIdx,proto3" json:"wheel_idx,omitempty"`
  7532. LogList []*WheelLogData `protobuf:"bytes,7,rep,name=log_list,json=logList,proto3" json:"log_list,omitempty"`
  7533. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7534. XXX_unrecognized []byte `json:"-"`
  7535. XXX_sizecache int32 `json:"-"`
  7536. }
  7537. func (m *ActivityWheelData) Reset() { *m = ActivityWheelData{} }
  7538. func (m *ActivityWheelData) String() string { return proto.CompactTextString(m) }
  7539. func (*ActivityWheelData) ProtoMessage() {}
  7540. func (*ActivityWheelData) Descriptor() ([]byte, []int) {
  7541. return fileDescriptor_116e343673f7ffaf, []int{122}
  7542. }
  7543. func (m *ActivityWheelData) XXX_Unmarshal(b []byte) error {
  7544. return xxx_messageInfo_ActivityWheelData.Unmarshal(m, b)
  7545. }
  7546. func (m *ActivityWheelData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7547. return xxx_messageInfo_ActivityWheelData.Marshal(b, m, deterministic)
  7548. }
  7549. func (m *ActivityWheelData) XXX_Merge(src proto.Message) {
  7550. xxx_messageInfo_ActivityWheelData.Merge(m, src)
  7551. }
  7552. func (m *ActivityWheelData) XXX_Size() int {
  7553. return xxx_messageInfo_ActivityWheelData.Size(m)
  7554. }
  7555. func (m *ActivityWheelData) XXX_DiscardUnknown() {
  7556. xxx_messageInfo_ActivityWheelData.DiscardUnknown(m)
  7557. }
  7558. var xxx_messageInfo_ActivityWheelData proto.InternalMessageInfo
  7559. func (m *ActivityWheelData) GetWheelRewardItemList() []*WheelRewardItemInfo {
  7560. if m != nil {
  7561. return m.WheelRewardItemList
  7562. }
  7563. return nil
  7564. }
  7565. func (m *ActivityWheelData) GetWheelOpen() bool {
  7566. if m != nil {
  7567. return m.WheelOpen
  7568. }
  7569. return false
  7570. }
  7571. func (m *ActivityWheelData) GetWheelRefreshNum() int32 {
  7572. if m != nil {
  7573. return m.WheelRefreshNum
  7574. }
  7575. return 0
  7576. }
  7577. func (m *ActivityWheelData) GetTemplateIdx() int32 {
  7578. if m != nil {
  7579. return m.TemplateIdx
  7580. }
  7581. return 0
  7582. }
  7583. func (m *ActivityWheelData) GetWheelNum() int32 {
  7584. if m != nil {
  7585. return m.WheelNum
  7586. }
  7587. return 0
  7588. }
  7589. func (m *ActivityWheelData) GetWheelIdx() int32 {
  7590. if m != nil {
  7591. return m.WheelIdx
  7592. }
  7593. return 0
  7594. }
  7595. func (m *ActivityWheelData) GetLogList() []*WheelLogData {
  7596. if m != nil {
  7597. return m.LogList
  7598. }
  7599. return nil
  7600. }
  7601. type ExchangeData struct {
  7602. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  7603. ExchangeNum int32 `protobuf:"varint,2,opt,name=exchange_num,json=exchangeNum,proto3" json:"exchange_num,omitempty"`
  7604. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7605. XXX_unrecognized []byte `json:"-"`
  7606. XXX_sizecache int32 `json:"-"`
  7607. }
  7608. func (m *ExchangeData) Reset() { *m = ExchangeData{} }
  7609. func (m *ExchangeData) String() string { return proto.CompactTextString(m) }
  7610. func (*ExchangeData) ProtoMessage() {}
  7611. func (*ExchangeData) Descriptor() ([]byte, []int) {
  7612. return fileDescriptor_116e343673f7ffaf, []int{123}
  7613. }
  7614. func (m *ExchangeData) XXX_Unmarshal(b []byte) error {
  7615. return xxx_messageInfo_ExchangeData.Unmarshal(m, b)
  7616. }
  7617. func (m *ExchangeData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7618. return xxx_messageInfo_ExchangeData.Marshal(b, m, deterministic)
  7619. }
  7620. func (m *ExchangeData) XXX_Merge(src proto.Message) {
  7621. xxx_messageInfo_ExchangeData.Merge(m, src)
  7622. }
  7623. func (m *ExchangeData) XXX_Size() int {
  7624. return xxx_messageInfo_ExchangeData.Size(m)
  7625. }
  7626. func (m *ExchangeData) XXX_DiscardUnknown() {
  7627. xxx_messageInfo_ExchangeData.DiscardUnknown(m)
  7628. }
  7629. var xxx_messageInfo_ExchangeData proto.InternalMessageInfo
  7630. func (m *ExchangeData) GetId() int32 {
  7631. if m != nil {
  7632. return m.Id
  7633. }
  7634. return 0
  7635. }
  7636. func (m *ExchangeData) GetExchangeNum() int32 {
  7637. if m != nil {
  7638. return m.ExchangeNum
  7639. }
  7640. return 0
  7641. }
  7642. type ExchangeInfo struct {
  7643. ConditionId int32 `protobuf:"varint,1,opt,name=condition_id,json=conditionId,proto3" json:"condition_id,omitempty"`
  7644. CostItem []*KeyValueType `protobuf:"bytes,2,rep,name=cost_item,json=costItem,proto3" json:"cost_item,omitempty"`
  7645. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7646. XXX_unrecognized []byte `json:"-"`
  7647. XXX_sizecache int32 `json:"-"`
  7648. }
  7649. func (m *ExchangeInfo) Reset() { *m = ExchangeInfo{} }
  7650. func (m *ExchangeInfo) String() string { return proto.CompactTextString(m) }
  7651. func (*ExchangeInfo) ProtoMessage() {}
  7652. func (*ExchangeInfo) Descriptor() ([]byte, []int) {
  7653. return fileDescriptor_116e343673f7ffaf, []int{124}
  7654. }
  7655. func (m *ExchangeInfo) XXX_Unmarshal(b []byte) error {
  7656. return xxx_messageInfo_ExchangeInfo.Unmarshal(m, b)
  7657. }
  7658. func (m *ExchangeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7659. return xxx_messageInfo_ExchangeInfo.Marshal(b, m, deterministic)
  7660. }
  7661. func (m *ExchangeInfo) XXX_Merge(src proto.Message) {
  7662. xxx_messageInfo_ExchangeInfo.Merge(m, src)
  7663. }
  7664. func (m *ExchangeInfo) XXX_Size() int {
  7665. return xxx_messageInfo_ExchangeInfo.Size(m)
  7666. }
  7667. func (m *ExchangeInfo) XXX_DiscardUnknown() {
  7668. xxx_messageInfo_ExchangeInfo.DiscardUnknown(m)
  7669. }
  7670. var xxx_messageInfo_ExchangeInfo proto.InternalMessageInfo
  7671. func (m *ExchangeInfo) GetConditionId() int32 {
  7672. if m != nil {
  7673. return m.ConditionId
  7674. }
  7675. return 0
  7676. }
  7677. func (m *ExchangeInfo) GetCostItem() []*KeyValueType {
  7678. if m != nil {
  7679. return m.CostItem
  7680. }
  7681. return nil
  7682. }
  7683. type ActivitiesData struct {
  7684. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  7685. Type int32 `protobuf:"varint,2,opt,name=type,proto3" json:"type,omitempty"`
  7686. EndTime uint64 `protobuf:"varint,3,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  7687. Bg string `protobuf:"bytes,4,opt,name=bg,proto3" json:"bg,omitempty"`
  7688. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7689. XXX_unrecognized []byte `json:"-"`
  7690. XXX_sizecache int32 `json:"-"`
  7691. }
  7692. func (m *ActivitiesData) Reset() { *m = ActivitiesData{} }
  7693. func (m *ActivitiesData) String() string { return proto.CompactTextString(m) }
  7694. func (*ActivitiesData) ProtoMessage() {}
  7695. func (*ActivitiesData) Descriptor() ([]byte, []int) {
  7696. return fileDescriptor_116e343673f7ffaf, []int{125}
  7697. }
  7698. func (m *ActivitiesData) XXX_Unmarshal(b []byte) error {
  7699. return xxx_messageInfo_ActivitiesData.Unmarshal(m, b)
  7700. }
  7701. func (m *ActivitiesData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7702. return xxx_messageInfo_ActivitiesData.Marshal(b, m, deterministic)
  7703. }
  7704. func (m *ActivitiesData) XXX_Merge(src proto.Message) {
  7705. xxx_messageInfo_ActivitiesData.Merge(m, src)
  7706. }
  7707. func (m *ActivitiesData) XXX_Size() int {
  7708. return xxx_messageInfo_ActivitiesData.Size(m)
  7709. }
  7710. func (m *ActivitiesData) XXX_DiscardUnknown() {
  7711. xxx_messageInfo_ActivitiesData.DiscardUnknown(m)
  7712. }
  7713. var xxx_messageInfo_ActivitiesData proto.InternalMessageInfo
  7714. func (m *ActivitiesData) GetId() int32 {
  7715. if m != nil {
  7716. return m.Id
  7717. }
  7718. return 0
  7719. }
  7720. func (m *ActivitiesData) GetType() int32 {
  7721. if m != nil {
  7722. return m.Type
  7723. }
  7724. return 0
  7725. }
  7726. func (m *ActivitiesData) GetEndTime() uint64 {
  7727. if m != nil {
  7728. return m.EndTime
  7729. }
  7730. return 0
  7731. }
  7732. func (m *ActivitiesData) GetBg() string {
  7733. if m != nil {
  7734. return m.Bg
  7735. }
  7736. return ""
  7737. }
  7738. // 14日目标任务(7天重置一次,显示7天数据)
  7739. type ActivitiesFortnightDays struct {
  7740. TaskScore int32 `protobuf:"varint,1,opt,name=task_score,json=taskScore,proto3" json:"task_score,omitempty"`
  7741. TaskScoreReward uint32 `protobuf:"varint,2,opt,name=task_score_reward,json=taskScoreReward,proto3" json:"task_score_reward,omitempty"`
  7742. TaskList []*TaskData `protobuf:"bytes,3,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  7743. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7744. XXX_unrecognized []byte `json:"-"`
  7745. XXX_sizecache int32 `json:"-"`
  7746. }
  7747. func (m *ActivitiesFortnightDays) Reset() { *m = ActivitiesFortnightDays{} }
  7748. func (m *ActivitiesFortnightDays) String() string { return proto.CompactTextString(m) }
  7749. func (*ActivitiesFortnightDays) ProtoMessage() {}
  7750. func (*ActivitiesFortnightDays) Descriptor() ([]byte, []int) {
  7751. return fileDescriptor_116e343673f7ffaf, []int{126}
  7752. }
  7753. func (m *ActivitiesFortnightDays) XXX_Unmarshal(b []byte) error {
  7754. return xxx_messageInfo_ActivitiesFortnightDays.Unmarshal(m, b)
  7755. }
  7756. func (m *ActivitiesFortnightDays) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7757. return xxx_messageInfo_ActivitiesFortnightDays.Marshal(b, m, deterministic)
  7758. }
  7759. func (m *ActivitiesFortnightDays) XXX_Merge(src proto.Message) {
  7760. xxx_messageInfo_ActivitiesFortnightDays.Merge(m, src)
  7761. }
  7762. func (m *ActivitiesFortnightDays) XXX_Size() int {
  7763. return xxx_messageInfo_ActivitiesFortnightDays.Size(m)
  7764. }
  7765. func (m *ActivitiesFortnightDays) XXX_DiscardUnknown() {
  7766. xxx_messageInfo_ActivitiesFortnightDays.DiscardUnknown(m)
  7767. }
  7768. var xxx_messageInfo_ActivitiesFortnightDays proto.InternalMessageInfo
  7769. func (m *ActivitiesFortnightDays) GetTaskScore() int32 {
  7770. if m != nil {
  7771. return m.TaskScore
  7772. }
  7773. return 0
  7774. }
  7775. func (m *ActivitiesFortnightDays) GetTaskScoreReward() uint32 {
  7776. if m != nil {
  7777. return m.TaskScoreReward
  7778. }
  7779. return 0
  7780. }
  7781. func (m *ActivitiesFortnightDays) GetTaskList() []*TaskData {
  7782. if m != nil {
  7783. return m.TaskList
  7784. }
  7785. return nil
  7786. }
  7787. // 超值礼包数据
  7788. type ActivitiesUnlockRechargeData struct {
  7789. ActivitiesId int32 `protobuf:"varint,1,opt,name=activities_id,json=activitiesId,proto3" json:"activities_id,omitempty"`
  7790. StartTime uint64 `protobuf:"varint,2,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  7791. EndTime uint64 `protobuf:"varint,3,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  7792. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7793. XXX_unrecognized []byte `json:"-"`
  7794. XXX_sizecache int32 `json:"-"`
  7795. }
  7796. func (m *ActivitiesUnlockRechargeData) Reset() { *m = ActivitiesUnlockRechargeData{} }
  7797. func (m *ActivitiesUnlockRechargeData) String() string { return proto.CompactTextString(m) }
  7798. func (*ActivitiesUnlockRechargeData) ProtoMessage() {}
  7799. func (*ActivitiesUnlockRechargeData) Descriptor() ([]byte, []int) {
  7800. return fileDescriptor_116e343673f7ffaf, []int{127}
  7801. }
  7802. func (m *ActivitiesUnlockRechargeData) XXX_Unmarshal(b []byte) error {
  7803. return xxx_messageInfo_ActivitiesUnlockRechargeData.Unmarshal(m, b)
  7804. }
  7805. func (m *ActivitiesUnlockRechargeData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7806. return xxx_messageInfo_ActivitiesUnlockRechargeData.Marshal(b, m, deterministic)
  7807. }
  7808. func (m *ActivitiesUnlockRechargeData) XXX_Merge(src proto.Message) {
  7809. xxx_messageInfo_ActivitiesUnlockRechargeData.Merge(m, src)
  7810. }
  7811. func (m *ActivitiesUnlockRechargeData) XXX_Size() int {
  7812. return xxx_messageInfo_ActivitiesUnlockRechargeData.Size(m)
  7813. }
  7814. func (m *ActivitiesUnlockRechargeData) XXX_DiscardUnknown() {
  7815. xxx_messageInfo_ActivitiesUnlockRechargeData.DiscardUnknown(m)
  7816. }
  7817. var xxx_messageInfo_ActivitiesUnlockRechargeData proto.InternalMessageInfo
  7818. func (m *ActivitiesUnlockRechargeData) GetActivitiesId() int32 {
  7819. if m != nil {
  7820. return m.ActivitiesId
  7821. }
  7822. return 0
  7823. }
  7824. func (m *ActivitiesUnlockRechargeData) GetStartTime() uint64 {
  7825. if m != nil {
  7826. return m.StartTime
  7827. }
  7828. return 0
  7829. }
  7830. func (m *ActivitiesUnlockRechargeData) GetEndTime() uint64 {
  7831. if m != nil {
  7832. return m.EndTime
  7833. }
  7834. return 0
  7835. }
  7836. type ActivitiesCollectionData struct {
  7837. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  7838. RewardNum int32 `protobuf:"varint,2,opt,name=reward_num,json=rewardNum,proto3" json:"reward_num,omitempty"`
  7839. NoNotice bool `protobuf:"varint,3,opt,name=no_notice,json=noNotice,proto3" json:"no_notice,omitempty"`
  7840. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7841. XXX_unrecognized []byte `json:"-"`
  7842. XXX_sizecache int32 `json:"-"`
  7843. }
  7844. func (m *ActivitiesCollectionData) Reset() { *m = ActivitiesCollectionData{} }
  7845. func (m *ActivitiesCollectionData) String() string { return proto.CompactTextString(m) }
  7846. func (*ActivitiesCollectionData) ProtoMessage() {}
  7847. func (*ActivitiesCollectionData) Descriptor() ([]byte, []int) {
  7848. return fileDescriptor_116e343673f7ffaf, []int{128}
  7849. }
  7850. func (m *ActivitiesCollectionData) XXX_Unmarshal(b []byte) error {
  7851. return xxx_messageInfo_ActivitiesCollectionData.Unmarshal(m, b)
  7852. }
  7853. func (m *ActivitiesCollectionData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7854. return xxx_messageInfo_ActivitiesCollectionData.Marshal(b, m, deterministic)
  7855. }
  7856. func (m *ActivitiesCollectionData) XXX_Merge(src proto.Message) {
  7857. xxx_messageInfo_ActivitiesCollectionData.Merge(m, src)
  7858. }
  7859. func (m *ActivitiesCollectionData) XXX_Size() int {
  7860. return xxx_messageInfo_ActivitiesCollectionData.Size(m)
  7861. }
  7862. func (m *ActivitiesCollectionData) XXX_DiscardUnknown() {
  7863. xxx_messageInfo_ActivitiesCollectionData.DiscardUnknown(m)
  7864. }
  7865. var xxx_messageInfo_ActivitiesCollectionData proto.InternalMessageInfo
  7866. func (m *ActivitiesCollectionData) GetId() int32 {
  7867. if m != nil {
  7868. return m.Id
  7869. }
  7870. return 0
  7871. }
  7872. func (m *ActivitiesCollectionData) GetRewardNum() int32 {
  7873. if m != nil {
  7874. return m.RewardNum
  7875. }
  7876. return 0
  7877. }
  7878. func (m *ActivitiesCollectionData) GetNoNotice() bool {
  7879. if m != nil {
  7880. return m.NoNotice
  7881. }
  7882. return false
  7883. }
  7884. // 好感度数据
  7885. type ActivitiesLikabilityData struct {
  7886. Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level,omitempty"`
  7887. Param uint32 `protobuf:"varint,2,opt,name=param,proto3" json:"param,omitempty"`
  7888. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7889. XXX_unrecognized []byte `json:"-"`
  7890. XXX_sizecache int32 `json:"-"`
  7891. }
  7892. func (m *ActivitiesLikabilityData) Reset() { *m = ActivitiesLikabilityData{} }
  7893. func (m *ActivitiesLikabilityData) String() string { return proto.CompactTextString(m) }
  7894. func (*ActivitiesLikabilityData) ProtoMessage() {}
  7895. func (*ActivitiesLikabilityData) Descriptor() ([]byte, []int) {
  7896. return fileDescriptor_116e343673f7ffaf, []int{129}
  7897. }
  7898. func (m *ActivitiesLikabilityData) XXX_Unmarshal(b []byte) error {
  7899. return xxx_messageInfo_ActivitiesLikabilityData.Unmarshal(m, b)
  7900. }
  7901. func (m *ActivitiesLikabilityData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7902. return xxx_messageInfo_ActivitiesLikabilityData.Marshal(b, m, deterministic)
  7903. }
  7904. func (m *ActivitiesLikabilityData) XXX_Merge(src proto.Message) {
  7905. xxx_messageInfo_ActivitiesLikabilityData.Merge(m, src)
  7906. }
  7907. func (m *ActivitiesLikabilityData) XXX_Size() int {
  7908. return xxx_messageInfo_ActivitiesLikabilityData.Size(m)
  7909. }
  7910. func (m *ActivitiesLikabilityData) XXX_DiscardUnknown() {
  7911. xxx_messageInfo_ActivitiesLikabilityData.DiscardUnknown(m)
  7912. }
  7913. var xxx_messageInfo_ActivitiesLikabilityData proto.InternalMessageInfo
  7914. func (m *ActivitiesLikabilityData) GetLevel() int32 {
  7915. if m != nil {
  7916. return m.Level
  7917. }
  7918. return 0
  7919. }
  7920. func (m *ActivitiesLikabilityData) GetParam() uint32 {
  7921. if m != nil {
  7922. return m.Param
  7923. }
  7924. return 0
  7925. }
  7926. type FriendTowerInfo struct {
  7927. TowerLevel int32 `protobuf:"varint,1,opt,name=tower_level,json=towerLevel,proto3" json:"tower_level,omitempty"`
  7928. Infos []*CommonPlayerBriefInfo `protobuf:"bytes,2,rep,name=infos,proto3" json:"infos,omitempty"`
  7929. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7930. XXX_unrecognized []byte `json:"-"`
  7931. XXX_sizecache int32 `json:"-"`
  7932. }
  7933. func (m *FriendTowerInfo) Reset() { *m = FriendTowerInfo{} }
  7934. func (m *FriendTowerInfo) String() string { return proto.CompactTextString(m) }
  7935. func (*FriendTowerInfo) ProtoMessage() {}
  7936. func (*FriendTowerInfo) Descriptor() ([]byte, []int) {
  7937. return fileDescriptor_116e343673f7ffaf, []int{130}
  7938. }
  7939. func (m *FriendTowerInfo) XXX_Unmarshal(b []byte) error {
  7940. return xxx_messageInfo_FriendTowerInfo.Unmarshal(m, b)
  7941. }
  7942. func (m *FriendTowerInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7943. return xxx_messageInfo_FriendTowerInfo.Marshal(b, m, deterministic)
  7944. }
  7945. func (m *FriendTowerInfo) XXX_Merge(src proto.Message) {
  7946. xxx_messageInfo_FriendTowerInfo.Merge(m, src)
  7947. }
  7948. func (m *FriendTowerInfo) XXX_Size() int {
  7949. return xxx_messageInfo_FriendTowerInfo.Size(m)
  7950. }
  7951. func (m *FriendTowerInfo) XXX_DiscardUnknown() {
  7952. xxx_messageInfo_FriendTowerInfo.DiscardUnknown(m)
  7953. }
  7954. var xxx_messageInfo_FriendTowerInfo proto.InternalMessageInfo
  7955. func (m *FriendTowerInfo) GetTowerLevel() int32 {
  7956. if m != nil {
  7957. return m.TowerLevel
  7958. }
  7959. return 0
  7960. }
  7961. func (m *FriendTowerInfo) GetInfos() []*CommonPlayerBriefInfo {
  7962. if m != nil {
  7963. return m.Infos
  7964. }
  7965. return nil
  7966. }
  7967. type RushTower struct {
  7968. RushRound int32 `protobuf:"varint,1,opt,name=rush_round,json=rushRound,proto3" json:"rush_round,omitempty"`
  7969. Count int32 `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
  7970. Reward int32 `protobuf:"varint,3,opt,name=reward,proto3" json:"reward,omitempty"`
  7971. RankReward int32 `protobuf:"varint,4,opt,name=rank_reward,json=rankReward,proto3" json:"rank_reward,omitempty"`
  7972. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  7973. XXX_unrecognized []byte `json:"-"`
  7974. XXX_sizecache int32 `json:"-"`
  7975. }
  7976. func (m *RushTower) Reset() { *m = RushTower{} }
  7977. func (m *RushTower) String() string { return proto.CompactTextString(m) }
  7978. func (*RushTower) ProtoMessage() {}
  7979. func (*RushTower) Descriptor() ([]byte, []int) {
  7980. return fileDescriptor_116e343673f7ffaf, []int{131}
  7981. }
  7982. func (m *RushTower) XXX_Unmarshal(b []byte) error {
  7983. return xxx_messageInfo_RushTower.Unmarshal(m, b)
  7984. }
  7985. func (m *RushTower) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  7986. return xxx_messageInfo_RushTower.Marshal(b, m, deterministic)
  7987. }
  7988. func (m *RushTower) XXX_Merge(src proto.Message) {
  7989. xxx_messageInfo_RushTower.Merge(m, src)
  7990. }
  7991. func (m *RushTower) XXX_Size() int {
  7992. return xxx_messageInfo_RushTower.Size(m)
  7993. }
  7994. func (m *RushTower) XXX_DiscardUnknown() {
  7995. xxx_messageInfo_RushTower.DiscardUnknown(m)
  7996. }
  7997. var xxx_messageInfo_RushTower proto.InternalMessageInfo
  7998. func (m *RushTower) GetRushRound() int32 {
  7999. if m != nil {
  8000. return m.RushRound
  8001. }
  8002. return 0
  8003. }
  8004. func (m *RushTower) GetCount() int32 {
  8005. if m != nil {
  8006. return m.Count
  8007. }
  8008. return 0
  8009. }
  8010. func (m *RushTower) GetReward() int32 {
  8011. if m != nil {
  8012. return m.Reward
  8013. }
  8014. return 0
  8015. }
  8016. func (m *RushTower) GetRankReward() int32 {
  8017. if m != nil {
  8018. return m.RankReward
  8019. }
  8020. return 0
  8021. }
  8022. type RoleTower struct {
  8023. NowTowerLevel int32 `protobuf:"varint,1,opt,name=now_tower_level,json=nowTowerLevel,proto3" json:"now_tower_level,omitempty"`
  8024. NowTowerTime int64 `protobuf:"varint,2,opt,name=now_tower_time,json=nowTowerTime,proto3" json:"now_tower_time,omitempty"`
  8025. RushTower *RushTower `protobuf:"bytes,3,opt,name=rush_tower,json=rushTower,proto3" json:"rush_tower,omitempty"`
  8026. SysRewardTime uint64 `protobuf:"varint,4,opt,name=sys_reward_time,json=sysRewardTime,proto3" json:"sys_reward_time,omitempty"`
  8027. TowerLevelDayRewardTime uint64 `protobuf:"varint,5,opt,name=tower_level_day_reward_time,json=towerLevelDayRewardTime,proto3" json:"tower_level_day_reward_time,omitempty"`
  8028. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8029. XXX_unrecognized []byte `json:"-"`
  8030. XXX_sizecache int32 `json:"-"`
  8031. }
  8032. func (m *RoleTower) Reset() { *m = RoleTower{} }
  8033. func (m *RoleTower) String() string { return proto.CompactTextString(m) }
  8034. func (*RoleTower) ProtoMessage() {}
  8035. func (*RoleTower) Descriptor() ([]byte, []int) {
  8036. return fileDescriptor_116e343673f7ffaf, []int{132}
  8037. }
  8038. func (m *RoleTower) XXX_Unmarshal(b []byte) error {
  8039. return xxx_messageInfo_RoleTower.Unmarshal(m, b)
  8040. }
  8041. func (m *RoleTower) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8042. return xxx_messageInfo_RoleTower.Marshal(b, m, deterministic)
  8043. }
  8044. func (m *RoleTower) XXX_Merge(src proto.Message) {
  8045. xxx_messageInfo_RoleTower.Merge(m, src)
  8046. }
  8047. func (m *RoleTower) XXX_Size() int {
  8048. return xxx_messageInfo_RoleTower.Size(m)
  8049. }
  8050. func (m *RoleTower) XXX_DiscardUnknown() {
  8051. xxx_messageInfo_RoleTower.DiscardUnknown(m)
  8052. }
  8053. var xxx_messageInfo_RoleTower proto.InternalMessageInfo
  8054. func (m *RoleTower) GetNowTowerLevel() int32 {
  8055. if m != nil {
  8056. return m.NowTowerLevel
  8057. }
  8058. return 0
  8059. }
  8060. func (m *RoleTower) GetNowTowerTime() int64 {
  8061. if m != nil {
  8062. return m.NowTowerTime
  8063. }
  8064. return 0
  8065. }
  8066. func (m *RoleTower) GetRushTower() *RushTower {
  8067. if m != nil {
  8068. return m.RushTower
  8069. }
  8070. return nil
  8071. }
  8072. func (m *RoleTower) GetSysRewardTime() uint64 {
  8073. if m != nil {
  8074. return m.SysRewardTime
  8075. }
  8076. return 0
  8077. }
  8078. func (m *RoleTower) GetTowerLevelDayRewardTime() uint64 {
  8079. if m != nil {
  8080. return m.TowerLevelDayRewardTime
  8081. }
  8082. return 0
  8083. }
  8084. type RefusedApply struct {
  8085. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  8086. ApplyTime int64 `protobuf:"varint,2,opt,name=apply_time,json=applyTime,proto3" json:"apply_time,omitempty"`
  8087. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8088. XXX_unrecognized []byte `json:"-"`
  8089. XXX_sizecache int32 `json:"-"`
  8090. }
  8091. func (m *RefusedApply) Reset() { *m = RefusedApply{} }
  8092. func (m *RefusedApply) String() string { return proto.CompactTextString(m) }
  8093. func (*RefusedApply) ProtoMessage() {}
  8094. func (*RefusedApply) Descriptor() ([]byte, []int) {
  8095. return fileDescriptor_116e343673f7ffaf, []int{133}
  8096. }
  8097. func (m *RefusedApply) XXX_Unmarshal(b []byte) error {
  8098. return xxx_messageInfo_RefusedApply.Unmarshal(m, b)
  8099. }
  8100. func (m *RefusedApply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8101. return xxx_messageInfo_RefusedApply.Marshal(b, m, deterministic)
  8102. }
  8103. func (m *RefusedApply) XXX_Merge(src proto.Message) {
  8104. xxx_messageInfo_RefusedApply.Merge(m, src)
  8105. }
  8106. func (m *RefusedApply) XXX_Size() int {
  8107. return xxx_messageInfo_RefusedApply.Size(m)
  8108. }
  8109. func (m *RefusedApply) XXX_DiscardUnknown() {
  8110. xxx_messageInfo_RefusedApply.DiscardUnknown(m)
  8111. }
  8112. var xxx_messageInfo_RefusedApply proto.InternalMessageInfo
  8113. func (m *RefusedApply) GetGuildId() uint64 {
  8114. if m != nil {
  8115. return m.GuildId
  8116. }
  8117. return 0
  8118. }
  8119. func (m *RefusedApply) GetApplyTime() int64 {
  8120. if m != nil {
  8121. return m.ApplyTime
  8122. }
  8123. return 0
  8124. }
  8125. type DayApply struct {
  8126. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  8127. ApplyTime int64 `protobuf:"varint,2,opt,name=apply_time,json=applyTime,proto3" json:"apply_time,omitempty"`
  8128. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8129. XXX_unrecognized []byte `json:"-"`
  8130. XXX_sizecache int32 `json:"-"`
  8131. }
  8132. func (m *DayApply) Reset() { *m = DayApply{} }
  8133. func (m *DayApply) String() string { return proto.CompactTextString(m) }
  8134. func (*DayApply) ProtoMessage() {}
  8135. func (*DayApply) Descriptor() ([]byte, []int) {
  8136. return fileDescriptor_116e343673f7ffaf, []int{134}
  8137. }
  8138. func (m *DayApply) XXX_Unmarshal(b []byte) error {
  8139. return xxx_messageInfo_DayApply.Unmarshal(m, b)
  8140. }
  8141. func (m *DayApply) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8142. return xxx_messageInfo_DayApply.Marshal(b, m, deterministic)
  8143. }
  8144. func (m *DayApply) XXX_Merge(src proto.Message) {
  8145. xxx_messageInfo_DayApply.Merge(m, src)
  8146. }
  8147. func (m *DayApply) XXX_Size() int {
  8148. return xxx_messageInfo_DayApply.Size(m)
  8149. }
  8150. func (m *DayApply) XXX_DiscardUnknown() {
  8151. xxx_messageInfo_DayApply.DiscardUnknown(m)
  8152. }
  8153. var xxx_messageInfo_DayApply proto.InternalMessageInfo
  8154. func (m *DayApply) GetGuildId() uint64 {
  8155. if m != nil {
  8156. return m.GuildId
  8157. }
  8158. return 0
  8159. }
  8160. func (m *DayApply) GetApplyTime() int64 {
  8161. if m != nil {
  8162. return m.ApplyTime
  8163. }
  8164. return 0
  8165. }
  8166. type TowerBriefInfo struct {
  8167. CommonInfo *CommonPlayerBriefInfo `protobuf:"bytes,1,opt,name=common_info,json=commonInfo,proto3" json:"common_info,omitempty"`
  8168. BattleTime int32 `protobuf:"varint,2,opt,name=battle_time,json=battleTime,proto3" json:"battle_time,omitempty"`
  8169. BattleVersion int32 `protobuf:"varint,3,opt,name=battle_version,json=battleVersion,proto3" json:"battle_version,omitempty"`
  8170. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8171. XXX_unrecognized []byte `json:"-"`
  8172. XXX_sizecache int32 `json:"-"`
  8173. }
  8174. func (m *TowerBriefInfo) Reset() { *m = TowerBriefInfo{} }
  8175. func (m *TowerBriefInfo) String() string { return proto.CompactTextString(m) }
  8176. func (*TowerBriefInfo) ProtoMessage() {}
  8177. func (*TowerBriefInfo) Descriptor() ([]byte, []int) {
  8178. return fileDescriptor_116e343673f7ffaf, []int{135}
  8179. }
  8180. func (m *TowerBriefInfo) XXX_Unmarshal(b []byte) error {
  8181. return xxx_messageInfo_TowerBriefInfo.Unmarshal(m, b)
  8182. }
  8183. func (m *TowerBriefInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8184. return xxx_messageInfo_TowerBriefInfo.Marshal(b, m, deterministic)
  8185. }
  8186. func (m *TowerBriefInfo) XXX_Merge(src proto.Message) {
  8187. xxx_messageInfo_TowerBriefInfo.Merge(m, src)
  8188. }
  8189. func (m *TowerBriefInfo) XXX_Size() int {
  8190. return xxx_messageInfo_TowerBriefInfo.Size(m)
  8191. }
  8192. func (m *TowerBriefInfo) XXX_DiscardUnknown() {
  8193. xxx_messageInfo_TowerBriefInfo.DiscardUnknown(m)
  8194. }
  8195. var xxx_messageInfo_TowerBriefInfo proto.InternalMessageInfo
  8196. func (m *TowerBriefInfo) GetCommonInfo() *CommonPlayerBriefInfo {
  8197. if m != nil {
  8198. return m.CommonInfo
  8199. }
  8200. return nil
  8201. }
  8202. func (m *TowerBriefInfo) GetBattleTime() int32 {
  8203. if m != nil {
  8204. return m.BattleTime
  8205. }
  8206. return 0
  8207. }
  8208. func (m *TowerBriefInfo) GetBattleVersion() int32 {
  8209. if m != nil {
  8210. return m.BattleVersion
  8211. }
  8212. return 0
  8213. }
  8214. type RecommendGuild struct {
  8215. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  8216. Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
  8217. ActiveTime int64 `protobuf:"varint,3,opt,name=active_time,json=activeTime,proto3" json:"active_time,omitempty"`
  8218. Active uint32 `protobuf:"varint,4,opt,name=active,proto3" json:"active,omitempty"`
  8219. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8220. XXX_unrecognized []byte `json:"-"`
  8221. XXX_sizecache int32 `json:"-"`
  8222. }
  8223. func (m *RecommendGuild) Reset() { *m = RecommendGuild{} }
  8224. func (m *RecommendGuild) String() string { return proto.CompactTextString(m) }
  8225. func (*RecommendGuild) ProtoMessage() {}
  8226. func (*RecommendGuild) Descriptor() ([]byte, []int) {
  8227. return fileDescriptor_116e343673f7ffaf, []int{136}
  8228. }
  8229. func (m *RecommendGuild) XXX_Unmarshal(b []byte) error {
  8230. return xxx_messageInfo_RecommendGuild.Unmarshal(m, b)
  8231. }
  8232. func (m *RecommendGuild) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8233. return xxx_messageInfo_RecommendGuild.Marshal(b, m, deterministic)
  8234. }
  8235. func (m *RecommendGuild) XXX_Merge(src proto.Message) {
  8236. xxx_messageInfo_RecommendGuild.Merge(m, src)
  8237. }
  8238. func (m *RecommendGuild) XXX_Size() int {
  8239. return xxx_messageInfo_RecommendGuild.Size(m)
  8240. }
  8241. func (m *RecommendGuild) XXX_DiscardUnknown() {
  8242. xxx_messageInfo_RecommendGuild.DiscardUnknown(m)
  8243. }
  8244. var xxx_messageInfo_RecommendGuild proto.InternalMessageInfo
  8245. func (m *RecommendGuild) GetGuildId() uint64 {
  8246. if m != nil {
  8247. return m.GuildId
  8248. }
  8249. return 0
  8250. }
  8251. func (m *RecommendGuild) GetLevel() int32 {
  8252. if m != nil {
  8253. return m.Level
  8254. }
  8255. return 0
  8256. }
  8257. func (m *RecommendGuild) GetActiveTime() int64 {
  8258. if m != nil {
  8259. return m.ActiveTime
  8260. }
  8261. return 0
  8262. }
  8263. func (m *RecommendGuild) GetActive() uint32 {
  8264. if m != nil {
  8265. return m.Active
  8266. }
  8267. return 0
  8268. }
  8269. type RecommendSet struct {
  8270. Guild []*RecommendGuild `protobuf:"bytes,1,rep,name=guild,proto3" json:"guild,omitempty"`
  8271. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8272. XXX_unrecognized []byte `json:"-"`
  8273. XXX_sizecache int32 `json:"-"`
  8274. }
  8275. func (m *RecommendSet) Reset() { *m = RecommendSet{} }
  8276. func (m *RecommendSet) String() string { return proto.CompactTextString(m) }
  8277. func (*RecommendSet) ProtoMessage() {}
  8278. func (*RecommendSet) Descriptor() ([]byte, []int) {
  8279. return fileDescriptor_116e343673f7ffaf, []int{137}
  8280. }
  8281. func (m *RecommendSet) XXX_Unmarshal(b []byte) error {
  8282. return xxx_messageInfo_RecommendSet.Unmarshal(m, b)
  8283. }
  8284. func (m *RecommendSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8285. return xxx_messageInfo_RecommendSet.Marshal(b, m, deterministic)
  8286. }
  8287. func (m *RecommendSet) XXX_Merge(src proto.Message) {
  8288. xxx_messageInfo_RecommendSet.Merge(m, src)
  8289. }
  8290. func (m *RecommendSet) XXX_Size() int {
  8291. return xxx_messageInfo_RecommendSet.Size(m)
  8292. }
  8293. func (m *RecommendSet) XXX_DiscardUnknown() {
  8294. xxx_messageInfo_RecommendSet.DiscardUnknown(m)
  8295. }
  8296. var xxx_messageInfo_RecommendSet proto.InternalMessageInfo
  8297. func (m *RecommendSet) GetGuild() []*RecommendGuild {
  8298. if m != nil {
  8299. return m.Guild
  8300. }
  8301. return nil
  8302. }
  8303. // =============================== 公会 ====================================
  8304. // 客户端请求: 公会基础信息:成员简介
  8305. type MemberBrief struct {
  8306. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  8307. OfflineTime int64 `protobuf:"varint,2,opt,name=offline_time,json=offlineTime,proto3" json:"offline_time,omitempty"`
  8308. Title int32 `protobuf:"varint,3,opt,name=title,proto3" json:"title,omitempty"`
  8309. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8310. XXX_unrecognized []byte `json:"-"`
  8311. XXX_sizecache int32 `json:"-"`
  8312. }
  8313. func (m *MemberBrief) Reset() { *m = MemberBrief{} }
  8314. func (m *MemberBrief) String() string { return proto.CompactTextString(m) }
  8315. func (*MemberBrief) ProtoMessage() {}
  8316. func (*MemberBrief) Descriptor() ([]byte, []int) {
  8317. return fileDescriptor_116e343673f7ffaf, []int{138}
  8318. }
  8319. func (m *MemberBrief) XXX_Unmarshal(b []byte) error {
  8320. return xxx_messageInfo_MemberBrief.Unmarshal(m, b)
  8321. }
  8322. func (m *MemberBrief) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8323. return xxx_messageInfo_MemberBrief.Marshal(b, m, deterministic)
  8324. }
  8325. func (m *MemberBrief) XXX_Merge(src proto.Message) {
  8326. xxx_messageInfo_MemberBrief.Merge(m, src)
  8327. }
  8328. func (m *MemberBrief) XXX_Size() int {
  8329. return xxx_messageInfo_MemberBrief.Size(m)
  8330. }
  8331. func (m *MemberBrief) XXX_DiscardUnknown() {
  8332. xxx_messageInfo_MemberBrief.DiscardUnknown(m)
  8333. }
  8334. var xxx_messageInfo_MemberBrief proto.InternalMessageInfo
  8335. func (m *MemberBrief) GetUid() uint64 {
  8336. if m != nil {
  8337. return m.Uid
  8338. }
  8339. return 0
  8340. }
  8341. func (m *MemberBrief) GetOfflineTime() int64 {
  8342. if m != nil {
  8343. return m.OfflineTime
  8344. }
  8345. return 0
  8346. }
  8347. func (m *MemberBrief) GetTitle() int32 {
  8348. if m != nil {
  8349. return m.Title
  8350. }
  8351. return 0
  8352. }
  8353. // 客户端请求: 公会基础信息:公会简介
  8354. type GuildNotifyData struct {
  8355. Brief *GuildBrief `protobuf:"bytes,1,opt,name=brief,proto3" json:"brief,omitempty"`
  8356. MemCount int32 `protobuf:"varint,2,opt,name=mem_count,json=memCount,proto3" json:"mem_count,omitempty"`
  8357. IsApply bool `protobuf:"varint,3,opt,name=is_apply,json=isApply,proto3" json:"is_apply,omitempty"`
  8358. CpNum bool `protobuf:"varint,4,opt,name=cp_num,json=cpNum,proto3" json:"cp_num,omitempty"`
  8359. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8360. XXX_unrecognized []byte `json:"-"`
  8361. XXX_sizecache int32 `json:"-"`
  8362. }
  8363. func (m *GuildNotifyData) Reset() { *m = GuildNotifyData{} }
  8364. func (m *GuildNotifyData) String() string { return proto.CompactTextString(m) }
  8365. func (*GuildNotifyData) ProtoMessage() {}
  8366. func (*GuildNotifyData) Descriptor() ([]byte, []int) {
  8367. return fileDescriptor_116e343673f7ffaf, []int{139}
  8368. }
  8369. func (m *GuildNotifyData) XXX_Unmarshal(b []byte) error {
  8370. return xxx_messageInfo_GuildNotifyData.Unmarshal(m, b)
  8371. }
  8372. func (m *GuildNotifyData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8373. return xxx_messageInfo_GuildNotifyData.Marshal(b, m, deterministic)
  8374. }
  8375. func (m *GuildNotifyData) XXX_Merge(src proto.Message) {
  8376. xxx_messageInfo_GuildNotifyData.Merge(m, src)
  8377. }
  8378. func (m *GuildNotifyData) XXX_Size() int {
  8379. return xxx_messageInfo_GuildNotifyData.Size(m)
  8380. }
  8381. func (m *GuildNotifyData) XXX_DiscardUnknown() {
  8382. xxx_messageInfo_GuildNotifyData.DiscardUnknown(m)
  8383. }
  8384. var xxx_messageInfo_GuildNotifyData proto.InternalMessageInfo
  8385. func (m *GuildNotifyData) GetBrief() *GuildBrief {
  8386. if m != nil {
  8387. return m.Brief
  8388. }
  8389. return nil
  8390. }
  8391. func (m *GuildNotifyData) GetMemCount() int32 {
  8392. if m != nil {
  8393. return m.MemCount
  8394. }
  8395. return 0
  8396. }
  8397. func (m *GuildNotifyData) GetIsApply() bool {
  8398. if m != nil {
  8399. return m.IsApply
  8400. }
  8401. return false
  8402. }
  8403. func (m *GuildNotifyData) GetCpNum() bool {
  8404. if m != nil {
  8405. return m.CpNum
  8406. }
  8407. return false
  8408. }
  8409. // 客户端请求: 成员详细信息
  8410. type MemberInfo struct {
  8411. TotalActive uint32 `protobuf:"varint,1,opt,name=total_active,json=totalActive,proto3" json:"total_active,omitempty"`
  8412. Brief *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief,proto3" json:"brief,omitempty"`
  8413. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8414. XXX_unrecognized []byte `json:"-"`
  8415. XXX_sizecache int32 `json:"-"`
  8416. }
  8417. func (m *MemberInfo) Reset() { *m = MemberInfo{} }
  8418. func (m *MemberInfo) String() string { return proto.CompactTextString(m) }
  8419. func (*MemberInfo) ProtoMessage() {}
  8420. func (*MemberInfo) Descriptor() ([]byte, []int) {
  8421. return fileDescriptor_116e343673f7ffaf, []int{140}
  8422. }
  8423. func (m *MemberInfo) XXX_Unmarshal(b []byte) error {
  8424. return xxx_messageInfo_MemberInfo.Unmarshal(m, b)
  8425. }
  8426. func (m *MemberInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8427. return xxx_messageInfo_MemberInfo.Marshal(b, m, deterministic)
  8428. }
  8429. func (m *MemberInfo) XXX_Merge(src proto.Message) {
  8430. xxx_messageInfo_MemberInfo.Merge(m, src)
  8431. }
  8432. func (m *MemberInfo) XXX_Size() int {
  8433. return xxx_messageInfo_MemberInfo.Size(m)
  8434. }
  8435. func (m *MemberInfo) XXX_DiscardUnknown() {
  8436. xxx_messageInfo_MemberInfo.DiscardUnknown(m)
  8437. }
  8438. var xxx_messageInfo_MemberInfo proto.InternalMessageInfo
  8439. func (m *MemberInfo) GetTotalActive() uint32 {
  8440. if m != nil {
  8441. return m.TotalActive
  8442. }
  8443. return 0
  8444. }
  8445. func (m *MemberInfo) GetBrief() *CommonPlayerBriefInfo {
  8446. if m != nil {
  8447. return m.Brief
  8448. }
  8449. return nil
  8450. }
  8451. type GuildBossLogDetial struct {
  8452. FightLog *GuildFightLog `protobuf:"bytes,1,opt,name=fight_log,json=fightLog,proto3" json:"fight_log,omitempty"`
  8453. Info *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=info,proto3" json:"info,omitempty"`
  8454. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8455. XXX_unrecognized []byte `json:"-"`
  8456. XXX_sizecache int32 `json:"-"`
  8457. }
  8458. func (m *GuildBossLogDetial) Reset() { *m = GuildBossLogDetial{} }
  8459. func (m *GuildBossLogDetial) String() string { return proto.CompactTextString(m) }
  8460. func (*GuildBossLogDetial) ProtoMessage() {}
  8461. func (*GuildBossLogDetial) Descriptor() ([]byte, []int) {
  8462. return fileDescriptor_116e343673f7ffaf, []int{141}
  8463. }
  8464. func (m *GuildBossLogDetial) XXX_Unmarshal(b []byte) error {
  8465. return xxx_messageInfo_GuildBossLogDetial.Unmarshal(m, b)
  8466. }
  8467. func (m *GuildBossLogDetial) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8468. return xxx_messageInfo_GuildBossLogDetial.Marshal(b, m, deterministic)
  8469. }
  8470. func (m *GuildBossLogDetial) XXX_Merge(src proto.Message) {
  8471. xxx_messageInfo_GuildBossLogDetial.Merge(m, src)
  8472. }
  8473. func (m *GuildBossLogDetial) XXX_Size() int {
  8474. return xxx_messageInfo_GuildBossLogDetial.Size(m)
  8475. }
  8476. func (m *GuildBossLogDetial) XXX_DiscardUnknown() {
  8477. xxx_messageInfo_GuildBossLogDetial.DiscardUnknown(m)
  8478. }
  8479. var xxx_messageInfo_GuildBossLogDetial proto.InternalMessageInfo
  8480. func (m *GuildBossLogDetial) GetFightLog() *GuildFightLog {
  8481. if m != nil {
  8482. return m.FightLog
  8483. }
  8484. return nil
  8485. }
  8486. func (m *GuildBossLogDetial) GetInfo() *CommonPlayerBriefInfo {
  8487. if m != nil {
  8488. return m.Info
  8489. }
  8490. return nil
  8491. }
  8492. type GuildBossData struct {
  8493. BossId uint32 `protobuf:"varint,1,opt,name=boss_id,json=bossId,proto3" json:"boss_id,omitempty"`
  8494. FightTime uint64 `protobuf:"varint,2,opt,name=fight_time,json=fightTime,proto3" json:"fight_time,omitempty"`
  8495. FightCdTime uint64 `protobuf:"varint,3,opt,name=fight_cd_time,json=fightCdTime,proto3" json:"fight_cd_time,omitempty"`
  8496. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8497. XXX_unrecognized []byte `json:"-"`
  8498. XXX_sizecache int32 `json:"-"`
  8499. }
  8500. func (m *GuildBossData) Reset() { *m = GuildBossData{} }
  8501. func (m *GuildBossData) String() string { return proto.CompactTextString(m) }
  8502. func (*GuildBossData) ProtoMessage() {}
  8503. func (*GuildBossData) Descriptor() ([]byte, []int) {
  8504. return fileDescriptor_116e343673f7ffaf, []int{142}
  8505. }
  8506. func (m *GuildBossData) XXX_Unmarshal(b []byte) error {
  8507. return xxx_messageInfo_GuildBossData.Unmarshal(m, b)
  8508. }
  8509. func (m *GuildBossData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8510. return xxx_messageInfo_GuildBossData.Marshal(b, m, deterministic)
  8511. }
  8512. func (m *GuildBossData) XXX_Merge(src proto.Message) {
  8513. xxx_messageInfo_GuildBossData.Merge(m, src)
  8514. }
  8515. func (m *GuildBossData) XXX_Size() int {
  8516. return xxx_messageInfo_GuildBossData.Size(m)
  8517. }
  8518. func (m *GuildBossData) XXX_DiscardUnknown() {
  8519. xxx_messageInfo_GuildBossData.DiscardUnknown(m)
  8520. }
  8521. var xxx_messageInfo_GuildBossData proto.InternalMessageInfo
  8522. func (m *GuildBossData) GetBossId() uint32 {
  8523. if m != nil {
  8524. return m.BossId
  8525. }
  8526. return 0
  8527. }
  8528. func (m *GuildBossData) GetFightTime() uint64 {
  8529. if m != nil {
  8530. return m.FightTime
  8531. }
  8532. return 0
  8533. }
  8534. func (m *GuildBossData) GetFightCdTime() uint64 {
  8535. if m != nil {
  8536. return m.FightCdTime
  8537. }
  8538. return 0
  8539. }
  8540. // 公会存库======开始
  8541. type GuildLog struct {
  8542. OpTitle int32 `protobuf:"varint,1,opt,name=op_title,json=opTitle,proto3" json:"op_title,omitempty"`
  8543. OpName string `protobuf:"bytes,2,opt,name=op_name,json=opName,proto3" json:"op_name,omitempty"`
  8544. BeOpTitle int32 `protobuf:"varint,3,opt,name=be_op_title,json=beOpTitle,proto3" json:"be_op_title,omitempty"`
  8545. BeOpName string `protobuf:"bytes,4,opt,name=be_op_name,json=beOpName,proto3" json:"be_op_name,omitempty"`
  8546. EventType int32 `protobuf:"varint,5,opt,name=event_type,json=eventType,proto3" json:"event_type,omitempty"`
  8547. EventTime uint64 `protobuf:"varint,6,opt,name=event_time,json=eventTime,proto3" json:"event_time,omitempty"`
  8548. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8549. XXX_unrecognized []byte `json:"-"`
  8550. XXX_sizecache int32 `json:"-"`
  8551. }
  8552. func (m *GuildLog) Reset() { *m = GuildLog{} }
  8553. func (m *GuildLog) String() string { return proto.CompactTextString(m) }
  8554. func (*GuildLog) ProtoMessage() {}
  8555. func (*GuildLog) Descriptor() ([]byte, []int) {
  8556. return fileDescriptor_116e343673f7ffaf, []int{143}
  8557. }
  8558. func (m *GuildLog) XXX_Unmarshal(b []byte) error {
  8559. return xxx_messageInfo_GuildLog.Unmarshal(m, b)
  8560. }
  8561. func (m *GuildLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8562. return xxx_messageInfo_GuildLog.Marshal(b, m, deterministic)
  8563. }
  8564. func (m *GuildLog) XXX_Merge(src proto.Message) {
  8565. xxx_messageInfo_GuildLog.Merge(m, src)
  8566. }
  8567. func (m *GuildLog) XXX_Size() int {
  8568. return xxx_messageInfo_GuildLog.Size(m)
  8569. }
  8570. func (m *GuildLog) XXX_DiscardUnknown() {
  8571. xxx_messageInfo_GuildLog.DiscardUnknown(m)
  8572. }
  8573. var xxx_messageInfo_GuildLog proto.InternalMessageInfo
  8574. func (m *GuildLog) GetOpTitle() int32 {
  8575. if m != nil {
  8576. return m.OpTitle
  8577. }
  8578. return 0
  8579. }
  8580. func (m *GuildLog) GetOpName() string {
  8581. if m != nil {
  8582. return m.OpName
  8583. }
  8584. return ""
  8585. }
  8586. func (m *GuildLog) GetBeOpTitle() int32 {
  8587. if m != nil {
  8588. return m.BeOpTitle
  8589. }
  8590. return 0
  8591. }
  8592. func (m *GuildLog) GetBeOpName() string {
  8593. if m != nil {
  8594. return m.BeOpName
  8595. }
  8596. return ""
  8597. }
  8598. func (m *GuildLog) GetEventType() int32 {
  8599. if m != nil {
  8600. return m.EventType
  8601. }
  8602. return 0
  8603. }
  8604. func (m *GuildLog) GetEventTime() uint64 {
  8605. if m != nil {
  8606. return m.EventTime
  8607. }
  8608. return 0
  8609. }
  8610. type GuildLogSet struct {
  8611. GuildLog []*GuildLog `protobuf:"bytes,1,rep,name=guild_log,json=guildLog,proto3" json:"guild_log,omitempty"`
  8612. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8613. XXX_unrecognized []byte `json:"-"`
  8614. XXX_sizecache int32 `json:"-"`
  8615. }
  8616. func (m *GuildLogSet) Reset() { *m = GuildLogSet{} }
  8617. func (m *GuildLogSet) String() string { return proto.CompactTextString(m) }
  8618. func (*GuildLogSet) ProtoMessage() {}
  8619. func (*GuildLogSet) Descriptor() ([]byte, []int) {
  8620. return fileDescriptor_116e343673f7ffaf, []int{144}
  8621. }
  8622. func (m *GuildLogSet) XXX_Unmarshal(b []byte) error {
  8623. return xxx_messageInfo_GuildLogSet.Unmarshal(m, b)
  8624. }
  8625. func (m *GuildLogSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8626. return xxx_messageInfo_GuildLogSet.Marshal(b, m, deterministic)
  8627. }
  8628. func (m *GuildLogSet) XXX_Merge(src proto.Message) {
  8629. xxx_messageInfo_GuildLogSet.Merge(m, src)
  8630. }
  8631. func (m *GuildLogSet) XXX_Size() int {
  8632. return xxx_messageInfo_GuildLogSet.Size(m)
  8633. }
  8634. func (m *GuildLogSet) XXX_DiscardUnknown() {
  8635. xxx_messageInfo_GuildLogSet.DiscardUnknown(m)
  8636. }
  8637. var xxx_messageInfo_GuildLogSet proto.InternalMessageInfo
  8638. func (m *GuildLogSet) GetGuildLog() []*GuildLog {
  8639. if m != nil {
  8640. return m.GuildLog
  8641. }
  8642. return nil
  8643. }
  8644. type GuildMember struct {
  8645. MemberId uint64 `protobuf:"varint,1,opt,name=member_id,json=memberId,proto3" json:"member_id,omitempty"`
  8646. Title int32 `protobuf:"varint,2,opt,name=title,proto3" json:"title,omitempty"`
  8647. OfflineTime int64 `protobuf:"varint,3,opt,name=offline_time,json=offlineTime,proto3" json:"offline_time,omitempty"`
  8648. ActiveInfo []*KeyValueType64 `protobuf:"bytes,4,rep,name=active_info,json=activeInfo,proto3" json:"active_info,omitempty"`
  8649. AddGuildTime uint64 `protobuf:"varint,5,opt,name=add_guild_time,json=addGuildTime,proto3" json:"add_guild_time,omitempty"`
  8650. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8651. XXX_unrecognized []byte `json:"-"`
  8652. XXX_sizecache int32 `json:"-"`
  8653. }
  8654. func (m *GuildMember) Reset() { *m = GuildMember{} }
  8655. func (m *GuildMember) String() string { return proto.CompactTextString(m) }
  8656. func (*GuildMember) ProtoMessage() {}
  8657. func (*GuildMember) Descriptor() ([]byte, []int) {
  8658. return fileDescriptor_116e343673f7ffaf, []int{145}
  8659. }
  8660. func (m *GuildMember) XXX_Unmarshal(b []byte) error {
  8661. return xxx_messageInfo_GuildMember.Unmarshal(m, b)
  8662. }
  8663. func (m *GuildMember) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8664. return xxx_messageInfo_GuildMember.Marshal(b, m, deterministic)
  8665. }
  8666. func (m *GuildMember) XXX_Merge(src proto.Message) {
  8667. xxx_messageInfo_GuildMember.Merge(m, src)
  8668. }
  8669. func (m *GuildMember) XXX_Size() int {
  8670. return xxx_messageInfo_GuildMember.Size(m)
  8671. }
  8672. func (m *GuildMember) XXX_DiscardUnknown() {
  8673. xxx_messageInfo_GuildMember.DiscardUnknown(m)
  8674. }
  8675. var xxx_messageInfo_GuildMember proto.InternalMessageInfo
  8676. func (m *GuildMember) GetMemberId() uint64 {
  8677. if m != nil {
  8678. return m.MemberId
  8679. }
  8680. return 0
  8681. }
  8682. func (m *GuildMember) GetTitle() int32 {
  8683. if m != nil {
  8684. return m.Title
  8685. }
  8686. return 0
  8687. }
  8688. func (m *GuildMember) GetOfflineTime() int64 {
  8689. if m != nil {
  8690. return m.OfflineTime
  8691. }
  8692. return 0
  8693. }
  8694. func (m *GuildMember) GetActiveInfo() []*KeyValueType64 {
  8695. if m != nil {
  8696. return m.ActiveInfo
  8697. }
  8698. return nil
  8699. }
  8700. func (m *GuildMember) GetAddGuildTime() uint64 {
  8701. if m != nil {
  8702. return m.AddGuildTime
  8703. }
  8704. return 0
  8705. }
  8706. type MemberData struct {
  8707. PreId uint64 `protobuf:"varint,1,opt,name=pre_id,json=preId,proto3" json:"pre_id,omitempty"`
  8708. VicePreId []uint64 `protobuf:"varint,2,rep,packed,name=vice_pre_id,json=vicePreId,proto3" json:"vice_pre_id,omitempty"`
  8709. MemberInfo []*GuildMember `protobuf:"bytes,3,rep,name=member_info,json=memberInfo,proto3" json:"member_info,omitempty"`
  8710. KickTime uint64 `protobuf:"varint,4,opt,name=kick_time,json=kickTime,proto3" json:"kick_time,omitempty"`
  8711. KickNum int32 `protobuf:"varint,5,opt,name=kick_num,json=kickNum,proto3" json:"kick_num,omitempty"`
  8712. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8713. XXX_unrecognized []byte `json:"-"`
  8714. XXX_sizecache int32 `json:"-"`
  8715. }
  8716. func (m *MemberData) Reset() { *m = MemberData{} }
  8717. func (m *MemberData) String() string { return proto.CompactTextString(m) }
  8718. func (*MemberData) ProtoMessage() {}
  8719. func (*MemberData) Descriptor() ([]byte, []int) {
  8720. return fileDescriptor_116e343673f7ffaf, []int{146}
  8721. }
  8722. func (m *MemberData) XXX_Unmarshal(b []byte) error {
  8723. return xxx_messageInfo_MemberData.Unmarshal(m, b)
  8724. }
  8725. func (m *MemberData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8726. return xxx_messageInfo_MemberData.Marshal(b, m, deterministic)
  8727. }
  8728. func (m *MemberData) XXX_Merge(src proto.Message) {
  8729. xxx_messageInfo_MemberData.Merge(m, src)
  8730. }
  8731. func (m *MemberData) XXX_Size() int {
  8732. return xxx_messageInfo_MemberData.Size(m)
  8733. }
  8734. func (m *MemberData) XXX_DiscardUnknown() {
  8735. xxx_messageInfo_MemberData.DiscardUnknown(m)
  8736. }
  8737. var xxx_messageInfo_MemberData proto.InternalMessageInfo
  8738. func (m *MemberData) GetPreId() uint64 {
  8739. if m != nil {
  8740. return m.PreId
  8741. }
  8742. return 0
  8743. }
  8744. func (m *MemberData) GetVicePreId() []uint64 {
  8745. if m != nil {
  8746. return m.VicePreId
  8747. }
  8748. return nil
  8749. }
  8750. func (m *MemberData) GetMemberInfo() []*GuildMember {
  8751. if m != nil {
  8752. return m.MemberInfo
  8753. }
  8754. return nil
  8755. }
  8756. func (m *MemberData) GetKickTime() uint64 {
  8757. if m != nil {
  8758. return m.KickTime
  8759. }
  8760. return 0
  8761. }
  8762. func (m *MemberData) GetKickNum() int32 {
  8763. if m != nil {
  8764. return m.KickNum
  8765. }
  8766. return 0
  8767. }
  8768. type GuildBrief struct {
  8769. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  8770. GuildName string `protobuf:"bytes,2,opt,name=guild_name,json=guildName,proto3" json:"guild_name,omitempty"`
  8771. GuildBadge int32 `protobuf:"varint,3,opt,name=guild_badge,json=guildBadge,proto3" json:"guild_badge,omitempty"`
  8772. GuildLevel int32 `protobuf:"varint,4,opt,name=guild_level,json=guildLevel,proto3" json:"guild_level,omitempty"`
  8773. GuildActive uint32 `protobuf:"varint,5,opt,name=guild_active,json=guildActive,proto3" json:"guild_active,omitempty"`
  8774. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8775. XXX_unrecognized []byte `json:"-"`
  8776. XXX_sizecache int32 `json:"-"`
  8777. }
  8778. func (m *GuildBrief) Reset() { *m = GuildBrief{} }
  8779. func (m *GuildBrief) String() string { return proto.CompactTextString(m) }
  8780. func (*GuildBrief) ProtoMessage() {}
  8781. func (*GuildBrief) Descriptor() ([]byte, []int) {
  8782. return fileDescriptor_116e343673f7ffaf, []int{147}
  8783. }
  8784. func (m *GuildBrief) XXX_Unmarshal(b []byte) error {
  8785. return xxx_messageInfo_GuildBrief.Unmarshal(m, b)
  8786. }
  8787. func (m *GuildBrief) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8788. return xxx_messageInfo_GuildBrief.Marshal(b, m, deterministic)
  8789. }
  8790. func (m *GuildBrief) XXX_Merge(src proto.Message) {
  8791. xxx_messageInfo_GuildBrief.Merge(m, src)
  8792. }
  8793. func (m *GuildBrief) XXX_Size() int {
  8794. return xxx_messageInfo_GuildBrief.Size(m)
  8795. }
  8796. func (m *GuildBrief) XXX_DiscardUnknown() {
  8797. xxx_messageInfo_GuildBrief.DiscardUnknown(m)
  8798. }
  8799. var xxx_messageInfo_GuildBrief proto.InternalMessageInfo
  8800. func (m *GuildBrief) GetGuildId() uint64 {
  8801. if m != nil {
  8802. return m.GuildId
  8803. }
  8804. return 0
  8805. }
  8806. func (m *GuildBrief) GetGuildName() string {
  8807. if m != nil {
  8808. return m.GuildName
  8809. }
  8810. return ""
  8811. }
  8812. func (m *GuildBrief) GetGuildBadge() int32 {
  8813. if m != nil {
  8814. return m.GuildBadge
  8815. }
  8816. return 0
  8817. }
  8818. func (m *GuildBrief) GetGuildLevel() int32 {
  8819. if m != nil {
  8820. return m.GuildLevel
  8821. }
  8822. return 0
  8823. }
  8824. func (m *GuildBrief) GetGuildActive() uint32 {
  8825. if m != nil {
  8826. return m.GuildActive
  8827. }
  8828. return 0
  8829. }
  8830. type GuildBase struct {
  8831. GuildBrief *GuildBrief `protobuf:"bytes,1,opt,name=guild_brief,json=guildBrief,proto3" json:"guild_brief,omitempty"`
  8832. DayActive uint32 `protobuf:"varint,2,opt,name=day_active,json=dayActive,proto3" json:"day_active,omitempty"`
  8833. GuildExp uint32 `protobuf:"varint,3,opt,name=guild_exp,json=guildExp,proto3" json:"guild_exp,omitempty"`
  8834. ActiveTime int64 `protobuf:"varint,4,opt,name=active_time,json=activeTime,proto3" json:"active_time,omitempty"`
  8835. RecruitType int32 `protobuf:"varint,5,opt,name=recruit_type,json=recruitType,proto3" json:"recruit_type,omitempty"`
  8836. RecruitLevel int32 `protobuf:"varint,6,opt,name=recruit_level,json=recruitLevel,proto3" json:"recruit_level,omitempty"`
  8837. Notice string `protobuf:"bytes,7,opt,name=notice,proto3" json:"notice,omitempty"`
  8838. RecruitNotice string `protobuf:"bytes,8,opt,name=recruit_notice,json=recruitNotice,proto3" json:"recruit_notice,omitempty"`
  8839. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8840. XXX_unrecognized []byte `json:"-"`
  8841. XXX_sizecache int32 `json:"-"`
  8842. }
  8843. func (m *GuildBase) Reset() { *m = GuildBase{} }
  8844. func (m *GuildBase) String() string { return proto.CompactTextString(m) }
  8845. func (*GuildBase) ProtoMessage() {}
  8846. func (*GuildBase) Descriptor() ([]byte, []int) {
  8847. return fileDescriptor_116e343673f7ffaf, []int{148}
  8848. }
  8849. func (m *GuildBase) XXX_Unmarshal(b []byte) error {
  8850. return xxx_messageInfo_GuildBase.Unmarshal(m, b)
  8851. }
  8852. func (m *GuildBase) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8853. return xxx_messageInfo_GuildBase.Marshal(b, m, deterministic)
  8854. }
  8855. func (m *GuildBase) XXX_Merge(src proto.Message) {
  8856. xxx_messageInfo_GuildBase.Merge(m, src)
  8857. }
  8858. func (m *GuildBase) XXX_Size() int {
  8859. return xxx_messageInfo_GuildBase.Size(m)
  8860. }
  8861. func (m *GuildBase) XXX_DiscardUnknown() {
  8862. xxx_messageInfo_GuildBase.DiscardUnknown(m)
  8863. }
  8864. var xxx_messageInfo_GuildBase proto.InternalMessageInfo
  8865. func (m *GuildBase) GetGuildBrief() *GuildBrief {
  8866. if m != nil {
  8867. return m.GuildBrief
  8868. }
  8869. return nil
  8870. }
  8871. func (m *GuildBase) GetDayActive() uint32 {
  8872. if m != nil {
  8873. return m.DayActive
  8874. }
  8875. return 0
  8876. }
  8877. func (m *GuildBase) GetGuildExp() uint32 {
  8878. if m != nil {
  8879. return m.GuildExp
  8880. }
  8881. return 0
  8882. }
  8883. func (m *GuildBase) GetActiveTime() int64 {
  8884. if m != nil {
  8885. return m.ActiveTime
  8886. }
  8887. return 0
  8888. }
  8889. func (m *GuildBase) GetRecruitType() int32 {
  8890. if m != nil {
  8891. return m.RecruitType
  8892. }
  8893. return 0
  8894. }
  8895. func (m *GuildBase) GetRecruitLevel() int32 {
  8896. if m != nil {
  8897. return m.RecruitLevel
  8898. }
  8899. return 0
  8900. }
  8901. func (m *GuildBase) GetNotice() string {
  8902. if m != nil {
  8903. return m.Notice
  8904. }
  8905. return ""
  8906. }
  8907. func (m *GuildBase) GetRecruitNotice() string {
  8908. if m != nil {
  8909. return m.RecruitNotice
  8910. }
  8911. return ""
  8912. }
  8913. type DemonDamage struct {
  8914. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  8915. Damage uint64 `protobuf:"varint,2,opt,name=damage,proto3" json:"damage,omitempty"`
  8916. FightTime uint64 `protobuf:"varint,3,opt,name=fight_time,json=fightTime,proto3" json:"fight_time,omitempty"`
  8917. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8918. XXX_unrecognized []byte `json:"-"`
  8919. XXX_sizecache int32 `json:"-"`
  8920. }
  8921. func (m *DemonDamage) Reset() { *m = DemonDamage{} }
  8922. func (m *DemonDamage) String() string { return proto.CompactTextString(m) }
  8923. func (*DemonDamage) ProtoMessage() {}
  8924. func (*DemonDamage) Descriptor() ([]byte, []int) {
  8925. return fileDescriptor_116e343673f7ffaf, []int{149}
  8926. }
  8927. func (m *DemonDamage) XXX_Unmarshal(b []byte) error {
  8928. return xxx_messageInfo_DemonDamage.Unmarshal(m, b)
  8929. }
  8930. func (m *DemonDamage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8931. return xxx_messageInfo_DemonDamage.Marshal(b, m, deterministic)
  8932. }
  8933. func (m *DemonDamage) XXX_Merge(src proto.Message) {
  8934. xxx_messageInfo_DemonDamage.Merge(m, src)
  8935. }
  8936. func (m *DemonDamage) XXX_Size() int {
  8937. return xxx_messageInfo_DemonDamage.Size(m)
  8938. }
  8939. func (m *DemonDamage) XXX_DiscardUnknown() {
  8940. xxx_messageInfo_DemonDamage.DiscardUnknown(m)
  8941. }
  8942. var xxx_messageInfo_DemonDamage proto.InternalMessageInfo
  8943. func (m *DemonDamage) GetUid() uint64 {
  8944. if m != nil {
  8945. return m.Uid
  8946. }
  8947. return 0
  8948. }
  8949. func (m *DemonDamage) GetDamage() uint64 {
  8950. if m != nil {
  8951. return m.Damage
  8952. }
  8953. return 0
  8954. }
  8955. func (m *DemonDamage) GetFightTime() uint64 {
  8956. if m != nil {
  8957. return m.FightTime
  8958. }
  8959. return 0
  8960. }
  8961. type GuildDemon struct {
  8962. CurDemonId int32 `protobuf:"varint,1,opt,name=cur_demon_id,json=curDemonId,proto3" json:"cur_demon_id,omitempty"`
  8963. TotalDamage uint64 `protobuf:"varint,2,opt,name=total_damage,json=totalDamage,proto3" json:"total_damage,omitempty"`
  8964. DamageList []*DemonDamage `protobuf:"bytes,3,rep,name=damage_list,json=damageList,proto3" json:"damage_list,omitempty"`
  8965. RefreshTime uint64 `protobuf:"varint,4,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  8966. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  8967. XXX_unrecognized []byte `json:"-"`
  8968. XXX_sizecache int32 `json:"-"`
  8969. }
  8970. func (m *GuildDemon) Reset() { *m = GuildDemon{} }
  8971. func (m *GuildDemon) String() string { return proto.CompactTextString(m) }
  8972. func (*GuildDemon) ProtoMessage() {}
  8973. func (*GuildDemon) Descriptor() ([]byte, []int) {
  8974. return fileDescriptor_116e343673f7ffaf, []int{150}
  8975. }
  8976. func (m *GuildDemon) XXX_Unmarshal(b []byte) error {
  8977. return xxx_messageInfo_GuildDemon.Unmarshal(m, b)
  8978. }
  8979. func (m *GuildDemon) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  8980. return xxx_messageInfo_GuildDemon.Marshal(b, m, deterministic)
  8981. }
  8982. func (m *GuildDemon) XXX_Merge(src proto.Message) {
  8983. xxx_messageInfo_GuildDemon.Merge(m, src)
  8984. }
  8985. func (m *GuildDemon) XXX_Size() int {
  8986. return xxx_messageInfo_GuildDemon.Size(m)
  8987. }
  8988. func (m *GuildDemon) XXX_DiscardUnknown() {
  8989. xxx_messageInfo_GuildDemon.DiscardUnknown(m)
  8990. }
  8991. var xxx_messageInfo_GuildDemon proto.InternalMessageInfo
  8992. func (m *GuildDemon) GetCurDemonId() int32 {
  8993. if m != nil {
  8994. return m.CurDemonId
  8995. }
  8996. return 0
  8997. }
  8998. func (m *GuildDemon) GetTotalDamage() uint64 {
  8999. if m != nil {
  9000. return m.TotalDamage
  9001. }
  9002. return 0
  9003. }
  9004. func (m *GuildDemon) GetDamageList() []*DemonDamage {
  9005. if m != nil {
  9006. return m.DamageList
  9007. }
  9008. return nil
  9009. }
  9010. func (m *GuildDemon) GetRefreshTime() uint64 {
  9011. if m != nil {
  9012. return m.RefreshTime
  9013. }
  9014. return 0
  9015. }
  9016. type GuildActiveInfo struct {
  9017. ActiveValue uint32 `protobuf:"varint,1,opt,name=active_value,json=activeValue,proto3" json:"active_value,omitempty"`
  9018. DayActiveValue int32 `protobuf:"varint,2,opt,name=day_active_value,json=dayActiveValue,proto3" json:"day_active_value,omitempty"`
  9019. ActiveTime int64 `protobuf:"varint,3,opt,name=active_time,json=activeTime,proto3" json:"active_time,omitempty"`
  9020. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9021. XXX_unrecognized []byte `json:"-"`
  9022. XXX_sizecache int32 `json:"-"`
  9023. }
  9024. func (m *GuildActiveInfo) Reset() { *m = GuildActiveInfo{} }
  9025. func (m *GuildActiveInfo) String() string { return proto.CompactTextString(m) }
  9026. func (*GuildActiveInfo) ProtoMessage() {}
  9027. func (*GuildActiveInfo) Descriptor() ([]byte, []int) {
  9028. return fileDescriptor_116e343673f7ffaf, []int{151}
  9029. }
  9030. func (m *GuildActiveInfo) XXX_Unmarshal(b []byte) error {
  9031. return xxx_messageInfo_GuildActiveInfo.Unmarshal(m, b)
  9032. }
  9033. func (m *GuildActiveInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9034. return xxx_messageInfo_GuildActiveInfo.Marshal(b, m, deterministic)
  9035. }
  9036. func (m *GuildActiveInfo) XXX_Merge(src proto.Message) {
  9037. xxx_messageInfo_GuildActiveInfo.Merge(m, src)
  9038. }
  9039. func (m *GuildActiveInfo) XXX_Size() int {
  9040. return xxx_messageInfo_GuildActiveInfo.Size(m)
  9041. }
  9042. func (m *GuildActiveInfo) XXX_DiscardUnknown() {
  9043. xxx_messageInfo_GuildActiveInfo.DiscardUnknown(m)
  9044. }
  9045. var xxx_messageInfo_GuildActiveInfo proto.InternalMessageInfo
  9046. func (m *GuildActiveInfo) GetActiveValue() uint32 {
  9047. if m != nil {
  9048. return m.ActiveValue
  9049. }
  9050. return 0
  9051. }
  9052. func (m *GuildActiveInfo) GetDayActiveValue() int32 {
  9053. if m != nil {
  9054. return m.DayActiveValue
  9055. }
  9056. return 0
  9057. }
  9058. func (m *GuildActiveInfo) GetActiveTime() int64 {
  9059. if m != nil {
  9060. return m.ActiveTime
  9061. }
  9062. return 0
  9063. }
  9064. type RoleApplyInfo struct {
  9065. DayApply []*DayApply `protobuf:"bytes,1,rep,name=day_apply,json=dayApply,proto3" json:"day_apply,omitempty"`
  9066. Refused []*RefusedApply `protobuf:"bytes,2,rep,name=refused,proto3" json:"refused,omitempty"`
  9067. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9068. XXX_unrecognized []byte `json:"-"`
  9069. XXX_sizecache int32 `json:"-"`
  9070. }
  9071. func (m *RoleApplyInfo) Reset() { *m = RoleApplyInfo{} }
  9072. func (m *RoleApplyInfo) String() string { return proto.CompactTextString(m) }
  9073. func (*RoleApplyInfo) ProtoMessage() {}
  9074. func (*RoleApplyInfo) Descriptor() ([]byte, []int) {
  9075. return fileDescriptor_116e343673f7ffaf, []int{152}
  9076. }
  9077. func (m *RoleApplyInfo) XXX_Unmarshal(b []byte) error {
  9078. return xxx_messageInfo_RoleApplyInfo.Unmarshal(m, b)
  9079. }
  9080. func (m *RoleApplyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9081. return xxx_messageInfo_RoleApplyInfo.Marshal(b, m, deterministic)
  9082. }
  9083. func (m *RoleApplyInfo) XXX_Merge(src proto.Message) {
  9084. xxx_messageInfo_RoleApplyInfo.Merge(m, src)
  9085. }
  9086. func (m *RoleApplyInfo) XXX_Size() int {
  9087. return xxx_messageInfo_RoleApplyInfo.Size(m)
  9088. }
  9089. func (m *RoleApplyInfo) XXX_DiscardUnknown() {
  9090. xxx_messageInfo_RoleApplyInfo.DiscardUnknown(m)
  9091. }
  9092. var xxx_messageInfo_RoleApplyInfo proto.InternalMessageInfo
  9093. func (m *RoleApplyInfo) GetDayApply() []*DayApply {
  9094. if m != nil {
  9095. return m.DayApply
  9096. }
  9097. return nil
  9098. }
  9099. func (m *RoleApplyInfo) GetRefused() []*RefusedApply {
  9100. if m != nil {
  9101. return m.Refused
  9102. }
  9103. return nil
  9104. }
  9105. type GuildBossTickTime struct {
  9106. BossId uint32 `protobuf:"varint,1,opt,name=bossId,proto3" json:"bossId,omitempty"`
  9107. FightCount int32 `protobuf:"varint,2,opt,name=fight_count,json=fightCount,proto3" json:"fight_count,omitempty"`
  9108. RefreshTime uint64 `protobuf:"varint,3,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  9109. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9110. XXX_unrecognized []byte `json:"-"`
  9111. XXX_sizecache int32 `json:"-"`
  9112. }
  9113. func (m *GuildBossTickTime) Reset() { *m = GuildBossTickTime{} }
  9114. func (m *GuildBossTickTime) String() string { return proto.CompactTextString(m) }
  9115. func (*GuildBossTickTime) ProtoMessage() {}
  9116. func (*GuildBossTickTime) Descriptor() ([]byte, []int) {
  9117. return fileDescriptor_116e343673f7ffaf, []int{153}
  9118. }
  9119. func (m *GuildBossTickTime) XXX_Unmarshal(b []byte) error {
  9120. return xxx_messageInfo_GuildBossTickTime.Unmarshal(m, b)
  9121. }
  9122. func (m *GuildBossTickTime) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9123. return xxx_messageInfo_GuildBossTickTime.Marshal(b, m, deterministic)
  9124. }
  9125. func (m *GuildBossTickTime) XXX_Merge(src proto.Message) {
  9126. xxx_messageInfo_GuildBossTickTime.Merge(m, src)
  9127. }
  9128. func (m *GuildBossTickTime) XXX_Size() int {
  9129. return xxx_messageInfo_GuildBossTickTime.Size(m)
  9130. }
  9131. func (m *GuildBossTickTime) XXX_DiscardUnknown() {
  9132. xxx_messageInfo_GuildBossTickTime.DiscardUnknown(m)
  9133. }
  9134. var xxx_messageInfo_GuildBossTickTime proto.InternalMessageInfo
  9135. func (m *GuildBossTickTime) GetBossId() uint32 {
  9136. if m != nil {
  9137. return m.BossId
  9138. }
  9139. return 0
  9140. }
  9141. func (m *GuildBossTickTime) GetFightCount() int32 {
  9142. if m != nil {
  9143. return m.FightCount
  9144. }
  9145. return 0
  9146. }
  9147. func (m *GuildBossTickTime) GetRefreshTime() uint64 {
  9148. if m != nil {
  9149. return m.RefreshTime
  9150. }
  9151. return 0
  9152. }
  9153. // 公会战个人信息
  9154. type GuildBattle struct {
  9155. RewardRound int32 `protobuf:"varint,1,opt,name=reward_round,json=rewardRound,proto3" json:"reward_round,omitempty"`
  9156. MvpRewardRound int32 `protobuf:"varint,2,opt,name=mvp_reward_round,json=mvpRewardRound,proto3" json:"mvp_reward_round,omitempty"`
  9157. ChallengeNum int32 `protobuf:"varint,3,opt,name=challenge_num,json=challengeNum,proto3" json:"challenge_num,omitempty"`
  9158. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9159. XXX_unrecognized []byte `json:"-"`
  9160. XXX_sizecache int32 `json:"-"`
  9161. }
  9162. func (m *GuildBattle) Reset() { *m = GuildBattle{} }
  9163. func (m *GuildBattle) String() string { return proto.CompactTextString(m) }
  9164. func (*GuildBattle) ProtoMessage() {}
  9165. func (*GuildBattle) Descriptor() ([]byte, []int) {
  9166. return fileDescriptor_116e343673f7ffaf, []int{154}
  9167. }
  9168. func (m *GuildBattle) XXX_Unmarshal(b []byte) error {
  9169. return xxx_messageInfo_GuildBattle.Unmarshal(m, b)
  9170. }
  9171. func (m *GuildBattle) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9172. return xxx_messageInfo_GuildBattle.Marshal(b, m, deterministic)
  9173. }
  9174. func (m *GuildBattle) XXX_Merge(src proto.Message) {
  9175. xxx_messageInfo_GuildBattle.Merge(m, src)
  9176. }
  9177. func (m *GuildBattle) XXX_Size() int {
  9178. return xxx_messageInfo_GuildBattle.Size(m)
  9179. }
  9180. func (m *GuildBattle) XXX_DiscardUnknown() {
  9181. xxx_messageInfo_GuildBattle.DiscardUnknown(m)
  9182. }
  9183. var xxx_messageInfo_GuildBattle proto.InternalMessageInfo
  9184. func (m *GuildBattle) GetRewardRound() int32 {
  9185. if m != nil {
  9186. return m.RewardRound
  9187. }
  9188. return 0
  9189. }
  9190. func (m *GuildBattle) GetMvpRewardRound() int32 {
  9191. if m != nil {
  9192. return m.MvpRewardRound
  9193. }
  9194. return 0
  9195. }
  9196. func (m *GuildBattle) GetChallengeNum() int32 {
  9197. if m != nil {
  9198. return m.ChallengeNum
  9199. }
  9200. return 0
  9201. }
  9202. type GuildDemonReward struct {
  9203. TotalDamage uint64 `protobuf:"varint,1,opt,name=total_damage,json=totalDamage,proto3" json:"total_damage,omitempty"`
  9204. DemonId int32 `protobuf:"varint,2,opt,name=demon_id,json=demonId,proto3" json:"demon_id,omitempty"`
  9205. DamageList []*DemonDamage `protobuf:"bytes,3,rep,name=damage_list,json=damageList,proto3" json:"damage_list,omitempty"`
  9206. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9207. XXX_unrecognized []byte `json:"-"`
  9208. XXX_sizecache int32 `json:"-"`
  9209. }
  9210. func (m *GuildDemonReward) Reset() { *m = GuildDemonReward{} }
  9211. func (m *GuildDemonReward) String() string { return proto.CompactTextString(m) }
  9212. func (*GuildDemonReward) ProtoMessage() {}
  9213. func (*GuildDemonReward) Descriptor() ([]byte, []int) {
  9214. return fileDescriptor_116e343673f7ffaf, []int{155}
  9215. }
  9216. func (m *GuildDemonReward) XXX_Unmarshal(b []byte) error {
  9217. return xxx_messageInfo_GuildDemonReward.Unmarshal(m, b)
  9218. }
  9219. func (m *GuildDemonReward) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9220. return xxx_messageInfo_GuildDemonReward.Marshal(b, m, deterministic)
  9221. }
  9222. func (m *GuildDemonReward) XXX_Merge(src proto.Message) {
  9223. xxx_messageInfo_GuildDemonReward.Merge(m, src)
  9224. }
  9225. func (m *GuildDemonReward) XXX_Size() int {
  9226. return xxx_messageInfo_GuildDemonReward.Size(m)
  9227. }
  9228. func (m *GuildDemonReward) XXX_DiscardUnknown() {
  9229. xxx_messageInfo_GuildDemonReward.DiscardUnknown(m)
  9230. }
  9231. var xxx_messageInfo_GuildDemonReward proto.InternalMessageInfo
  9232. func (m *GuildDemonReward) GetTotalDamage() uint64 {
  9233. if m != nil {
  9234. return m.TotalDamage
  9235. }
  9236. return 0
  9237. }
  9238. func (m *GuildDemonReward) GetDemonId() int32 {
  9239. if m != nil {
  9240. return m.DemonId
  9241. }
  9242. return 0
  9243. }
  9244. func (m *GuildDemonReward) GetDamageList() []*DemonDamage {
  9245. if m != nil {
  9246. return m.DamageList
  9247. }
  9248. return nil
  9249. }
  9250. type DemonInfo struct {
  9251. FreeFightCount int32 `protobuf:"varint,1,opt,name=free_fight_count,json=freeFightCount,proto3" json:"free_fight_count,omitempty"`
  9252. BuyFightCount int32 `protobuf:"varint,2,opt,name=buy_fight_count,json=buyFightCount,proto3" json:"buy_fight_count,omitempty"`
  9253. UseFightCount int32 `protobuf:"varint,3,opt,name=use_fight_count,json=useFightCount,proto3" json:"use_fight_count,omitempty"`
  9254. RefreshTime uint64 `protobuf:"varint,4,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  9255. LastFightTime uint64 `protobuf:"varint,5,opt,name=last_fight_time,json=lastFightTime,proto3" json:"last_fight_time,omitempty"`
  9256. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9257. XXX_unrecognized []byte `json:"-"`
  9258. XXX_sizecache int32 `json:"-"`
  9259. }
  9260. func (m *DemonInfo) Reset() { *m = DemonInfo{} }
  9261. func (m *DemonInfo) String() string { return proto.CompactTextString(m) }
  9262. func (*DemonInfo) ProtoMessage() {}
  9263. func (*DemonInfo) Descriptor() ([]byte, []int) {
  9264. return fileDescriptor_116e343673f7ffaf, []int{156}
  9265. }
  9266. func (m *DemonInfo) XXX_Unmarshal(b []byte) error {
  9267. return xxx_messageInfo_DemonInfo.Unmarshal(m, b)
  9268. }
  9269. func (m *DemonInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9270. return xxx_messageInfo_DemonInfo.Marshal(b, m, deterministic)
  9271. }
  9272. func (m *DemonInfo) XXX_Merge(src proto.Message) {
  9273. xxx_messageInfo_DemonInfo.Merge(m, src)
  9274. }
  9275. func (m *DemonInfo) XXX_Size() int {
  9276. return xxx_messageInfo_DemonInfo.Size(m)
  9277. }
  9278. func (m *DemonInfo) XXX_DiscardUnknown() {
  9279. xxx_messageInfo_DemonInfo.DiscardUnknown(m)
  9280. }
  9281. var xxx_messageInfo_DemonInfo proto.InternalMessageInfo
  9282. func (m *DemonInfo) GetFreeFightCount() int32 {
  9283. if m != nil {
  9284. return m.FreeFightCount
  9285. }
  9286. return 0
  9287. }
  9288. func (m *DemonInfo) GetBuyFightCount() int32 {
  9289. if m != nil {
  9290. return m.BuyFightCount
  9291. }
  9292. return 0
  9293. }
  9294. func (m *DemonInfo) GetUseFightCount() int32 {
  9295. if m != nil {
  9296. return m.UseFightCount
  9297. }
  9298. return 0
  9299. }
  9300. func (m *DemonInfo) GetRefreshTime() uint64 {
  9301. if m != nil {
  9302. return m.RefreshTime
  9303. }
  9304. return 0
  9305. }
  9306. func (m *DemonInfo) GetLastFightTime() uint64 {
  9307. if m != nil {
  9308. return m.LastFightTime
  9309. }
  9310. return 0
  9311. }
  9312. type RoleGuild struct {
  9313. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  9314. GuildActive *GuildActiveInfo `protobuf:"bytes,2,opt,name=guild_active,json=guildActive,proto3" json:"guild_active,omitempty"`
  9315. GuildApply *RoleApplyInfo `protobuf:"bytes,3,opt,name=guild_apply,json=guildApply,proto3" json:"guild_apply,omitempty"`
  9316. QuitNum int32 `protobuf:"varint,4,opt,name=quit_num,json=quitNum,proto3" json:"quit_num,omitempty"`
  9317. NextJoin int64 `protobuf:"varint,5,opt,name=next_join,json=nextJoin,proto3" json:"next_join,omitempty"`
  9318. BossFight []*GuildBossTickTime `protobuf:"bytes,6,rep,name=boss_fight,json=bossFight,proto3" json:"boss_fight,omitempty"`
  9319. GuildName string `protobuf:"bytes,7,opt,name=guild_name,json=guildName,proto3" json:"guild_name,omitempty"`
  9320. EliteBossCd uint64 `protobuf:"varint,8,opt,name=elite_boss_cd,json=eliteBossCd,proto3" json:"elite_boss_cd,omitempty"`
  9321. GuildBattle *GuildBattle `protobuf:"bytes,9,opt,name=guild_battle,json=guildBattle,proto3" json:"guild_battle,omitempty"`
  9322. DemonInfo *DemonInfo `protobuf:"bytes,10,opt,name=demon_info,json=demonInfo,proto3" json:"demon_info,omitempty"`
  9323. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9324. XXX_unrecognized []byte `json:"-"`
  9325. XXX_sizecache int32 `json:"-"`
  9326. }
  9327. func (m *RoleGuild) Reset() { *m = RoleGuild{} }
  9328. func (m *RoleGuild) String() string { return proto.CompactTextString(m) }
  9329. func (*RoleGuild) ProtoMessage() {}
  9330. func (*RoleGuild) Descriptor() ([]byte, []int) {
  9331. return fileDescriptor_116e343673f7ffaf, []int{157}
  9332. }
  9333. func (m *RoleGuild) XXX_Unmarshal(b []byte) error {
  9334. return xxx_messageInfo_RoleGuild.Unmarshal(m, b)
  9335. }
  9336. func (m *RoleGuild) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9337. return xxx_messageInfo_RoleGuild.Marshal(b, m, deterministic)
  9338. }
  9339. func (m *RoleGuild) XXX_Merge(src proto.Message) {
  9340. xxx_messageInfo_RoleGuild.Merge(m, src)
  9341. }
  9342. func (m *RoleGuild) XXX_Size() int {
  9343. return xxx_messageInfo_RoleGuild.Size(m)
  9344. }
  9345. func (m *RoleGuild) XXX_DiscardUnknown() {
  9346. xxx_messageInfo_RoleGuild.DiscardUnknown(m)
  9347. }
  9348. var xxx_messageInfo_RoleGuild proto.InternalMessageInfo
  9349. func (m *RoleGuild) GetGuildId() uint64 {
  9350. if m != nil {
  9351. return m.GuildId
  9352. }
  9353. return 0
  9354. }
  9355. func (m *RoleGuild) GetGuildActive() *GuildActiveInfo {
  9356. if m != nil {
  9357. return m.GuildActive
  9358. }
  9359. return nil
  9360. }
  9361. func (m *RoleGuild) GetGuildApply() *RoleApplyInfo {
  9362. if m != nil {
  9363. return m.GuildApply
  9364. }
  9365. return nil
  9366. }
  9367. func (m *RoleGuild) GetQuitNum() int32 {
  9368. if m != nil {
  9369. return m.QuitNum
  9370. }
  9371. return 0
  9372. }
  9373. func (m *RoleGuild) GetNextJoin() int64 {
  9374. if m != nil {
  9375. return m.NextJoin
  9376. }
  9377. return 0
  9378. }
  9379. func (m *RoleGuild) GetBossFight() []*GuildBossTickTime {
  9380. if m != nil {
  9381. return m.BossFight
  9382. }
  9383. return nil
  9384. }
  9385. func (m *RoleGuild) GetGuildName() string {
  9386. if m != nil {
  9387. return m.GuildName
  9388. }
  9389. return ""
  9390. }
  9391. func (m *RoleGuild) GetEliteBossCd() uint64 {
  9392. if m != nil {
  9393. return m.EliteBossCd
  9394. }
  9395. return 0
  9396. }
  9397. func (m *RoleGuild) GetGuildBattle() *GuildBattle {
  9398. if m != nil {
  9399. return m.GuildBattle
  9400. }
  9401. return nil
  9402. }
  9403. func (m *RoleGuild) GetDemonInfo() *DemonInfo {
  9404. if m != nil {
  9405. return m.DemonInfo
  9406. }
  9407. return nil
  9408. }
  9409. type GuildIdex struct {
  9410. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  9411. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9412. XXX_unrecognized []byte `json:"-"`
  9413. XXX_sizecache int32 `json:"-"`
  9414. }
  9415. func (m *GuildIdex) Reset() { *m = GuildIdex{} }
  9416. func (m *GuildIdex) String() string { return proto.CompactTextString(m) }
  9417. func (*GuildIdex) ProtoMessage() {}
  9418. func (*GuildIdex) Descriptor() ([]byte, []int) {
  9419. return fileDescriptor_116e343673f7ffaf, []int{158}
  9420. }
  9421. func (m *GuildIdex) XXX_Unmarshal(b []byte) error {
  9422. return xxx_messageInfo_GuildIdex.Unmarshal(m, b)
  9423. }
  9424. func (m *GuildIdex) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9425. return xxx_messageInfo_GuildIdex.Marshal(b, m, deterministic)
  9426. }
  9427. func (m *GuildIdex) XXX_Merge(src proto.Message) {
  9428. xxx_messageInfo_GuildIdex.Merge(m, src)
  9429. }
  9430. func (m *GuildIdex) XXX_Size() int {
  9431. return xxx_messageInfo_GuildIdex.Size(m)
  9432. }
  9433. func (m *GuildIdex) XXX_DiscardUnknown() {
  9434. xxx_messageInfo_GuildIdex.DiscardUnknown(m)
  9435. }
  9436. var xxx_messageInfo_GuildIdex proto.InternalMessageInfo
  9437. func (m *GuildIdex) GetGuildId() uint64 {
  9438. if m != nil {
  9439. return m.GuildId
  9440. }
  9441. return 0
  9442. }
  9443. type RushRoundData struct {
  9444. RushId int32 `protobuf:"varint,1,opt,name=rush_id,json=rushId,proto3" json:"rush_id,omitempty"`
  9445. StartTime uint64 `protobuf:"varint,2,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
  9446. CloseTime uint64 `protobuf:"varint,3,opt,name=close_time,json=closeTime,proto3" json:"close_time,omitempty"`
  9447. ResetTime uint64 `protobuf:"varint,4,opt,name=reset_time,json=resetTime,proto3" json:"reset_time,omitempty"`
  9448. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9449. XXX_unrecognized []byte `json:"-"`
  9450. XXX_sizecache int32 `json:"-"`
  9451. }
  9452. func (m *RushRoundData) Reset() { *m = RushRoundData{} }
  9453. func (m *RushRoundData) String() string { return proto.CompactTextString(m) }
  9454. func (*RushRoundData) ProtoMessage() {}
  9455. func (*RushRoundData) Descriptor() ([]byte, []int) {
  9456. return fileDescriptor_116e343673f7ffaf, []int{159}
  9457. }
  9458. func (m *RushRoundData) XXX_Unmarshal(b []byte) error {
  9459. return xxx_messageInfo_RushRoundData.Unmarshal(m, b)
  9460. }
  9461. func (m *RushRoundData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9462. return xxx_messageInfo_RushRoundData.Marshal(b, m, deterministic)
  9463. }
  9464. func (m *RushRoundData) XXX_Merge(src proto.Message) {
  9465. xxx_messageInfo_RushRoundData.Merge(m, src)
  9466. }
  9467. func (m *RushRoundData) XXX_Size() int {
  9468. return xxx_messageInfo_RushRoundData.Size(m)
  9469. }
  9470. func (m *RushRoundData) XXX_DiscardUnknown() {
  9471. xxx_messageInfo_RushRoundData.DiscardUnknown(m)
  9472. }
  9473. var xxx_messageInfo_RushRoundData proto.InternalMessageInfo
  9474. func (m *RushRoundData) GetRushId() int32 {
  9475. if m != nil {
  9476. return m.RushId
  9477. }
  9478. return 0
  9479. }
  9480. func (m *RushRoundData) GetStartTime() uint64 {
  9481. if m != nil {
  9482. return m.StartTime
  9483. }
  9484. return 0
  9485. }
  9486. func (m *RushRoundData) GetCloseTime() uint64 {
  9487. if m != nil {
  9488. return m.CloseTime
  9489. }
  9490. return 0
  9491. }
  9492. func (m *RushRoundData) GetResetTime() uint64 {
  9493. if m != nil {
  9494. return m.ResetTime
  9495. }
  9496. return 0
  9497. }
  9498. type RushData struct {
  9499. RushId int32 `protobuf:"varint,1,opt,name=rush_id,json=rushId,proto3" json:"rush_id,omitempty"`
  9500. RushStage int32 `protobuf:"varint,2,opt,name=rush_stage,json=rushStage,proto3" json:"rush_stage,omitempty"`
  9501. RewardList []uint64 `protobuf:"varint,3,rep,packed,name=reward_list,json=rewardList,proto3" json:"reward_list,omitempty"`
  9502. RoundData []*RushRoundData `protobuf:"bytes,4,rep,name=round_data,json=roundData,proto3" json:"round_data,omitempty"`
  9503. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9504. XXX_unrecognized []byte `json:"-"`
  9505. XXX_sizecache int32 `json:"-"`
  9506. }
  9507. func (m *RushData) Reset() { *m = RushData{} }
  9508. func (m *RushData) String() string { return proto.CompactTextString(m) }
  9509. func (*RushData) ProtoMessage() {}
  9510. func (*RushData) Descriptor() ([]byte, []int) {
  9511. return fileDescriptor_116e343673f7ffaf, []int{160}
  9512. }
  9513. func (m *RushData) XXX_Unmarshal(b []byte) error {
  9514. return xxx_messageInfo_RushData.Unmarshal(m, b)
  9515. }
  9516. func (m *RushData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9517. return xxx_messageInfo_RushData.Marshal(b, m, deterministic)
  9518. }
  9519. func (m *RushData) XXX_Merge(src proto.Message) {
  9520. xxx_messageInfo_RushData.Merge(m, src)
  9521. }
  9522. func (m *RushData) XXX_Size() int {
  9523. return xxx_messageInfo_RushData.Size(m)
  9524. }
  9525. func (m *RushData) XXX_DiscardUnknown() {
  9526. xxx_messageInfo_RushData.DiscardUnknown(m)
  9527. }
  9528. var xxx_messageInfo_RushData proto.InternalMessageInfo
  9529. func (m *RushData) GetRushId() int32 {
  9530. if m != nil {
  9531. return m.RushId
  9532. }
  9533. return 0
  9534. }
  9535. func (m *RushData) GetRushStage() int32 {
  9536. if m != nil {
  9537. return m.RushStage
  9538. }
  9539. return 0
  9540. }
  9541. func (m *RushData) GetRewardList() []uint64 {
  9542. if m != nil {
  9543. return m.RewardList
  9544. }
  9545. return nil
  9546. }
  9547. func (m *RushData) GetRoundData() []*RushRoundData {
  9548. if m != nil {
  9549. return m.RoundData
  9550. }
  9551. return nil
  9552. }
  9553. type GuildFightLog struct {
  9554. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  9555. FightTime uint64 `protobuf:"varint,2,opt,name=fight_time,json=fightTime,proto3" json:"fight_time,omitempty"`
  9556. Damage uint32 `protobuf:"varint,3,opt,name=damage,proto3" json:"damage,omitempty"`
  9557. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9558. XXX_unrecognized []byte `json:"-"`
  9559. XXX_sizecache int32 `json:"-"`
  9560. }
  9561. func (m *GuildFightLog) Reset() { *m = GuildFightLog{} }
  9562. func (m *GuildFightLog) String() string { return proto.CompactTextString(m) }
  9563. func (*GuildFightLog) ProtoMessage() {}
  9564. func (*GuildFightLog) Descriptor() ([]byte, []int) {
  9565. return fileDescriptor_116e343673f7ffaf, []int{161}
  9566. }
  9567. func (m *GuildFightLog) XXX_Unmarshal(b []byte) error {
  9568. return xxx_messageInfo_GuildFightLog.Unmarshal(m, b)
  9569. }
  9570. func (m *GuildFightLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9571. return xxx_messageInfo_GuildFightLog.Marshal(b, m, deterministic)
  9572. }
  9573. func (m *GuildFightLog) XXX_Merge(src proto.Message) {
  9574. xxx_messageInfo_GuildFightLog.Merge(m, src)
  9575. }
  9576. func (m *GuildFightLog) XXX_Size() int {
  9577. return xxx_messageInfo_GuildFightLog.Size(m)
  9578. }
  9579. func (m *GuildFightLog) XXX_DiscardUnknown() {
  9580. xxx_messageInfo_GuildFightLog.DiscardUnknown(m)
  9581. }
  9582. var xxx_messageInfo_GuildFightLog proto.InternalMessageInfo
  9583. func (m *GuildFightLog) GetUid() uint64 {
  9584. if m != nil {
  9585. return m.Uid
  9586. }
  9587. return 0
  9588. }
  9589. func (m *GuildFightLog) GetFightTime() uint64 {
  9590. if m != nil {
  9591. return m.FightTime
  9592. }
  9593. return 0
  9594. }
  9595. func (m *GuildFightLog) GetDamage() uint32 {
  9596. if m != nil {
  9597. return m.Damage
  9598. }
  9599. return 0
  9600. }
  9601. type GuildFight struct {
  9602. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  9603. Damage uint32 `protobuf:"varint,2,opt,name=damage,proto3" json:"damage,omitempty"`
  9604. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9605. XXX_unrecognized []byte `json:"-"`
  9606. XXX_sizecache int32 `json:"-"`
  9607. }
  9608. func (m *GuildFight) Reset() { *m = GuildFight{} }
  9609. func (m *GuildFight) String() string { return proto.CompactTextString(m) }
  9610. func (*GuildFight) ProtoMessage() {}
  9611. func (*GuildFight) Descriptor() ([]byte, []int) {
  9612. return fileDescriptor_116e343673f7ffaf, []int{162}
  9613. }
  9614. func (m *GuildFight) XXX_Unmarshal(b []byte) error {
  9615. return xxx_messageInfo_GuildFight.Unmarshal(m, b)
  9616. }
  9617. func (m *GuildFight) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9618. return xxx_messageInfo_GuildFight.Marshal(b, m, deterministic)
  9619. }
  9620. func (m *GuildFight) XXX_Merge(src proto.Message) {
  9621. xxx_messageInfo_GuildFight.Merge(m, src)
  9622. }
  9623. func (m *GuildFight) XXX_Size() int {
  9624. return xxx_messageInfo_GuildFight.Size(m)
  9625. }
  9626. func (m *GuildFight) XXX_DiscardUnknown() {
  9627. xxx_messageInfo_GuildFight.DiscardUnknown(m)
  9628. }
  9629. var xxx_messageInfo_GuildFight proto.InternalMessageInfo
  9630. func (m *GuildFight) GetUid() uint64 {
  9631. if m != nil {
  9632. return m.Uid
  9633. }
  9634. return 0
  9635. }
  9636. func (m *GuildFight) GetDamage() uint32 {
  9637. if m != nil {
  9638. return m.Damage
  9639. }
  9640. return 0
  9641. }
  9642. type GuildBossInfo struct {
  9643. MaxDam *GuildFight `protobuf:"bytes,1,opt,name=max_dam,json=maxDam,proto3" json:"max_dam,omitempty"`
  9644. FightLog []*GuildFightLog `protobuf:"bytes,2,rep,name=fight_log,json=fightLog,proto3" json:"fight_log,omitempty"`
  9645. RefreshTime uint64 `protobuf:"varint,3,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  9646. BossState int32 `protobuf:"varint,4,opt,name=boss_state,json=bossState,proto3" json:"boss_state,omitempty"`
  9647. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9648. XXX_unrecognized []byte `json:"-"`
  9649. XXX_sizecache int32 `json:"-"`
  9650. }
  9651. func (m *GuildBossInfo) Reset() { *m = GuildBossInfo{} }
  9652. func (m *GuildBossInfo) String() string { return proto.CompactTextString(m) }
  9653. func (*GuildBossInfo) ProtoMessage() {}
  9654. func (*GuildBossInfo) Descriptor() ([]byte, []int) {
  9655. return fileDescriptor_116e343673f7ffaf, []int{163}
  9656. }
  9657. func (m *GuildBossInfo) XXX_Unmarshal(b []byte) error {
  9658. return xxx_messageInfo_GuildBossInfo.Unmarshal(m, b)
  9659. }
  9660. func (m *GuildBossInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9661. return xxx_messageInfo_GuildBossInfo.Marshal(b, m, deterministic)
  9662. }
  9663. func (m *GuildBossInfo) XXX_Merge(src proto.Message) {
  9664. xxx_messageInfo_GuildBossInfo.Merge(m, src)
  9665. }
  9666. func (m *GuildBossInfo) XXX_Size() int {
  9667. return xxx_messageInfo_GuildBossInfo.Size(m)
  9668. }
  9669. func (m *GuildBossInfo) XXX_DiscardUnknown() {
  9670. xxx_messageInfo_GuildBossInfo.DiscardUnknown(m)
  9671. }
  9672. var xxx_messageInfo_GuildBossInfo proto.InternalMessageInfo
  9673. func (m *GuildBossInfo) GetMaxDam() *GuildFight {
  9674. if m != nil {
  9675. return m.MaxDam
  9676. }
  9677. return nil
  9678. }
  9679. func (m *GuildBossInfo) GetFightLog() []*GuildFightLog {
  9680. if m != nil {
  9681. return m.FightLog
  9682. }
  9683. return nil
  9684. }
  9685. func (m *GuildBossInfo) GetRefreshTime() uint64 {
  9686. if m != nil {
  9687. return m.RefreshTime
  9688. }
  9689. return 0
  9690. }
  9691. func (m *GuildBossInfo) GetBossState() int32 {
  9692. if m != nil {
  9693. return m.BossState
  9694. }
  9695. return 0
  9696. }
  9697. type GuildBoss struct {
  9698. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  9699. DayBoss []*GuildBossInfo `protobuf:"bytes,2,rep,name=day_boss,json=dayBoss,proto3" json:"day_boss,omitempty"`
  9700. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9701. XXX_unrecognized []byte `json:"-"`
  9702. XXX_sizecache int32 `json:"-"`
  9703. }
  9704. func (m *GuildBoss) Reset() { *m = GuildBoss{} }
  9705. func (m *GuildBoss) String() string { return proto.CompactTextString(m) }
  9706. func (*GuildBoss) ProtoMessage() {}
  9707. func (*GuildBoss) Descriptor() ([]byte, []int) {
  9708. return fileDescriptor_116e343673f7ffaf, []int{164}
  9709. }
  9710. func (m *GuildBoss) XXX_Unmarshal(b []byte) error {
  9711. return xxx_messageInfo_GuildBoss.Unmarshal(m, b)
  9712. }
  9713. func (m *GuildBoss) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9714. return xxx_messageInfo_GuildBoss.Marshal(b, m, deterministic)
  9715. }
  9716. func (m *GuildBoss) XXX_Merge(src proto.Message) {
  9717. xxx_messageInfo_GuildBoss.Merge(m, src)
  9718. }
  9719. func (m *GuildBoss) XXX_Size() int {
  9720. return xxx_messageInfo_GuildBoss.Size(m)
  9721. }
  9722. func (m *GuildBoss) XXX_DiscardUnknown() {
  9723. xxx_messageInfo_GuildBoss.DiscardUnknown(m)
  9724. }
  9725. var xxx_messageInfo_GuildBoss proto.InternalMessageInfo
  9726. func (m *GuildBoss) GetGuildId() uint64 {
  9727. if m != nil {
  9728. return m.GuildId
  9729. }
  9730. return 0
  9731. }
  9732. func (m *GuildBoss) GetDayBoss() []*GuildBossInfo {
  9733. if m != nil {
  9734. return m.DayBoss
  9735. }
  9736. return nil
  9737. }
  9738. type RoleApplayData struct {
  9739. ApplyGuild []uint64 `protobuf:"varint,1,rep,packed,name=apply_guild,json=applyGuild,proto3" json:"apply_guild,omitempty"`
  9740. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9741. XXX_unrecognized []byte `json:"-"`
  9742. XXX_sizecache int32 `json:"-"`
  9743. }
  9744. func (m *RoleApplayData) Reset() { *m = RoleApplayData{} }
  9745. func (m *RoleApplayData) String() string { return proto.CompactTextString(m) }
  9746. func (*RoleApplayData) ProtoMessage() {}
  9747. func (*RoleApplayData) Descriptor() ([]byte, []int) {
  9748. return fileDescriptor_116e343673f7ffaf, []int{165}
  9749. }
  9750. func (m *RoleApplayData) XXX_Unmarshal(b []byte) error {
  9751. return xxx_messageInfo_RoleApplayData.Unmarshal(m, b)
  9752. }
  9753. func (m *RoleApplayData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9754. return xxx_messageInfo_RoleApplayData.Marshal(b, m, deterministic)
  9755. }
  9756. func (m *RoleApplayData) XXX_Merge(src proto.Message) {
  9757. xxx_messageInfo_RoleApplayData.Merge(m, src)
  9758. }
  9759. func (m *RoleApplayData) XXX_Size() int {
  9760. return xxx_messageInfo_RoleApplayData.Size(m)
  9761. }
  9762. func (m *RoleApplayData) XXX_DiscardUnknown() {
  9763. xxx_messageInfo_RoleApplayData.DiscardUnknown(m)
  9764. }
  9765. var xxx_messageInfo_RoleApplayData proto.InternalMessageInfo
  9766. func (m *RoleApplayData) GetApplyGuild() []uint64 {
  9767. if m != nil {
  9768. return m.ApplyGuild
  9769. }
  9770. return nil
  9771. }
  9772. type GuildApplayData struct {
  9773. ApplyGuild []uint64 `protobuf:"varint,1,rep,packed,name=apply_guild,json=applyGuild,proto3" json:"apply_guild,omitempty"`
  9774. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9775. XXX_unrecognized []byte `json:"-"`
  9776. XXX_sizecache int32 `json:"-"`
  9777. }
  9778. func (m *GuildApplayData) Reset() { *m = GuildApplayData{} }
  9779. func (m *GuildApplayData) String() string { return proto.CompactTextString(m) }
  9780. func (*GuildApplayData) ProtoMessage() {}
  9781. func (*GuildApplayData) Descriptor() ([]byte, []int) {
  9782. return fileDescriptor_116e343673f7ffaf, []int{166}
  9783. }
  9784. func (m *GuildApplayData) XXX_Unmarshal(b []byte) error {
  9785. return xxx_messageInfo_GuildApplayData.Unmarshal(m, b)
  9786. }
  9787. func (m *GuildApplayData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9788. return xxx_messageInfo_GuildApplayData.Marshal(b, m, deterministic)
  9789. }
  9790. func (m *GuildApplayData) XXX_Merge(src proto.Message) {
  9791. xxx_messageInfo_GuildApplayData.Merge(m, src)
  9792. }
  9793. func (m *GuildApplayData) XXX_Size() int {
  9794. return xxx_messageInfo_GuildApplayData.Size(m)
  9795. }
  9796. func (m *GuildApplayData) XXX_DiscardUnknown() {
  9797. xxx_messageInfo_GuildApplayData.DiscardUnknown(m)
  9798. }
  9799. var xxx_messageInfo_GuildApplayData proto.InternalMessageInfo
  9800. func (m *GuildApplayData) GetApplyGuild() []uint64 {
  9801. if m != nil {
  9802. return m.ApplyGuild
  9803. }
  9804. return nil
  9805. }
  9806. // 公会战个人数据
  9807. type GuildBattleSelfData struct {
  9808. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  9809. GuildId uint64 `protobuf:"varint,2,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  9810. ChallengeNum int32 `protobuf:"varint,3,opt,name=challenge_num,json=challengeNum,proto3" json:"challenge_num,omitempty"`
  9811. BuffList []*KeyValueType `protobuf:"bytes,4,rep,name=buff_list,json=buffList,proto3" json:"buff_list,omitempty"`
  9812. RebornEndTime uint64 `protobuf:"varint,5,opt,name=reborn_end_time,json=rebornEndTime,proto3" json:"reborn_end_time,omitempty"`
  9813. AutoChallenge bool `protobuf:"varint,6,opt,name=auto_challenge,json=autoChallenge,proto3" json:"auto_challenge,omitempty"`
  9814. AutoReborn bool `protobuf:"varint,7,opt,name=auto_reborn,json=autoReborn,proto3" json:"auto_reborn,omitempty"`
  9815. WinNum int32 `protobuf:"varint,8,opt,name=win_num,json=winNum,proto3" json:"win_num,omitempty"`
  9816. WinStrak int32 `protobuf:"varint,9,opt,name=win_strak,json=winStrak,proto3" json:"win_strak,omitempty"`
  9817. GuildPre bool `protobuf:"varint,10,opt,name=guild_pre,json=guildPre,proto3" json:"guild_pre,omitempty"`
  9818. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9819. XXX_unrecognized []byte `json:"-"`
  9820. XXX_sizecache int32 `json:"-"`
  9821. }
  9822. func (m *GuildBattleSelfData) Reset() { *m = GuildBattleSelfData{} }
  9823. func (m *GuildBattleSelfData) String() string { return proto.CompactTextString(m) }
  9824. func (*GuildBattleSelfData) ProtoMessage() {}
  9825. func (*GuildBattleSelfData) Descriptor() ([]byte, []int) {
  9826. return fileDescriptor_116e343673f7ffaf, []int{167}
  9827. }
  9828. func (m *GuildBattleSelfData) XXX_Unmarshal(b []byte) error {
  9829. return xxx_messageInfo_GuildBattleSelfData.Unmarshal(m, b)
  9830. }
  9831. func (m *GuildBattleSelfData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9832. return xxx_messageInfo_GuildBattleSelfData.Marshal(b, m, deterministic)
  9833. }
  9834. func (m *GuildBattleSelfData) XXX_Merge(src proto.Message) {
  9835. xxx_messageInfo_GuildBattleSelfData.Merge(m, src)
  9836. }
  9837. func (m *GuildBattleSelfData) XXX_Size() int {
  9838. return xxx_messageInfo_GuildBattleSelfData.Size(m)
  9839. }
  9840. func (m *GuildBattleSelfData) XXX_DiscardUnknown() {
  9841. xxx_messageInfo_GuildBattleSelfData.DiscardUnknown(m)
  9842. }
  9843. var xxx_messageInfo_GuildBattleSelfData proto.InternalMessageInfo
  9844. func (m *GuildBattleSelfData) GetUid() uint64 {
  9845. if m != nil {
  9846. return m.Uid
  9847. }
  9848. return 0
  9849. }
  9850. func (m *GuildBattleSelfData) GetGuildId() uint64 {
  9851. if m != nil {
  9852. return m.GuildId
  9853. }
  9854. return 0
  9855. }
  9856. func (m *GuildBattleSelfData) GetChallengeNum() int32 {
  9857. if m != nil {
  9858. return m.ChallengeNum
  9859. }
  9860. return 0
  9861. }
  9862. func (m *GuildBattleSelfData) GetBuffList() []*KeyValueType {
  9863. if m != nil {
  9864. return m.BuffList
  9865. }
  9866. return nil
  9867. }
  9868. func (m *GuildBattleSelfData) GetRebornEndTime() uint64 {
  9869. if m != nil {
  9870. return m.RebornEndTime
  9871. }
  9872. return 0
  9873. }
  9874. func (m *GuildBattleSelfData) GetAutoChallenge() bool {
  9875. if m != nil {
  9876. return m.AutoChallenge
  9877. }
  9878. return false
  9879. }
  9880. func (m *GuildBattleSelfData) GetAutoReborn() bool {
  9881. if m != nil {
  9882. return m.AutoReborn
  9883. }
  9884. return false
  9885. }
  9886. func (m *GuildBattleSelfData) GetWinNum() int32 {
  9887. if m != nil {
  9888. return m.WinNum
  9889. }
  9890. return 0
  9891. }
  9892. func (m *GuildBattleSelfData) GetWinStrak() int32 {
  9893. if m != nil {
  9894. return m.WinStrak
  9895. }
  9896. return 0
  9897. }
  9898. func (m *GuildBattleSelfData) GetGuildPre() bool {
  9899. if m != nil {
  9900. return m.GuildPre
  9901. }
  9902. return false
  9903. }
  9904. // 公会战位置数据
  9905. type GuildPosIdxData struct {
  9906. PosIdx int32 `protobuf:"varint,1,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  9907. GuildId uint64 `protobuf:"varint,2,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  9908. Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
  9909. OwnerBrief *CommonPlayerBriefInfo `protobuf:"bytes,4,opt,name=owner_brief,json=ownerBrief,proto3" json:"owner_brief,omitempty"`
  9910. FightEndTime uint64 `protobuf:"varint,5,opt,name=fight_end_time,json=fightEndTime,proto3" json:"fight_end_time,omitempty"`
  9911. FightStartTime uint64 `protobuf:"varint,6,opt,name=fight_start_time,json=fightStartTime,proto3" json:"fight_start_time,omitempty"`
  9912. ChallengeUid uint64 `protobuf:"varint,7,opt,name=challenge_uid,json=challengeUid,proto3" json:"challenge_uid,omitempty"`
  9913. FightPingTime uint64 `protobuf:"varint,8,opt,name=fight_ping_time,json=fightPingTime,proto3" json:"fight_ping_time,omitempty"`
  9914. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  9915. XXX_unrecognized []byte `json:"-"`
  9916. XXX_sizecache int32 `json:"-"`
  9917. }
  9918. func (m *GuildPosIdxData) Reset() { *m = GuildPosIdxData{} }
  9919. func (m *GuildPosIdxData) String() string { return proto.CompactTextString(m) }
  9920. func (*GuildPosIdxData) ProtoMessage() {}
  9921. func (*GuildPosIdxData) Descriptor() ([]byte, []int) {
  9922. return fileDescriptor_116e343673f7ffaf, []int{168}
  9923. }
  9924. func (m *GuildPosIdxData) XXX_Unmarshal(b []byte) error {
  9925. return xxx_messageInfo_GuildPosIdxData.Unmarshal(m, b)
  9926. }
  9927. func (m *GuildPosIdxData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  9928. return xxx_messageInfo_GuildPosIdxData.Marshal(b, m, deterministic)
  9929. }
  9930. func (m *GuildPosIdxData) XXX_Merge(src proto.Message) {
  9931. xxx_messageInfo_GuildPosIdxData.Merge(m, src)
  9932. }
  9933. func (m *GuildPosIdxData) XXX_Size() int {
  9934. return xxx_messageInfo_GuildPosIdxData.Size(m)
  9935. }
  9936. func (m *GuildPosIdxData) XXX_DiscardUnknown() {
  9937. xxx_messageInfo_GuildPosIdxData.DiscardUnknown(m)
  9938. }
  9939. var xxx_messageInfo_GuildPosIdxData proto.InternalMessageInfo
  9940. func (m *GuildPosIdxData) GetPosIdx() int32 {
  9941. if m != nil {
  9942. return m.PosIdx
  9943. }
  9944. return 0
  9945. }
  9946. func (m *GuildPosIdxData) GetGuildId() uint64 {
  9947. if m != nil {
  9948. return m.GuildId
  9949. }
  9950. return 0
  9951. }
  9952. func (m *GuildPosIdxData) GetUid() uint64 {
  9953. if m != nil {
  9954. return m.Uid
  9955. }
  9956. return 0
  9957. }
  9958. func (m *GuildPosIdxData) GetOwnerBrief() *CommonPlayerBriefInfo {
  9959. if m != nil {
  9960. return m.OwnerBrief
  9961. }
  9962. return nil
  9963. }
  9964. func (m *GuildPosIdxData) GetFightEndTime() uint64 {
  9965. if m != nil {
  9966. return m.FightEndTime
  9967. }
  9968. return 0
  9969. }
  9970. func (m *GuildPosIdxData) GetFightStartTime() uint64 {
  9971. if m != nil {
  9972. return m.FightStartTime
  9973. }
  9974. return 0
  9975. }
  9976. func (m *GuildPosIdxData) GetChallengeUid() uint64 {
  9977. if m != nil {
  9978. return m.ChallengeUid
  9979. }
  9980. return 0
  9981. }
  9982. func (m *GuildPosIdxData) GetFightPingTime() uint64 {
  9983. if m != nil {
  9984. return m.FightPingTime
  9985. }
  9986. return 0
  9987. }
  9988. // 占领日志
  9989. type GuildBattleLog struct {
  9990. Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
  9991. RecordTime uint64 `protobuf:"varint,2,opt,name=record_time,json=recordTime,proto3" json:"record_time,omitempty"`
  9992. State bool `protobuf:"varint,3,opt,name=state,proto3" json:"state,omitempty"`
  9993. PosIdx int32 `protobuf:"varint,4,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  9994. TargetPlayerName string `protobuf:"bytes,5,opt,name=target_player_name,json=targetPlayerName,proto3" json:"target_player_name,omitempty"`
  9995. TargetGuildId uint64 `protobuf:"varint,6,opt,name=target_guild_id,json=targetGuildId,proto3" json:"target_guild_id,omitempty"`
  9996. TargetPlayerUid uint64 `protobuf:"varint,7,opt,name=target_player_uid,json=targetPlayerUid,proto3" json:"target_player_uid,omitempty"`
  9997. ChallengePlayerName string `protobuf:"bytes,8,opt,name=challenge_player_name,json=challengePlayerName,proto3" json:"challenge_player_name,omitempty"`
  9998. ChallengeGuildId uint64 `protobuf:"varint,9,opt,name=challenge_guild_id,json=challengeGuildId,proto3" json:"challenge_guild_id,omitempty"`
  9999. ChallengePlayerUid uint64 `protobuf:"varint,10,opt,name=challenge_player_uid,json=challengePlayerUid,proto3" json:"challenge_player_uid,omitempty"`
  10000. WinSteak int32 `protobuf:"varint,11,opt,name=win_steak,json=winSteak,proto3" json:"win_steak,omitempty"`
  10001. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10002. XXX_unrecognized []byte `json:"-"`
  10003. XXX_sizecache int32 `json:"-"`
  10004. }
  10005. func (m *GuildBattleLog) Reset() { *m = GuildBattleLog{} }
  10006. func (m *GuildBattleLog) String() string { return proto.CompactTextString(m) }
  10007. func (*GuildBattleLog) ProtoMessage() {}
  10008. func (*GuildBattleLog) Descriptor() ([]byte, []int) {
  10009. return fileDescriptor_116e343673f7ffaf, []int{169}
  10010. }
  10011. func (m *GuildBattleLog) XXX_Unmarshal(b []byte) error {
  10012. return xxx_messageInfo_GuildBattleLog.Unmarshal(m, b)
  10013. }
  10014. func (m *GuildBattleLog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10015. return xxx_messageInfo_GuildBattleLog.Marshal(b, m, deterministic)
  10016. }
  10017. func (m *GuildBattleLog) XXX_Merge(src proto.Message) {
  10018. xxx_messageInfo_GuildBattleLog.Merge(m, src)
  10019. }
  10020. func (m *GuildBattleLog) XXX_Size() int {
  10021. return xxx_messageInfo_GuildBattleLog.Size(m)
  10022. }
  10023. func (m *GuildBattleLog) XXX_DiscardUnknown() {
  10024. xxx_messageInfo_GuildBattleLog.DiscardUnknown(m)
  10025. }
  10026. var xxx_messageInfo_GuildBattleLog proto.InternalMessageInfo
  10027. func (m *GuildBattleLog) GetType() int32 {
  10028. if m != nil {
  10029. return m.Type
  10030. }
  10031. return 0
  10032. }
  10033. func (m *GuildBattleLog) GetRecordTime() uint64 {
  10034. if m != nil {
  10035. return m.RecordTime
  10036. }
  10037. return 0
  10038. }
  10039. func (m *GuildBattleLog) GetState() bool {
  10040. if m != nil {
  10041. return m.State
  10042. }
  10043. return false
  10044. }
  10045. func (m *GuildBattleLog) GetPosIdx() int32 {
  10046. if m != nil {
  10047. return m.PosIdx
  10048. }
  10049. return 0
  10050. }
  10051. func (m *GuildBattleLog) GetTargetPlayerName() string {
  10052. if m != nil {
  10053. return m.TargetPlayerName
  10054. }
  10055. return ""
  10056. }
  10057. func (m *GuildBattleLog) GetTargetGuildId() uint64 {
  10058. if m != nil {
  10059. return m.TargetGuildId
  10060. }
  10061. return 0
  10062. }
  10063. func (m *GuildBattleLog) GetTargetPlayerUid() uint64 {
  10064. if m != nil {
  10065. return m.TargetPlayerUid
  10066. }
  10067. return 0
  10068. }
  10069. func (m *GuildBattleLog) GetChallengePlayerName() string {
  10070. if m != nil {
  10071. return m.ChallengePlayerName
  10072. }
  10073. return ""
  10074. }
  10075. func (m *GuildBattleLog) GetChallengeGuildId() uint64 {
  10076. if m != nil {
  10077. return m.ChallengeGuildId
  10078. }
  10079. return 0
  10080. }
  10081. func (m *GuildBattleLog) GetChallengePlayerUid() uint64 {
  10082. if m != nil {
  10083. return m.ChallengePlayerUid
  10084. }
  10085. return 0
  10086. }
  10087. func (m *GuildBattleLog) GetWinSteak() int32 {
  10088. if m != nil {
  10089. return m.WinSteak
  10090. }
  10091. return 0
  10092. }
  10093. type GuildBattleBaseData struct {
  10094. BattleStartTime uint64 `protobuf:"varint,1,opt,name=battle_start_time,json=battleStartTime,proto3" json:"battle_start_time,omitempty"`
  10095. BattleEndTime uint64 `protobuf:"varint,2,opt,name=battle_end_time,json=battleEndTime,proto3" json:"battle_end_time,omitempty"`
  10096. ScoreList []*KeyValueType64 `protobuf:"bytes,3,rep,name=score_list,json=scoreList,proto3" json:"score_list,omitempty"`
  10097. ScoreMvp []uint64 `protobuf:"varint,4,rep,packed,name=score_mvp,json=scoreMvp,proto3" json:"score_mvp,omitempty"`
  10098. KillerMvp []uint64 `protobuf:"varint,5,rep,packed,name=killer_mvp,json=killerMvp,proto3" json:"killer_mvp,omitempty"`
  10099. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10100. XXX_unrecognized []byte `json:"-"`
  10101. XXX_sizecache int32 `json:"-"`
  10102. }
  10103. func (m *GuildBattleBaseData) Reset() { *m = GuildBattleBaseData{} }
  10104. func (m *GuildBattleBaseData) String() string { return proto.CompactTextString(m) }
  10105. func (*GuildBattleBaseData) ProtoMessage() {}
  10106. func (*GuildBattleBaseData) Descriptor() ([]byte, []int) {
  10107. return fileDescriptor_116e343673f7ffaf, []int{170}
  10108. }
  10109. func (m *GuildBattleBaseData) XXX_Unmarshal(b []byte) error {
  10110. return xxx_messageInfo_GuildBattleBaseData.Unmarshal(m, b)
  10111. }
  10112. func (m *GuildBattleBaseData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10113. return xxx_messageInfo_GuildBattleBaseData.Marshal(b, m, deterministic)
  10114. }
  10115. func (m *GuildBattleBaseData) XXX_Merge(src proto.Message) {
  10116. xxx_messageInfo_GuildBattleBaseData.Merge(m, src)
  10117. }
  10118. func (m *GuildBattleBaseData) XXX_Size() int {
  10119. return xxx_messageInfo_GuildBattleBaseData.Size(m)
  10120. }
  10121. func (m *GuildBattleBaseData) XXX_DiscardUnknown() {
  10122. xxx_messageInfo_GuildBattleBaseData.DiscardUnknown(m)
  10123. }
  10124. var xxx_messageInfo_GuildBattleBaseData proto.InternalMessageInfo
  10125. func (m *GuildBattleBaseData) GetBattleStartTime() uint64 {
  10126. if m != nil {
  10127. return m.BattleStartTime
  10128. }
  10129. return 0
  10130. }
  10131. func (m *GuildBattleBaseData) GetBattleEndTime() uint64 {
  10132. if m != nil {
  10133. return m.BattleEndTime
  10134. }
  10135. return 0
  10136. }
  10137. func (m *GuildBattleBaseData) GetScoreList() []*KeyValueType64 {
  10138. if m != nil {
  10139. return m.ScoreList
  10140. }
  10141. return nil
  10142. }
  10143. func (m *GuildBattleBaseData) GetScoreMvp() []uint64 {
  10144. if m != nil {
  10145. return m.ScoreMvp
  10146. }
  10147. return nil
  10148. }
  10149. func (m *GuildBattleBaseData) GetKillerMvp() []uint64 {
  10150. if m != nil {
  10151. return m.KillerMvp
  10152. }
  10153. return nil
  10154. }
  10155. // 公会战基础信息
  10156. type GuildBattleBase struct {
  10157. GuildBattleId int32 `protobuf:"varint,1,opt,name=guild_battle_id,json=guildBattleId,proto3" json:"guild_battle_id,omitempty"`
  10158. CurGuildStart uint64 `protobuf:"varint,2,opt,name=cur_guild_start,json=curGuildStart,proto3" json:"cur_guild_start,omitempty"`
  10159. GuildBattleState int32 `protobuf:"varint,3,opt,name=guild_battle_state,json=guildBattleState,proto3" json:"guild_battle_state,omitempty"`
  10160. NextStageBegin uint64 `protobuf:"varint,4,opt,name=next_stage_begin,json=nextStageBegin,proto3" json:"next_stage_begin,omitempty"`
  10161. NextBattleBegin uint64 `protobuf:"varint,5,opt,name=next_battle_begin,json=nextBattleBegin,proto3" json:"next_battle_begin,omitempty"`
  10162. TournamentPrepare uint64 `protobuf:"varint,6,opt,name=tournament_prepare,json=tournamentPrepare,proto3" json:"tournament_prepare,omitempty"`
  10163. TournamentBegin uint64 `protobuf:"varint,7,opt,name=tournament_begin,json=tournamentBegin,proto3" json:"tournament_begin,omitempty"`
  10164. TournamentEnd uint64 `protobuf:"varint,8,opt,name=tournament_end,json=tournamentEnd,proto3" json:"tournament_end,omitempty"`
  10165. SemifinalsPrepare uint64 `protobuf:"varint,9,opt,name=semifinals_prepare,json=semifinalsPrepare,proto3" json:"semifinals_prepare,omitempty"`
  10166. SemifinalsBegin uint64 `protobuf:"varint,10,opt,name=semifinals_begin,json=semifinalsBegin,proto3" json:"semifinals_begin,omitempty"`
  10167. SemifinalsEnd uint64 `protobuf:"varint,11,opt,name=semifinals_end,json=semifinalsEnd,proto3" json:"semifinals_end,omitempty"`
  10168. FinalsPrepare uint64 `protobuf:"varint,12,opt,name=finals_prepare,json=finalsPrepare,proto3" json:"finals_prepare,omitempty"`
  10169. FinalsBegin uint64 `protobuf:"varint,13,opt,name=finals_begin,json=finalsBegin,proto3" json:"finals_begin,omitempty"`
  10170. FinalsEnd uint64 `protobuf:"varint,14,opt,name=finals_end,json=finalsEnd,proto3" json:"finals_end,omitempty"`
  10171. ShowEnd uint64 `protobuf:"varint,15,opt,name=show_end,json=showEnd,proto3" json:"show_end,omitempty"`
  10172. IsOpen int32 `protobuf:"varint,16,opt,name=is_open,json=isOpen,proto3" json:"is_open,omitempty"`
  10173. RewardState int32 `protobuf:"varint,17,opt,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  10174. BanType int32 `protobuf:"varint,18,opt,name=ban_type,json=banType,proto3" json:"ban_type,omitempty"`
  10175. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10176. XXX_unrecognized []byte `json:"-"`
  10177. XXX_sizecache int32 `json:"-"`
  10178. }
  10179. func (m *GuildBattleBase) Reset() { *m = GuildBattleBase{} }
  10180. func (m *GuildBattleBase) String() string { return proto.CompactTextString(m) }
  10181. func (*GuildBattleBase) ProtoMessage() {}
  10182. func (*GuildBattleBase) Descriptor() ([]byte, []int) {
  10183. return fileDescriptor_116e343673f7ffaf, []int{171}
  10184. }
  10185. func (m *GuildBattleBase) XXX_Unmarshal(b []byte) error {
  10186. return xxx_messageInfo_GuildBattleBase.Unmarshal(m, b)
  10187. }
  10188. func (m *GuildBattleBase) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10189. return xxx_messageInfo_GuildBattleBase.Marshal(b, m, deterministic)
  10190. }
  10191. func (m *GuildBattleBase) XXX_Merge(src proto.Message) {
  10192. xxx_messageInfo_GuildBattleBase.Merge(m, src)
  10193. }
  10194. func (m *GuildBattleBase) XXX_Size() int {
  10195. return xxx_messageInfo_GuildBattleBase.Size(m)
  10196. }
  10197. func (m *GuildBattleBase) XXX_DiscardUnknown() {
  10198. xxx_messageInfo_GuildBattleBase.DiscardUnknown(m)
  10199. }
  10200. var xxx_messageInfo_GuildBattleBase proto.InternalMessageInfo
  10201. func (m *GuildBattleBase) GetGuildBattleId() int32 {
  10202. if m != nil {
  10203. return m.GuildBattleId
  10204. }
  10205. return 0
  10206. }
  10207. func (m *GuildBattleBase) GetCurGuildStart() uint64 {
  10208. if m != nil {
  10209. return m.CurGuildStart
  10210. }
  10211. return 0
  10212. }
  10213. func (m *GuildBattleBase) GetGuildBattleState() int32 {
  10214. if m != nil {
  10215. return m.GuildBattleState
  10216. }
  10217. return 0
  10218. }
  10219. func (m *GuildBattleBase) GetNextStageBegin() uint64 {
  10220. if m != nil {
  10221. return m.NextStageBegin
  10222. }
  10223. return 0
  10224. }
  10225. func (m *GuildBattleBase) GetNextBattleBegin() uint64 {
  10226. if m != nil {
  10227. return m.NextBattleBegin
  10228. }
  10229. return 0
  10230. }
  10231. func (m *GuildBattleBase) GetTournamentPrepare() uint64 {
  10232. if m != nil {
  10233. return m.TournamentPrepare
  10234. }
  10235. return 0
  10236. }
  10237. func (m *GuildBattleBase) GetTournamentBegin() uint64 {
  10238. if m != nil {
  10239. return m.TournamentBegin
  10240. }
  10241. return 0
  10242. }
  10243. func (m *GuildBattleBase) GetTournamentEnd() uint64 {
  10244. if m != nil {
  10245. return m.TournamentEnd
  10246. }
  10247. return 0
  10248. }
  10249. func (m *GuildBattleBase) GetSemifinalsPrepare() uint64 {
  10250. if m != nil {
  10251. return m.SemifinalsPrepare
  10252. }
  10253. return 0
  10254. }
  10255. func (m *GuildBattleBase) GetSemifinalsBegin() uint64 {
  10256. if m != nil {
  10257. return m.SemifinalsBegin
  10258. }
  10259. return 0
  10260. }
  10261. func (m *GuildBattleBase) GetSemifinalsEnd() uint64 {
  10262. if m != nil {
  10263. return m.SemifinalsEnd
  10264. }
  10265. return 0
  10266. }
  10267. func (m *GuildBattleBase) GetFinalsPrepare() uint64 {
  10268. if m != nil {
  10269. return m.FinalsPrepare
  10270. }
  10271. return 0
  10272. }
  10273. func (m *GuildBattleBase) GetFinalsBegin() uint64 {
  10274. if m != nil {
  10275. return m.FinalsBegin
  10276. }
  10277. return 0
  10278. }
  10279. func (m *GuildBattleBase) GetFinalsEnd() uint64 {
  10280. if m != nil {
  10281. return m.FinalsEnd
  10282. }
  10283. return 0
  10284. }
  10285. func (m *GuildBattleBase) GetShowEnd() uint64 {
  10286. if m != nil {
  10287. return m.ShowEnd
  10288. }
  10289. return 0
  10290. }
  10291. func (m *GuildBattleBase) GetIsOpen() int32 {
  10292. if m != nil {
  10293. return m.IsOpen
  10294. }
  10295. return 0
  10296. }
  10297. func (m *GuildBattleBase) GetRewardState() int32 {
  10298. if m != nil {
  10299. return m.RewardState
  10300. }
  10301. return 0
  10302. }
  10303. func (m *GuildBattleBase) GetBanType() int32 {
  10304. if m != nil {
  10305. return m.BanType
  10306. }
  10307. return 0
  10308. }
  10309. type CountTableData struct {
  10310. BattleIndex int32 `protobuf:"varint,1,opt,name=battle_index,json=battleIndex,proto3" json:"battle_index,omitempty"`
  10311. Guild1Id uint64 `protobuf:"varint,2,opt,name=guild1_id,json=guild1Id,proto3" json:"guild1_id,omitempty"`
  10312. Guild1Name string `protobuf:"bytes,3,opt,name=guild1_name,json=guild1Name,proto3" json:"guild1_name,omitempty"`
  10313. Guild1Badge int32 `protobuf:"varint,4,opt,name=guild1_badge,json=guild1Badge,proto3" json:"guild1_badge,omitempty"`
  10314. Guild2Id uint64 `protobuf:"varint,5,opt,name=guild2_id,json=guild2Id,proto3" json:"guild2_id,omitempty"`
  10315. Guild2Name string `protobuf:"bytes,6,opt,name=guild2_name,json=guild2Name,proto3" json:"guild2_name,omitempty"`
  10316. Guild2Badge int32 `protobuf:"varint,7,opt,name=guild2_badge,json=guild2Badge,proto3" json:"guild2_badge,omitempty"`
  10317. WinGuild bool `protobuf:"varint,8,opt,name=win_guild,json=winGuild,proto3" json:"win_guild,omitempty"`
  10318. WinType int32 `protobuf:"varint,9,opt,name=win_type,json=winType,proto3" json:"win_type,omitempty"`
  10319. State int32 `protobuf:"varint,10,opt,name=state,proto3" json:"state,omitempty"`
  10320. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10321. XXX_unrecognized []byte `json:"-"`
  10322. XXX_sizecache int32 `json:"-"`
  10323. }
  10324. func (m *CountTableData) Reset() { *m = CountTableData{} }
  10325. func (m *CountTableData) String() string { return proto.CompactTextString(m) }
  10326. func (*CountTableData) ProtoMessage() {}
  10327. func (*CountTableData) Descriptor() ([]byte, []int) {
  10328. return fileDescriptor_116e343673f7ffaf, []int{172}
  10329. }
  10330. func (m *CountTableData) XXX_Unmarshal(b []byte) error {
  10331. return xxx_messageInfo_CountTableData.Unmarshal(m, b)
  10332. }
  10333. func (m *CountTableData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10334. return xxx_messageInfo_CountTableData.Marshal(b, m, deterministic)
  10335. }
  10336. func (m *CountTableData) XXX_Merge(src proto.Message) {
  10337. xxx_messageInfo_CountTableData.Merge(m, src)
  10338. }
  10339. func (m *CountTableData) XXX_Size() int {
  10340. return xxx_messageInfo_CountTableData.Size(m)
  10341. }
  10342. func (m *CountTableData) XXX_DiscardUnknown() {
  10343. xxx_messageInfo_CountTableData.DiscardUnknown(m)
  10344. }
  10345. var xxx_messageInfo_CountTableData proto.InternalMessageInfo
  10346. func (m *CountTableData) GetBattleIndex() int32 {
  10347. if m != nil {
  10348. return m.BattleIndex
  10349. }
  10350. return 0
  10351. }
  10352. func (m *CountTableData) GetGuild1Id() uint64 {
  10353. if m != nil {
  10354. return m.Guild1Id
  10355. }
  10356. return 0
  10357. }
  10358. func (m *CountTableData) GetGuild1Name() string {
  10359. if m != nil {
  10360. return m.Guild1Name
  10361. }
  10362. return ""
  10363. }
  10364. func (m *CountTableData) GetGuild1Badge() int32 {
  10365. if m != nil {
  10366. return m.Guild1Badge
  10367. }
  10368. return 0
  10369. }
  10370. func (m *CountTableData) GetGuild2Id() uint64 {
  10371. if m != nil {
  10372. return m.Guild2Id
  10373. }
  10374. return 0
  10375. }
  10376. func (m *CountTableData) GetGuild2Name() string {
  10377. if m != nil {
  10378. return m.Guild2Name
  10379. }
  10380. return ""
  10381. }
  10382. func (m *CountTableData) GetGuild2Badge() int32 {
  10383. if m != nil {
  10384. return m.Guild2Badge
  10385. }
  10386. return 0
  10387. }
  10388. func (m *CountTableData) GetWinGuild() bool {
  10389. if m != nil {
  10390. return m.WinGuild
  10391. }
  10392. return false
  10393. }
  10394. func (m *CountTableData) GetWinType() int32 {
  10395. if m != nil {
  10396. return m.WinType
  10397. }
  10398. return 0
  10399. }
  10400. func (m *CountTableData) GetState() int32 {
  10401. if m != nil {
  10402. return m.State
  10403. }
  10404. return 0
  10405. }
  10406. // 公会战对阵表
  10407. type GuildCountPartTable struct {
  10408. Data []*CountTableData `protobuf:"bytes,1,rep,name=data,proto3" json:"data,omitempty"`
  10409. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10410. XXX_unrecognized []byte `json:"-"`
  10411. XXX_sizecache int32 `json:"-"`
  10412. }
  10413. func (m *GuildCountPartTable) Reset() { *m = GuildCountPartTable{} }
  10414. func (m *GuildCountPartTable) String() string { return proto.CompactTextString(m) }
  10415. func (*GuildCountPartTable) ProtoMessage() {}
  10416. func (*GuildCountPartTable) Descriptor() ([]byte, []int) {
  10417. return fileDescriptor_116e343673f7ffaf, []int{173}
  10418. }
  10419. func (m *GuildCountPartTable) XXX_Unmarshal(b []byte) error {
  10420. return xxx_messageInfo_GuildCountPartTable.Unmarshal(m, b)
  10421. }
  10422. func (m *GuildCountPartTable) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10423. return xxx_messageInfo_GuildCountPartTable.Marshal(b, m, deterministic)
  10424. }
  10425. func (m *GuildCountPartTable) XXX_Merge(src proto.Message) {
  10426. xxx_messageInfo_GuildCountPartTable.Merge(m, src)
  10427. }
  10428. func (m *GuildCountPartTable) XXX_Size() int {
  10429. return xxx_messageInfo_GuildCountPartTable.Size(m)
  10430. }
  10431. func (m *GuildCountPartTable) XXX_DiscardUnknown() {
  10432. xxx_messageInfo_GuildCountPartTable.DiscardUnknown(m)
  10433. }
  10434. var xxx_messageInfo_GuildCountPartTable proto.InternalMessageInfo
  10435. func (m *GuildCountPartTable) GetData() []*CountTableData {
  10436. if m != nil {
  10437. return m.Data
  10438. }
  10439. return nil
  10440. }
  10441. // MVP界面数据
  10442. type GuildBattleDetail struct {
  10443. GuildId uint64 `protobuf:"varint,1,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  10444. SlotCount int32 `protobuf:"varint,2,opt,name=slot_count,json=slotCount,proto3" json:"slot_count,omitempty"`
  10445. Score int32 `protobuf:"varint,3,opt,name=score,proto3" json:"score,omitempty"`
  10446. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10447. XXX_unrecognized []byte `json:"-"`
  10448. XXX_sizecache int32 `json:"-"`
  10449. }
  10450. func (m *GuildBattleDetail) Reset() { *m = GuildBattleDetail{} }
  10451. func (m *GuildBattleDetail) String() string { return proto.CompactTextString(m) }
  10452. func (*GuildBattleDetail) ProtoMessage() {}
  10453. func (*GuildBattleDetail) Descriptor() ([]byte, []int) {
  10454. return fileDescriptor_116e343673f7ffaf, []int{174}
  10455. }
  10456. func (m *GuildBattleDetail) XXX_Unmarshal(b []byte) error {
  10457. return xxx_messageInfo_GuildBattleDetail.Unmarshal(m, b)
  10458. }
  10459. func (m *GuildBattleDetail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10460. return xxx_messageInfo_GuildBattleDetail.Marshal(b, m, deterministic)
  10461. }
  10462. func (m *GuildBattleDetail) XXX_Merge(src proto.Message) {
  10463. xxx_messageInfo_GuildBattleDetail.Merge(m, src)
  10464. }
  10465. func (m *GuildBattleDetail) XXX_Size() int {
  10466. return xxx_messageInfo_GuildBattleDetail.Size(m)
  10467. }
  10468. func (m *GuildBattleDetail) XXX_DiscardUnknown() {
  10469. xxx_messageInfo_GuildBattleDetail.DiscardUnknown(m)
  10470. }
  10471. var xxx_messageInfo_GuildBattleDetail proto.InternalMessageInfo
  10472. func (m *GuildBattleDetail) GetGuildId() uint64 {
  10473. if m != nil {
  10474. return m.GuildId
  10475. }
  10476. return 0
  10477. }
  10478. func (m *GuildBattleDetail) GetSlotCount() int32 {
  10479. if m != nil {
  10480. return m.SlotCount
  10481. }
  10482. return 0
  10483. }
  10484. func (m *GuildBattleDetail) GetScore() int32 {
  10485. if m != nil {
  10486. return m.Score
  10487. }
  10488. return 0
  10489. }
  10490. // MVP
  10491. type GuildBattleMvp struct {
  10492. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  10493. Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
  10494. GuildId uint64 `protobuf:"varint,3,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  10495. Score int32 `protobuf:"varint,4,opt,name=score,proto3" json:"score,omitempty"`
  10496. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10497. XXX_unrecognized []byte `json:"-"`
  10498. XXX_sizecache int32 `json:"-"`
  10499. }
  10500. func (m *GuildBattleMvp) Reset() { *m = GuildBattleMvp{} }
  10501. func (m *GuildBattleMvp) String() string { return proto.CompactTextString(m) }
  10502. func (*GuildBattleMvp) ProtoMessage() {}
  10503. func (*GuildBattleMvp) Descriptor() ([]byte, []int) {
  10504. return fileDescriptor_116e343673f7ffaf, []int{175}
  10505. }
  10506. func (m *GuildBattleMvp) XXX_Unmarshal(b []byte) error {
  10507. return xxx_messageInfo_GuildBattleMvp.Unmarshal(m, b)
  10508. }
  10509. func (m *GuildBattleMvp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10510. return xxx_messageInfo_GuildBattleMvp.Marshal(b, m, deterministic)
  10511. }
  10512. func (m *GuildBattleMvp) XXX_Merge(src proto.Message) {
  10513. xxx_messageInfo_GuildBattleMvp.Merge(m, src)
  10514. }
  10515. func (m *GuildBattleMvp) XXX_Size() int {
  10516. return xxx_messageInfo_GuildBattleMvp.Size(m)
  10517. }
  10518. func (m *GuildBattleMvp) XXX_DiscardUnknown() {
  10519. xxx_messageInfo_GuildBattleMvp.DiscardUnknown(m)
  10520. }
  10521. var xxx_messageInfo_GuildBattleMvp proto.InternalMessageInfo
  10522. func (m *GuildBattleMvp) GetUid() uint64 {
  10523. if m != nil {
  10524. return m.Uid
  10525. }
  10526. return 0
  10527. }
  10528. func (m *GuildBattleMvp) GetName() string {
  10529. if m != nil {
  10530. return m.Name
  10531. }
  10532. return ""
  10533. }
  10534. func (m *GuildBattleMvp) GetGuildId() uint64 {
  10535. if m != nil {
  10536. return m.GuildId
  10537. }
  10538. return 0
  10539. }
  10540. func (m *GuildBattleMvp) GetScore() int32 {
  10541. if m != nil {
  10542. return m.Score
  10543. }
  10544. return 0
  10545. }
  10546. type GuildBattleRank struct {
  10547. Score int32 `protobuf:"varint,1,opt,name=score,proto3" json:"score,omitempty"`
  10548. Rank int32 `protobuf:"varint,2,opt,name=rank,proto3" json:"rank,omitempty"`
  10549. GuildId uint64 `protobuf:"varint,3,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  10550. Info *CommonPlayerBriefInfo `protobuf:"bytes,4,opt,name=info,proto3" json:"info,omitempty"`
  10551. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10552. XXX_unrecognized []byte `json:"-"`
  10553. XXX_sizecache int32 `json:"-"`
  10554. }
  10555. func (m *GuildBattleRank) Reset() { *m = GuildBattleRank{} }
  10556. func (m *GuildBattleRank) String() string { return proto.CompactTextString(m) }
  10557. func (*GuildBattleRank) ProtoMessage() {}
  10558. func (*GuildBattleRank) Descriptor() ([]byte, []int) {
  10559. return fileDescriptor_116e343673f7ffaf, []int{176}
  10560. }
  10561. func (m *GuildBattleRank) XXX_Unmarshal(b []byte) error {
  10562. return xxx_messageInfo_GuildBattleRank.Unmarshal(m, b)
  10563. }
  10564. func (m *GuildBattleRank) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10565. return xxx_messageInfo_GuildBattleRank.Marshal(b, m, deterministic)
  10566. }
  10567. func (m *GuildBattleRank) XXX_Merge(src proto.Message) {
  10568. xxx_messageInfo_GuildBattleRank.Merge(m, src)
  10569. }
  10570. func (m *GuildBattleRank) XXX_Size() int {
  10571. return xxx_messageInfo_GuildBattleRank.Size(m)
  10572. }
  10573. func (m *GuildBattleRank) XXX_DiscardUnknown() {
  10574. xxx_messageInfo_GuildBattleRank.DiscardUnknown(m)
  10575. }
  10576. var xxx_messageInfo_GuildBattleRank proto.InternalMessageInfo
  10577. func (m *GuildBattleRank) GetScore() int32 {
  10578. if m != nil {
  10579. return m.Score
  10580. }
  10581. return 0
  10582. }
  10583. func (m *GuildBattleRank) GetRank() int32 {
  10584. if m != nil {
  10585. return m.Rank
  10586. }
  10587. return 0
  10588. }
  10589. func (m *GuildBattleRank) GetGuildId() uint64 {
  10590. if m != nil {
  10591. return m.GuildId
  10592. }
  10593. return 0
  10594. }
  10595. func (m *GuildBattleRank) GetInfo() *CommonPlayerBriefInfo {
  10596. if m != nil {
  10597. return m.Info
  10598. }
  10599. return nil
  10600. }
  10601. // 公会贡献点cp
  10602. type GuildBattleCP struct {
  10603. Brief *GuildBrief `protobuf:"bytes,1,opt,name=brief,proto3" json:"brief,omitempty"`
  10604. MemCount int32 `protobuf:"varint,2,opt,name=mem_count,json=memCount,proto3" json:"mem_count,omitempty"`
  10605. CpNum uint32 `protobuf:"varint,3,opt,name=cp_num,json=cpNum,proto3" json:"cp_num,omitempty"`
  10606. Rank int32 `protobuf:"varint,4,opt,name=rank,proto3" json:"rank,omitempty"`
  10607. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10608. XXX_unrecognized []byte `json:"-"`
  10609. XXX_sizecache int32 `json:"-"`
  10610. }
  10611. func (m *GuildBattleCP) Reset() { *m = GuildBattleCP{} }
  10612. func (m *GuildBattleCP) String() string { return proto.CompactTextString(m) }
  10613. func (*GuildBattleCP) ProtoMessage() {}
  10614. func (*GuildBattleCP) Descriptor() ([]byte, []int) {
  10615. return fileDescriptor_116e343673f7ffaf, []int{177}
  10616. }
  10617. func (m *GuildBattleCP) XXX_Unmarshal(b []byte) error {
  10618. return xxx_messageInfo_GuildBattleCP.Unmarshal(m, b)
  10619. }
  10620. func (m *GuildBattleCP) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10621. return xxx_messageInfo_GuildBattleCP.Marshal(b, m, deterministic)
  10622. }
  10623. func (m *GuildBattleCP) XXX_Merge(src proto.Message) {
  10624. xxx_messageInfo_GuildBattleCP.Merge(m, src)
  10625. }
  10626. func (m *GuildBattleCP) XXX_Size() int {
  10627. return xxx_messageInfo_GuildBattleCP.Size(m)
  10628. }
  10629. func (m *GuildBattleCP) XXX_DiscardUnknown() {
  10630. xxx_messageInfo_GuildBattleCP.DiscardUnknown(m)
  10631. }
  10632. var xxx_messageInfo_GuildBattleCP proto.InternalMessageInfo
  10633. func (m *GuildBattleCP) GetBrief() *GuildBrief {
  10634. if m != nil {
  10635. return m.Brief
  10636. }
  10637. return nil
  10638. }
  10639. func (m *GuildBattleCP) GetMemCount() int32 {
  10640. if m != nil {
  10641. return m.MemCount
  10642. }
  10643. return 0
  10644. }
  10645. func (m *GuildBattleCP) GetCpNum() uint32 {
  10646. if m != nil {
  10647. return m.CpNum
  10648. }
  10649. return 0
  10650. }
  10651. func (m *GuildBattleCP) GetRank() int32 {
  10652. if m != nil {
  10653. return m.Rank
  10654. }
  10655. return 0
  10656. }
  10657. type GMNoticeInfo struct {
  10658. NoticeColor string `protobuf:"bytes,1,opt,name=notice_color,json=noticeColor,proto3" json:"notice_color,omitempty"`
  10659. NoticeSpeed uint32 `protobuf:"varint,2,opt,name=notice_speed,json=noticeSpeed,proto3" json:"notice_speed,omitempty"`
  10660. NoticeCount uint32 `protobuf:"varint,3,opt,name=notice_count,json=noticeCount,proto3" json:"notice_count,omitempty"`
  10661. NoticeInterval uint32 `protobuf:"varint,4,opt,name=notice_interval,json=noticeInterval,proto3" json:"notice_interval,omitempty"`
  10662. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10663. XXX_unrecognized []byte `json:"-"`
  10664. XXX_sizecache int32 `json:"-"`
  10665. }
  10666. func (m *GMNoticeInfo) Reset() { *m = GMNoticeInfo{} }
  10667. func (m *GMNoticeInfo) String() string { return proto.CompactTextString(m) }
  10668. func (*GMNoticeInfo) ProtoMessage() {}
  10669. func (*GMNoticeInfo) Descriptor() ([]byte, []int) {
  10670. return fileDescriptor_116e343673f7ffaf, []int{178}
  10671. }
  10672. func (m *GMNoticeInfo) XXX_Unmarshal(b []byte) error {
  10673. return xxx_messageInfo_GMNoticeInfo.Unmarshal(m, b)
  10674. }
  10675. func (m *GMNoticeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10676. return xxx_messageInfo_GMNoticeInfo.Marshal(b, m, deterministic)
  10677. }
  10678. func (m *GMNoticeInfo) XXX_Merge(src proto.Message) {
  10679. xxx_messageInfo_GMNoticeInfo.Merge(m, src)
  10680. }
  10681. func (m *GMNoticeInfo) XXX_Size() int {
  10682. return xxx_messageInfo_GMNoticeInfo.Size(m)
  10683. }
  10684. func (m *GMNoticeInfo) XXX_DiscardUnknown() {
  10685. xxx_messageInfo_GMNoticeInfo.DiscardUnknown(m)
  10686. }
  10687. var xxx_messageInfo_GMNoticeInfo proto.InternalMessageInfo
  10688. func (m *GMNoticeInfo) GetNoticeColor() string {
  10689. if m != nil {
  10690. return m.NoticeColor
  10691. }
  10692. return ""
  10693. }
  10694. func (m *GMNoticeInfo) GetNoticeSpeed() uint32 {
  10695. if m != nil {
  10696. return m.NoticeSpeed
  10697. }
  10698. return 0
  10699. }
  10700. func (m *GMNoticeInfo) GetNoticeCount() uint32 {
  10701. if m != nil {
  10702. return m.NoticeCount
  10703. }
  10704. return 0
  10705. }
  10706. func (m *GMNoticeInfo) GetNoticeInterval() uint32 {
  10707. if m != nil {
  10708. return m.NoticeInterval
  10709. }
  10710. return 0
  10711. }
  10712. type ReconnectUserData struct {
  10713. MapId uint32 `protobuf:"varint,1,opt,name=map_id,json=mapId,proto3" json:"map_id,omitempty"`
  10714. MapLevel uint32 `protobuf:"varint,2,opt,name=map_level,json=mapLevel,proto3" json:"map_level,omitempty"`
  10715. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10716. XXX_unrecognized []byte `json:"-"`
  10717. XXX_sizecache int32 `json:"-"`
  10718. }
  10719. func (m *ReconnectUserData) Reset() { *m = ReconnectUserData{} }
  10720. func (m *ReconnectUserData) String() string { return proto.CompactTextString(m) }
  10721. func (*ReconnectUserData) ProtoMessage() {}
  10722. func (*ReconnectUserData) Descriptor() ([]byte, []int) {
  10723. return fileDescriptor_116e343673f7ffaf, []int{179}
  10724. }
  10725. func (m *ReconnectUserData) XXX_Unmarshal(b []byte) error {
  10726. return xxx_messageInfo_ReconnectUserData.Unmarshal(m, b)
  10727. }
  10728. func (m *ReconnectUserData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10729. return xxx_messageInfo_ReconnectUserData.Marshal(b, m, deterministic)
  10730. }
  10731. func (m *ReconnectUserData) XXX_Merge(src proto.Message) {
  10732. xxx_messageInfo_ReconnectUserData.Merge(m, src)
  10733. }
  10734. func (m *ReconnectUserData) XXX_Size() int {
  10735. return xxx_messageInfo_ReconnectUserData.Size(m)
  10736. }
  10737. func (m *ReconnectUserData) XXX_DiscardUnknown() {
  10738. xxx_messageInfo_ReconnectUserData.DiscardUnknown(m)
  10739. }
  10740. var xxx_messageInfo_ReconnectUserData proto.InternalMessageInfo
  10741. func (m *ReconnectUserData) GetMapId() uint32 {
  10742. if m != nil {
  10743. return m.MapId
  10744. }
  10745. return 0
  10746. }
  10747. func (m *ReconnectUserData) GetMapLevel() uint32 {
  10748. if m != nil {
  10749. return m.MapLevel
  10750. }
  10751. return 0
  10752. }
  10753. type EquipSlotCards struct {
  10754. SlotId int32 `protobuf:"varint,1,opt,name=slot_id,json=slotId,proto3" json:"slot_id,omitempty"`
  10755. CardSlotInfo []*KeyValueType `protobuf:"bytes,2,rep,name=card_slot_info,json=cardSlotInfo,proto3" json:"card_slot_info,omitempty"`
  10756. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10757. XXX_unrecognized []byte `json:"-"`
  10758. XXX_sizecache int32 `json:"-"`
  10759. }
  10760. func (m *EquipSlotCards) Reset() { *m = EquipSlotCards{} }
  10761. func (m *EquipSlotCards) String() string { return proto.CompactTextString(m) }
  10762. func (*EquipSlotCards) ProtoMessage() {}
  10763. func (*EquipSlotCards) Descriptor() ([]byte, []int) {
  10764. return fileDescriptor_116e343673f7ffaf, []int{180}
  10765. }
  10766. func (m *EquipSlotCards) XXX_Unmarshal(b []byte) error {
  10767. return xxx_messageInfo_EquipSlotCards.Unmarshal(m, b)
  10768. }
  10769. func (m *EquipSlotCards) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10770. return xxx_messageInfo_EquipSlotCards.Marshal(b, m, deterministic)
  10771. }
  10772. func (m *EquipSlotCards) XXX_Merge(src proto.Message) {
  10773. xxx_messageInfo_EquipSlotCards.Merge(m, src)
  10774. }
  10775. func (m *EquipSlotCards) XXX_Size() int {
  10776. return xxx_messageInfo_EquipSlotCards.Size(m)
  10777. }
  10778. func (m *EquipSlotCards) XXX_DiscardUnknown() {
  10779. xxx_messageInfo_EquipSlotCards.DiscardUnknown(m)
  10780. }
  10781. var xxx_messageInfo_EquipSlotCards proto.InternalMessageInfo
  10782. func (m *EquipSlotCards) GetSlotId() int32 {
  10783. if m != nil {
  10784. return m.SlotId
  10785. }
  10786. return 0
  10787. }
  10788. func (m *EquipSlotCards) GetCardSlotInfo() []*KeyValueType {
  10789. if m != nil {
  10790. return m.CardSlotInfo
  10791. }
  10792. return nil
  10793. }
  10794. type BattleRecordInfo struct {
  10795. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  10796. BattleRecordId uint64 `protobuf:"varint,2,opt,name=battle_record_id,json=battleRecordId,proto3" json:"battle_record_id,omitempty"`
  10797. NickName string `protobuf:"bytes,3,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  10798. ImgId int32 `protobuf:"varint,4,opt,name=img_id,json=imgId,proto3" json:"img_id,omitempty"`
  10799. Gender int32 `protobuf:"varint,5,opt,name=gender,proto3" json:"gender,omitempty"`
  10800. Level int32 `protobuf:"varint,6,opt,name=level,proto3" json:"level,omitempty"`
  10801. ConfigId int32 `protobuf:"varint,7,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  10802. FightPower int32 `protobuf:"varint,8,opt,name=fight_power,json=fightPower,proto3" json:"fight_power,omitempty"`
  10803. RecordTime uint64 `protobuf:"varint,9,opt,name=record_time,json=recordTime,proto3" json:"record_time,omitempty"`
  10804. BattleTime uint32 `protobuf:"varint,10,opt,name=battle_time,json=battleTime,proto3" json:"battle_time,omitempty"`
  10805. MapLevelId int32 `protobuf:"varint,12,opt,name=map_level_id,json=mapLevelId,proto3" json:"map_level_id,omitempty"`
  10806. RecordIdx int32 `protobuf:"varint,13,opt,name=record_idx,json=recordIdx,proto3" json:"record_idx,omitempty"`
  10807. HeadFrameId int32 `protobuf:"varint,14,opt,name=head_frame_id,json=headFrameId,proto3" json:"head_frame_id,omitempty"`
  10808. BattleVersion int32 `protobuf:"varint,15,opt,name=battle_version,json=battleVersion,proto3" json:"battle_version,omitempty"`
  10809. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10810. XXX_unrecognized []byte `json:"-"`
  10811. XXX_sizecache int32 `json:"-"`
  10812. }
  10813. func (m *BattleRecordInfo) Reset() { *m = BattleRecordInfo{} }
  10814. func (m *BattleRecordInfo) String() string { return proto.CompactTextString(m) }
  10815. func (*BattleRecordInfo) ProtoMessage() {}
  10816. func (*BattleRecordInfo) Descriptor() ([]byte, []int) {
  10817. return fileDescriptor_116e343673f7ffaf, []int{181}
  10818. }
  10819. func (m *BattleRecordInfo) XXX_Unmarshal(b []byte) error {
  10820. return xxx_messageInfo_BattleRecordInfo.Unmarshal(m, b)
  10821. }
  10822. func (m *BattleRecordInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10823. return xxx_messageInfo_BattleRecordInfo.Marshal(b, m, deterministic)
  10824. }
  10825. func (m *BattleRecordInfo) XXX_Merge(src proto.Message) {
  10826. xxx_messageInfo_BattleRecordInfo.Merge(m, src)
  10827. }
  10828. func (m *BattleRecordInfo) XXX_Size() int {
  10829. return xxx_messageInfo_BattleRecordInfo.Size(m)
  10830. }
  10831. func (m *BattleRecordInfo) XXX_DiscardUnknown() {
  10832. xxx_messageInfo_BattleRecordInfo.DiscardUnknown(m)
  10833. }
  10834. var xxx_messageInfo_BattleRecordInfo proto.InternalMessageInfo
  10835. func (m *BattleRecordInfo) GetUid() uint64 {
  10836. if m != nil {
  10837. return m.Uid
  10838. }
  10839. return 0
  10840. }
  10841. func (m *BattleRecordInfo) GetBattleRecordId() uint64 {
  10842. if m != nil {
  10843. return m.BattleRecordId
  10844. }
  10845. return 0
  10846. }
  10847. func (m *BattleRecordInfo) GetNickName() string {
  10848. if m != nil {
  10849. return m.NickName
  10850. }
  10851. return ""
  10852. }
  10853. func (m *BattleRecordInfo) GetImgId() int32 {
  10854. if m != nil {
  10855. return m.ImgId
  10856. }
  10857. return 0
  10858. }
  10859. func (m *BattleRecordInfo) GetGender() int32 {
  10860. if m != nil {
  10861. return m.Gender
  10862. }
  10863. return 0
  10864. }
  10865. func (m *BattleRecordInfo) GetLevel() int32 {
  10866. if m != nil {
  10867. return m.Level
  10868. }
  10869. return 0
  10870. }
  10871. func (m *BattleRecordInfo) GetConfigId() int32 {
  10872. if m != nil {
  10873. return m.ConfigId
  10874. }
  10875. return 0
  10876. }
  10877. func (m *BattleRecordInfo) GetFightPower() int32 {
  10878. if m != nil {
  10879. return m.FightPower
  10880. }
  10881. return 0
  10882. }
  10883. func (m *BattleRecordInfo) GetRecordTime() uint64 {
  10884. if m != nil {
  10885. return m.RecordTime
  10886. }
  10887. return 0
  10888. }
  10889. func (m *BattleRecordInfo) GetBattleTime() uint32 {
  10890. if m != nil {
  10891. return m.BattleTime
  10892. }
  10893. return 0
  10894. }
  10895. func (m *BattleRecordInfo) GetMapLevelId() int32 {
  10896. if m != nil {
  10897. return m.MapLevelId
  10898. }
  10899. return 0
  10900. }
  10901. func (m *BattleRecordInfo) GetRecordIdx() int32 {
  10902. if m != nil {
  10903. return m.RecordIdx
  10904. }
  10905. return 0
  10906. }
  10907. func (m *BattleRecordInfo) GetHeadFrameId() int32 {
  10908. if m != nil {
  10909. return m.HeadFrameId
  10910. }
  10911. return 0
  10912. }
  10913. func (m *BattleRecordInfo) GetBattleVersion() int32 {
  10914. if m != nil {
  10915. return m.BattleVersion
  10916. }
  10917. return 0
  10918. }
  10919. // //////////////////////宠物
  10920. // 设置援助信息(玩家自身设置的援助信息存储)
  10921. type AssistSaveData struct {
  10922. PetId uint32 `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  10923. PetCfgId int32 `protobuf:"varint,2,opt,name=pet_cfg_id,json=petCfgId,proto3" json:"pet_cfg_id,omitempty"`
  10924. AdvLevel uint32 `protobuf:"varint,3,opt,name=adv_level,json=advLevel,proto3" json:"adv_level,omitempty"`
  10925. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10926. XXX_unrecognized []byte `json:"-"`
  10927. XXX_sizecache int32 `json:"-"`
  10928. }
  10929. func (m *AssistSaveData) Reset() { *m = AssistSaveData{} }
  10930. func (m *AssistSaveData) String() string { return proto.CompactTextString(m) }
  10931. func (*AssistSaveData) ProtoMessage() {}
  10932. func (*AssistSaveData) Descriptor() ([]byte, []int) {
  10933. return fileDescriptor_116e343673f7ffaf, []int{182}
  10934. }
  10935. func (m *AssistSaveData) XXX_Unmarshal(b []byte) error {
  10936. return xxx_messageInfo_AssistSaveData.Unmarshal(m, b)
  10937. }
  10938. func (m *AssistSaveData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10939. return xxx_messageInfo_AssistSaveData.Marshal(b, m, deterministic)
  10940. }
  10941. func (m *AssistSaveData) XXX_Merge(src proto.Message) {
  10942. xxx_messageInfo_AssistSaveData.Merge(m, src)
  10943. }
  10944. func (m *AssistSaveData) XXX_Size() int {
  10945. return xxx_messageInfo_AssistSaveData.Size(m)
  10946. }
  10947. func (m *AssistSaveData) XXX_DiscardUnknown() {
  10948. xxx_messageInfo_AssistSaveData.DiscardUnknown(m)
  10949. }
  10950. var xxx_messageInfo_AssistSaveData proto.InternalMessageInfo
  10951. func (m *AssistSaveData) GetPetId() uint32 {
  10952. if m != nil {
  10953. return m.PetId
  10954. }
  10955. return 0
  10956. }
  10957. func (m *AssistSaveData) GetPetCfgId() int32 {
  10958. if m != nil {
  10959. return m.PetCfgId
  10960. }
  10961. return 0
  10962. }
  10963. func (m *AssistSaveData) GetAdvLevel() uint32 {
  10964. if m != nil {
  10965. return m.AdvLevel
  10966. }
  10967. return 0
  10968. }
  10969. // 羁绊数据结构
  10970. type AssistData struct {
  10971. OwnerUid uint64 `protobuf:"varint,1,opt,name=owner_uid,json=ownerUid,proto3" json:"owner_uid,omitempty"`
  10972. OwnerNickName string `protobuf:"bytes,2,opt,name=owner_nick_name,json=ownerNickName,proto3" json:"owner_nick_name,omitempty"`
  10973. PetInfoList []*PetData `protobuf:"bytes,3,rep,name=pet_info_list,json=petInfoList,proto3" json:"pet_info_list,omitempty"`
  10974. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  10975. XXX_unrecognized []byte `json:"-"`
  10976. XXX_sizecache int32 `json:"-"`
  10977. }
  10978. func (m *AssistData) Reset() { *m = AssistData{} }
  10979. func (m *AssistData) String() string { return proto.CompactTextString(m) }
  10980. func (*AssistData) ProtoMessage() {}
  10981. func (*AssistData) Descriptor() ([]byte, []int) {
  10982. return fileDescriptor_116e343673f7ffaf, []int{183}
  10983. }
  10984. func (m *AssistData) XXX_Unmarshal(b []byte) error {
  10985. return xxx_messageInfo_AssistData.Unmarshal(m, b)
  10986. }
  10987. func (m *AssistData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  10988. return xxx_messageInfo_AssistData.Marshal(b, m, deterministic)
  10989. }
  10990. func (m *AssistData) XXX_Merge(src proto.Message) {
  10991. xxx_messageInfo_AssistData.Merge(m, src)
  10992. }
  10993. func (m *AssistData) XXX_Size() int {
  10994. return xxx_messageInfo_AssistData.Size(m)
  10995. }
  10996. func (m *AssistData) XXX_DiscardUnknown() {
  10997. xxx_messageInfo_AssistData.DiscardUnknown(m)
  10998. }
  10999. var xxx_messageInfo_AssistData proto.InternalMessageInfo
  11000. func (m *AssistData) GetOwnerUid() uint64 {
  11001. if m != nil {
  11002. return m.OwnerUid
  11003. }
  11004. return 0
  11005. }
  11006. func (m *AssistData) GetOwnerNickName() string {
  11007. if m != nil {
  11008. return m.OwnerNickName
  11009. }
  11010. return ""
  11011. }
  11012. func (m *AssistData) GetPetInfoList() []*PetData {
  11013. if m != nil {
  11014. return m.PetInfoList
  11015. }
  11016. return nil
  11017. }
  11018. type PetBondPosData struct {
  11019. OwnerUid uint64 `protobuf:"varint,2,opt,name=owner_uid,json=ownerUid,proto3" json:"owner_uid,omitempty"`
  11020. PetId uint32 `protobuf:"varint,3,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  11021. AdvanceLevel uint32 `protobuf:"varint,4,opt,name=advance_level,json=advanceLevel,proto3" json:"advance_level,omitempty"`
  11022. PetCfgId int32 `protobuf:"varint,5,opt,name=pet_cfg_id,json=petCfgId,proto3" json:"pet_cfg_id,omitempty"`
  11023. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11024. XXX_unrecognized []byte `json:"-"`
  11025. XXX_sizecache int32 `json:"-"`
  11026. }
  11027. func (m *PetBondPosData) Reset() { *m = PetBondPosData{} }
  11028. func (m *PetBondPosData) String() string { return proto.CompactTextString(m) }
  11029. func (*PetBondPosData) ProtoMessage() {}
  11030. func (*PetBondPosData) Descriptor() ([]byte, []int) {
  11031. return fileDescriptor_116e343673f7ffaf, []int{184}
  11032. }
  11033. func (m *PetBondPosData) XXX_Unmarshal(b []byte) error {
  11034. return xxx_messageInfo_PetBondPosData.Unmarshal(m, b)
  11035. }
  11036. func (m *PetBondPosData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11037. return xxx_messageInfo_PetBondPosData.Marshal(b, m, deterministic)
  11038. }
  11039. func (m *PetBondPosData) XXX_Merge(src proto.Message) {
  11040. xxx_messageInfo_PetBondPosData.Merge(m, src)
  11041. }
  11042. func (m *PetBondPosData) XXX_Size() int {
  11043. return xxx_messageInfo_PetBondPosData.Size(m)
  11044. }
  11045. func (m *PetBondPosData) XXX_DiscardUnknown() {
  11046. xxx_messageInfo_PetBondPosData.DiscardUnknown(m)
  11047. }
  11048. var xxx_messageInfo_PetBondPosData proto.InternalMessageInfo
  11049. func (m *PetBondPosData) GetOwnerUid() uint64 {
  11050. if m != nil {
  11051. return m.OwnerUid
  11052. }
  11053. return 0
  11054. }
  11055. func (m *PetBondPosData) GetPetId() uint32 {
  11056. if m != nil {
  11057. return m.PetId
  11058. }
  11059. return 0
  11060. }
  11061. func (m *PetBondPosData) GetAdvanceLevel() uint32 {
  11062. if m != nil {
  11063. return m.AdvanceLevel
  11064. }
  11065. return 0
  11066. }
  11067. func (m *PetBondPosData) GetPetCfgId() int32 {
  11068. if m != nil {
  11069. return m.PetCfgId
  11070. }
  11071. return 0
  11072. }
  11073. type PetBondData struct {
  11074. BondCfgId int32 `protobuf:"varint,1,opt,name=bond_cfg_id,json=bondCfgId,proto3" json:"bond_cfg_id,omitempty"`
  11075. BondList []*PetBondPosData `protobuf:"bytes,2,rep,name=bond_list,json=bondList,proto3" json:"bond_list,omitempty"`
  11076. PetBondLevel int32 `protobuf:"varint,3,opt,name=pet_bond_level,json=petBondLevel,proto3" json:"pet_bond_level,omitempty"`
  11077. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11078. XXX_unrecognized []byte `json:"-"`
  11079. XXX_sizecache int32 `json:"-"`
  11080. }
  11081. func (m *PetBondData) Reset() { *m = PetBondData{} }
  11082. func (m *PetBondData) String() string { return proto.CompactTextString(m) }
  11083. func (*PetBondData) ProtoMessage() {}
  11084. func (*PetBondData) Descriptor() ([]byte, []int) {
  11085. return fileDescriptor_116e343673f7ffaf, []int{185}
  11086. }
  11087. func (m *PetBondData) XXX_Unmarshal(b []byte) error {
  11088. return xxx_messageInfo_PetBondData.Unmarshal(m, b)
  11089. }
  11090. func (m *PetBondData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11091. return xxx_messageInfo_PetBondData.Marshal(b, m, deterministic)
  11092. }
  11093. func (m *PetBondData) XXX_Merge(src proto.Message) {
  11094. xxx_messageInfo_PetBondData.Merge(m, src)
  11095. }
  11096. func (m *PetBondData) XXX_Size() int {
  11097. return xxx_messageInfo_PetBondData.Size(m)
  11098. }
  11099. func (m *PetBondData) XXX_DiscardUnknown() {
  11100. xxx_messageInfo_PetBondData.DiscardUnknown(m)
  11101. }
  11102. var xxx_messageInfo_PetBondData proto.InternalMessageInfo
  11103. func (m *PetBondData) GetBondCfgId() int32 {
  11104. if m != nil {
  11105. return m.BondCfgId
  11106. }
  11107. return 0
  11108. }
  11109. func (m *PetBondData) GetBondList() []*PetBondPosData {
  11110. if m != nil {
  11111. return m.BondList
  11112. }
  11113. return nil
  11114. }
  11115. func (m *PetBondData) GetPetBondLevel() int32 {
  11116. if m != nil {
  11117. return m.PetBondLevel
  11118. }
  11119. return 0
  11120. }
  11121. // 宠物技能
  11122. type PetSkillData struct {
  11123. ConfigId int32 `protobuf:"varint,1,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  11124. Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
  11125. Rate int32 `protobuf:"varint,3,opt,name=rate,proto3" json:"rate,omitempty"`
  11126. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11127. XXX_unrecognized []byte `json:"-"`
  11128. XXX_sizecache int32 `json:"-"`
  11129. }
  11130. func (m *PetSkillData) Reset() { *m = PetSkillData{} }
  11131. func (m *PetSkillData) String() string { return proto.CompactTextString(m) }
  11132. func (*PetSkillData) ProtoMessage() {}
  11133. func (*PetSkillData) Descriptor() ([]byte, []int) {
  11134. return fileDescriptor_116e343673f7ffaf, []int{186}
  11135. }
  11136. func (m *PetSkillData) XXX_Unmarshal(b []byte) error {
  11137. return xxx_messageInfo_PetSkillData.Unmarshal(m, b)
  11138. }
  11139. func (m *PetSkillData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11140. return xxx_messageInfo_PetSkillData.Marshal(b, m, deterministic)
  11141. }
  11142. func (m *PetSkillData) XXX_Merge(src proto.Message) {
  11143. xxx_messageInfo_PetSkillData.Merge(m, src)
  11144. }
  11145. func (m *PetSkillData) XXX_Size() int {
  11146. return xxx_messageInfo_PetSkillData.Size(m)
  11147. }
  11148. func (m *PetSkillData) XXX_DiscardUnknown() {
  11149. xxx_messageInfo_PetSkillData.DiscardUnknown(m)
  11150. }
  11151. var xxx_messageInfo_PetSkillData proto.InternalMessageInfo
  11152. func (m *PetSkillData) GetConfigId() int32 {
  11153. if m != nil {
  11154. return m.ConfigId
  11155. }
  11156. return 0
  11157. }
  11158. func (m *PetSkillData) GetLevel() int32 {
  11159. if m != nil {
  11160. return m.Level
  11161. }
  11162. return 0
  11163. }
  11164. func (m *PetSkillData) GetRate() int32 {
  11165. if m != nil {
  11166. return m.Rate
  11167. }
  11168. return 0
  11169. }
  11170. type PetData struct {
  11171. Id uint32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  11172. ConfigId int32 `protobuf:"varint,2,opt,name=config_id,json=configId,proto3" json:"config_id,omitempty"`
  11173. Level int32 `protobuf:"varint,3,opt,name=level,proto3" json:"level,omitempty"`
  11174. AdvanceLevel uint32 `protobuf:"varint,4,opt,name=advance_level,json=advanceLevel,proto3" json:"advance_level,omitempty"`
  11175. SkillList []*PetSkillData `protobuf:"bytes,5,rep,name=skill_list,json=skillList,proto3" json:"skill_list,omitempty"`
  11176. HeroId int32 `protobuf:"varint,6,opt,name=hero_id,json=heroId,proto3" json:"hero_id,omitempty"`
  11177. Param int32 `protobuf:"varint,7,opt,name=param,proto3" json:"param,omitempty"`
  11178. SlotEquipList []*PetSlotDetailData `protobuf:"bytes,8,rep,name=slot_equip_list,json=slotEquipList,proto3" json:"slot_equip_list,omitempty"`
  11179. QiyueHeroId int32 `protobuf:"varint,9,opt,name=qiyue_hero_id,json=qiyueHeroId,proto3" json:"qiyue_hero_id,omitempty"`
  11180. // 有可能没有(老号)
  11181. BattleAttrListOld []*KeyValueType `protobuf:"bytes,50,rep,name=battle_attr_list_old,json=battleAttrListOld,proto3" json:"battle_attr_list_old,omitempty"`
  11182. PetFightPower uint32 `protobuf:"varint,51,opt,name=pet_fight_power,json=petFightPower,proto3" json:"pet_fight_power,omitempty"`
  11183. BattleAttrList []*KeyValueFloat32 `protobuf:"bytes,52,rep,name=battle_attr_list,json=battleAttrList,proto3" json:"battle_attr_list,omitempty"`
  11184. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11185. XXX_unrecognized []byte `json:"-"`
  11186. XXX_sizecache int32 `json:"-"`
  11187. }
  11188. func (m *PetData) Reset() { *m = PetData{} }
  11189. func (m *PetData) String() string { return proto.CompactTextString(m) }
  11190. func (*PetData) ProtoMessage() {}
  11191. func (*PetData) Descriptor() ([]byte, []int) {
  11192. return fileDescriptor_116e343673f7ffaf, []int{187}
  11193. }
  11194. func (m *PetData) XXX_Unmarshal(b []byte) error {
  11195. return xxx_messageInfo_PetData.Unmarshal(m, b)
  11196. }
  11197. func (m *PetData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11198. return xxx_messageInfo_PetData.Marshal(b, m, deterministic)
  11199. }
  11200. func (m *PetData) XXX_Merge(src proto.Message) {
  11201. xxx_messageInfo_PetData.Merge(m, src)
  11202. }
  11203. func (m *PetData) XXX_Size() int {
  11204. return xxx_messageInfo_PetData.Size(m)
  11205. }
  11206. func (m *PetData) XXX_DiscardUnknown() {
  11207. xxx_messageInfo_PetData.DiscardUnknown(m)
  11208. }
  11209. var xxx_messageInfo_PetData proto.InternalMessageInfo
  11210. func (m *PetData) GetId() uint32 {
  11211. if m != nil {
  11212. return m.Id
  11213. }
  11214. return 0
  11215. }
  11216. func (m *PetData) GetConfigId() int32 {
  11217. if m != nil {
  11218. return m.ConfigId
  11219. }
  11220. return 0
  11221. }
  11222. func (m *PetData) GetLevel() int32 {
  11223. if m != nil {
  11224. return m.Level
  11225. }
  11226. return 0
  11227. }
  11228. func (m *PetData) GetAdvanceLevel() uint32 {
  11229. if m != nil {
  11230. return m.AdvanceLevel
  11231. }
  11232. return 0
  11233. }
  11234. func (m *PetData) GetSkillList() []*PetSkillData {
  11235. if m != nil {
  11236. return m.SkillList
  11237. }
  11238. return nil
  11239. }
  11240. func (m *PetData) GetHeroId() int32 {
  11241. if m != nil {
  11242. return m.HeroId
  11243. }
  11244. return 0
  11245. }
  11246. func (m *PetData) GetParam() int32 {
  11247. if m != nil {
  11248. return m.Param
  11249. }
  11250. return 0
  11251. }
  11252. func (m *PetData) GetSlotEquipList() []*PetSlotDetailData {
  11253. if m != nil {
  11254. return m.SlotEquipList
  11255. }
  11256. return nil
  11257. }
  11258. func (m *PetData) GetQiyueHeroId() int32 {
  11259. if m != nil {
  11260. return m.QiyueHeroId
  11261. }
  11262. return 0
  11263. }
  11264. func (m *PetData) GetBattleAttrListOld() []*KeyValueType {
  11265. if m != nil {
  11266. return m.BattleAttrListOld
  11267. }
  11268. return nil
  11269. }
  11270. func (m *PetData) GetPetFightPower() uint32 {
  11271. if m != nil {
  11272. return m.PetFightPower
  11273. }
  11274. return 0
  11275. }
  11276. func (m *PetData) GetBattleAttrList() []*KeyValueFloat32 {
  11277. if m != nil {
  11278. return m.BattleAttrList
  11279. }
  11280. return nil
  11281. }
  11282. type AssistIdxData struct {
  11283. PetId uint32 `protobuf:"varint,1,opt,name=pet_id,json=petId,proto3" json:"pet_id,omitempty"`
  11284. EndCdTime uint64 `protobuf:"varint,2,opt,name=end_cd_time,json=endCdTime,proto3" json:"end_cd_time,omitempty"`
  11285. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11286. XXX_unrecognized []byte `json:"-"`
  11287. XXX_sizecache int32 `json:"-"`
  11288. }
  11289. func (m *AssistIdxData) Reset() { *m = AssistIdxData{} }
  11290. func (m *AssistIdxData) String() string { return proto.CompactTextString(m) }
  11291. func (*AssistIdxData) ProtoMessage() {}
  11292. func (*AssistIdxData) Descriptor() ([]byte, []int) {
  11293. return fileDescriptor_116e343673f7ffaf, []int{188}
  11294. }
  11295. func (m *AssistIdxData) XXX_Unmarshal(b []byte) error {
  11296. return xxx_messageInfo_AssistIdxData.Unmarshal(m, b)
  11297. }
  11298. func (m *AssistIdxData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11299. return xxx_messageInfo_AssistIdxData.Marshal(b, m, deterministic)
  11300. }
  11301. func (m *AssistIdxData) XXX_Merge(src proto.Message) {
  11302. xxx_messageInfo_AssistIdxData.Merge(m, src)
  11303. }
  11304. func (m *AssistIdxData) XXX_Size() int {
  11305. return xxx_messageInfo_AssistIdxData.Size(m)
  11306. }
  11307. func (m *AssistIdxData) XXX_DiscardUnknown() {
  11308. xxx_messageInfo_AssistIdxData.DiscardUnknown(m)
  11309. }
  11310. var xxx_messageInfo_AssistIdxData proto.InternalMessageInfo
  11311. func (m *AssistIdxData) GetPetId() uint32 {
  11312. if m != nil {
  11313. return m.PetId
  11314. }
  11315. return 0
  11316. }
  11317. func (m *AssistIdxData) GetEndCdTime() uint64 {
  11318. if m != nil {
  11319. return m.EndCdTime
  11320. }
  11321. return 0
  11322. }
  11323. type PetManualST struct {
  11324. PetCfgId int32 `protobuf:"varint,1,opt,name=pet_cfg_id,json=petCfgId,proto3" json:"pet_cfg_id,omitempty"`
  11325. AdvLevel uint32 `protobuf:"varint,2,opt,name=adv_level,json=advLevel,proto3" json:"adv_level,omitempty"`
  11326. RewardState int32 `protobuf:"varint,3,opt,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  11327. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11328. XXX_unrecognized []byte `json:"-"`
  11329. XXX_sizecache int32 `json:"-"`
  11330. }
  11331. func (m *PetManualST) Reset() { *m = PetManualST{} }
  11332. func (m *PetManualST) String() string { return proto.CompactTextString(m) }
  11333. func (*PetManualST) ProtoMessage() {}
  11334. func (*PetManualST) Descriptor() ([]byte, []int) {
  11335. return fileDescriptor_116e343673f7ffaf, []int{189}
  11336. }
  11337. func (m *PetManualST) XXX_Unmarshal(b []byte) error {
  11338. return xxx_messageInfo_PetManualST.Unmarshal(m, b)
  11339. }
  11340. func (m *PetManualST) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11341. return xxx_messageInfo_PetManualST.Marshal(b, m, deterministic)
  11342. }
  11343. func (m *PetManualST) XXX_Merge(src proto.Message) {
  11344. xxx_messageInfo_PetManualST.Merge(m, src)
  11345. }
  11346. func (m *PetManualST) XXX_Size() int {
  11347. return xxx_messageInfo_PetManualST.Size(m)
  11348. }
  11349. func (m *PetManualST) XXX_DiscardUnknown() {
  11350. xxx_messageInfo_PetManualST.DiscardUnknown(m)
  11351. }
  11352. var xxx_messageInfo_PetManualST proto.InternalMessageInfo
  11353. func (m *PetManualST) GetPetCfgId() int32 {
  11354. if m != nil {
  11355. return m.PetCfgId
  11356. }
  11357. return 0
  11358. }
  11359. func (m *PetManualST) GetAdvLevel() uint32 {
  11360. if m != nil {
  11361. return m.AdvLevel
  11362. }
  11363. return 0
  11364. }
  11365. func (m *PetManualST) GetRewardState() int32 {
  11366. if m != nil {
  11367. return m.RewardState
  11368. }
  11369. return 0
  11370. }
  11371. type RushPet struct {
  11372. TotalScore uint32 `protobuf:"varint,1,opt,name=total_score,json=totalScore,proto3" json:"total_score,omitempty"`
  11373. RushRound int32 `protobuf:"varint,2,opt,name=rush_round,json=rushRound,proto3" json:"rush_round,omitempty"`
  11374. RewardRound int32 `protobuf:"varint,3,opt,name=reward_round,json=rewardRound,proto3" json:"reward_round,omitempty"`
  11375. ScoreRewardFlag int32 `protobuf:"varint,4,opt,name=score_reward_flag,json=scoreRewardFlag,proto3" json:"score_reward_flag,omitempty"`
  11376. RankReward int32 `protobuf:"varint,5,opt,name=rank_reward,json=rankReward,proto3" json:"rank_reward,omitempty"`
  11377. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11378. XXX_unrecognized []byte `json:"-"`
  11379. XXX_sizecache int32 `json:"-"`
  11380. }
  11381. func (m *RushPet) Reset() { *m = RushPet{} }
  11382. func (m *RushPet) String() string { return proto.CompactTextString(m) }
  11383. func (*RushPet) ProtoMessage() {}
  11384. func (*RushPet) Descriptor() ([]byte, []int) {
  11385. return fileDescriptor_116e343673f7ffaf, []int{190}
  11386. }
  11387. func (m *RushPet) XXX_Unmarshal(b []byte) error {
  11388. return xxx_messageInfo_RushPet.Unmarshal(m, b)
  11389. }
  11390. func (m *RushPet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11391. return xxx_messageInfo_RushPet.Marshal(b, m, deterministic)
  11392. }
  11393. func (m *RushPet) XXX_Merge(src proto.Message) {
  11394. xxx_messageInfo_RushPet.Merge(m, src)
  11395. }
  11396. func (m *RushPet) XXX_Size() int {
  11397. return xxx_messageInfo_RushPet.Size(m)
  11398. }
  11399. func (m *RushPet) XXX_DiscardUnknown() {
  11400. xxx_messageInfo_RushPet.DiscardUnknown(m)
  11401. }
  11402. var xxx_messageInfo_RushPet proto.InternalMessageInfo
  11403. func (m *RushPet) GetTotalScore() uint32 {
  11404. if m != nil {
  11405. return m.TotalScore
  11406. }
  11407. return 0
  11408. }
  11409. func (m *RushPet) GetRushRound() int32 {
  11410. if m != nil {
  11411. return m.RushRound
  11412. }
  11413. return 0
  11414. }
  11415. func (m *RushPet) GetRewardRound() int32 {
  11416. if m != nil {
  11417. return m.RewardRound
  11418. }
  11419. return 0
  11420. }
  11421. func (m *RushPet) GetScoreRewardFlag() int32 {
  11422. if m != nil {
  11423. return m.ScoreRewardFlag
  11424. }
  11425. return 0
  11426. }
  11427. func (m *RushPet) GetRankReward() int32 {
  11428. if m != nil {
  11429. return m.RankReward
  11430. }
  11431. return 0
  11432. }
  11433. type RolePet struct {
  11434. MaxPetId int32 `protobuf:"varint,1,opt,name=max_pet_id,json=maxPetId,proto3" json:"max_pet_id,omitempty"`
  11435. PetManualList []*KeyValueType `protobuf:"bytes,2,rep,name=pet_manual_list,json=petManualList,proto3" json:"pet_manual_list,omitempty"`
  11436. AssistList []*AssistIdxData `protobuf:"bytes,3,rep,name=assist_list,json=assistList,proto3" json:"assist_list,omitempty"`
  11437. PetList []*PetData `protobuf:"bytes,4,rep,name=pet_list,json=petList,proto3" json:"pet_list,omitempty"`
  11438. BondList []*PetBondData `protobuf:"bytes,5,rep,name=bond_list,json=bondList,proto3" json:"bond_list,omitempty"`
  11439. PetManualRewardList []*PetManualST `protobuf:"bytes,6,rep,name=pet_manual_reward_list,json=petManualRewardList,proto3" json:"pet_manual_reward_list,omitempty"`
  11440. RushPet *RushPet `protobuf:"bytes,7,opt,name=rush_pet,json=rushPet,proto3" json:"rush_pet,omitempty"`
  11441. PetEquipList []*PetEquipData `protobuf:"bytes,8,rep,name=pet_equip_list,json=petEquipList,proto3" json:"pet_equip_list,omitempty"`
  11442. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11443. XXX_unrecognized []byte `json:"-"`
  11444. XXX_sizecache int32 `json:"-"`
  11445. }
  11446. func (m *RolePet) Reset() { *m = RolePet{} }
  11447. func (m *RolePet) String() string { return proto.CompactTextString(m) }
  11448. func (*RolePet) ProtoMessage() {}
  11449. func (*RolePet) Descriptor() ([]byte, []int) {
  11450. return fileDescriptor_116e343673f7ffaf, []int{191}
  11451. }
  11452. func (m *RolePet) XXX_Unmarshal(b []byte) error {
  11453. return xxx_messageInfo_RolePet.Unmarshal(m, b)
  11454. }
  11455. func (m *RolePet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11456. return xxx_messageInfo_RolePet.Marshal(b, m, deterministic)
  11457. }
  11458. func (m *RolePet) XXX_Merge(src proto.Message) {
  11459. xxx_messageInfo_RolePet.Merge(m, src)
  11460. }
  11461. func (m *RolePet) XXX_Size() int {
  11462. return xxx_messageInfo_RolePet.Size(m)
  11463. }
  11464. func (m *RolePet) XXX_DiscardUnknown() {
  11465. xxx_messageInfo_RolePet.DiscardUnknown(m)
  11466. }
  11467. var xxx_messageInfo_RolePet proto.InternalMessageInfo
  11468. func (m *RolePet) GetMaxPetId() int32 {
  11469. if m != nil {
  11470. return m.MaxPetId
  11471. }
  11472. return 0
  11473. }
  11474. func (m *RolePet) GetPetManualList() []*KeyValueType {
  11475. if m != nil {
  11476. return m.PetManualList
  11477. }
  11478. return nil
  11479. }
  11480. func (m *RolePet) GetAssistList() []*AssistIdxData {
  11481. if m != nil {
  11482. return m.AssistList
  11483. }
  11484. return nil
  11485. }
  11486. func (m *RolePet) GetPetList() []*PetData {
  11487. if m != nil {
  11488. return m.PetList
  11489. }
  11490. return nil
  11491. }
  11492. func (m *RolePet) GetBondList() []*PetBondData {
  11493. if m != nil {
  11494. return m.BondList
  11495. }
  11496. return nil
  11497. }
  11498. func (m *RolePet) GetPetManualRewardList() []*PetManualST {
  11499. if m != nil {
  11500. return m.PetManualRewardList
  11501. }
  11502. return nil
  11503. }
  11504. func (m *RolePet) GetRushPet() *RushPet {
  11505. if m != nil {
  11506. return m.RushPet
  11507. }
  11508. return nil
  11509. }
  11510. func (m *RolePet) GetPetEquipList() []*PetEquipData {
  11511. if m != nil {
  11512. return m.PetEquipList
  11513. }
  11514. return nil
  11515. }
  11516. type PetAdvAchievementData struct {
  11517. AdvLevel int32 `protobuf:"varint,1,opt,name=adv_level,json=advLevel,proto3" json:"adv_level,omitempty"`
  11518. AchievementTime uint64 `protobuf:"varint,2,opt,name=achievement_time,json=achievementTime,proto3" json:"achievement_time,omitempty"`
  11519. Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
  11520. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11521. XXX_unrecognized []byte `json:"-"`
  11522. XXX_sizecache int32 `json:"-"`
  11523. }
  11524. func (m *PetAdvAchievementData) Reset() { *m = PetAdvAchievementData{} }
  11525. func (m *PetAdvAchievementData) String() string { return proto.CompactTextString(m) }
  11526. func (*PetAdvAchievementData) ProtoMessage() {}
  11527. func (*PetAdvAchievementData) Descriptor() ([]byte, []int) {
  11528. return fileDescriptor_116e343673f7ffaf, []int{192}
  11529. }
  11530. func (m *PetAdvAchievementData) XXX_Unmarshal(b []byte) error {
  11531. return xxx_messageInfo_PetAdvAchievementData.Unmarshal(m, b)
  11532. }
  11533. func (m *PetAdvAchievementData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11534. return xxx_messageInfo_PetAdvAchievementData.Marshal(b, m, deterministic)
  11535. }
  11536. func (m *PetAdvAchievementData) XXX_Merge(src proto.Message) {
  11537. xxx_messageInfo_PetAdvAchievementData.Merge(m, src)
  11538. }
  11539. func (m *PetAdvAchievementData) XXX_Size() int {
  11540. return xxx_messageInfo_PetAdvAchievementData.Size(m)
  11541. }
  11542. func (m *PetAdvAchievementData) XXX_DiscardUnknown() {
  11543. xxx_messageInfo_PetAdvAchievementData.DiscardUnknown(m)
  11544. }
  11545. var xxx_messageInfo_PetAdvAchievementData proto.InternalMessageInfo
  11546. func (m *PetAdvAchievementData) GetAdvLevel() int32 {
  11547. if m != nil {
  11548. return m.AdvLevel
  11549. }
  11550. return 0
  11551. }
  11552. func (m *PetAdvAchievementData) GetAchievementTime() uint64 {
  11553. if m != nil {
  11554. return m.AchievementTime
  11555. }
  11556. return 0
  11557. }
  11558. func (m *PetAdvAchievementData) GetUid() uint64 {
  11559. if m != nil {
  11560. return m.Uid
  11561. }
  11562. return 0
  11563. }
  11564. type CardCollection struct {
  11565. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  11566. CardLevel int32 `protobuf:"varint,2,opt,name=card_level,json=cardLevel,proto3" json:"card_level,omitempty"`
  11567. LogTime int64 `protobuf:"varint,3,opt,name=log_time,json=logTime,proto3" json:"log_time,omitempty"`
  11568. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11569. XXX_unrecognized []byte `json:"-"`
  11570. XXX_sizecache int32 `json:"-"`
  11571. }
  11572. func (m *CardCollection) Reset() { *m = CardCollection{} }
  11573. func (m *CardCollection) String() string { return proto.CompactTextString(m) }
  11574. func (*CardCollection) ProtoMessage() {}
  11575. func (*CardCollection) Descriptor() ([]byte, []int) {
  11576. return fileDescriptor_116e343673f7ffaf, []int{193}
  11577. }
  11578. func (m *CardCollection) XXX_Unmarshal(b []byte) error {
  11579. return xxx_messageInfo_CardCollection.Unmarshal(m, b)
  11580. }
  11581. func (m *CardCollection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11582. return xxx_messageInfo_CardCollection.Marshal(b, m, deterministic)
  11583. }
  11584. func (m *CardCollection) XXX_Merge(src proto.Message) {
  11585. xxx_messageInfo_CardCollection.Merge(m, src)
  11586. }
  11587. func (m *CardCollection) XXX_Size() int {
  11588. return xxx_messageInfo_CardCollection.Size(m)
  11589. }
  11590. func (m *CardCollection) XXX_DiscardUnknown() {
  11591. xxx_messageInfo_CardCollection.DiscardUnknown(m)
  11592. }
  11593. var xxx_messageInfo_CardCollection proto.InternalMessageInfo
  11594. func (m *CardCollection) GetUid() uint64 {
  11595. if m != nil {
  11596. return m.Uid
  11597. }
  11598. return 0
  11599. }
  11600. func (m *CardCollection) GetCardLevel() int32 {
  11601. if m != nil {
  11602. return m.CardLevel
  11603. }
  11604. return 0
  11605. }
  11606. func (m *CardCollection) GetLogTime() int64 {
  11607. if m != nil {
  11608. return m.LogTime
  11609. }
  11610. return 0
  11611. }
  11612. // //////////////////////拉新(邀请码)
  11613. type InvitationTaskData struct {
  11614. TaskId uint32 `protobuf:"varint,1,opt,name=task_id,json=taskId,proto3" json:"task_id,omitempty"`
  11615. Progress int32 `protobuf:"varint,2,opt,name=progress,proto3" json:"progress,omitempty"`
  11616. RewardedCount int32 `protobuf:"varint,3,opt,name=rewarded_count,json=rewardedCount,proto3" json:"rewarded_count,omitempty"`
  11617. RewardCount int32 `protobuf:"varint,4,opt,name=reward_count,json=rewardCount,proto3" json:"reward_count,omitempty"`
  11618. CompleteMaxCount int32 `protobuf:"varint,5,opt,name=complete_max_count,json=completeMaxCount,proto3" json:"complete_max_count,omitempty"`
  11619. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11620. XXX_unrecognized []byte `json:"-"`
  11621. XXX_sizecache int32 `json:"-"`
  11622. }
  11623. func (m *InvitationTaskData) Reset() { *m = InvitationTaskData{} }
  11624. func (m *InvitationTaskData) String() string { return proto.CompactTextString(m) }
  11625. func (*InvitationTaskData) ProtoMessage() {}
  11626. func (*InvitationTaskData) Descriptor() ([]byte, []int) {
  11627. return fileDescriptor_116e343673f7ffaf, []int{194}
  11628. }
  11629. func (m *InvitationTaskData) XXX_Unmarshal(b []byte) error {
  11630. return xxx_messageInfo_InvitationTaskData.Unmarshal(m, b)
  11631. }
  11632. func (m *InvitationTaskData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11633. return xxx_messageInfo_InvitationTaskData.Marshal(b, m, deterministic)
  11634. }
  11635. func (m *InvitationTaskData) XXX_Merge(src proto.Message) {
  11636. xxx_messageInfo_InvitationTaskData.Merge(m, src)
  11637. }
  11638. func (m *InvitationTaskData) XXX_Size() int {
  11639. return xxx_messageInfo_InvitationTaskData.Size(m)
  11640. }
  11641. func (m *InvitationTaskData) XXX_DiscardUnknown() {
  11642. xxx_messageInfo_InvitationTaskData.DiscardUnknown(m)
  11643. }
  11644. var xxx_messageInfo_InvitationTaskData proto.InternalMessageInfo
  11645. func (m *InvitationTaskData) GetTaskId() uint32 {
  11646. if m != nil {
  11647. return m.TaskId
  11648. }
  11649. return 0
  11650. }
  11651. func (m *InvitationTaskData) GetProgress() int32 {
  11652. if m != nil {
  11653. return m.Progress
  11654. }
  11655. return 0
  11656. }
  11657. func (m *InvitationTaskData) GetRewardedCount() int32 {
  11658. if m != nil {
  11659. return m.RewardedCount
  11660. }
  11661. return 0
  11662. }
  11663. func (m *InvitationTaskData) GetRewardCount() int32 {
  11664. if m != nil {
  11665. return m.RewardCount
  11666. }
  11667. return 0
  11668. }
  11669. func (m *InvitationTaskData) GetCompleteMaxCount() int32 {
  11670. if m != nil {
  11671. return m.CompleteMaxCount
  11672. }
  11673. return 0
  11674. }
  11675. // 成员贡献给导师的日志
  11676. type InvitationLogData struct {
  11677. MemberNickName string `protobuf:"bytes,1,opt,name=member_nick_name,json=memberNickName,proto3" json:"member_nick_name,omitempty"`
  11678. ProcessTime uint64 `protobuf:"varint,2,opt,name=process_time,json=processTime,proto3" json:"process_time,omitempty"`
  11679. ResVal uint32 `protobuf:"varint,3,opt,name=res_val,json=resVal,proto3" json:"res_val,omitempty"`
  11680. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11681. XXX_unrecognized []byte `json:"-"`
  11682. XXX_sizecache int32 `json:"-"`
  11683. }
  11684. func (m *InvitationLogData) Reset() { *m = InvitationLogData{} }
  11685. func (m *InvitationLogData) String() string { return proto.CompactTextString(m) }
  11686. func (*InvitationLogData) ProtoMessage() {}
  11687. func (*InvitationLogData) Descriptor() ([]byte, []int) {
  11688. return fileDescriptor_116e343673f7ffaf, []int{195}
  11689. }
  11690. func (m *InvitationLogData) XXX_Unmarshal(b []byte) error {
  11691. return xxx_messageInfo_InvitationLogData.Unmarshal(m, b)
  11692. }
  11693. func (m *InvitationLogData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11694. return xxx_messageInfo_InvitationLogData.Marshal(b, m, deterministic)
  11695. }
  11696. func (m *InvitationLogData) XXX_Merge(src proto.Message) {
  11697. xxx_messageInfo_InvitationLogData.Merge(m, src)
  11698. }
  11699. func (m *InvitationLogData) XXX_Size() int {
  11700. return xxx_messageInfo_InvitationLogData.Size(m)
  11701. }
  11702. func (m *InvitationLogData) XXX_DiscardUnknown() {
  11703. xxx_messageInfo_InvitationLogData.DiscardUnknown(m)
  11704. }
  11705. var xxx_messageInfo_InvitationLogData proto.InternalMessageInfo
  11706. func (m *InvitationLogData) GetMemberNickName() string {
  11707. if m != nil {
  11708. return m.MemberNickName
  11709. }
  11710. return ""
  11711. }
  11712. func (m *InvitationLogData) GetProcessTime() uint64 {
  11713. if m != nil {
  11714. return m.ProcessTime
  11715. }
  11716. return 0
  11717. }
  11718. func (m *InvitationLogData) GetResVal() uint32 {
  11719. if m != nil {
  11720. return m.ResVal
  11721. }
  11722. return 0
  11723. }
  11724. type InvitationMemberValData struct {
  11725. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  11726. Level int32 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
  11727. TotalRecharge float32 `protobuf:"fixed32,3,opt,name=total_recharge,json=totalRecharge,proto3" json:"total_recharge,omitempty"`
  11728. ResVal int32 `protobuf:"varint,4,opt,name=res_val,json=resVal,proto3" json:"res_val,omitempty"`
  11729. State bool `protobuf:"varint,5,opt,name=state,proto3" json:"state,omitempty"`
  11730. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11731. XXX_unrecognized []byte `json:"-"`
  11732. XXX_sizecache int32 `json:"-"`
  11733. }
  11734. func (m *InvitationMemberValData) Reset() { *m = InvitationMemberValData{} }
  11735. func (m *InvitationMemberValData) String() string { return proto.CompactTextString(m) }
  11736. func (*InvitationMemberValData) ProtoMessage() {}
  11737. func (*InvitationMemberValData) Descriptor() ([]byte, []int) {
  11738. return fileDescriptor_116e343673f7ffaf, []int{196}
  11739. }
  11740. func (m *InvitationMemberValData) XXX_Unmarshal(b []byte) error {
  11741. return xxx_messageInfo_InvitationMemberValData.Unmarshal(m, b)
  11742. }
  11743. func (m *InvitationMemberValData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11744. return xxx_messageInfo_InvitationMemberValData.Marshal(b, m, deterministic)
  11745. }
  11746. func (m *InvitationMemberValData) XXX_Merge(src proto.Message) {
  11747. xxx_messageInfo_InvitationMemberValData.Merge(m, src)
  11748. }
  11749. func (m *InvitationMemberValData) XXX_Size() int {
  11750. return xxx_messageInfo_InvitationMemberValData.Size(m)
  11751. }
  11752. func (m *InvitationMemberValData) XXX_DiscardUnknown() {
  11753. xxx_messageInfo_InvitationMemberValData.DiscardUnknown(m)
  11754. }
  11755. var xxx_messageInfo_InvitationMemberValData proto.InternalMessageInfo
  11756. func (m *InvitationMemberValData) GetUid() uint64 {
  11757. if m != nil {
  11758. return m.Uid
  11759. }
  11760. return 0
  11761. }
  11762. func (m *InvitationMemberValData) GetLevel() int32 {
  11763. if m != nil {
  11764. return m.Level
  11765. }
  11766. return 0
  11767. }
  11768. func (m *InvitationMemberValData) GetTotalRecharge() float32 {
  11769. if m != nil {
  11770. return m.TotalRecharge
  11771. }
  11772. return 0
  11773. }
  11774. func (m *InvitationMemberValData) GetResVal() int32 {
  11775. if m != nil {
  11776. return m.ResVal
  11777. }
  11778. return 0
  11779. }
  11780. func (m *InvitationMemberValData) GetState() bool {
  11781. if m != nil {
  11782. return m.State
  11783. }
  11784. return false
  11785. }
  11786. type RoleInvitation struct {
  11787. ClickNum int32 `protobuf:"varint,1,opt,name=click_num,json=clickNum,proto3" json:"click_num,omitempty"`
  11788. SelfInvitationNumber uint64 `protobuf:"varint,2,opt,name=self_invitation_number,json=selfInvitationNumber,proto3" json:"self_invitation_number,omitempty"`
  11789. MasterUid uint64 `protobuf:"varint,3,opt,name=master_uid,json=masterUid,proto3" json:"master_uid,omitempty"`
  11790. MasterEndTime uint64 `protobuf:"varint,4,opt,name=master_end_time,json=masterEndTime,proto3" json:"master_end_time,omitempty"`
  11791. ClickMemberList []uint64 `protobuf:"varint,5,rep,packed,name=click_member_list,json=clickMemberList,proto3" json:"click_member_list,omitempty"`
  11792. TaskList []*InvitationTaskData `protobuf:"bytes,6,rep,name=task_list,json=taskList,proto3" json:"task_list,omitempty"`
  11793. MemberUidList []*InvitationMemberValData `protobuf:"bytes,7,rep,name=member_uid_list,json=memberUidList,proto3" json:"member_uid_list,omitempty"`
  11794. LogList []*InvitationLogData `protobuf:"bytes,8,rep,name=log_list,json=logList,proto3" json:"log_list,omitempty"`
  11795. ClickReplayMasterList []uint64 `protobuf:"varint,9,rep,packed,name=click_replay_master_list,json=clickReplayMasterList,proto3" json:"click_replay_master_list,omitempty"`
  11796. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11797. XXX_unrecognized []byte `json:"-"`
  11798. XXX_sizecache int32 `json:"-"`
  11799. }
  11800. func (m *RoleInvitation) Reset() { *m = RoleInvitation{} }
  11801. func (m *RoleInvitation) String() string { return proto.CompactTextString(m) }
  11802. func (*RoleInvitation) ProtoMessage() {}
  11803. func (*RoleInvitation) Descriptor() ([]byte, []int) {
  11804. return fileDescriptor_116e343673f7ffaf, []int{197}
  11805. }
  11806. func (m *RoleInvitation) XXX_Unmarshal(b []byte) error {
  11807. return xxx_messageInfo_RoleInvitation.Unmarshal(m, b)
  11808. }
  11809. func (m *RoleInvitation) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11810. return xxx_messageInfo_RoleInvitation.Marshal(b, m, deterministic)
  11811. }
  11812. func (m *RoleInvitation) XXX_Merge(src proto.Message) {
  11813. xxx_messageInfo_RoleInvitation.Merge(m, src)
  11814. }
  11815. func (m *RoleInvitation) XXX_Size() int {
  11816. return xxx_messageInfo_RoleInvitation.Size(m)
  11817. }
  11818. func (m *RoleInvitation) XXX_DiscardUnknown() {
  11819. xxx_messageInfo_RoleInvitation.DiscardUnknown(m)
  11820. }
  11821. var xxx_messageInfo_RoleInvitation proto.InternalMessageInfo
  11822. func (m *RoleInvitation) GetClickNum() int32 {
  11823. if m != nil {
  11824. return m.ClickNum
  11825. }
  11826. return 0
  11827. }
  11828. func (m *RoleInvitation) GetSelfInvitationNumber() uint64 {
  11829. if m != nil {
  11830. return m.SelfInvitationNumber
  11831. }
  11832. return 0
  11833. }
  11834. func (m *RoleInvitation) GetMasterUid() uint64 {
  11835. if m != nil {
  11836. return m.MasterUid
  11837. }
  11838. return 0
  11839. }
  11840. func (m *RoleInvitation) GetMasterEndTime() uint64 {
  11841. if m != nil {
  11842. return m.MasterEndTime
  11843. }
  11844. return 0
  11845. }
  11846. func (m *RoleInvitation) GetClickMemberList() []uint64 {
  11847. if m != nil {
  11848. return m.ClickMemberList
  11849. }
  11850. return nil
  11851. }
  11852. func (m *RoleInvitation) GetTaskList() []*InvitationTaskData {
  11853. if m != nil {
  11854. return m.TaskList
  11855. }
  11856. return nil
  11857. }
  11858. func (m *RoleInvitation) GetMemberUidList() []*InvitationMemberValData {
  11859. if m != nil {
  11860. return m.MemberUidList
  11861. }
  11862. return nil
  11863. }
  11864. func (m *RoleInvitation) GetLogList() []*InvitationLogData {
  11865. if m != nil {
  11866. return m.LogList
  11867. }
  11868. return nil
  11869. }
  11870. func (m *RoleInvitation) GetClickReplayMasterList() []uint64 {
  11871. if m != nil {
  11872. return m.ClickReplayMasterList
  11873. }
  11874. return nil
  11875. }
  11876. // //////////////////////抽卡
  11877. type DrawData struct {
  11878. DrawType int32 `protobuf:"varint,1,opt,name=draw_type,json=drawType,proto3" json:"draw_type,omitempty"`
  11879. DrawTimes int32 `protobuf:"varint,2,opt,name=draw_times,json=drawTimes,proto3" json:"draw_times,omitempty"`
  11880. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11881. XXX_unrecognized []byte `json:"-"`
  11882. XXX_sizecache int32 `json:"-"`
  11883. }
  11884. func (m *DrawData) Reset() { *m = DrawData{} }
  11885. func (m *DrawData) String() string { return proto.CompactTextString(m) }
  11886. func (*DrawData) ProtoMessage() {}
  11887. func (*DrawData) Descriptor() ([]byte, []int) {
  11888. return fileDescriptor_116e343673f7ffaf, []int{198}
  11889. }
  11890. func (m *DrawData) XXX_Unmarshal(b []byte) error {
  11891. return xxx_messageInfo_DrawData.Unmarshal(m, b)
  11892. }
  11893. func (m *DrawData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11894. return xxx_messageInfo_DrawData.Marshal(b, m, deterministic)
  11895. }
  11896. func (m *DrawData) XXX_Merge(src proto.Message) {
  11897. xxx_messageInfo_DrawData.Merge(m, src)
  11898. }
  11899. func (m *DrawData) XXX_Size() int {
  11900. return xxx_messageInfo_DrawData.Size(m)
  11901. }
  11902. func (m *DrawData) XXX_DiscardUnknown() {
  11903. xxx_messageInfo_DrawData.DiscardUnknown(m)
  11904. }
  11905. var xxx_messageInfo_DrawData proto.InternalMessageInfo
  11906. func (m *DrawData) GetDrawType() int32 {
  11907. if m != nil {
  11908. return m.DrawType
  11909. }
  11910. return 0
  11911. }
  11912. func (m *DrawData) GetDrawTimes() int32 {
  11913. if m != nil {
  11914. return m.DrawTimes
  11915. }
  11916. return 0
  11917. }
  11918. type RoleDraw struct {
  11919. DrawSystem []*DrawData `protobuf:"bytes,1,rep,name=draw_system,json=drawSystem,proto3" json:"draw_system,omitempty"`
  11920. // 历史抽卡次数
  11921. CardDrawTotalNum int32 `protobuf:"varint,2,opt,name=card_draw_total_num,json=cardDrawTotalNum,proto3" json:"card_draw_total_num,omitempty"`
  11922. PetDrawTotalNum int32 `protobuf:"varint,3,opt,name=pet_draw_total_num,json=petDrawTotalNum,proto3" json:"pet_draw_total_num,omitempty"`
  11923. SkillEquipDrawTotalNum int32 `protobuf:"varint,4,opt,name=skill_equip_draw_total_num,json=skillEquipDrawTotalNum,proto3" json:"skill_equip_draw_total_num,omitempty"`
  11924. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11925. XXX_unrecognized []byte `json:"-"`
  11926. XXX_sizecache int32 `json:"-"`
  11927. }
  11928. func (m *RoleDraw) Reset() { *m = RoleDraw{} }
  11929. func (m *RoleDraw) String() string { return proto.CompactTextString(m) }
  11930. func (*RoleDraw) ProtoMessage() {}
  11931. func (*RoleDraw) Descriptor() ([]byte, []int) {
  11932. return fileDescriptor_116e343673f7ffaf, []int{199}
  11933. }
  11934. func (m *RoleDraw) XXX_Unmarshal(b []byte) error {
  11935. return xxx_messageInfo_RoleDraw.Unmarshal(m, b)
  11936. }
  11937. func (m *RoleDraw) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11938. return xxx_messageInfo_RoleDraw.Marshal(b, m, deterministic)
  11939. }
  11940. func (m *RoleDraw) XXX_Merge(src proto.Message) {
  11941. xxx_messageInfo_RoleDraw.Merge(m, src)
  11942. }
  11943. func (m *RoleDraw) XXX_Size() int {
  11944. return xxx_messageInfo_RoleDraw.Size(m)
  11945. }
  11946. func (m *RoleDraw) XXX_DiscardUnknown() {
  11947. xxx_messageInfo_RoleDraw.DiscardUnknown(m)
  11948. }
  11949. var xxx_messageInfo_RoleDraw proto.InternalMessageInfo
  11950. func (m *RoleDraw) GetDrawSystem() []*DrawData {
  11951. if m != nil {
  11952. return m.DrawSystem
  11953. }
  11954. return nil
  11955. }
  11956. func (m *RoleDraw) GetCardDrawTotalNum() int32 {
  11957. if m != nil {
  11958. return m.CardDrawTotalNum
  11959. }
  11960. return 0
  11961. }
  11962. func (m *RoleDraw) GetPetDrawTotalNum() int32 {
  11963. if m != nil {
  11964. return m.PetDrawTotalNum
  11965. }
  11966. return 0
  11967. }
  11968. func (m *RoleDraw) GetSkillEquipDrawTotalNum() int32 {
  11969. if m != nil {
  11970. return m.SkillEquipDrawTotalNum
  11971. }
  11972. return 0
  11973. }
  11974. // 卢恩商品
  11975. type RuneGoods struct {
  11976. GoodsId int32 `protobuf:"varint,1,opt,name=goods_id,json=goodsId,proto3" json:"goods_id,omitempty"`
  11977. BuyNum int32 `protobuf:"varint,2,opt,name=buy_num,json=buyNum,proto3" json:"buy_num,omitempty"`
  11978. HistoryBuy int32 `protobuf:"varint,3,opt,name=history_buy,json=historyBuy,proto3" json:"history_buy,omitempty"`
  11979. EndTime int64 `protobuf:"varint,4,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  11980. NextRewardTime int64 `protobuf:"varint,5,opt,name=next_reward_time,json=nextRewardTime,proto3" json:"next_reward_time,omitempty"`
  11981. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  11982. XXX_unrecognized []byte `json:"-"`
  11983. XXX_sizecache int32 `json:"-"`
  11984. }
  11985. func (m *RuneGoods) Reset() { *m = RuneGoods{} }
  11986. func (m *RuneGoods) String() string { return proto.CompactTextString(m) }
  11987. func (*RuneGoods) ProtoMessage() {}
  11988. func (*RuneGoods) Descriptor() ([]byte, []int) {
  11989. return fileDescriptor_116e343673f7ffaf, []int{200}
  11990. }
  11991. func (m *RuneGoods) XXX_Unmarshal(b []byte) error {
  11992. return xxx_messageInfo_RuneGoods.Unmarshal(m, b)
  11993. }
  11994. func (m *RuneGoods) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  11995. return xxx_messageInfo_RuneGoods.Marshal(b, m, deterministic)
  11996. }
  11997. func (m *RuneGoods) XXX_Merge(src proto.Message) {
  11998. xxx_messageInfo_RuneGoods.Merge(m, src)
  11999. }
  12000. func (m *RuneGoods) XXX_Size() int {
  12001. return xxx_messageInfo_RuneGoods.Size(m)
  12002. }
  12003. func (m *RuneGoods) XXX_DiscardUnknown() {
  12004. xxx_messageInfo_RuneGoods.DiscardUnknown(m)
  12005. }
  12006. var xxx_messageInfo_RuneGoods proto.InternalMessageInfo
  12007. func (m *RuneGoods) GetGoodsId() int32 {
  12008. if m != nil {
  12009. return m.GoodsId
  12010. }
  12011. return 0
  12012. }
  12013. func (m *RuneGoods) GetBuyNum() int32 {
  12014. if m != nil {
  12015. return m.BuyNum
  12016. }
  12017. return 0
  12018. }
  12019. func (m *RuneGoods) GetHistoryBuy() int32 {
  12020. if m != nil {
  12021. return m.HistoryBuy
  12022. }
  12023. return 0
  12024. }
  12025. func (m *RuneGoods) GetEndTime() int64 {
  12026. if m != nil {
  12027. return m.EndTime
  12028. }
  12029. return 0
  12030. }
  12031. func (m *RuneGoods) GetNextRewardTime() int64 {
  12032. if m != nil {
  12033. return m.NextRewardTime
  12034. }
  12035. return 0
  12036. }
  12037. // 卢恩商店
  12038. type RuneShop struct {
  12039. ShopId int32 `protobuf:"varint,1,opt,name=shop_id,json=shopId,proto3" json:"shop_id,omitempty"`
  12040. SubShopId int32 `protobuf:"varint,2,opt,name=sub_shop_id,json=subShopId,proto3" json:"sub_shop_id,omitempty"`
  12041. GoodsInfo []*RuneGoods `protobuf:"bytes,3,rep,name=goods_info,json=goodsInfo,proto3" json:"goods_info,omitempty"`
  12042. NextRefresh int64 `protobuf:"varint,4,opt,name=next_refresh,json=nextRefresh,proto3" json:"next_refresh,omitempty"`
  12043. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12044. XXX_unrecognized []byte `json:"-"`
  12045. XXX_sizecache int32 `json:"-"`
  12046. }
  12047. func (m *RuneShop) Reset() { *m = RuneShop{} }
  12048. func (m *RuneShop) String() string { return proto.CompactTextString(m) }
  12049. func (*RuneShop) ProtoMessage() {}
  12050. func (*RuneShop) Descriptor() ([]byte, []int) {
  12051. return fileDescriptor_116e343673f7ffaf, []int{201}
  12052. }
  12053. func (m *RuneShop) XXX_Unmarshal(b []byte) error {
  12054. return xxx_messageInfo_RuneShop.Unmarshal(m, b)
  12055. }
  12056. func (m *RuneShop) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12057. return xxx_messageInfo_RuneShop.Marshal(b, m, deterministic)
  12058. }
  12059. func (m *RuneShop) XXX_Merge(src proto.Message) {
  12060. xxx_messageInfo_RuneShop.Merge(m, src)
  12061. }
  12062. func (m *RuneShop) XXX_Size() int {
  12063. return xxx_messageInfo_RuneShop.Size(m)
  12064. }
  12065. func (m *RuneShop) XXX_DiscardUnknown() {
  12066. xxx_messageInfo_RuneShop.DiscardUnknown(m)
  12067. }
  12068. var xxx_messageInfo_RuneShop proto.InternalMessageInfo
  12069. func (m *RuneShop) GetShopId() int32 {
  12070. if m != nil {
  12071. return m.ShopId
  12072. }
  12073. return 0
  12074. }
  12075. func (m *RuneShop) GetSubShopId() int32 {
  12076. if m != nil {
  12077. return m.SubShopId
  12078. }
  12079. return 0
  12080. }
  12081. func (m *RuneShop) GetGoodsInfo() []*RuneGoods {
  12082. if m != nil {
  12083. return m.GoodsInfo
  12084. }
  12085. return nil
  12086. }
  12087. func (m *RuneShop) GetNextRefresh() int64 {
  12088. if m != nil {
  12089. return m.NextRefresh
  12090. }
  12091. return 0
  12092. }
  12093. type RuneExplore struct {
  12094. CurLvl int32 `protobuf:"varint,1,opt,name=curLvl,proto3" json:"curLvl,omitempty"`
  12095. TotalExp int32 `protobuf:"varint,2,opt,name=totalExp,proto3" json:"totalExp,omitempty"`
  12096. MissionExp int32 `protobuf:"varint,3,opt,name=missionExp,proto3" json:"missionExp,omitempty"`
  12097. BUnlock bool `protobuf:"varint,4,opt,name=bUnlock,proto3" json:"bUnlock,omitempty"`
  12098. FullMaxAward bool `protobuf:"varint,5,opt,name=fullMaxAward,proto3" json:"fullMaxAward,omitempty"`
  12099. State []*KeyValueType `protobuf:"bytes,6,rep,name=state,proto3" json:"state,omitempty"`
  12100. AlreadyRune int32 `protobuf:"varint,7,opt,name=alreadyRune,proto3" json:"alreadyRune,omitempty"`
  12101. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12102. XXX_unrecognized []byte `json:"-"`
  12103. XXX_sizecache int32 `json:"-"`
  12104. }
  12105. func (m *RuneExplore) Reset() { *m = RuneExplore{} }
  12106. func (m *RuneExplore) String() string { return proto.CompactTextString(m) }
  12107. func (*RuneExplore) ProtoMessage() {}
  12108. func (*RuneExplore) Descriptor() ([]byte, []int) {
  12109. return fileDescriptor_116e343673f7ffaf, []int{202}
  12110. }
  12111. func (m *RuneExplore) XXX_Unmarshal(b []byte) error {
  12112. return xxx_messageInfo_RuneExplore.Unmarshal(m, b)
  12113. }
  12114. func (m *RuneExplore) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12115. return xxx_messageInfo_RuneExplore.Marshal(b, m, deterministic)
  12116. }
  12117. func (m *RuneExplore) XXX_Merge(src proto.Message) {
  12118. xxx_messageInfo_RuneExplore.Merge(m, src)
  12119. }
  12120. func (m *RuneExplore) XXX_Size() int {
  12121. return xxx_messageInfo_RuneExplore.Size(m)
  12122. }
  12123. func (m *RuneExplore) XXX_DiscardUnknown() {
  12124. xxx_messageInfo_RuneExplore.DiscardUnknown(m)
  12125. }
  12126. var xxx_messageInfo_RuneExplore proto.InternalMessageInfo
  12127. func (m *RuneExplore) GetCurLvl() int32 {
  12128. if m != nil {
  12129. return m.CurLvl
  12130. }
  12131. return 0
  12132. }
  12133. func (m *RuneExplore) GetTotalExp() int32 {
  12134. if m != nil {
  12135. return m.TotalExp
  12136. }
  12137. return 0
  12138. }
  12139. func (m *RuneExplore) GetMissionExp() int32 {
  12140. if m != nil {
  12141. return m.MissionExp
  12142. }
  12143. return 0
  12144. }
  12145. func (m *RuneExplore) GetBUnlock() bool {
  12146. if m != nil {
  12147. return m.BUnlock
  12148. }
  12149. return false
  12150. }
  12151. func (m *RuneExplore) GetFullMaxAward() bool {
  12152. if m != nil {
  12153. return m.FullMaxAward
  12154. }
  12155. return false
  12156. }
  12157. func (m *RuneExplore) GetState() []*KeyValueType {
  12158. if m != nil {
  12159. return m.State
  12160. }
  12161. return nil
  12162. }
  12163. func (m *RuneExplore) GetAlreadyRune() int32 {
  12164. if m != nil {
  12165. return m.AlreadyRune
  12166. }
  12167. return 0
  12168. }
  12169. type RuneBaseData struct {
  12170. ResetVersion int32 `protobuf:"varint,1,opt,name=reset_version,json=resetVersion,proto3" json:"reset_version,omitempty"`
  12171. MonthCardModify bool `protobuf:"varint,2,opt,name=month_card_modify,json=monthCardModify,proto3" json:"month_card_modify,omitempty"`
  12172. UsedCreditRecharge int32 `protobuf:"varint,3,opt,name=used_credit_recharge,json=usedCreditRecharge,proto3" json:"used_credit_recharge,omitempty"`
  12173. MaxCreditRecharge int32 `protobuf:"varint,4,opt,name=max_credit_recharge,json=maxCreditRecharge,proto3" json:"max_credit_recharge,omitempty"`
  12174. CreditRechargeLimit bool `protobuf:"varint,5,opt,name=credit_recharge_limit,json=creditRechargeLimit,proto3" json:"credit_recharge_limit,omitempty"`
  12175. PrivilegeData *RuneSpecialPrivilegeData `protobuf:"bytes,6,opt,name=privilege_data,json=privilegeData,proto3" json:"privilege_data,omitempty"`
  12176. IsPassCheck bool `protobuf:"varint,7,opt,name=is_pass_check,json=isPassCheck,proto3" json:"is_pass_check,omitempty"`
  12177. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12178. XXX_unrecognized []byte `json:"-"`
  12179. XXX_sizecache int32 `json:"-"`
  12180. }
  12181. func (m *RuneBaseData) Reset() { *m = RuneBaseData{} }
  12182. func (m *RuneBaseData) String() string { return proto.CompactTextString(m) }
  12183. func (*RuneBaseData) ProtoMessage() {}
  12184. func (*RuneBaseData) Descriptor() ([]byte, []int) {
  12185. return fileDescriptor_116e343673f7ffaf, []int{203}
  12186. }
  12187. func (m *RuneBaseData) XXX_Unmarshal(b []byte) error {
  12188. return xxx_messageInfo_RuneBaseData.Unmarshal(m, b)
  12189. }
  12190. func (m *RuneBaseData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12191. return xxx_messageInfo_RuneBaseData.Marshal(b, m, deterministic)
  12192. }
  12193. func (m *RuneBaseData) XXX_Merge(src proto.Message) {
  12194. xxx_messageInfo_RuneBaseData.Merge(m, src)
  12195. }
  12196. func (m *RuneBaseData) XXX_Size() int {
  12197. return xxx_messageInfo_RuneBaseData.Size(m)
  12198. }
  12199. func (m *RuneBaseData) XXX_DiscardUnknown() {
  12200. xxx_messageInfo_RuneBaseData.DiscardUnknown(m)
  12201. }
  12202. var xxx_messageInfo_RuneBaseData proto.InternalMessageInfo
  12203. func (m *RuneBaseData) GetResetVersion() int32 {
  12204. if m != nil {
  12205. return m.ResetVersion
  12206. }
  12207. return 0
  12208. }
  12209. func (m *RuneBaseData) GetMonthCardModify() bool {
  12210. if m != nil {
  12211. return m.MonthCardModify
  12212. }
  12213. return false
  12214. }
  12215. func (m *RuneBaseData) GetUsedCreditRecharge() int32 {
  12216. if m != nil {
  12217. return m.UsedCreditRecharge
  12218. }
  12219. return 0
  12220. }
  12221. func (m *RuneBaseData) GetMaxCreditRecharge() int32 {
  12222. if m != nil {
  12223. return m.MaxCreditRecharge
  12224. }
  12225. return 0
  12226. }
  12227. func (m *RuneBaseData) GetCreditRechargeLimit() bool {
  12228. if m != nil {
  12229. return m.CreditRechargeLimit
  12230. }
  12231. return false
  12232. }
  12233. func (m *RuneBaseData) GetPrivilegeData() *RuneSpecialPrivilegeData {
  12234. if m != nil {
  12235. return m.PrivilegeData
  12236. }
  12237. return nil
  12238. }
  12239. func (m *RuneBaseData) GetIsPassCheck() bool {
  12240. if m != nil {
  12241. return m.IsPassCheck
  12242. }
  12243. return false
  12244. }
  12245. // 特权卡商店
  12246. type RuneSpecialPrivilegeData struct {
  12247. SpecialId int32 `protobuf:"varint,1,opt,name=special_id,json=specialId,proto3" json:"special_id,omitempty"`
  12248. RewardTime uint64 `protobuf:"varint,2,opt,name=reward_time,json=rewardTime,proto3" json:"reward_time,omitempty"`
  12249. ProcessTime uint64 `protobuf:"varint,3,opt,name=process_time,json=processTime,proto3" json:"process_time,omitempty"`
  12250. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12251. XXX_unrecognized []byte `json:"-"`
  12252. XXX_sizecache int32 `json:"-"`
  12253. }
  12254. func (m *RuneSpecialPrivilegeData) Reset() { *m = RuneSpecialPrivilegeData{} }
  12255. func (m *RuneSpecialPrivilegeData) String() string { return proto.CompactTextString(m) }
  12256. func (*RuneSpecialPrivilegeData) ProtoMessage() {}
  12257. func (*RuneSpecialPrivilegeData) Descriptor() ([]byte, []int) {
  12258. return fileDescriptor_116e343673f7ffaf, []int{204}
  12259. }
  12260. func (m *RuneSpecialPrivilegeData) XXX_Unmarshal(b []byte) error {
  12261. return xxx_messageInfo_RuneSpecialPrivilegeData.Unmarshal(m, b)
  12262. }
  12263. func (m *RuneSpecialPrivilegeData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12264. return xxx_messageInfo_RuneSpecialPrivilegeData.Marshal(b, m, deterministic)
  12265. }
  12266. func (m *RuneSpecialPrivilegeData) XXX_Merge(src proto.Message) {
  12267. xxx_messageInfo_RuneSpecialPrivilegeData.Merge(m, src)
  12268. }
  12269. func (m *RuneSpecialPrivilegeData) XXX_Size() int {
  12270. return xxx_messageInfo_RuneSpecialPrivilegeData.Size(m)
  12271. }
  12272. func (m *RuneSpecialPrivilegeData) XXX_DiscardUnknown() {
  12273. xxx_messageInfo_RuneSpecialPrivilegeData.DiscardUnknown(m)
  12274. }
  12275. var xxx_messageInfo_RuneSpecialPrivilegeData proto.InternalMessageInfo
  12276. func (m *RuneSpecialPrivilegeData) GetSpecialId() int32 {
  12277. if m != nil {
  12278. return m.SpecialId
  12279. }
  12280. return 0
  12281. }
  12282. func (m *RuneSpecialPrivilegeData) GetRewardTime() uint64 {
  12283. if m != nil {
  12284. return m.RewardTime
  12285. }
  12286. return 0
  12287. }
  12288. func (m *RuneSpecialPrivilegeData) GetProcessTime() uint64 {
  12289. if m != nil {
  12290. return m.ProcessTime
  12291. }
  12292. return 0
  12293. }
  12294. // 卢恩商会
  12295. type RoleRune struct {
  12296. ShopList []*RuneShop `protobuf:"bytes,1,rep,name=shop_list,json=shopList,proto3" json:"shop_list,omitempty"`
  12297. RuneExplore *RuneExplore `protobuf:"bytes,2,opt,name=rune_explore,json=runeExplore,proto3" json:"rune_explore,omitempty"`
  12298. RuneBase *RuneBaseData `protobuf:"bytes,3,opt,name=rune_base,json=runeBase,proto3" json:"rune_base,omitempty"`
  12299. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12300. XXX_unrecognized []byte `json:"-"`
  12301. XXX_sizecache int32 `json:"-"`
  12302. }
  12303. func (m *RoleRune) Reset() { *m = RoleRune{} }
  12304. func (m *RoleRune) String() string { return proto.CompactTextString(m) }
  12305. func (*RoleRune) ProtoMessage() {}
  12306. func (*RoleRune) Descriptor() ([]byte, []int) {
  12307. return fileDescriptor_116e343673f7ffaf, []int{205}
  12308. }
  12309. func (m *RoleRune) XXX_Unmarshal(b []byte) error {
  12310. return xxx_messageInfo_RoleRune.Unmarshal(m, b)
  12311. }
  12312. func (m *RoleRune) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12313. return xxx_messageInfo_RoleRune.Marshal(b, m, deterministic)
  12314. }
  12315. func (m *RoleRune) XXX_Merge(src proto.Message) {
  12316. xxx_messageInfo_RoleRune.Merge(m, src)
  12317. }
  12318. func (m *RoleRune) XXX_Size() int {
  12319. return xxx_messageInfo_RoleRune.Size(m)
  12320. }
  12321. func (m *RoleRune) XXX_DiscardUnknown() {
  12322. xxx_messageInfo_RoleRune.DiscardUnknown(m)
  12323. }
  12324. var xxx_messageInfo_RoleRune proto.InternalMessageInfo
  12325. func (m *RoleRune) GetShopList() []*RuneShop {
  12326. if m != nil {
  12327. return m.ShopList
  12328. }
  12329. return nil
  12330. }
  12331. func (m *RoleRune) GetRuneExplore() *RuneExplore {
  12332. if m != nil {
  12333. return m.RuneExplore
  12334. }
  12335. return nil
  12336. }
  12337. func (m *RoleRune) GetRuneBase() *RuneBaseData {
  12338. if m != nil {
  12339. return m.RuneBase
  12340. }
  12341. return nil
  12342. }
  12343. type RushRankTop3 struct {
  12344. Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
  12345. Data int32 `protobuf:"varint,2,opt,name=data,proto3" json:"data,omitempty"`
  12346. Rank int32 `protobuf:"varint,3,opt,name=rank,proto3" json:"rank,omitempty"`
  12347. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12348. XXX_unrecognized []byte `json:"-"`
  12349. XXX_sizecache int32 `json:"-"`
  12350. }
  12351. func (m *RushRankTop3) Reset() { *m = RushRankTop3{} }
  12352. func (m *RushRankTop3) String() string { return proto.CompactTextString(m) }
  12353. func (*RushRankTop3) ProtoMessage() {}
  12354. func (*RushRankTop3) Descriptor() ([]byte, []int) {
  12355. return fileDescriptor_116e343673f7ffaf, []int{206}
  12356. }
  12357. func (m *RushRankTop3) XXX_Unmarshal(b []byte) error {
  12358. return xxx_messageInfo_RushRankTop3.Unmarshal(m, b)
  12359. }
  12360. func (m *RushRankTop3) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12361. return xxx_messageInfo_RushRankTop3.Marshal(b, m, deterministic)
  12362. }
  12363. func (m *RushRankTop3) XXX_Merge(src proto.Message) {
  12364. xxx_messageInfo_RushRankTop3.Merge(m, src)
  12365. }
  12366. func (m *RushRankTop3) XXX_Size() int {
  12367. return xxx_messageInfo_RushRankTop3.Size(m)
  12368. }
  12369. func (m *RushRankTop3) XXX_DiscardUnknown() {
  12370. xxx_messageInfo_RushRankTop3.DiscardUnknown(m)
  12371. }
  12372. var xxx_messageInfo_RushRankTop3 proto.InternalMessageInfo
  12373. func (m *RushRankTop3) GetName() string {
  12374. if m != nil {
  12375. return m.Name
  12376. }
  12377. return ""
  12378. }
  12379. func (m *RushRankTop3) GetData() int32 {
  12380. if m != nil {
  12381. return m.Data
  12382. }
  12383. return 0
  12384. }
  12385. func (m *RushRankTop3) GetRank() int32 {
  12386. if m != nil {
  12387. return m.Rank
  12388. }
  12389. return 0
  12390. }
  12391. type RushActivityData struct {
  12392. RushType int32 `protobuf:"varint,1,opt,name=rush_type,json=rushType,proto3" json:"rush_type,omitempty"`
  12393. InRush bool `protobuf:"varint,2,opt,name=in_rush,json=inRush,proto3" json:"in_rush,omitempty"`
  12394. NextRush uint64 `protobuf:"varint,3,opt,name=next_rush,json=nextRush,proto3" json:"next_rush,omitempty"`
  12395. Stage int32 `protobuf:"varint,4,opt,name=stage,proto3" json:"stage,omitempty"`
  12396. StageEnd uint64 `protobuf:"varint,5,opt,name=stage_end,json=stageEnd,proto3" json:"stage_end,omitempty"`
  12397. RushCount int32 `protobuf:"varint,6,opt,name=rush_count,json=rushCount,proto3" json:"rush_count,omitempty"`
  12398. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12399. XXX_unrecognized []byte `json:"-"`
  12400. XXX_sizecache int32 `json:"-"`
  12401. }
  12402. func (m *RushActivityData) Reset() { *m = RushActivityData{} }
  12403. func (m *RushActivityData) String() string { return proto.CompactTextString(m) }
  12404. func (*RushActivityData) ProtoMessage() {}
  12405. func (*RushActivityData) Descriptor() ([]byte, []int) {
  12406. return fileDescriptor_116e343673f7ffaf, []int{207}
  12407. }
  12408. func (m *RushActivityData) XXX_Unmarshal(b []byte) error {
  12409. return xxx_messageInfo_RushActivityData.Unmarshal(m, b)
  12410. }
  12411. func (m *RushActivityData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12412. return xxx_messageInfo_RushActivityData.Marshal(b, m, deterministic)
  12413. }
  12414. func (m *RushActivityData) XXX_Merge(src proto.Message) {
  12415. xxx_messageInfo_RushActivityData.Merge(m, src)
  12416. }
  12417. func (m *RushActivityData) XXX_Size() int {
  12418. return xxx_messageInfo_RushActivityData.Size(m)
  12419. }
  12420. func (m *RushActivityData) XXX_DiscardUnknown() {
  12421. xxx_messageInfo_RushActivityData.DiscardUnknown(m)
  12422. }
  12423. var xxx_messageInfo_RushActivityData proto.InternalMessageInfo
  12424. func (m *RushActivityData) GetRushType() int32 {
  12425. if m != nil {
  12426. return m.RushType
  12427. }
  12428. return 0
  12429. }
  12430. func (m *RushActivityData) GetInRush() bool {
  12431. if m != nil {
  12432. return m.InRush
  12433. }
  12434. return false
  12435. }
  12436. func (m *RushActivityData) GetNextRush() uint64 {
  12437. if m != nil {
  12438. return m.NextRush
  12439. }
  12440. return 0
  12441. }
  12442. func (m *RushActivityData) GetStage() int32 {
  12443. if m != nil {
  12444. return m.Stage
  12445. }
  12446. return 0
  12447. }
  12448. func (m *RushActivityData) GetStageEnd() uint64 {
  12449. if m != nil {
  12450. return m.StageEnd
  12451. }
  12452. return 0
  12453. }
  12454. func (m *RushActivityData) GetRushCount() int32 {
  12455. if m != nil {
  12456. return m.RushCount
  12457. }
  12458. return 0
  12459. }
  12460. // //////////////////////百人道场
  12461. // type
  12462. // =1占领空白领地
  12463. // =2自身击败机器人守卫占领领地的信息
  12464. // =3自身试图占领他人领地的战斗信息
  12465. // =4他人试图占领我方领地的战斗信息
  12466. // =5自身占领领地达到x小时时显示为
  12467. type DaoChang100Log struct {
  12468. Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
  12469. RecordTime uint64 `protobuf:"varint,2,opt,name=record_time,json=recordTime,proto3" json:"record_time,omitempty"`
  12470. State bool `protobuf:"varint,3,opt,name=state,proto3" json:"state,omitempty"`
  12471. PosIdx int32 `protobuf:"varint,4,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  12472. TargetPlayerName string `protobuf:"bytes,5,opt,name=target_player_name,json=targetPlayerName,proto3" json:"target_player_name,omitempty"`
  12473. TargetGuildName string `protobuf:"bytes,6,opt,name=target_guild_name,json=targetGuildName,proto3" json:"target_guild_name,omitempty"`
  12474. TargetPlayerUid uint64 `protobuf:"varint,7,opt,name=target_player_uid,json=targetPlayerUid,proto3" json:"target_player_uid,omitempty"`
  12475. RewardTime uint32 `protobuf:"varint,8,opt,name=reward_time,json=rewardTime,proto3" json:"reward_time,omitempty"`
  12476. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12477. XXX_unrecognized []byte `json:"-"`
  12478. XXX_sizecache int32 `json:"-"`
  12479. }
  12480. func (m *DaoChang100Log) Reset() { *m = DaoChang100Log{} }
  12481. func (m *DaoChang100Log) String() string { return proto.CompactTextString(m) }
  12482. func (*DaoChang100Log) ProtoMessage() {}
  12483. func (*DaoChang100Log) Descriptor() ([]byte, []int) {
  12484. return fileDescriptor_116e343673f7ffaf, []int{208}
  12485. }
  12486. func (m *DaoChang100Log) XXX_Unmarshal(b []byte) error {
  12487. return xxx_messageInfo_DaoChang100Log.Unmarshal(m, b)
  12488. }
  12489. func (m *DaoChang100Log) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12490. return xxx_messageInfo_DaoChang100Log.Marshal(b, m, deterministic)
  12491. }
  12492. func (m *DaoChang100Log) XXX_Merge(src proto.Message) {
  12493. xxx_messageInfo_DaoChang100Log.Merge(m, src)
  12494. }
  12495. func (m *DaoChang100Log) XXX_Size() int {
  12496. return xxx_messageInfo_DaoChang100Log.Size(m)
  12497. }
  12498. func (m *DaoChang100Log) XXX_DiscardUnknown() {
  12499. xxx_messageInfo_DaoChang100Log.DiscardUnknown(m)
  12500. }
  12501. var xxx_messageInfo_DaoChang100Log proto.InternalMessageInfo
  12502. func (m *DaoChang100Log) GetType() int32 {
  12503. if m != nil {
  12504. return m.Type
  12505. }
  12506. return 0
  12507. }
  12508. func (m *DaoChang100Log) GetRecordTime() uint64 {
  12509. if m != nil {
  12510. return m.RecordTime
  12511. }
  12512. return 0
  12513. }
  12514. func (m *DaoChang100Log) GetState() bool {
  12515. if m != nil {
  12516. return m.State
  12517. }
  12518. return false
  12519. }
  12520. func (m *DaoChang100Log) GetPosIdx() int32 {
  12521. if m != nil {
  12522. return m.PosIdx
  12523. }
  12524. return 0
  12525. }
  12526. func (m *DaoChang100Log) GetTargetPlayerName() string {
  12527. if m != nil {
  12528. return m.TargetPlayerName
  12529. }
  12530. return ""
  12531. }
  12532. func (m *DaoChang100Log) GetTargetGuildName() string {
  12533. if m != nil {
  12534. return m.TargetGuildName
  12535. }
  12536. return ""
  12537. }
  12538. func (m *DaoChang100Log) GetTargetPlayerUid() uint64 {
  12539. if m != nil {
  12540. return m.TargetPlayerUid
  12541. }
  12542. return 0
  12543. }
  12544. func (m *DaoChang100Log) GetRewardTime() uint32 {
  12545. if m != nil {
  12546. return m.RewardTime
  12547. }
  12548. return 0
  12549. }
  12550. // 占位奖励处理(玩家对应数据)
  12551. type DaoChang100PosRewardData struct {
  12552. PosIdx int32 `protobuf:"varint,1,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  12553. RewardStartTime uint64 `protobuf:"varint,2,opt,name=reward_start_time,json=rewardStartTime,proto3" json:"reward_start_time,omitempty"`
  12554. RewardEndTime uint64 `protobuf:"varint,3,opt,name=reward_end_time,json=rewardEndTime,proto3" json:"reward_end_time,omitempty"`
  12555. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12556. XXX_unrecognized []byte `json:"-"`
  12557. XXX_sizecache int32 `json:"-"`
  12558. }
  12559. func (m *DaoChang100PosRewardData) Reset() { *m = DaoChang100PosRewardData{} }
  12560. func (m *DaoChang100PosRewardData) String() string { return proto.CompactTextString(m) }
  12561. func (*DaoChang100PosRewardData) ProtoMessage() {}
  12562. func (*DaoChang100PosRewardData) Descriptor() ([]byte, []int) {
  12563. return fileDescriptor_116e343673f7ffaf, []int{209}
  12564. }
  12565. func (m *DaoChang100PosRewardData) XXX_Unmarshal(b []byte) error {
  12566. return xxx_messageInfo_DaoChang100PosRewardData.Unmarshal(m, b)
  12567. }
  12568. func (m *DaoChang100PosRewardData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12569. return xxx_messageInfo_DaoChang100PosRewardData.Marshal(b, m, deterministic)
  12570. }
  12571. func (m *DaoChang100PosRewardData) XXX_Merge(src proto.Message) {
  12572. xxx_messageInfo_DaoChang100PosRewardData.Merge(m, src)
  12573. }
  12574. func (m *DaoChang100PosRewardData) XXX_Size() int {
  12575. return xxx_messageInfo_DaoChang100PosRewardData.Size(m)
  12576. }
  12577. func (m *DaoChang100PosRewardData) XXX_DiscardUnknown() {
  12578. xxx_messageInfo_DaoChang100PosRewardData.DiscardUnknown(m)
  12579. }
  12580. var xxx_messageInfo_DaoChang100PosRewardData proto.InternalMessageInfo
  12581. func (m *DaoChang100PosRewardData) GetPosIdx() int32 {
  12582. if m != nil {
  12583. return m.PosIdx
  12584. }
  12585. return 0
  12586. }
  12587. func (m *DaoChang100PosRewardData) GetRewardStartTime() uint64 {
  12588. if m != nil {
  12589. return m.RewardStartTime
  12590. }
  12591. return 0
  12592. }
  12593. func (m *DaoChang100PosRewardData) GetRewardEndTime() uint64 {
  12594. if m != nil {
  12595. return m.RewardEndTime
  12596. }
  12597. return 0
  12598. }
  12599. // 占位信息
  12600. type DaoChang100PosIdxData struct {
  12601. PosIdx int32 `protobuf:"varint,1,opt,name=pos_idx,json=posIdx,proto3" json:"pos_idx,omitempty"`
  12602. OwnerStartTime uint64 `protobuf:"varint,2,opt,name=owner_start_time,json=ownerStartTime,proto3" json:"owner_start_time,omitempty"`
  12603. OwnerEndTime uint64 `protobuf:"varint,3,opt,name=owner_end_time,json=ownerEndTime,proto3" json:"owner_end_time,omitempty"`
  12604. OwnerProtectEndTime uint64 `protobuf:"varint,4,opt,name=owner_protect_end_time,json=ownerProtectEndTime,proto3" json:"owner_protect_end_time,omitempty"`
  12605. OwnerBrief *CommonPlayerBriefInfo `protobuf:"bytes,5,opt,name=owner_brief,json=ownerBrief,proto3" json:"owner_brief,omitempty"`
  12606. OwnerRobotId int32 `protobuf:"varint,6,opt,name=owner_robot_id,json=ownerRobotId,proto3" json:"owner_robot_id,omitempty"`
  12607. FightEndTime uint64 `protobuf:"varint,7,opt,name=fight_end_time,json=fightEndTime,proto3" json:"fight_end_time,omitempty"`
  12608. GuildId uint64 `protobuf:"varint,8,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"`
  12609. GuildName string `protobuf:"bytes,9,opt,name=guild_name,json=guildName,proto3" json:"guild_name,omitempty"`
  12610. RefreshTime uint64 `protobuf:"varint,10,opt,name=refresh_time,json=refreshTime,proto3" json:"refresh_time,omitempty"`
  12611. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12612. XXX_unrecognized []byte `json:"-"`
  12613. XXX_sizecache int32 `json:"-"`
  12614. }
  12615. func (m *DaoChang100PosIdxData) Reset() { *m = DaoChang100PosIdxData{} }
  12616. func (m *DaoChang100PosIdxData) String() string { return proto.CompactTextString(m) }
  12617. func (*DaoChang100PosIdxData) ProtoMessage() {}
  12618. func (*DaoChang100PosIdxData) Descriptor() ([]byte, []int) {
  12619. return fileDescriptor_116e343673f7ffaf, []int{210}
  12620. }
  12621. func (m *DaoChang100PosIdxData) XXX_Unmarshal(b []byte) error {
  12622. return xxx_messageInfo_DaoChang100PosIdxData.Unmarshal(m, b)
  12623. }
  12624. func (m *DaoChang100PosIdxData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12625. return xxx_messageInfo_DaoChang100PosIdxData.Marshal(b, m, deterministic)
  12626. }
  12627. func (m *DaoChang100PosIdxData) XXX_Merge(src proto.Message) {
  12628. xxx_messageInfo_DaoChang100PosIdxData.Merge(m, src)
  12629. }
  12630. func (m *DaoChang100PosIdxData) XXX_Size() int {
  12631. return xxx_messageInfo_DaoChang100PosIdxData.Size(m)
  12632. }
  12633. func (m *DaoChang100PosIdxData) XXX_DiscardUnknown() {
  12634. xxx_messageInfo_DaoChang100PosIdxData.DiscardUnknown(m)
  12635. }
  12636. var xxx_messageInfo_DaoChang100PosIdxData proto.InternalMessageInfo
  12637. func (m *DaoChang100PosIdxData) GetPosIdx() int32 {
  12638. if m != nil {
  12639. return m.PosIdx
  12640. }
  12641. return 0
  12642. }
  12643. func (m *DaoChang100PosIdxData) GetOwnerStartTime() uint64 {
  12644. if m != nil {
  12645. return m.OwnerStartTime
  12646. }
  12647. return 0
  12648. }
  12649. func (m *DaoChang100PosIdxData) GetOwnerEndTime() uint64 {
  12650. if m != nil {
  12651. return m.OwnerEndTime
  12652. }
  12653. return 0
  12654. }
  12655. func (m *DaoChang100PosIdxData) GetOwnerProtectEndTime() uint64 {
  12656. if m != nil {
  12657. return m.OwnerProtectEndTime
  12658. }
  12659. return 0
  12660. }
  12661. func (m *DaoChang100PosIdxData) GetOwnerBrief() *CommonPlayerBriefInfo {
  12662. if m != nil {
  12663. return m.OwnerBrief
  12664. }
  12665. return nil
  12666. }
  12667. func (m *DaoChang100PosIdxData) GetOwnerRobotId() int32 {
  12668. if m != nil {
  12669. return m.OwnerRobotId
  12670. }
  12671. return 0
  12672. }
  12673. func (m *DaoChang100PosIdxData) GetFightEndTime() uint64 {
  12674. if m != nil {
  12675. return m.FightEndTime
  12676. }
  12677. return 0
  12678. }
  12679. func (m *DaoChang100PosIdxData) GetGuildId() uint64 {
  12680. if m != nil {
  12681. return m.GuildId
  12682. }
  12683. return 0
  12684. }
  12685. func (m *DaoChang100PosIdxData) GetGuildName() string {
  12686. if m != nil {
  12687. return m.GuildName
  12688. }
  12689. return ""
  12690. }
  12691. func (m *DaoChang100PosIdxData) GetRefreshTime() uint64 {
  12692. if m != nil {
  12693. return m.RefreshTime
  12694. }
  12695. return 0
  12696. }
  12697. type WheelRewardItemInfo struct {
  12698. ItemIdx int32 `protobuf:"varint,1,opt,name=item_idx,json=itemIdx,proto3" json:"item_idx,omitempty"`
  12699. ItemId int32 `protobuf:"varint,2,opt,name=item_id,json=itemId,proto3" json:"item_id,omitempty"`
  12700. ItemNum int32 `protobuf:"varint,3,opt,name=item_num,json=itemNum,proto3" json:"item_num,omitempty"`
  12701. RewardType int32 `protobuf:"varint,4,opt,name=reward_type,json=rewardType,proto3" json:"reward_type,omitempty"`
  12702. HasReward bool `protobuf:"varint,5,opt,name=has_reward,json=hasReward,proto3" json:"has_reward,omitempty"`
  12703. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12704. XXX_unrecognized []byte `json:"-"`
  12705. XXX_sizecache int32 `json:"-"`
  12706. }
  12707. func (m *WheelRewardItemInfo) Reset() { *m = WheelRewardItemInfo{} }
  12708. func (m *WheelRewardItemInfo) String() string { return proto.CompactTextString(m) }
  12709. func (*WheelRewardItemInfo) ProtoMessage() {}
  12710. func (*WheelRewardItemInfo) Descriptor() ([]byte, []int) {
  12711. return fileDescriptor_116e343673f7ffaf, []int{211}
  12712. }
  12713. func (m *WheelRewardItemInfo) XXX_Unmarshal(b []byte) error {
  12714. return xxx_messageInfo_WheelRewardItemInfo.Unmarshal(m, b)
  12715. }
  12716. func (m *WheelRewardItemInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12717. return xxx_messageInfo_WheelRewardItemInfo.Marshal(b, m, deterministic)
  12718. }
  12719. func (m *WheelRewardItemInfo) XXX_Merge(src proto.Message) {
  12720. xxx_messageInfo_WheelRewardItemInfo.Merge(m, src)
  12721. }
  12722. func (m *WheelRewardItemInfo) XXX_Size() int {
  12723. return xxx_messageInfo_WheelRewardItemInfo.Size(m)
  12724. }
  12725. func (m *WheelRewardItemInfo) XXX_DiscardUnknown() {
  12726. xxx_messageInfo_WheelRewardItemInfo.DiscardUnknown(m)
  12727. }
  12728. var xxx_messageInfo_WheelRewardItemInfo proto.InternalMessageInfo
  12729. func (m *WheelRewardItemInfo) GetItemIdx() int32 {
  12730. if m != nil {
  12731. return m.ItemIdx
  12732. }
  12733. return 0
  12734. }
  12735. func (m *WheelRewardItemInfo) GetItemId() int32 {
  12736. if m != nil {
  12737. return m.ItemId
  12738. }
  12739. return 0
  12740. }
  12741. func (m *WheelRewardItemInfo) GetItemNum() int32 {
  12742. if m != nil {
  12743. return m.ItemNum
  12744. }
  12745. return 0
  12746. }
  12747. func (m *WheelRewardItemInfo) GetRewardType() int32 {
  12748. if m != nil {
  12749. return m.RewardType
  12750. }
  12751. return 0
  12752. }
  12753. func (m *WheelRewardItemInfo) GetHasReward() bool {
  12754. if m != nil {
  12755. return m.HasReward
  12756. }
  12757. return false
  12758. }
  12759. type WheelLogData struct {
  12760. LogTime uint64 `protobuf:"varint,1,opt,name=log_time,json=logTime,proto3" json:"log_time,omitempty"`
  12761. NickName string `protobuf:"bytes,2,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
  12762. Uid uint64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"`
  12763. ItemList []*KeyValueType `protobuf:"bytes,4,rep,name=item_list,json=itemList,proto3" json:"item_list,omitempty"`
  12764. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12765. XXX_unrecognized []byte `json:"-"`
  12766. XXX_sizecache int32 `json:"-"`
  12767. }
  12768. func (m *WheelLogData) Reset() { *m = WheelLogData{} }
  12769. func (m *WheelLogData) String() string { return proto.CompactTextString(m) }
  12770. func (*WheelLogData) ProtoMessage() {}
  12771. func (*WheelLogData) Descriptor() ([]byte, []int) {
  12772. return fileDescriptor_116e343673f7ffaf, []int{212}
  12773. }
  12774. func (m *WheelLogData) XXX_Unmarshal(b []byte) error {
  12775. return xxx_messageInfo_WheelLogData.Unmarshal(m, b)
  12776. }
  12777. func (m *WheelLogData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12778. return xxx_messageInfo_WheelLogData.Marshal(b, m, deterministic)
  12779. }
  12780. func (m *WheelLogData) XXX_Merge(src proto.Message) {
  12781. xxx_messageInfo_WheelLogData.Merge(m, src)
  12782. }
  12783. func (m *WheelLogData) XXX_Size() int {
  12784. return xxx_messageInfo_WheelLogData.Size(m)
  12785. }
  12786. func (m *WheelLogData) XXX_DiscardUnknown() {
  12787. xxx_messageInfo_WheelLogData.DiscardUnknown(m)
  12788. }
  12789. var xxx_messageInfo_WheelLogData proto.InternalMessageInfo
  12790. func (m *WheelLogData) GetLogTime() uint64 {
  12791. if m != nil {
  12792. return m.LogTime
  12793. }
  12794. return 0
  12795. }
  12796. func (m *WheelLogData) GetNickName() string {
  12797. if m != nil {
  12798. return m.NickName
  12799. }
  12800. return ""
  12801. }
  12802. func (m *WheelLogData) GetUid() uint64 {
  12803. if m != nil {
  12804. return m.Uid
  12805. }
  12806. return 0
  12807. }
  12808. func (m *WheelLogData) GetItemList() []*KeyValueType {
  12809. if m != nil {
  12810. return m.ItemList
  12811. }
  12812. return nil
  12813. }
  12814. type RoleDaoChang100 struct {
  12815. ChallengeCount int32 `protobuf:"varint,1,opt,name=challenge_count,json=challengeCount,proto3" json:"challenge_count,omitempty"`
  12816. ChallengeBuyCount int32 `protobuf:"varint,2,opt,name=challenge_buy_count,json=challengeBuyCount,proto3" json:"challenge_buy_count,omitempty"`
  12817. BuyCount int32 `protobuf:"varint,3,opt,name=buy_count,json=buyCount,proto3" json:"buy_count,omitempty"`
  12818. BaseRewardTime uint64 `protobuf:"varint,4,opt,name=base_reward_time,json=baseRewardTime,proto3" json:"base_reward_time,omitempty"`
  12819. LogState bool `protobuf:"varint,5,opt,name=log_state,json=logState,proto3" json:"log_state,omitempty"`
  12820. LastAttackUid uint64 `protobuf:"varint,6,opt,name=last_attack_uid,json=lastAttackUid,proto3" json:"last_attack_uid,omitempty"`
  12821. TipsDesc string `protobuf:"bytes,7,opt,name=tips_desc,json=tipsDesc,proto3" json:"tips_desc,omitempty"`
  12822. // 道场转盘
  12823. WheelRewardItemList []*WheelRewardItemInfo `protobuf:"bytes,10,rep,name=wheel_reward_item_list,json=wheelRewardItemList,proto3" json:"wheel_reward_item_list,omitempty"`
  12824. WheelOpen bool `protobuf:"varint,11,opt,name=wheel_open,json=wheelOpen,proto3" json:"wheel_open,omitempty"`
  12825. WheelRefreshNum int32 `protobuf:"varint,12,opt,name=wheel_refresh_num,json=wheelRefreshNum,proto3" json:"wheel_refresh_num,omitempty"`
  12826. TemplateIdx int32 `protobuf:"varint,13,opt,name=template_idx,json=templateIdx,proto3" json:"template_idx,omitempty"`
  12827. WheelNum int32 `protobuf:"varint,14,opt,name=wheel_num,json=wheelNum,proto3" json:"wheel_num,omitempty"`
  12828. WheelIdx int32 `protobuf:"varint,15,opt,name=wheel_idx,json=wheelIdx,proto3" json:"wheel_idx,omitempty"`
  12829. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12830. XXX_unrecognized []byte `json:"-"`
  12831. XXX_sizecache int32 `json:"-"`
  12832. }
  12833. func (m *RoleDaoChang100) Reset() { *m = RoleDaoChang100{} }
  12834. func (m *RoleDaoChang100) String() string { return proto.CompactTextString(m) }
  12835. func (*RoleDaoChang100) ProtoMessage() {}
  12836. func (*RoleDaoChang100) Descriptor() ([]byte, []int) {
  12837. return fileDescriptor_116e343673f7ffaf, []int{213}
  12838. }
  12839. func (m *RoleDaoChang100) XXX_Unmarshal(b []byte) error {
  12840. return xxx_messageInfo_RoleDaoChang100.Unmarshal(m, b)
  12841. }
  12842. func (m *RoleDaoChang100) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12843. return xxx_messageInfo_RoleDaoChang100.Marshal(b, m, deterministic)
  12844. }
  12845. func (m *RoleDaoChang100) XXX_Merge(src proto.Message) {
  12846. xxx_messageInfo_RoleDaoChang100.Merge(m, src)
  12847. }
  12848. func (m *RoleDaoChang100) XXX_Size() int {
  12849. return xxx_messageInfo_RoleDaoChang100.Size(m)
  12850. }
  12851. func (m *RoleDaoChang100) XXX_DiscardUnknown() {
  12852. xxx_messageInfo_RoleDaoChang100.DiscardUnknown(m)
  12853. }
  12854. var xxx_messageInfo_RoleDaoChang100 proto.InternalMessageInfo
  12855. func (m *RoleDaoChang100) GetChallengeCount() int32 {
  12856. if m != nil {
  12857. return m.ChallengeCount
  12858. }
  12859. return 0
  12860. }
  12861. func (m *RoleDaoChang100) GetChallengeBuyCount() int32 {
  12862. if m != nil {
  12863. return m.ChallengeBuyCount
  12864. }
  12865. return 0
  12866. }
  12867. func (m *RoleDaoChang100) GetBuyCount() int32 {
  12868. if m != nil {
  12869. return m.BuyCount
  12870. }
  12871. return 0
  12872. }
  12873. func (m *RoleDaoChang100) GetBaseRewardTime() uint64 {
  12874. if m != nil {
  12875. return m.BaseRewardTime
  12876. }
  12877. return 0
  12878. }
  12879. func (m *RoleDaoChang100) GetLogState() bool {
  12880. if m != nil {
  12881. return m.LogState
  12882. }
  12883. return false
  12884. }
  12885. func (m *RoleDaoChang100) GetLastAttackUid() uint64 {
  12886. if m != nil {
  12887. return m.LastAttackUid
  12888. }
  12889. return 0
  12890. }
  12891. func (m *RoleDaoChang100) GetTipsDesc() string {
  12892. if m != nil {
  12893. return m.TipsDesc
  12894. }
  12895. return ""
  12896. }
  12897. func (m *RoleDaoChang100) GetWheelRewardItemList() []*WheelRewardItemInfo {
  12898. if m != nil {
  12899. return m.WheelRewardItemList
  12900. }
  12901. return nil
  12902. }
  12903. func (m *RoleDaoChang100) GetWheelOpen() bool {
  12904. if m != nil {
  12905. return m.WheelOpen
  12906. }
  12907. return false
  12908. }
  12909. func (m *RoleDaoChang100) GetWheelRefreshNum() int32 {
  12910. if m != nil {
  12911. return m.WheelRefreshNum
  12912. }
  12913. return 0
  12914. }
  12915. func (m *RoleDaoChang100) GetTemplateIdx() int32 {
  12916. if m != nil {
  12917. return m.TemplateIdx
  12918. }
  12919. return 0
  12920. }
  12921. func (m *RoleDaoChang100) GetWheelNum() int32 {
  12922. if m != nil {
  12923. return m.WheelNum
  12924. }
  12925. return 0
  12926. }
  12927. func (m *RoleDaoChang100) GetWheelIdx() int32 {
  12928. if m != nil {
  12929. return m.WheelIdx
  12930. }
  12931. return 0
  12932. }
  12933. type RoleCheatChat struct {
  12934. TargetId []uint64 `protobuf:"varint,1,rep,packed,name=target_id,json=targetId,proto3" json:"target_id,omitempty"`
  12935. ChatMsgCrc32 uint64 `protobuf:"varint,2,opt,name=chat_msg_crc32,json=chatMsgCrc32,proto3" json:"chat_msg_crc32,omitempty"`
  12936. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12937. XXX_unrecognized []byte `json:"-"`
  12938. XXX_sizecache int32 `json:"-"`
  12939. }
  12940. func (m *RoleCheatChat) Reset() { *m = RoleCheatChat{} }
  12941. func (m *RoleCheatChat) String() string { return proto.CompactTextString(m) }
  12942. func (*RoleCheatChat) ProtoMessage() {}
  12943. func (*RoleCheatChat) Descriptor() ([]byte, []int) {
  12944. return fileDescriptor_116e343673f7ffaf, []int{214}
  12945. }
  12946. func (m *RoleCheatChat) XXX_Unmarshal(b []byte) error {
  12947. return xxx_messageInfo_RoleCheatChat.Unmarshal(m, b)
  12948. }
  12949. func (m *RoleCheatChat) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12950. return xxx_messageInfo_RoleCheatChat.Marshal(b, m, deterministic)
  12951. }
  12952. func (m *RoleCheatChat) XXX_Merge(src proto.Message) {
  12953. xxx_messageInfo_RoleCheatChat.Merge(m, src)
  12954. }
  12955. func (m *RoleCheatChat) XXX_Size() int {
  12956. return xxx_messageInfo_RoleCheatChat.Size(m)
  12957. }
  12958. func (m *RoleCheatChat) XXX_DiscardUnknown() {
  12959. xxx_messageInfo_RoleCheatChat.DiscardUnknown(m)
  12960. }
  12961. var xxx_messageInfo_RoleCheatChat proto.InternalMessageInfo
  12962. func (m *RoleCheatChat) GetTargetId() []uint64 {
  12963. if m != nil {
  12964. return m.TargetId
  12965. }
  12966. return nil
  12967. }
  12968. func (m *RoleCheatChat) GetChatMsgCrc32() uint64 {
  12969. if m != nil {
  12970. return m.ChatMsgCrc32
  12971. }
  12972. return 0
  12973. }
  12974. type RoleStatistic struct {
  12975. CheatData []*KeyValueType `protobuf:"bytes,1,rep,name=cheat_data,json=cheatData,proto3" json:"cheat_data,omitempty"`
  12976. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  12977. XXX_unrecognized []byte `json:"-"`
  12978. XXX_sizecache int32 `json:"-"`
  12979. }
  12980. func (m *RoleStatistic) Reset() { *m = RoleStatistic{} }
  12981. func (m *RoleStatistic) String() string { return proto.CompactTextString(m) }
  12982. func (*RoleStatistic) ProtoMessage() {}
  12983. func (*RoleStatistic) Descriptor() ([]byte, []int) {
  12984. return fileDescriptor_116e343673f7ffaf, []int{215}
  12985. }
  12986. func (m *RoleStatistic) XXX_Unmarshal(b []byte) error {
  12987. return xxx_messageInfo_RoleStatistic.Unmarshal(m, b)
  12988. }
  12989. func (m *RoleStatistic) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  12990. return xxx_messageInfo_RoleStatistic.Marshal(b, m, deterministic)
  12991. }
  12992. func (m *RoleStatistic) XXX_Merge(src proto.Message) {
  12993. xxx_messageInfo_RoleStatistic.Merge(m, src)
  12994. }
  12995. func (m *RoleStatistic) XXX_Size() int {
  12996. return xxx_messageInfo_RoleStatistic.Size(m)
  12997. }
  12998. func (m *RoleStatistic) XXX_DiscardUnknown() {
  12999. xxx_messageInfo_RoleStatistic.DiscardUnknown(m)
  13000. }
  13001. var xxx_messageInfo_RoleStatistic proto.InternalMessageInfo
  13002. func (m *RoleStatistic) GetCheatData() []*KeyValueType {
  13003. if m != nil {
  13004. return m.CheatData
  13005. }
  13006. return nil
  13007. }
  13008. type KeepSake struct {
  13009. KeepSakeId int32 `protobuf:"varint,1,opt,name=keep_sake_id,json=keepSakeId,proto3" json:"keep_sake_id,omitempty"`
  13010. KeepSakeLevel int32 `protobuf:"varint,2,opt,name=keep_sake_level,json=keepSakeLevel,proto3" json:"keep_sake_level,omitempty"`
  13011. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13012. XXX_unrecognized []byte `json:"-"`
  13013. XXX_sizecache int32 `json:"-"`
  13014. }
  13015. func (m *KeepSake) Reset() { *m = KeepSake{} }
  13016. func (m *KeepSake) String() string { return proto.CompactTextString(m) }
  13017. func (*KeepSake) ProtoMessage() {}
  13018. func (*KeepSake) Descriptor() ([]byte, []int) {
  13019. return fileDescriptor_116e343673f7ffaf, []int{216}
  13020. }
  13021. func (m *KeepSake) XXX_Unmarshal(b []byte) error {
  13022. return xxx_messageInfo_KeepSake.Unmarshal(m, b)
  13023. }
  13024. func (m *KeepSake) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13025. return xxx_messageInfo_KeepSake.Marshal(b, m, deterministic)
  13026. }
  13027. func (m *KeepSake) XXX_Merge(src proto.Message) {
  13028. xxx_messageInfo_KeepSake.Merge(m, src)
  13029. }
  13030. func (m *KeepSake) XXX_Size() int {
  13031. return xxx_messageInfo_KeepSake.Size(m)
  13032. }
  13033. func (m *KeepSake) XXX_DiscardUnknown() {
  13034. xxx_messageInfo_KeepSake.DiscardUnknown(m)
  13035. }
  13036. var xxx_messageInfo_KeepSake proto.InternalMessageInfo
  13037. func (m *KeepSake) GetKeepSakeId() int32 {
  13038. if m != nil {
  13039. return m.KeepSakeId
  13040. }
  13041. return 0
  13042. }
  13043. func (m *KeepSake) GetKeepSakeLevel() int32 {
  13044. if m != nil {
  13045. return m.KeepSakeLevel
  13046. }
  13047. return 0
  13048. }
  13049. type RoleKeepSake struct {
  13050. KeepSake []*KeepSake `protobuf:"bytes,1,rep,name=keep_sake,json=keepSake,proto3" json:"keep_sake,omitempty"`
  13051. Material []*KeyValueType `protobuf:"bytes,2,rep,name=material,proto3" json:"material,omitempty"`
  13052. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13053. XXX_unrecognized []byte `json:"-"`
  13054. XXX_sizecache int32 `json:"-"`
  13055. }
  13056. func (m *RoleKeepSake) Reset() { *m = RoleKeepSake{} }
  13057. func (m *RoleKeepSake) String() string { return proto.CompactTextString(m) }
  13058. func (*RoleKeepSake) ProtoMessage() {}
  13059. func (*RoleKeepSake) Descriptor() ([]byte, []int) {
  13060. return fileDescriptor_116e343673f7ffaf, []int{217}
  13061. }
  13062. func (m *RoleKeepSake) XXX_Unmarshal(b []byte) error {
  13063. return xxx_messageInfo_RoleKeepSake.Unmarshal(m, b)
  13064. }
  13065. func (m *RoleKeepSake) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13066. return xxx_messageInfo_RoleKeepSake.Marshal(b, m, deterministic)
  13067. }
  13068. func (m *RoleKeepSake) XXX_Merge(src proto.Message) {
  13069. xxx_messageInfo_RoleKeepSake.Merge(m, src)
  13070. }
  13071. func (m *RoleKeepSake) XXX_Size() int {
  13072. return xxx_messageInfo_RoleKeepSake.Size(m)
  13073. }
  13074. func (m *RoleKeepSake) XXX_DiscardUnknown() {
  13075. xxx_messageInfo_RoleKeepSake.DiscardUnknown(m)
  13076. }
  13077. var xxx_messageInfo_RoleKeepSake proto.InternalMessageInfo
  13078. func (m *RoleKeepSake) GetKeepSake() []*KeepSake {
  13079. if m != nil {
  13080. return m.KeepSake
  13081. }
  13082. return nil
  13083. }
  13084. func (m *RoleKeepSake) GetMaterial() []*KeyValueType {
  13085. if m != nil {
  13086. return m.Material
  13087. }
  13088. return nil
  13089. }
  13090. type KeepSakeCollection struct {
  13091. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  13092. LogTime int64 `protobuf:"varint,3,opt,name=log_time,json=logTime,proto3" json:"log_time,omitempty"`
  13093. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13094. XXX_unrecognized []byte `json:"-"`
  13095. XXX_sizecache int32 `json:"-"`
  13096. }
  13097. func (m *KeepSakeCollection) Reset() { *m = KeepSakeCollection{} }
  13098. func (m *KeepSakeCollection) String() string { return proto.CompactTextString(m) }
  13099. func (*KeepSakeCollection) ProtoMessage() {}
  13100. func (*KeepSakeCollection) Descriptor() ([]byte, []int) {
  13101. return fileDescriptor_116e343673f7ffaf, []int{218}
  13102. }
  13103. func (m *KeepSakeCollection) XXX_Unmarshal(b []byte) error {
  13104. return xxx_messageInfo_KeepSakeCollection.Unmarshal(m, b)
  13105. }
  13106. func (m *KeepSakeCollection) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13107. return xxx_messageInfo_KeepSakeCollection.Marshal(b, m, deterministic)
  13108. }
  13109. func (m *KeepSakeCollection) XXX_Merge(src proto.Message) {
  13110. xxx_messageInfo_KeepSakeCollection.Merge(m, src)
  13111. }
  13112. func (m *KeepSakeCollection) XXX_Size() int {
  13113. return xxx_messageInfo_KeepSakeCollection.Size(m)
  13114. }
  13115. func (m *KeepSakeCollection) XXX_DiscardUnknown() {
  13116. xxx_messageInfo_KeepSakeCollection.DiscardUnknown(m)
  13117. }
  13118. var xxx_messageInfo_KeepSakeCollection proto.InternalMessageInfo
  13119. func (m *KeepSakeCollection) GetUid() uint64 {
  13120. if m != nil {
  13121. return m.Uid
  13122. }
  13123. return 0
  13124. }
  13125. func (m *KeepSakeCollection) GetLogTime() int64 {
  13126. if m != nil {
  13127. return m.LogTime
  13128. }
  13129. return 0
  13130. }
  13131. // 宠物冲榜信息
  13132. type RushInfo struct {
  13133. PetConfigId int32 `protobuf:"varint,1,opt,name=pet_config_id,json=petConfigId,proto3" json:"pet_config_id,omitempty"`
  13134. PetScore int32 `protobuf:"varint,2,opt,name=pet_score,json=petScore,proto3" json:"pet_score,omitempty"`
  13135. PetLevel int32 `protobuf:"varint,3,opt,name=pet_level,json=petLevel,proto3" json:"pet_level,omitempty"`
  13136. TotalSkillLevel int32 `protobuf:"varint,4,opt,name=total_skill_level,json=totalSkillLevel,proto3" json:"total_skill_level,omitempty"`
  13137. QualityScore int32 `protobuf:"varint,5,opt,name=quality_score,json=qualityScore,proto3" json:"quality_score,omitempty"`
  13138. LevelScore int32 `protobuf:"varint,6,opt,name=level_score,json=levelScore,proto3" json:"level_score,omitempty"`
  13139. SkillScore int32 `protobuf:"varint,7,opt,name=skill_score,json=skillScore,proto3" json:"skill_score,omitempty"`
  13140. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13141. XXX_unrecognized []byte `json:"-"`
  13142. XXX_sizecache int32 `json:"-"`
  13143. }
  13144. func (m *RushInfo) Reset() { *m = RushInfo{} }
  13145. func (m *RushInfo) String() string { return proto.CompactTextString(m) }
  13146. func (*RushInfo) ProtoMessage() {}
  13147. func (*RushInfo) Descriptor() ([]byte, []int) {
  13148. return fileDescriptor_116e343673f7ffaf, []int{219}
  13149. }
  13150. func (m *RushInfo) XXX_Unmarshal(b []byte) error {
  13151. return xxx_messageInfo_RushInfo.Unmarshal(m, b)
  13152. }
  13153. func (m *RushInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13154. return xxx_messageInfo_RushInfo.Marshal(b, m, deterministic)
  13155. }
  13156. func (m *RushInfo) XXX_Merge(src proto.Message) {
  13157. xxx_messageInfo_RushInfo.Merge(m, src)
  13158. }
  13159. func (m *RushInfo) XXX_Size() int {
  13160. return xxx_messageInfo_RushInfo.Size(m)
  13161. }
  13162. func (m *RushInfo) XXX_DiscardUnknown() {
  13163. xxx_messageInfo_RushInfo.DiscardUnknown(m)
  13164. }
  13165. var xxx_messageInfo_RushInfo proto.InternalMessageInfo
  13166. func (m *RushInfo) GetPetConfigId() int32 {
  13167. if m != nil {
  13168. return m.PetConfigId
  13169. }
  13170. return 0
  13171. }
  13172. func (m *RushInfo) GetPetScore() int32 {
  13173. if m != nil {
  13174. return m.PetScore
  13175. }
  13176. return 0
  13177. }
  13178. func (m *RushInfo) GetPetLevel() int32 {
  13179. if m != nil {
  13180. return m.PetLevel
  13181. }
  13182. return 0
  13183. }
  13184. func (m *RushInfo) GetTotalSkillLevel() int32 {
  13185. if m != nil {
  13186. return m.TotalSkillLevel
  13187. }
  13188. return 0
  13189. }
  13190. func (m *RushInfo) GetQualityScore() int32 {
  13191. if m != nil {
  13192. return m.QualityScore
  13193. }
  13194. return 0
  13195. }
  13196. func (m *RushInfo) GetLevelScore() int32 {
  13197. if m != nil {
  13198. return m.LevelScore
  13199. }
  13200. return 0
  13201. }
  13202. func (m *RushInfo) GetSkillScore() int32 {
  13203. if m != nil {
  13204. return m.SkillScore
  13205. }
  13206. return 0
  13207. }
  13208. type RushPetInfo struct {
  13209. Info []*RushInfo `protobuf:"bytes,1,rep,name=info,proto3" json:"info,omitempty"`
  13210. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13211. XXX_unrecognized []byte `json:"-"`
  13212. XXX_sizecache int32 `json:"-"`
  13213. }
  13214. func (m *RushPetInfo) Reset() { *m = RushPetInfo{} }
  13215. func (m *RushPetInfo) String() string { return proto.CompactTextString(m) }
  13216. func (*RushPetInfo) ProtoMessage() {}
  13217. func (*RushPetInfo) Descriptor() ([]byte, []int) {
  13218. return fileDescriptor_116e343673f7ffaf, []int{220}
  13219. }
  13220. func (m *RushPetInfo) XXX_Unmarshal(b []byte) error {
  13221. return xxx_messageInfo_RushPetInfo.Unmarshal(m, b)
  13222. }
  13223. func (m *RushPetInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13224. return xxx_messageInfo_RushPetInfo.Marshal(b, m, deterministic)
  13225. }
  13226. func (m *RushPetInfo) XXX_Merge(src proto.Message) {
  13227. xxx_messageInfo_RushPetInfo.Merge(m, src)
  13228. }
  13229. func (m *RushPetInfo) XXX_Size() int {
  13230. return xxx_messageInfo_RushPetInfo.Size(m)
  13231. }
  13232. func (m *RushPetInfo) XXX_DiscardUnknown() {
  13233. xxx_messageInfo_RushPetInfo.DiscardUnknown(m)
  13234. }
  13235. var xxx_messageInfo_RushPetInfo proto.InternalMessageInfo
  13236. func (m *RushPetInfo) GetInfo() []*RushInfo {
  13237. if m != nil {
  13238. return m.Info
  13239. }
  13240. return nil
  13241. }
  13242. type RushPetData struct {
  13243. Rank int32 `protobuf:"varint,1,opt,name=rank,proto3" json:"rank,omitempty"`
  13244. TotalScore int32 `protobuf:"varint,2,opt,name=total_score,json=totalScore,proto3" json:"total_score,omitempty"`
  13245. Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
  13246. PetInfo *RushPetInfo `protobuf:"bytes,4,opt,name=pet_info,json=petInfo,proto3" json:"pet_info,omitempty"`
  13247. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13248. XXX_unrecognized []byte `json:"-"`
  13249. XXX_sizecache int32 `json:"-"`
  13250. }
  13251. func (m *RushPetData) Reset() { *m = RushPetData{} }
  13252. func (m *RushPetData) String() string { return proto.CompactTextString(m) }
  13253. func (*RushPetData) ProtoMessage() {}
  13254. func (*RushPetData) Descriptor() ([]byte, []int) {
  13255. return fileDescriptor_116e343673f7ffaf, []int{221}
  13256. }
  13257. func (m *RushPetData) XXX_Unmarshal(b []byte) error {
  13258. return xxx_messageInfo_RushPetData.Unmarshal(m, b)
  13259. }
  13260. func (m *RushPetData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13261. return xxx_messageInfo_RushPetData.Marshal(b, m, deterministic)
  13262. }
  13263. func (m *RushPetData) XXX_Merge(src proto.Message) {
  13264. xxx_messageInfo_RushPetData.Merge(m, src)
  13265. }
  13266. func (m *RushPetData) XXX_Size() int {
  13267. return xxx_messageInfo_RushPetData.Size(m)
  13268. }
  13269. func (m *RushPetData) XXX_DiscardUnknown() {
  13270. xxx_messageInfo_RushPetData.DiscardUnknown(m)
  13271. }
  13272. var xxx_messageInfo_RushPetData proto.InternalMessageInfo
  13273. func (m *RushPetData) GetRank() int32 {
  13274. if m != nil {
  13275. return m.Rank
  13276. }
  13277. return 0
  13278. }
  13279. func (m *RushPetData) GetTotalScore() int32 {
  13280. if m != nil {
  13281. return m.TotalScore
  13282. }
  13283. return 0
  13284. }
  13285. func (m *RushPetData) GetName() string {
  13286. if m != nil {
  13287. return m.Name
  13288. }
  13289. return ""
  13290. }
  13291. func (m *RushPetData) GetPetInfo() *RushPetInfo {
  13292. if m != nil {
  13293. return m.PetInfo
  13294. }
  13295. return nil
  13296. }
  13297. // //////////////////////跨服数据
  13298. type RoleCross struct {
  13299. Yuanhangtrial *RoleYuanHangTrial `protobuf:"bytes,1,opt,name=yuanhangtrial,proto3" json:"yuanhangtrial,omitempty"`
  13300. Crosstoptower *RoleCrossTopTower `protobuf:"bytes,2,opt,name=crosstoptower,proto3" json:"crosstoptower,omitempty"`
  13301. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13302. XXX_unrecognized []byte `json:"-"`
  13303. XXX_sizecache int32 `json:"-"`
  13304. }
  13305. func (m *RoleCross) Reset() { *m = RoleCross{} }
  13306. func (m *RoleCross) String() string { return proto.CompactTextString(m) }
  13307. func (*RoleCross) ProtoMessage() {}
  13308. func (*RoleCross) Descriptor() ([]byte, []int) {
  13309. return fileDescriptor_116e343673f7ffaf, []int{222}
  13310. }
  13311. func (m *RoleCross) XXX_Unmarshal(b []byte) error {
  13312. return xxx_messageInfo_RoleCross.Unmarshal(m, b)
  13313. }
  13314. func (m *RoleCross) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13315. return xxx_messageInfo_RoleCross.Marshal(b, m, deterministic)
  13316. }
  13317. func (m *RoleCross) XXX_Merge(src proto.Message) {
  13318. xxx_messageInfo_RoleCross.Merge(m, src)
  13319. }
  13320. func (m *RoleCross) XXX_Size() int {
  13321. return xxx_messageInfo_RoleCross.Size(m)
  13322. }
  13323. func (m *RoleCross) XXX_DiscardUnknown() {
  13324. xxx_messageInfo_RoleCross.DiscardUnknown(m)
  13325. }
  13326. var xxx_messageInfo_RoleCross proto.InternalMessageInfo
  13327. func (m *RoleCross) GetYuanhangtrial() *RoleYuanHangTrial {
  13328. if m != nil {
  13329. return m.Yuanhangtrial
  13330. }
  13331. return nil
  13332. }
  13333. func (m *RoleCross) GetCrosstoptower() *RoleCrossTopTower {
  13334. if m != nil {
  13335. return m.Crosstoptower
  13336. }
  13337. return nil
  13338. }
  13339. // //远航试炼
  13340. type RoleYuanHangTrial struct {
  13341. ChallengeNum int32 `protobuf:"varint,1,opt,name=challenge_num,json=challengeNum,proto3" json:"challenge_num,omitempty"`
  13342. TrialNum int32 `protobuf:"varint,2,opt,name=trial_num,json=trialNum,proto3" json:"trial_num,omitempty"`
  13343. RefreshTrialType int32 `protobuf:"varint,3,opt,name=refresh_trial_type,json=refreshTrialType,proto3" json:"refresh_trial_type,omitempty"`
  13344. TrialData *YuanHangTrialData `protobuf:"bytes,4,opt,name=trial_data,json=trialData,proto3" json:"trial_data,omitempty"`
  13345. LogList []*YuanHangTrialLogData `protobuf:"bytes,5,rep,name=log_list,json=logList,proto3" json:"log_list,omitempty"`
  13346. TrialScore int32 `protobuf:"varint,6,opt,name=trial_score,json=trialScore,proto3" json:"trial_score,omitempty"`
  13347. BuyNum int32 `protobuf:"varint,7,opt,name=buy_num,json=buyNum,proto3" json:"buy_num,omitempty"`
  13348. BuyConsume float64 `protobuf:"fixed64,8,opt,name=buy_consume,json=buyConsume,proto3" json:"buy_consume,omitempty"`
  13349. BuyType int32 `protobuf:"varint,9,opt,name=buy_type,json=buyType,proto3" json:"buy_type,omitempty"`
  13350. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13351. XXX_unrecognized []byte `json:"-"`
  13352. XXX_sizecache int32 `json:"-"`
  13353. }
  13354. func (m *RoleYuanHangTrial) Reset() { *m = RoleYuanHangTrial{} }
  13355. func (m *RoleYuanHangTrial) String() string { return proto.CompactTextString(m) }
  13356. func (*RoleYuanHangTrial) ProtoMessage() {}
  13357. func (*RoleYuanHangTrial) Descriptor() ([]byte, []int) {
  13358. return fileDescriptor_116e343673f7ffaf, []int{223}
  13359. }
  13360. func (m *RoleYuanHangTrial) XXX_Unmarshal(b []byte) error {
  13361. return xxx_messageInfo_RoleYuanHangTrial.Unmarshal(m, b)
  13362. }
  13363. func (m *RoleYuanHangTrial) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13364. return xxx_messageInfo_RoleYuanHangTrial.Marshal(b, m, deterministic)
  13365. }
  13366. func (m *RoleYuanHangTrial) XXX_Merge(src proto.Message) {
  13367. xxx_messageInfo_RoleYuanHangTrial.Merge(m, src)
  13368. }
  13369. func (m *RoleYuanHangTrial) XXX_Size() int {
  13370. return xxx_messageInfo_RoleYuanHangTrial.Size(m)
  13371. }
  13372. func (m *RoleYuanHangTrial) XXX_DiscardUnknown() {
  13373. xxx_messageInfo_RoleYuanHangTrial.DiscardUnknown(m)
  13374. }
  13375. var xxx_messageInfo_RoleYuanHangTrial proto.InternalMessageInfo
  13376. func (m *RoleYuanHangTrial) GetChallengeNum() int32 {
  13377. if m != nil {
  13378. return m.ChallengeNum
  13379. }
  13380. return 0
  13381. }
  13382. func (m *RoleYuanHangTrial) GetTrialNum() int32 {
  13383. if m != nil {
  13384. return m.TrialNum
  13385. }
  13386. return 0
  13387. }
  13388. func (m *RoleYuanHangTrial) GetRefreshTrialType() int32 {
  13389. if m != nil {
  13390. return m.RefreshTrialType
  13391. }
  13392. return 0
  13393. }
  13394. func (m *RoleYuanHangTrial) GetTrialData() *YuanHangTrialData {
  13395. if m != nil {
  13396. return m.TrialData
  13397. }
  13398. return nil
  13399. }
  13400. func (m *RoleYuanHangTrial) GetLogList() []*YuanHangTrialLogData {
  13401. if m != nil {
  13402. return m.LogList
  13403. }
  13404. return nil
  13405. }
  13406. func (m *RoleYuanHangTrial) GetTrialScore() int32 {
  13407. if m != nil {
  13408. return m.TrialScore
  13409. }
  13410. return 0
  13411. }
  13412. func (m *RoleYuanHangTrial) GetBuyNum() int32 {
  13413. if m != nil {
  13414. return m.BuyNum
  13415. }
  13416. return 0
  13417. }
  13418. func (m *RoleYuanHangTrial) GetBuyConsume() float64 {
  13419. if m != nil {
  13420. return m.BuyConsume
  13421. }
  13422. return 0
  13423. }
  13424. func (m *RoleYuanHangTrial) GetBuyType() int32 {
  13425. if m != nil {
  13426. return m.BuyType
  13427. }
  13428. return 0
  13429. }
  13430. type YuanHangTrialData struct {
  13431. Uid uint64 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"`
  13432. Zone int32 `protobuf:"varint,2,opt,name=zone,proto3" json:"zone,omitempty"`
  13433. TrialType int32 `protobuf:"varint,3,opt,name=trial_type,json=trialType,proto3" json:"trial_type,omitempty"`
  13434. EndTimeStamp uint64 `protobuf:"varint,4,opt,name=end_time_stamp,json=endTimeStamp,proto3" json:"end_time_stamp,omitempty"`
  13435. RewardState bool `protobuf:"varint,5,opt,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  13436. DirtyStamp uint64 `protobuf:"varint,6,opt,name=dirty_stamp,json=dirtyStamp,proto3" json:"dirty_stamp,omitempty"`
  13437. BeChallengeNum int32 `protobuf:"varint,7,opt,name=be_challenge_num,json=beChallengeNum,proto3" json:"be_challenge_num,omitempty"`
  13438. BeChallengeUidList []uint64 `protobuf:"varint,8,rep,packed,name=be_challenge_uid_list,json=beChallengeUidList,proto3" json:"be_challenge_uid_list,omitempty"`
  13439. FromRealZone int32 `protobuf:"varint,9,opt,name=from_real_zone,json=fromRealZone,proto3" json:"from_real_zone,omitempty"`
  13440. DurationTime int32 `protobuf:"varint,10,opt,name=duration_time,json=durationTime,proto3" json:"duration_time,omitempty"`
  13441. LineNum int32 `protobuf:"varint,11,opt,name=line_num,json=lineNum,proto3" json:"line_num,omitempty"`
  13442. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13443. XXX_unrecognized []byte `json:"-"`
  13444. XXX_sizecache int32 `json:"-"`
  13445. }
  13446. func (m *YuanHangTrialData) Reset() { *m = YuanHangTrialData{} }
  13447. func (m *YuanHangTrialData) String() string { return proto.CompactTextString(m) }
  13448. func (*YuanHangTrialData) ProtoMessage() {}
  13449. func (*YuanHangTrialData) Descriptor() ([]byte, []int) {
  13450. return fileDescriptor_116e343673f7ffaf, []int{224}
  13451. }
  13452. func (m *YuanHangTrialData) XXX_Unmarshal(b []byte) error {
  13453. return xxx_messageInfo_YuanHangTrialData.Unmarshal(m, b)
  13454. }
  13455. func (m *YuanHangTrialData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13456. return xxx_messageInfo_YuanHangTrialData.Marshal(b, m, deterministic)
  13457. }
  13458. func (m *YuanHangTrialData) XXX_Merge(src proto.Message) {
  13459. xxx_messageInfo_YuanHangTrialData.Merge(m, src)
  13460. }
  13461. func (m *YuanHangTrialData) XXX_Size() int {
  13462. return xxx_messageInfo_YuanHangTrialData.Size(m)
  13463. }
  13464. func (m *YuanHangTrialData) XXX_DiscardUnknown() {
  13465. xxx_messageInfo_YuanHangTrialData.DiscardUnknown(m)
  13466. }
  13467. var xxx_messageInfo_YuanHangTrialData proto.InternalMessageInfo
  13468. func (m *YuanHangTrialData) GetUid() uint64 {
  13469. if m != nil {
  13470. return m.Uid
  13471. }
  13472. return 0
  13473. }
  13474. func (m *YuanHangTrialData) GetZone() int32 {
  13475. if m != nil {
  13476. return m.Zone
  13477. }
  13478. return 0
  13479. }
  13480. func (m *YuanHangTrialData) GetTrialType() int32 {
  13481. if m != nil {
  13482. return m.TrialType
  13483. }
  13484. return 0
  13485. }
  13486. func (m *YuanHangTrialData) GetEndTimeStamp() uint64 {
  13487. if m != nil {
  13488. return m.EndTimeStamp
  13489. }
  13490. return 0
  13491. }
  13492. func (m *YuanHangTrialData) GetRewardState() bool {
  13493. if m != nil {
  13494. return m.RewardState
  13495. }
  13496. return false
  13497. }
  13498. func (m *YuanHangTrialData) GetDirtyStamp() uint64 {
  13499. if m != nil {
  13500. return m.DirtyStamp
  13501. }
  13502. return 0
  13503. }
  13504. func (m *YuanHangTrialData) GetBeChallengeNum() int32 {
  13505. if m != nil {
  13506. return m.BeChallengeNum
  13507. }
  13508. return 0
  13509. }
  13510. func (m *YuanHangTrialData) GetBeChallengeUidList() []uint64 {
  13511. if m != nil {
  13512. return m.BeChallengeUidList
  13513. }
  13514. return nil
  13515. }
  13516. func (m *YuanHangTrialData) GetFromRealZone() int32 {
  13517. if m != nil {
  13518. return m.FromRealZone
  13519. }
  13520. return 0
  13521. }
  13522. func (m *YuanHangTrialData) GetDurationTime() int32 {
  13523. if m != nil {
  13524. return m.DurationTime
  13525. }
  13526. return 0
  13527. }
  13528. func (m *YuanHangTrialData) GetLineNum() int32 {
  13529. if m != nil {
  13530. return m.LineNum
  13531. }
  13532. return 0
  13533. }
  13534. // type
  13535. // 1 你被xxx挑战,失去xxx奖励
  13536. // 2 你对xx发起了抢夺,获得了xxx奖励
  13537. // 3 你对xx发起了抢夺,但是自己无法获取到奖励
  13538. type YuanHangTrialLogData struct {
  13539. Type int32 `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
  13540. RecordTime uint64 `protobuf:"varint,2,opt,name=record_time,json=recordTime,proto3" json:"record_time,omitempty"`
  13541. State bool `protobuf:"varint,3,opt,name=state,proto3" json:"state,omitempty"`
  13542. TargetPlayerName string `protobuf:"bytes,4,opt,name=target_player_name,json=targetPlayerName,proto3" json:"target_player_name,omitempty"`
  13543. TargetPlayerUid uint64 `protobuf:"varint,5,opt,name=target_player_uid,json=targetPlayerUid,proto3" json:"target_player_uid,omitempty"`
  13544. TargetPlayerZone int32 `protobuf:"varint,6,opt,name=target_player_zone,json=targetPlayerZone,proto3" json:"target_player_zone,omitempty"`
  13545. TrialType int32 `protobuf:"varint,7,opt,name=trial_type,json=trialType,proto3" json:"trial_type,omitempty"`
  13546. ItemList []*KeyValueType `protobuf:"bytes,8,rep,name=item_list,json=itemList,proto3" json:"item_list,omitempty"`
  13547. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13548. XXX_unrecognized []byte `json:"-"`
  13549. XXX_sizecache int32 `json:"-"`
  13550. }
  13551. func (m *YuanHangTrialLogData) Reset() { *m = YuanHangTrialLogData{} }
  13552. func (m *YuanHangTrialLogData) String() string { return proto.CompactTextString(m) }
  13553. func (*YuanHangTrialLogData) ProtoMessage() {}
  13554. func (*YuanHangTrialLogData) Descriptor() ([]byte, []int) {
  13555. return fileDescriptor_116e343673f7ffaf, []int{225}
  13556. }
  13557. func (m *YuanHangTrialLogData) XXX_Unmarshal(b []byte) error {
  13558. return xxx_messageInfo_YuanHangTrialLogData.Unmarshal(m, b)
  13559. }
  13560. func (m *YuanHangTrialLogData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13561. return xxx_messageInfo_YuanHangTrialLogData.Marshal(b, m, deterministic)
  13562. }
  13563. func (m *YuanHangTrialLogData) XXX_Merge(src proto.Message) {
  13564. xxx_messageInfo_YuanHangTrialLogData.Merge(m, src)
  13565. }
  13566. func (m *YuanHangTrialLogData) XXX_Size() int {
  13567. return xxx_messageInfo_YuanHangTrialLogData.Size(m)
  13568. }
  13569. func (m *YuanHangTrialLogData) XXX_DiscardUnknown() {
  13570. xxx_messageInfo_YuanHangTrialLogData.DiscardUnknown(m)
  13571. }
  13572. var xxx_messageInfo_YuanHangTrialLogData proto.InternalMessageInfo
  13573. func (m *YuanHangTrialLogData) GetType() int32 {
  13574. if m != nil {
  13575. return m.Type
  13576. }
  13577. return 0
  13578. }
  13579. func (m *YuanHangTrialLogData) GetRecordTime() uint64 {
  13580. if m != nil {
  13581. return m.RecordTime
  13582. }
  13583. return 0
  13584. }
  13585. func (m *YuanHangTrialLogData) GetState() bool {
  13586. if m != nil {
  13587. return m.State
  13588. }
  13589. return false
  13590. }
  13591. func (m *YuanHangTrialLogData) GetTargetPlayerName() string {
  13592. if m != nil {
  13593. return m.TargetPlayerName
  13594. }
  13595. return ""
  13596. }
  13597. func (m *YuanHangTrialLogData) GetTargetPlayerUid() uint64 {
  13598. if m != nil {
  13599. return m.TargetPlayerUid
  13600. }
  13601. return 0
  13602. }
  13603. func (m *YuanHangTrialLogData) GetTargetPlayerZone() int32 {
  13604. if m != nil {
  13605. return m.TargetPlayerZone
  13606. }
  13607. return 0
  13608. }
  13609. func (m *YuanHangTrialLogData) GetTrialType() int32 {
  13610. if m != nil {
  13611. return m.TrialType
  13612. }
  13613. return 0
  13614. }
  13615. func (m *YuanHangTrialLogData) GetItemList() []*KeyValueType {
  13616. if m != nil {
  13617. return m.ItemList
  13618. }
  13619. return nil
  13620. }
  13621. type CommonRankInfo struct {
  13622. Rank int32 `protobuf:"varint,1,opt,name=rank,proto3" json:"rank,omitempty"`
  13623. BriefInfo *CommonPlayerBriefInfo `protobuf:"bytes,2,opt,name=brief_info,json=briefInfo,proto3" json:"brief_info,omitempty"`
  13624. Score int32 `protobuf:"varint,3,opt,name=score,proto3" json:"score,omitempty"`
  13625. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13626. XXX_unrecognized []byte `json:"-"`
  13627. XXX_sizecache int32 `json:"-"`
  13628. }
  13629. func (m *CommonRankInfo) Reset() { *m = CommonRankInfo{} }
  13630. func (m *CommonRankInfo) String() string { return proto.CompactTextString(m) }
  13631. func (*CommonRankInfo) ProtoMessage() {}
  13632. func (*CommonRankInfo) Descriptor() ([]byte, []int) {
  13633. return fileDescriptor_116e343673f7ffaf, []int{226}
  13634. }
  13635. func (m *CommonRankInfo) XXX_Unmarshal(b []byte) error {
  13636. return xxx_messageInfo_CommonRankInfo.Unmarshal(m, b)
  13637. }
  13638. func (m *CommonRankInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13639. return xxx_messageInfo_CommonRankInfo.Marshal(b, m, deterministic)
  13640. }
  13641. func (m *CommonRankInfo) XXX_Merge(src proto.Message) {
  13642. xxx_messageInfo_CommonRankInfo.Merge(m, src)
  13643. }
  13644. func (m *CommonRankInfo) XXX_Size() int {
  13645. return xxx_messageInfo_CommonRankInfo.Size(m)
  13646. }
  13647. func (m *CommonRankInfo) XXX_DiscardUnknown() {
  13648. xxx_messageInfo_CommonRankInfo.DiscardUnknown(m)
  13649. }
  13650. var xxx_messageInfo_CommonRankInfo proto.InternalMessageInfo
  13651. func (m *CommonRankInfo) GetRank() int32 {
  13652. if m != nil {
  13653. return m.Rank
  13654. }
  13655. return 0
  13656. }
  13657. func (m *CommonRankInfo) GetBriefInfo() *CommonPlayerBriefInfo {
  13658. if m != nil {
  13659. return m.BriefInfo
  13660. }
  13661. return nil
  13662. }
  13663. func (m *CommonRankInfo) GetScore() int32 {
  13664. if m != nil {
  13665. return m.Score
  13666. }
  13667. return 0
  13668. }
  13669. // 巅峰爬塔
  13670. type RoleCrossTopTower struct {
  13671. ValidEndTime uint64 `protobuf:"varint,1,opt,name=valid_end_time,json=validEndTime,proto3" json:"valid_end_time,omitempty"`
  13672. FightList []*TopTowerFightRoleInfo `protobuf:"bytes,2,rep,name=fight_list,json=fightList,proto3" json:"fight_list,omitempty"`
  13673. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13674. XXX_unrecognized []byte `json:"-"`
  13675. XXX_sizecache int32 `json:"-"`
  13676. }
  13677. func (m *RoleCrossTopTower) Reset() { *m = RoleCrossTopTower{} }
  13678. func (m *RoleCrossTopTower) String() string { return proto.CompactTextString(m) }
  13679. func (*RoleCrossTopTower) ProtoMessage() {}
  13680. func (*RoleCrossTopTower) Descriptor() ([]byte, []int) {
  13681. return fileDescriptor_116e343673f7ffaf, []int{227}
  13682. }
  13683. func (m *RoleCrossTopTower) XXX_Unmarshal(b []byte) error {
  13684. return xxx_messageInfo_RoleCrossTopTower.Unmarshal(m, b)
  13685. }
  13686. func (m *RoleCrossTopTower) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13687. return xxx_messageInfo_RoleCrossTopTower.Marshal(b, m, deterministic)
  13688. }
  13689. func (m *RoleCrossTopTower) XXX_Merge(src proto.Message) {
  13690. xxx_messageInfo_RoleCrossTopTower.Merge(m, src)
  13691. }
  13692. func (m *RoleCrossTopTower) XXX_Size() int {
  13693. return xxx_messageInfo_RoleCrossTopTower.Size(m)
  13694. }
  13695. func (m *RoleCrossTopTower) XXX_DiscardUnknown() {
  13696. xxx_messageInfo_RoleCrossTopTower.DiscardUnknown(m)
  13697. }
  13698. var xxx_messageInfo_RoleCrossTopTower proto.InternalMessageInfo
  13699. func (m *RoleCrossTopTower) GetValidEndTime() uint64 {
  13700. if m != nil {
  13701. return m.ValidEndTime
  13702. }
  13703. return 0
  13704. }
  13705. func (m *RoleCrossTopTower) GetFightList() []*TopTowerFightRoleInfo {
  13706. if m != nil {
  13707. return m.FightList
  13708. }
  13709. return nil
  13710. }
  13711. type TopTowerFightRoleInfo struct {
  13712. Idx int32 `protobuf:"varint,1,opt,name=idx,proto3" json:"idx,omitempty"`
  13713. FightInfo *FightRoleInfo `protobuf:"bytes,2,opt,name=fight_info,json=fightInfo,proto3" json:"fight_info,omitempty"`
  13714. RewardState bool `protobuf:"varint,3,opt,name=reward_state,json=rewardState,proto3" json:"reward_state,omitempty"`
  13715. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13716. XXX_unrecognized []byte `json:"-"`
  13717. XXX_sizecache int32 `json:"-"`
  13718. }
  13719. func (m *TopTowerFightRoleInfo) Reset() { *m = TopTowerFightRoleInfo{} }
  13720. func (m *TopTowerFightRoleInfo) String() string { return proto.CompactTextString(m) }
  13721. func (*TopTowerFightRoleInfo) ProtoMessage() {}
  13722. func (*TopTowerFightRoleInfo) Descriptor() ([]byte, []int) {
  13723. return fileDescriptor_116e343673f7ffaf, []int{228}
  13724. }
  13725. func (m *TopTowerFightRoleInfo) XXX_Unmarshal(b []byte) error {
  13726. return xxx_messageInfo_TopTowerFightRoleInfo.Unmarshal(m, b)
  13727. }
  13728. func (m *TopTowerFightRoleInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13729. return xxx_messageInfo_TopTowerFightRoleInfo.Marshal(b, m, deterministic)
  13730. }
  13731. func (m *TopTowerFightRoleInfo) XXX_Merge(src proto.Message) {
  13732. xxx_messageInfo_TopTowerFightRoleInfo.Merge(m, src)
  13733. }
  13734. func (m *TopTowerFightRoleInfo) XXX_Size() int {
  13735. return xxx_messageInfo_TopTowerFightRoleInfo.Size(m)
  13736. }
  13737. func (m *TopTowerFightRoleInfo) XXX_DiscardUnknown() {
  13738. xxx_messageInfo_TopTowerFightRoleInfo.DiscardUnknown(m)
  13739. }
  13740. var xxx_messageInfo_TopTowerFightRoleInfo proto.InternalMessageInfo
  13741. func (m *TopTowerFightRoleInfo) GetIdx() int32 {
  13742. if m != nil {
  13743. return m.Idx
  13744. }
  13745. return 0
  13746. }
  13747. func (m *TopTowerFightRoleInfo) GetFightInfo() *FightRoleInfo {
  13748. if m != nil {
  13749. return m.FightInfo
  13750. }
  13751. return nil
  13752. }
  13753. func (m *TopTowerFightRoleInfo) GetRewardState() bool {
  13754. if m != nil {
  13755. return m.RewardState
  13756. }
  13757. return false
  13758. }
  13759. // AOI服务器线路状态
  13760. type ServerStateInfo struct {
  13761. Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  13762. Sid string `protobuf:"bytes,2,opt,name=sid,proto3" json:"sid,omitempty"`
  13763. StateList []*StateDetailDesc `protobuf:"bytes,3,rep,name=state_list,json=stateList,proto3" json:"state_list,omitempty"`
  13764. MaxLineNum int32 `protobuf:"varint,4,opt,name=max_line_num,json=maxLineNum,proto3" json:"max_line_num,omitempty"`
  13765. MaxSpaceEntityNum int32 `protobuf:"varint,5,opt,name=max_space_entity_num,json=maxSpaceEntityNum,proto3" json:"max_space_entity_num,omitempty"`
  13766. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13767. XXX_unrecognized []byte `json:"-"`
  13768. XXX_sizecache int32 `json:"-"`
  13769. }
  13770. func (m *ServerStateInfo) Reset() { *m = ServerStateInfo{} }
  13771. func (m *ServerStateInfo) String() string { return proto.CompactTextString(m) }
  13772. func (*ServerStateInfo) ProtoMessage() {}
  13773. func (*ServerStateInfo) Descriptor() ([]byte, []int) {
  13774. return fileDescriptor_116e343673f7ffaf, []int{229}
  13775. }
  13776. func (m *ServerStateInfo) XXX_Unmarshal(b []byte) error {
  13777. return xxx_messageInfo_ServerStateInfo.Unmarshal(m, b)
  13778. }
  13779. func (m *ServerStateInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13780. return xxx_messageInfo_ServerStateInfo.Marshal(b, m, deterministic)
  13781. }
  13782. func (m *ServerStateInfo) XXX_Merge(src proto.Message) {
  13783. xxx_messageInfo_ServerStateInfo.Merge(m, src)
  13784. }
  13785. func (m *ServerStateInfo) XXX_Size() int {
  13786. return xxx_messageInfo_ServerStateInfo.Size(m)
  13787. }
  13788. func (m *ServerStateInfo) XXX_DiscardUnknown() {
  13789. xxx_messageInfo_ServerStateInfo.DiscardUnknown(m)
  13790. }
  13791. var xxx_messageInfo_ServerStateInfo proto.InternalMessageInfo
  13792. func (m *ServerStateInfo) GetId() int32 {
  13793. if m != nil {
  13794. return m.Id
  13795. }
  13796. return 0
  13797. }
  13798. func (m *ServerStateInfo) GetSid() string {
  13799. if m != nil {
  13800. return m.Sid
  13801. }
  13802. return ""
  13803. }
  13804. func (m *ServerStateInfo) GetStateList() []*StateDetailDesc {
  13805. if m != nil {
  13806. return m.StateList
  13807. }
  13808. return nil
  13809. }
  13810. func (m *ServerStateInfo) GetMaxLineNum() int32 {
  13811. if m != nil {
  13812. return m.MaxLineNum
  13813. }
  13814. return 0
  13815. }
  13816. func (m *ServerStateInfo) GetMaxSpaceEntityNum() int32 {
  13817. if m != nil {
  13818. return m.MaxSpaceEntityNum
  13819. }
  13820. return 0
  13821. }
  13822. type StateDetailDesc struct {
  13823. Line int32 `protobuf:"varint,2,opt,name=line,proto3" json:"line,omitempty"`
  13824. CurNum int32 `protobuf:"varint,3,opt,name=cur_num,json=curNum,proto3" json:"cur_num,omitempty"`
  13825. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13826. XXX_unrecognized []byte `json:"-"`
  13827. XXX_sizecache int32 `json:"-"`
  13828. }
  13829. func (m *StateDetailDesc) Reset() { *m = StateDetailDesc{} }
  13830. func (m *StateDetailDesc) String() string { return proto.CompactTextString(m) }
  13831. func (*StateDetailDesc) ProtoMessage() {}
  13832. func (*StateDetailDesc) Descriptor() ([]byte, []int) {
  13833. return fileDescriptor_116e343673f7ffaf, []int{230}
  13834. }
  13835. func (m *StateDetailDesc) XXX_Unmarshal(b []byte) error {
  13836. return xxx_messageInfo_StateDetailDesc.Unmarshal(m, b)
  13837. }
  13838. func (m *StateDetailDesc) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13839. return xxx_messageInfo_StateDetailDesc.Marshal(b, m, deterministic)
  13840. }
  13841. func (m *StateDetailDesc) XXX_Merge(src proto.Message) {
  13842. xxx_messageInfo_StateDetailDesc.Merge(m, src)
  13843. }
  13844. func (m *StateDetailDesc) XXX_Size() int {
  13845. return xxx_messageInfo_StateDetailDesc.Size(m)
  13846. }
  13847. func (m *StateDetailDesc) XXX_DiscardUnknown() {
  13848. xxx_messageInfo_StateDetailDesc.DiscardUnknown(m)
  13849. }
  13850. var xxx_messageInfo_StateDetailDesc proto.InternalMessageInfo
  13851. func (m *StateDetailDesc) GetLine() int32 {
  13852. if m != nil {
  13853. return m.Line
  13854. }
  13855. return 0
  13856. }
  13857. func (m *StateDetailDesc) GetCurNum() int32 {
  13858. if m != nil {
  13859. return m.CurNum
  13860. }
  13861. return 0
  13862. }
  13863. type RoleRush struct {
  13864. RushSkill *RushSkill `protobuf:"bytes,1,opt,name=rush_skill,json=rushSkill,proto3" json:"rush_skill,omitempty"`
  13865. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13866. XXX_unrecognized []byte `json:"-"`
  13867. XXX_sizecache int32 `json:"-"`
  13868. }
  13869. func (m *RoleRush) Reset() { *m = RoleRush{} }
  13870. func (m *RoleRush) String() string { return proto.CompactTextString(m) }
  13871. func (*RoleRush) ProtoMessage() {}
  13872. func (*RoleRush) Descriptor() ([]byte, []int) {
  13873. return fileDescriptor_116e343673f7ffaf, []int{231}
  13874. }
  13875. func (m *RoleRush) XXX_Unmarshal(b []byte) error {
  13876. return xxx_messageInfo_RoleRush.Unmarshal(m, b)
  13877. }
  13878. func (m *RoleRush) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13879. return xxx_messageInfo_RoleRush.Marshal(b, m, deterministic)
  13880. }
  13881. func (m *RoleRush) XXX_Merge(src proto.Message) {
  13882. xxx_messageInfo_RoleRush.Merge(m, src)
  13883. }
  13884. func (m *RoleRush) XXX_Size() int {
  13885. return xxx_messageInfo_RoleRush.Size(m)
  13886. }
  13887. func (m *RoleRush) XXX_DiscardUnknown() {
  13888. xxx_messageInfo_RoleRush.DiscardUnknown(m)
  13889. }
  13890. var xxx_messageInfo_RoleRush proto.InternalMessageInfo
  13891. func (m *RoleRush) GetRushSkill() *RushSkill {
  13892. if m != nil {
  13893. return m.RushSkill
  13894. }
  13895. return nil
  13896. }
  13897. type RushSkill struct {
  13898. TotalScore uint32 `protobuf:"varint,1,opt,name=total_score,json=totalScore,proto3" json:"total_score,omitempty"`
  13899. RushRound int32 `protobuf:"varint,2,opt,name=rush_round,json=rushRound,proto3" json:"rush_round,omitempty"`
  13900. RewardRound int32 `protobuf:"varint,3,opt,name=reward_round,json=rewardRound,proto3" json:"reward_round,omitempty"`
  13901. ScoreRewardFlag int32 `protobuf:"varint,4,opt,name=score_reward_flag,json=scoreRewardFlag,proto3" json:"score_reward_flag,omitempty"`
  13902. RankReward int32 `protobuf:"varint,5,opt,name=rank_reward,json=rankReward,proto3" json:"rank_reward,omitempty"`
  13903. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13904. XXX_unrecognized []byte `json:"-"`
  13905. XXX_sizecache int32 `json:"-"`
  13906. }
  13907. func (m *RushSkill) Reset() { *m = RushSkill{} }
  13908. func (m *RushSkill) String() string { return proto.CompactTextString(m) }
  13909. func (*RushSkill) ProtoMessage() {}
  13910. func (*RushSkill) Descriptor() ([]byte, []int) {
  13911. return fileDescriptor_116e343673f7ffaf, []int{232}
  13912. }
  13913. func (m *RushSkill) XXX_Unmarshal(b []byte) error {
  13914. return xxx_messageInfo_RushSkill.Unmarshal(m, b)
  13915. }
  13916. func (m *RushSkill) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13917. return xxx_messageInfo_RushSkill.Marshal(b, m, deterministic)
  13918. }
  13919. func (m *RushSkill) XXX_Merge(src proto.Message) {
  13920. xxx_messageInfo_RushSkill.Merge(m, src)
  13921. }
  13922. func (m *RushSkill) XXX_Size() int {
  13923. return xxx_messageInfo_RushSkill.Size(m)
  13924. }
  13925. func (m *RushSkill) XXX_DiscardUnknown() {
  13926. xxx_messageInfo_RushSkill.DiscardUnknown(m)
  13927. }
  13928. var xxx_messageInfo_RushSkill proto.InternalMessageInfo
  13929. func (m *RushSkill) GetTotalScore() uint32 {
  13930. if m != nil {
  13931. return m.TotalScore
  13932. }
  13933. return 0
  13934. }
  13935. func (m *RushSkill) GetRushRound() int32 {
  13936. if m != nil {
  13937. return m.RushRound
  13938. }
  13939. return 0
  13940. }
  13941. func (m *RushSkill) GetRewardRound() int32 {
  13942. if m != nil {
  13943. return m.RewardRound
  13944. }
  13945. return 0
  13946. }
  13947. func (m *RushSkill) GetScoreRewardFlag() int32 {
  13948. if m != nil {
  13949. return m.ScoreRewardFlag
  13950. }
  13951. return 0
  13952. }
  13953. func (m *RushSkill) GetRankReward() int32 {
  13954. if m != nil {
  13955. return m.RankReward
  13956. }
  13957. return 0
  13958. }
  13959. type HeadData struct {
  13960. HeadId int32 `protobuf:"varint,1,opt,name=head_id,json=headId,proto3" json:"head_id,omitempty"`
  13961. State int32 `protobuf:"varint,2,opt,name=state,proto3" json:"state,omitempty"`
  13962. EndTime int64 `protobuf:"varint,3,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  13963. TaskData *TaskData `protobuf:"bytes,4,opt,name=task_data,json=taskData,proto3" json:"task_data,omitempty"`
  13964. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  13965. XXX_unrecognized []byte `json:"-"`
  13966. XXX_sizecache int32 `json:"-"`
  13967. }
  13968. func (m *HeadData) Reset() { *m = HeadData{} }
  13969. func (m *HeadData) String() string { return proto.CompactTextString(m) }
  13970. func (*HeadData) ProtoMessage() {}
  13971. func (*HeadData) Descriptor() ([]byte, []int) {
  13972. return fileDescriptor_116e343673f7ffaf, []int{233}
  13973. }
  13974. func (m *HeadData) XXX_Unmarshal(b []byte) error {
  13975. return xxx_messageInfo_HeadData.Unmarshal(m, b)
  13976. }
  13977. func (m *HeadData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  13978. return xxx_messageInfo_HeadData.Marshal(b, m, deterministic)
  13979. }
  13980. func (m *HeadData) XXX_Merge(src proto.Message) {
  13981. xxx_messageInfo_HeadData.Merge(m, src)
  13982. }
  13983. func (m *HeadData) XXX_Size() int {
  13984. return xxx_messageInfo_HeadData.Size(m)
  13985. }
  13986. func (m *HeadData) XXX_DiscardUnknown() {
  13987. xxx_messageInfo_HeadData.DiscardUnknown(m)
  13988. }
  13989. var xxx_messageInfo_HeadData proto.InternalMessageInfo
  13990. func (m *HeadData) GetHeadId() int32 {
  13991. if m != nil {
  13992. return m.HeadId
  13993. }
  13994. return 0
  13995. }
  13996. func (m *HeadData) GetState() int32 {
  13997. if m != nil {
  13998. return m.State
  13999. }
  14000. return 0
  14001. }
  14002. func (m *HeadData) GetEndTime() int64 {
  14003. if m != nil {
  14004. return m.EndTime
  14005. }
  14006. return 0
  14007. }
  14008. func (m *HeadData) GetTaskData() *TaskData {
  14009. if m != nil {
  14010. return m.TaskData
  14011. }
  14012. return nil
  14013. }
  14014. type RoleHead struct {
  14015. Heads []*HeadData `protobuf:"bytes,1,rep,name=heads,proto3" json:"heads,omitempty"`
  14016. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14017. XXX_unrecognized []byte `json:"-"`
  14018. XXX_sizecache int32 `json:"-"`
  14019. }
  14020. func (m *RoleHead) Reset() { *m = RoleHead{} }
  14021. func (m *RoleHead) String() string { return proto.CompactTextString(m) }
  14022. func (*RoleHead) ProtoMessage() {}
  14023. func (*RoleHead) Descriptor() ([]byte, []int) {
  14024. return fileDescriptor_116e343673f7ffaf, []int{234}
  14025. }
  14026. func (m *RoleHead) XXX_Unmarshal(b []byte) error {
  14027. return xxx_messageInfo_RoleHead.Unmarshal(m, b)
  14028. }
  14029. func (m *RoleHead) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14030. return xxx_messageInfo_RoleHead.Marshal(b, m, deterministic)
  14031. }
  14032. func (m *RoleHead) XXX_Merge(src proto.Message) {
  14033. xxx_messageInfo_RoleHead.Merge(m, src)
  14034. }
  14035. func (m *RoleHead) XXX_Size() int {
  14036. return xxx_messageInfo_RoleHead.Size(m)
  14037. }
  14038. func (m *RoleHead) XXX_DiscardUnknown() {
  14039. xxx_messageInfo_RoleHead.DiscardUnknown(m)
  14040. }
  14041. var xxx_messageInfo_RoleHead proto.InternalMessageInfo
  14042. func (m *RoleHead) GetHeads() []*HeadData {
  14043. if m != nil {
  14044. return m.Heads
  14045. }
  14046. return nil
  14047. }
  14048. type RoleWish struct {
  14049. Slots []*WishSlot `protobuf:"bytes,1,rep,name=slots,proto3" json:"slots,omitempty"`
  14050. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14051. XXX_unrecognized []byte `json:"-"`
  14052. XXX_sizecache int32 `json:"-"`
  14053. }
  14054. func (m *RoleWish) Reset() { *m = RoleWish{} }
  14055. func (m *RoleWish) String() string { return proto.CompactTextString(m) }
  14056. func (*RoleWish) ProtoMessage() {}
  14057. func (*RoleWish) Descriptor() ([]byte, []int) {
  14058. return fileDescriptor_116e343673f7ffaf, []int{235}
  14059. }
  14060. func (m *RoleWish) XXX_Unmarshal(b []byte) error {
  14061. return xxx_messageInfo_RoleWish.Unmarshal(m, b)
  14062. }
  14063. func (m *RoleWish) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14064. return xxx_messageInfo_RoleWish.Marshal(b, m, deterministic)
  14065. }
  14066. func (m *RoleWish) XXX_Merge(src proto.Message) {
  14067. xxx_messageInfo_RoleWish.Merge(m, src)
  14068. }
  14069. func (m *RoleWish) XXX_Size() int {
  14070. return xxx_messageInfo_RoleWish.Size(m)
  14071. }
  14072. func (m *RoleWish) XXX_DiscardUnknown() {
  14073. xxx_messageInfo_RoleWish.DiscardUnknown(m)
  14074. }
  14075. var xxx_messageInfo_RoleWish proto.InternalMessageInfo
  14076. func (m *RoleWish) GetSlots() []*WishSlot {
  14077. if m != nil {
  14078. return m.Slots
  14079. }
  14080. return nil
  14081. }
  14082. // 许愿槽位信息
  14083. type WishSlot struct {
  14084. Item *KeyValueType `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
  14085. SrcItem int32 `protobuf:"varint,2,opt,name=src_item,json=srcItem,proto3" json:"src_item,omitempty"`
  14086. EndTime int64 `protobuf:"varint,3,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
  14087. IsOpen bool `protobuf:"varint,4,opt,name=isOpen,proto3" json:"isOpen,omitempty"`
  14088. IsLucky bool `protobuf:"varint,5,opt,name=isLucky,proto3" json:"isLucky,omitempty"`
  14089. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14090. XXX_unrecognized []byte `json:"-"`
  14091. XXX_sizecache int32 `json:"-"`
  14092. }
  14093. func (m *WishSlot) Reset() { *m = WishSlot{} }
  14094. func (m *WishSlot) String() string { return proto.CompactTextString(m) }
  14095. func (*WishSlot) ProtoMessage() {}
  14096. func (*WishSlot) Descriptor() ([]byte, []int) {
  14097. return fileDescriptor_116e343673f7ffaf, []int{236}
  14098. }
  14099. func (m *WishSlot) XXX_Unmarshal(b []byte) error {
  14100. return xxx_messageInfo_WishSlot.Unmarshal(m, b)
  14101. }
  14102. func (m *WishSlot) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14103. return xxx_messageInfo_WishSlot.Marshal(b, m, deterministic)
  14104. }
  14105. func (m *WishSlot) XXX_Merge(src proto.Message) {
  14106. xxx_messageInfo_WishSlot.Merge(m, src)
  14107. }
  14108. func (m *WishSlot) XXX_Size() int {
  14109. return xxx_messageInfo_WishSlot.Size(m)
  14110. }
  14111. func (m *WishSlot) XXX_DiscardUnknown() {
  14112. xxx_messageInfo_WishSlot.DiscardUnknown(m)
  14113. }
  14114. var xxx_messageInfo_WishSlot proto.InternalMessageInfo
  14115. func (m *WishSlot) GetItem() *KeyValueType {
  14116. if m != nil {
  14117. return m.Item
  14118. }
  14119. return nil
  14120. }
  14121. func (m *WishSlot) GetSrcItem() int32 {
  14122. if m != nil {
  14123. return m.SrcItem
  14124. }
  14125. return 0
  14126. }
  14127. func (m *WishSlot) GetEndTime() int64 {
  14128. if m != nil {
  14129. return m.EndTime
  14130. }
  14131. return 0
  14132. }
  14133. func (m *WishSlot) GetIsOpen() bool {
  14134. if m != nil {
  14135. return m.IsOpen
  14136. }
  14137. return false
  14138. }
  14139. func (m *WishSlot) GetIsLucky() bool {
  14140. if m != nil {
  14141. return m.IsLucky
  14142. }
  14143. return false
  14144. }
  14145. // //////////////////////
  14146. // bt服务器功能结构
  14147. type RoleBT struct {
  14148. BoliData *BTBoliData `protobuf:"bytes,1,opt,name=boli_data,json=boliData,proto3" json:"boli_data,omitempty"`
  14149. BaseData *BTBaseData `protobuf:"bytes,2,opt,name=base_data,json=baseData,proto3" json:"base_data,omitempty"`
  14150. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14151. XXX_unrecognized []byte `json:"-"`
  14152. XXX_sizecache int32 `json:"-"`
  14153. }
  14154. func (m *RoleBT) Reset() { *m = RoleBT{} }
  14155. func (m *RoleBT) String() string { return proto.CompactTextString(m) }
  14156. func (*RoleBT) ProtoMessage() {}
  14157. func (*RoleBT) Descriptor() ([]byte, []int) {
  14158. return fileDescriptor_116e343673f7ffaf, []int{237}
  14159. }
  14160. func (m *RoleBT) XXX_Unmarshal(b []byte) error {
  14161. return xxx_messageInfo_RoleBT.Unmarshal(m, b)
  14162. }
  14163. func (m *RoleBT) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14164. return xxx_messageInfo_RoleBT.Marshal(b, m, deterministic)
  14165. }
  14166. func (m *RoleBT) XXX_Merge(src proto.Message) {
  14167. xxx_messageInfo_RoleBT.Merge(m, src)
  14168. }
  14169. func (m *RoleBT) XXX_Size() int {
  14170. return xxx_messageInfo_RoleBT.Size(m)
  14171. }
  14172. func (m *RoleBT) XXX_DiscardUnknown() {
  14173. xxx_messageInfo_RoleBT.DiscardUnknown(m)
  14174. }
  14175. var xxx_messageInfo_RoleBT proto.InternalMessageInfo
  14176. func (m *RoleBT) GetBoliData() *BTBoliData {
  14177. if m != nil {
  14178. return m.BoliData
  14179. }
  14180. return nil
  14181. }
  14182. func (m *RoleBT) GetBaseData() *BTBaseData {
  14183. if m != nil {
  14184. return m.BaseData
  14185. }
  14186. return nil
  14187. }
  14188. // bt波利商城
  14189. type BTBoliData struct {
  14190. Level int32 `protobuf:"varint,1,opt,name=level,proto3" json:"level,omitempty"`
  14191. DayRewardList []*KeyValueType `protobuf:"bytes,2,rep,name=day_reward_list,json=dayRewardList,proto3" json:"day_reward_list,omitempty"`
  14192. BuyInfoList []*BuyInfo `protobuf:"bytes,3,rep,name=buy_info_list,json=buyInfoList,proto3" json:"buy_info_list,omitempty"`
  14193. RewardTime uint64 `protobuf:"varint,4,opt,name=reward_time,json=rewardTime,proto3" json:"reward_time,omitempty"`
  14194. ShowTimeStamp uint64 `protobuf:"varint,5,opt,name=show_time_stamp,json=showTimeStamp,proto3" json:"show_time_stamp,omitempty"`
  14195. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14196. XXX_unrecognized []byte `json:"-"`
  14197. XXX_sizecache int32 `json:"-"`
  14198. }
  14199. func (m *BTBoliData) Reset() { *m = BTBoliData{} }
  14200. func (m *BTBoliData) String() string { return proto.CompactTextString(m) }
  14201. func (*BTBoliData) ProtoMessage() {}
  14202. func (*BTBoliData) Descriptor() ([]byte, []int) {
  14203. return fileDescriptor_116e343673f7ffaf, []int{238}
  14204. }
  14205. func (m *BTBoliData) XXX_Unmarshal(b []byte) error {
  14206. return xxx_messageInfo_BTBoliData.Unmarshal(m, b)
  14207. }
  14208. func (m *BTBoliData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14209. return xxx_messageInfo_BTBoliData.Marshal(b, m, deterministic)
  14210. }
  14211. func (m *BTBoliData) XXX_Merge(src proto.Message) {
  14212. xxx_messageInfo_BTBoliData.Merge(m, src)
  14213. }
  14214. func (m *BTBoliData) XXX_Size() int {
  14215. return xxx_messageInfo_BTBoliData.Size(m)
  14216. }
  14217. func (m *BTBoliData) XXX_DiscardUnknown() {
  14218. xxx_messageInfo_BTBoliData.DiscardUnknown(m)
  14219. }
  14220. var xxx_messageInfo_BTBoliData proto.InternalMessageInfo
  14221. func (m *BTBoliData) GetLevel() int32 {
  14222. if m != nil {
  14223. return m.Level
  14224. }
  14225. return 0
  14226. }
  14227. func (m *BTBoliData) GetDayRewardList() []*KeyValueType {
  14228. if m != nil {
  14229. return m.DayRewardList
  14230. }
  14231. return nil
  14232. }
  14233. func (m *BTBoliData) GetBuyInfoList() []*BuyInfo {
  14234. if m != nil {
  14235. return m.BuyInfoList
  14236. }
  14237. return nil
  14238. }
  14239. func (m *BTBoliData) GetRewardTime() uint64 {
  14240. if m != nil {
  14241. return m.RewardTime
  14242. }
  14243. return 0
  14244. }
  14245. func (m *BTBoliData) GetShowTimeStamp() uint64 {
  14246. if m != nil {
  14247. return m.ShowTimeStamp
  14248. }
  14249. return 0
  14250. }
  14251. // bt基础数据
  14252. type BTBaseData struct {
  14253. // bt超值首充
  14254. FirstRechargeTime uint64 `protobuf:"varint,1,opt,name=first_recharge_time,json=firstRechargeTime,proto3" json:"first_recharge_time,omitempty"`
  14255. FirstRechargeRewardState uint32 `protobuf:"varint,2,opt,name=first_recharge_reward_state,json=firstRechargeRewardState,proto3" json:"first_recharge_reward_state,omitempty"`
  14256. // bt百元大礼包
  14257. Recharge100Time uint64 `protobuf:"varint,3,opt,name=recharge100_time,json=recharge100Time,proto3" json:"recharge100_time,omitempty"`
  14258. Recharge100RewardDay int32 `protobuf:"varint,4,opt,name=recharge100_reward_day,json=recharge100RewardDay,proto3" json:"recharge100_reward_day,omitempty"`
  14259. Recharge100RewardState int32 `protobuf:"varint,5,opt,name=recharge100_reward_state,json=recharge100RewardState,proto3" json:"recharge100_reward_state,omitempty"`
  14260. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14261. XXX_unrecognized []byte `json:"-"`
  14262. XXX_sizecache int32 `json:"-"`
  14263. }
  14264. func (m *BTBaseData) Reset() { *m = BTBaseData{} }
  14265. func (m *BTBaseData) String() string { return proto.CompactTextString(m) }
  14266. func (*BTBaseData) ProtoMessage() {}
  14267. func (*BTBaseData) Descriptor() ([]byte, []int) {
  14268. return fileDescriptor_116e343673f7ffaf, []int{239}
  14269. }
  14270. func (m *BTBaseData) XXX_Unmarshal(b []byte) error {
  14271. return xxx_messageInfo_BTBaseData.Unmarshal(m, b)
  14272. }
  14273. func (m *BTBaseData) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14274. return xxx_messageInfo_BTBaseData.Marshal(b, m, deterministic)
  14275. }
  14276. func (m *BTBaseData) XXX_Merge(src proto.Message) {
  14277. xxx_messageInfo_BTBaseData.Merge(m, src)
  14278. }
  14279. func (m *BTBaseData) XXX_Size() int {
  14280. return xxx_messageInfo_BTBaseData.Size(m)
  14281. }
  14282. func (m *BTBaseData) XXX_DiscardUnknown() {
  14283. xxx_messageInfo_BTBaseData.DiscardUnknown(m)
  14284. }
  14285. var xxx_messageInfo_BTBaseData proto.InternalMessageInfo
  14286. func (m *BTBaseData) GetFirstRechargeTime() uint64 {
  14287. if m != nil {
  14288. return m.FirstRechargeTime
  14289. }
  14290. return 0
  14291. }
  14292. func (m *BTBaseData) GetFirstRechargeRewardState() uint32 {
  14293. if m != nil {
  14294. return m.FirstRechargeRewardState
  14295. }
  14296. return 0
  14297. }
  14298. func (m *BTBaseData) GetRecharge100Time() uint64 {
  14299. if m != nil {
  14300. return m.Recharge100Time
  14301. }
  14302. return 0
  14303. }
  14304. func (m *BTBaseData) GetRecharge100RewardDay() int32 {
  14305. if m != nil {
  14306. return m.Recharge100RewardDay
  14307. }
  14308. return 0
  14309. }
  14310. func (m *BTBaseData) GetRecharge100RewardState() int32 {
  14311. if m != nil {
  14312. return m.Recharge100RewardState
  14313. }
  14314. return 0
  14315. }
  14316. type Role struct {
  14317. Id uint64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
  14318. RoleBase *RoleBase `protobuf:"bytes,2,opt,name=role_base,json=roleBase,proto3" json:"role_base,omitempty"`
  14319. RoleHero *RoleHero `protobuf:"bytes,3,opt,name=role_hero,json=roleHero,proto3" json:"role_hero,omitempty"`
  14320. RoleBag *RoleBag `protobuf:"bytes,4,opt,name=role_bag,json=roleBag,proto3" json:"role_bag,omitempty"`
  14321. RoleEquip *RoleEquip `protobuf:"bytes,5,opt,name=role_equip,json=roleEquip,proto3" json:"role_equip,omitempty"`
  14322. RoleChip *RoleChip `protobuf:"bytes,6,opt,name=role_chip,json=roleChip,proto3" json:"role_chip,omitempty"`
  14323. RoleMap *RoleMap `protobuf:"bytes,7,opt,name=role_map,json=roleMap,proto3" json:"role_map,omitempty"`
  14324. RoleCard *RoleCard `protobuf:"bytes,9,opt,name=role_card,json=roleCard,proto3" json:"role_card,omitempty"`
  14325. RoleFashion *RoleFashion `protobuf:"bytes,10,opt,name=role_fashion,json=roleFashion,proto3" json:"role_fashion,omitempty"`
  14326. RoleBattle *RoleBattle `protobuf:"bytes,11,opt,name=role_battle,json=roleBattle,proto3" json:"role_battle,omitempty"`
  14327. RoleTask *RoleTask `protobuf:"bytes,12,opt,name=role_task,json=roleTask,proto3" json:"role_task,omitempty"`
  14328. RoleChat *RoleChat `protobuf:"bytes,13,opt,name=role_chat,json=roleChat,proto3" json:"role_chat,omitempty"`
  14329. RoleRed *RoleRed `protobuf:"bytes,14,opt,name=role_red,json=roleRed,proto3" json:"role_red,omitempty"`
  14330. RoleMail *RoleMail `protobuf:"bytes,15,opt,name=role_mail,json=roleMail,proto3" json:"role_mail,omitempty"`
  14331. RoleCompetition *RoleCompetition `protobuf:"bytes,16,opt,name=role_competition,json=roleCompetition,proto3" json:"role_competition,omitempty"`
  14332. RoleShop *RoleShop `protobuf:"bytes,17,opt,name=role_shop,json=roleShop,proto3" json:"role_shop,omitempty"`
  14333. RoleActivity *RoleActivity `protobuf:"bytes,18,opt,name=role_activity,json=roleActivity,proto3" json:"role_activity,omitempty"`
  14334. RoleTower *RoleTower `protobuf:"bytes,19,opt,name=role_tower,json=roleTower,proto3" json:"role_tower,omitempty"`
  14335. RoleGuild *RoleGuild `protobuf:"bytes,20,opt,name=role_guild,json=roleGuild,proto3" json:"role_guild,omitempty"`
  14336. RoleDraw *RoleDraw `protobuf:"bytes,21,opt,name=role_draw,json=roleDraw,proto3" json:"role_draw,omitempty"`
  14337. RoleRune *RoleRune `protobuf:"bytes,22,opt,name=role_rune,json=roleRune,proto3" json:"role_rune,omitempty"`
  14338. RoleDaochang100 *RoleDaoChang100 `protobuf:"bytes,23,opt,name=role_daochang100,json=roleDaochang100,proto3" json:"role_daochang100,omitempty"`
  14339. RoleStatistic *RoleStatistic `protobuf:"bytes,24,opt,name=role_statistic,json=roleStatistic,proto3" json:"role_statistic,omitempty"`
  14340. RoleKeepSake *RoleKeepSake `protobuf:"bytes,25,opt,name=role_keep_sake,json=roleKeepSake,proto3" json:"role_keep_sake,omitempty"`
  14341. RoleCross *RoleCross `protobuf:"bytes,26,opt,name=role_cross,json=roleCross,proto3" json:"role_cross,omitempty"`
  14342. RoleRush *RoleRush `protobuf:"bytes,27,opt,name=role_rush,json=roleRush,proto3" json:"role_rush,omitempty"`
  14343. RoleSkillEquip *RoleSkillEquip `protobuf:"bytes,28,opt,name=role_skill_equip,json=roleSkillEquip,proto3" json:"role_skill_equip,omitempty"`
  14344. RoleHead *RoleHead `protobuf:"bytes,29,opt,name=role_head,json=roleHead,proto3" json:"role_head,omitempty"`
  14345. RoleWish *RoleWish `protobuf:"bytes,30,opt,name=role_wish,json=roleWish,proto3" json:"role_wish,omitempty"`
  14346. RoleBt *RoleBT `protobuf:"bytes,31,opt,name=role_bt,json=roleBt,proto3" json:"role_bt,omitempty"`
  14347. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  14348. XXX_unrecognized []byte `json:"-"`
  14349. XXX_sizecache int32 `json:"-"`
  14350. }
  14351. func (m *Role) Reset() { *m = Role{} }
  14352. func (m *Role) String() string { return proto.CompactTextString(m) }
  14353. func (*Role) ProtoMessage() {}
  14354. func (*Role) Descriptor() ([]byte, []int) {
  14355. return fileDescriptor_116e343673f7ffaf, []int{240}
  14356. }
  14357. func (m *Role) XXX_Unmarshal(b []byte) error {
  14358. return xxx_messageInfo_Role.Unmarshal(m, b)
  14359. }
  14360. func (m *Role) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  14361. return xxx_messageInfo_Role.Marshal(b, m, deterministic)
  14362. }
  14363. func (m *Role) XXX_Merge(src proto.Message) {
  14364. xxx_messageInfo_Role.Merge(m, src)
  14365. }
  14366. func (m *Role) XXX_Size() int {
  14367. return xxx_messageInfo_Role.Size(m)
  14368. }
  14369. func (m *Role) XXX_DiscardUnknown() {
  14370. xxx_messageInfo_Role.DiscardUnknown(m)
  14371. }
  14372. var xxx_messageInfo_Role proto.InternalMessageInfo
  14373. func (m *Role) GetId() uint64 {
  14374. if m != nil {
  14375. return m.Id
  14376. }
  14377. return 0
  14378. }
  14379. func (m *Role) GetRoleBase() *RoleBase {
  14380. if m != nil {
  14381. return m.RoleBase
  14382. }
  14383. return nil
  14384. }
  14385. func (m *Role) GetRoleHero() *RoleHero {
  14386. if m != nil {
  14387. return m.RoleHero
  14388. }
  14389. return nil
  14390. }
  14391. func (m *Role) GetRoleBag() *RoleBag {
  14392. if m != nil {
  14393. return m.RoleBag
  14394. }
  14395. return nil
  14396. }
  14397. func (m *Role) GetRoleEquip() *RoleEquip {
  14398. if m != nil {
  14399. return m.RoleEquip
  14400. }
  14401. return nil
  14402. }
  14403. func (m *Role) GetRoleChip() *RoleChip {
  14404. if m != nil {
  14405. return m.RoleChip
  14406. }
  14407. return nil
  14408. }
  14409. func (m *Role) GetRoleMap() *RoleMap {
  14410. if m != nil {
  14411. return m.RoleMap
  14412. }
  14413. return nil
  14414. }
  14415. func (m *Role) GetRoleCard() *RoleCard {
  14416. if m != nil {
  14417. return m.RoleCard
  14418. }
  14419. return nil
  14420. }
  14421. func (m *Role) GetRoleFashion() *RoleFashion {
  14422. if m != nil {
  14423. return m.RoleFashion
  14424. }
  14425. return nil
  14426. }
  14427. func (m *Role) GetRoleBattle() *RoleBattle {
  14428. if m != nil {
  14429. return m.RoleBattle
  14430. }
  14431. return nil
  14432. }
  14433. func (m *Role) GetRoleTask() *RoleTask {
  14434. if m != nil {
  14435. return m.RoleTask
  14436. }
  14437. return nil
  14438. }
  14439. func (m *Role) GetRoleChat() *RoleChat {
  14440. if m != nil {
  14441. return m.RoleChat
  14442. }
  14443. return nil
  14444. }
  14445. func (m *Role) GetRoleRed() *RoleRed {
  14446. if m != nil {
  14447. return m.RoleRed
  14448. }
  14449. return nil
  14450. }
  14451. func (m *Role) GetRoleMail() *RoleMail {
  14452. if m != nil {
  14453. return m.RoleMail
  14454. }
  14455. return nil
  14456. }
  14457. func (m *Role) GetRoleCompetition() *RoleCompetition {
  14458. if m != nil {
  14459. return m.RoleCompetition
  14460. }
  14461. return nil
  14462. }
  14463. func (m *Role) GetRoleShop() *RoleShop {
  14464. if m != nil {
  14465. return m.RoleShop
  14466. }
  14467. return nil
  14468. }
  14469. func (m *Role) GetRoleActivity() *RoleActivity {
  14470. if m != nil {
  14471. return m.RoleActivity
  14472. }
  14473. return nil
  14474. }
  14475. func (m *Role) GetRoleTower() *RoleTower {
  14476. if m != nil {
  14477. return m.RoleTower
  14478. }
  14479. return nil
  14480. }
  14481. func (m *Role) GetRoleGuild() *RoleGuild {
  14482. if m != nil {
  14483. return m.RoleGuild
  14484. }
  14485. return nil
  14486. }
  14487. func (m *Role) GetRoleDraw() *RoleDraw {
  14488. if m != nil {
  14489. return m.RoleDraw
  14490. }
  14491. return nil
  14492. }
  14493. func (m *Role) GetRoleRune() *RoleRune {
  14494. if m != nil {
  14495. return m.RoleRune
  14496. }
  14497. return nil
  14498. }
  14499. func (m *Role) GetRoleDaochang100() *RoleDaoChang100 {
  14500. if m != nil {
  14501. return m.RoleDaochang100
  14502. }
  14503. return nil
  14504. }
  14505. func (m *Role) GetRoleStatistic() *RoleStatistic {
  14506. if m != nil {
  14507. return m.RoleStatistic
  14508. }
  14509. return nil
  14510. }
  14511. func (m *Role) GetRoleKeepSake() *RoleKeepSake {
  14512. if m != nil {
  14513. return m.RoleKeepSake
  14514. }
  14515. return nil
  14516. }
  14517. func (m *Role) GetRoleCross() *RoleCross {
  14518. if m != nil {
  14519. return m.RoleCross
  14520. }
  14521. return nil
  14522. }
  14523. func (m *Role) GetRoleRush() *RoleRush {
  14524. if m != nil {
  14525. return m.RoleRush
  14526. }
  14527. return nil
  14528. }
  14529. func (m *Role) GetRoleSkillEquip() *RoleSkillEquip {
  14530. if m != nil {
  14531. return m.RoleSkillEquip
  14532. }
  14533. return nil
  14534. }
  14535. func (m *Role) GetRoleHead() *RoleHead {
  14536. if m != nil {
  14537. return m.RoleHead
  14538. }
  14539. return nil
  14540. }
  14541. func (m *Role) GetRoleWish() *RoleWish {
  14542. if m != nil {
  14543. return m.RoleWish
  14544. }
  14545. return nil
  14546. }
  14547. func (m *Role) GetRoleBt() *RoleBT {
  14548. if m != nil {
  14549. return m.RoleBt
  14550. }
  14551. return nil
  14552. }
  14553. func init() {
  14554. proto.RegisterType((*AccountRole)(nil), "serverproto.AccountRole")
  14555. proto.RegisterType((*ReconnectInfo)(nil), "serverproto.ReconnectInfo")
  14556. proto.RegisterType((*UserConnectInfo)(nil), "serverproto.UserConnectInfo")
  14557. proto.RegisterType((*KeyValueType)(nil), "serverproto.KeyValueType")
  14558. proto.RegisterType((*KeyValueTypeList)(nil), "serverproto.KeyValueTypeList")
  14559. proto.RegisterType((*KeyValueType64)(nil), "serverproto.KeyValueType64")
  14560. proto.RegisterType((*KeyValueType64Str)(nil), "serverproto.KeyValueType64Str")
  14561. proto.RegisterType((*KeyValueFloat32)(nil), "serverproto.KeyValueFloat32")
  14562. proto.RegisterType((*UKeyValueType)(nil), "serverproto.UKeyValueType")
  14563. proto.RegisterType((*SlotDetailData)(nil), "serverproto.SlotDetailData")
  14564. proto.RegisterType((*SlotData)(nil), "serverproto.SlotData")
  14565. proto.RegisterType((*PetEquipData)(nil), "serverproto.PetEquipData")
  14566. proto.RegisterType((*PetSlotDetailData)(nil), "serverproto.PetSlotDetailData")
  14567. proto.RegisterType((*SkillData)(nil), "serverproto.SkillData")
  14568. proto.RegisterType((*ChangeJob)(nil), "serverproto.ChangeJob")
  14569. proto.RegisterType((*PetQiyueSlotInfo)(nil), "serverproto.PetQiyueSlotInfo")
  14570. proto.RegisterType((*PetQiyueInfo)(nil), "serverproto.PetQiyueInfo")
  14571. proto.RegisterType((*PetQiyueAttr)(nil), "serverproto.PetQiyueAttr")
  14572. proto.RegisterType((*HeroData)(nil), "serverproto.HeroData")
  14573. proto.RegisterType((*FashionData)(nil), "serverproto.FashionData")
  14574. proto.RegisterType((*FashionAttr)(nil), "serverproto.FashionAttr")
  14575. proto.RegisterType((*HeadFrameData)(nil), "serverproto.HeadFrameData")
  14576. proto.RegisterType((*HeadInfo)(nil), "serverproto.HeadInfo")
  14577. proto.RegisterType((*RoleData)(nil), "serverproto.RoleData")
  14578. proto.RegisterType((*RoleBase)(nil), "serverproto.RoleBase")
  14579. proto.RegisterType((*SkillEquipSlotDetailData)(nil), "serverproto.SkillEquipSlotDetailData")
  14580. proto.RegisterType((*SkillEquipSlotData)(nil), "serverproto.SkillEquipSlotData")
  14581. proto.RegisterType((*SkillEquipData)(nil), "serverproto.SkillEquipData")
  14582. proto.RegisterType((*SkillEquipChangeData)(nil), "serverproto.SkillEquipChangeData")
  14583. proto.RegisterType((*RoleSkillEquip)(nil), "serverproto.RoleSkillEquip")
  14584. proto.RegisterType((*EquipData)(nil), "serverproto.EquipData")
  14585. proto.RegisterType((*RoleEquip)(nil), "serverproto.RoleEquip")
  14586. proto.RegisterType((*ItemData)(nil), "serverproto.ItemData")
  14587. proto.RegisterType((*ChipData)(nil), "serverproto.ChipData")
  14588. proto.RegisterType((*RoleBag)(nil), "serverproto.RoleBag")
  14589. proto.RegisterType((*RoleHero)(nil), "serverproto.RoleHero")
  14590. proto.RegisterType((*RoleChip)(nil), "serverproto.RoleChip")
  14591. proto.RegisterType((*JobSkillData)(nil), "serverproto.JobSkillData")
  14592. proto.RegisterType((*RoleSkillSlot)(nil), "serverproto.RoleSkillSlot")
  14593. proto.RegisterType((*RoleSkill)(nil), "serverproto.RoleSkill")
  14594. proto.RegisterType((*CardData)(nil), "serverproto.CardData")
  14595. proto.RegisterType((*CardHandBook)(nil), "serverproto.CardHandBook")
  14596. proto.RegisterType((*CardCollect)(nil), "serverproto.CardCollect")
  14597. proto.RegisterType((*RoleCard)(nil), "serverproto.RoleCard")
  14598. proto.RegisterType((*RoleFashionData)(nil), "serverproto.RoleFashionData")
  14599. proto.RegisterType((*RoleFashion)(nil), "serverproto.RoleFashion")
  14600. proto.RegisterType((*RoleMap)(nil), "serverproto.RoleMap")
  14601. proto.RegisterType((*Position)(nil), "serverproto.Position")
  14602. proto.RegisterType((*Vector3)(nil), "serverproto.Vector3")
  14603. proto.RegisterType((*Player)(nil), "serverproto.Player")
  14604. proto.RegisterType((*PlayerShowInfo)(nil), "serverproto.PlayerShowInfo")
  14605. proto.RegisterType((*OtherPlayerDetailInfo)(nil), "serverproto.OtherPlayerDetailInfo")
  14606. proto.RegisterType((*UnitPosAndDir)(nil), "serverproto.UnitPosAndDir")
  14607. proto.RegisterType((*QuickBattleData)(nil), "serverproto.QuickBattleData")
  14608. proto.RegisterType((*BattleEvilBossData)(nil), "serverproto.BattleEvilBossData")
  14609. proto.RegisterType((*BattleEvilData)(nil), "serverproto.BattleEvilData")
  14610. proto.RegisterType((*BattleExpeditionActor)(nil), "serverproto.BattleExpeditionActor")
  14611. proto.RegisterType((*BattleExpeditionReward)(nil), "serverproto.BattleExpeditionReward")
  14612. proto.RegisterType((*ExpeditionRankInfo)(nil), "serverproto.ExpeditionRankInfo")
  14613. proto.RegisterType((*BattleExpedition)(nil), "serverproto.BattleExpedition")
  14614. proto.RegisterType((*RushMap)(nil), "serverproto.RushMap")
  14615. proto.RegisterType((*RoleBattle)(nil), "serverproto.RoleBattle")
  14616. proto.RegisterType((*ActorPosition)(nil), "serverproto.ActorPosition")
  14617. proto.RegisterType((*RankPlayerInfo)(nil), "serverproto.RankPlayerInfo")
  14618. proto.RegisterType((*WorldBossContentInfo)(nil), "serverproto.WorldBossContentInfo")
  14619. proto.RegisterType((*PointNameInfo)(nil), "serverproto.PointNameInfo")
  14620. proto.RegisterType((*WorldBossRandPointInfo)(nil), "serverproto.WorldBossRandPointInfo")
  14621. proto.RegisterType((*TaskProgressType)(nil), "serverproto.TaskProgressType")
  14622. proto.RegisterType((*TaskData)(nil), "serverproto.TaskData")
  14623. proto.RegisterType((*HeadCond)(nil), "serverproto.HeadCond")
  14624. proto.RegisterType((*RoleHeadCond)(nil), "serverproto.RoleHeadCond")
  14625. proto.RegisterType((*HeroCond)(nil), "serverproto.HeroCond")
  14626. proto.RegisterType((*RoleHeroCond)(nil), "serverproto.RoleHeroCond")
  14627. proto.RegisterType((*RoleTask)(nil), "serverproto.RoleTask")
  14628. proto.RegisterType((*SlotFightPower)(nil), "serverproto.SlotFightPower")
  14629. proto.RegisterType((*FightPowerData)(nil), "serverproto.FightPowerData")
  14630. proto.RegisterType((*RushArena)(nil), "serverproto.RushArena")
  14631. proto.RegisterType((*ArenaInfo)(nil), "serverproto.ArenaInfo")
  14632. proto.RegisterType((*ArenaRankInfo)(nil), "serverproto.ArenaRankInfo")
  14633. proto.RegisterType((*RoleArena)(nil), "serverproto.RoleArena")
  14634. proto.RegisterType((*MailContent)(nil), "serverproto.MailContent")
  14635. proto.RegisterType((*RoleMail)(nil), "serverproto.RoleMail")
  14636. proto.RegisterType((*RoleRed)(nil), "serverproto.RoleRed")
  14637. proto.RegisterType((*CompetitionRewardInfo)(nil), "serverproto.CompetitionRewardInfo")
  14638. proto.RegisterType((*CompetitionInfo)(nil), "serverproto.CompetitionInfo")
  14639. proto.RegisterType((*DivineInfo)(nil), "serverproto.DivineInfo")
  14640. proto.RegisterType((*DaySupplyData)(nil), "serverproto.DaySupplyData")
  14641. proto.RegisterType((*FansVoteData)(nil), "serverproto.FansVoteData")
  14642. proto.RegisterType((*FansBoxData)(nil), "serverproto.FansBoxData")
  14643. proto.RegisterType((*FansRankData)(nil), "serverproto.FansRankData")
  14644. proto.RegisterType((*FansVoteDetail)(nil), "serverproto.FansVoteDetail")
  14645. proto.RegisterType((*IdolFansInfo)(nil), "serverproto.IdolFansInfo")
  14646. proto.RegisterType((*IdolInfo)(nil), "serverproto.IdolInfo")
  14647. proto.RegisterType((*PlayerShowData)(nil), "serverproto.PlayerShowData")
  14648. proto.RegisterType((*IdolSeasonData)(nil), "serverproto.IdolSeasonData")
  14649. proto.RegisterType((*FansVoteRewardData)(nil), "serverproto.FansVoteRewardData")
  14650. proto.RegisterType((*RoleCompetition)(nil), "serverproto.RoleCompetition")
  14651. proto.RegisterType((*RoleFriend)(nil), "serverproto.RoleFriend")
  14652. proto.RegisterType((*RoleSocial)(nil), "serverproto.RoleSocial")
  14653. proto.RegisterType((*FightRoleInfo)(nil), "serverproto.FightRoleInfo")
  14654. proto.RegisterType((*ChatMessageInfo)(nil), "serverproto.ChatMessageInfo")
  14655. proto.RegisterType((*ChatPlayerBriefInfo)(nil), "serverproto.ChatPlayerBriefInfo")
  14656. proto.RegisterType((*CommonPlayerBriefInfo)(nil), "serverproto.CommonPlayerBriefInfo")
  14657. proto.RegisterType((*PlayerStateInfo)(nil), "serverproto.PlayerStateInfo")
  14658. proto.RegisterType((*SystemMessage)(nil), "serverproto.SystemMessage")
  14659. proto.RegisterType((*MessageContentInfo)(nil), "serverproto.MessageContentInfo")
  14660. proto.RegisterType((*RoleChat)(nil), "serverproto.RoleChat")
  14661. proto.RegisterType((*BuyInfo)(nil), "serverproto.BuyInfo")
  14662. proto.RegisterType((*SpecialShop)(nil), "serverproto.SpecialShop")
  14663. proto.RegisterType((*ShopBuyInfo)(nil), "serverproto.ShopBuyInfo")
  14664. proto.RegisterType((*ShopItem)(nil), "serverproto.ShopItem")
  14665. proto.RegisterType((*ShopData)(nil), "serverproto.ShopData")
  14666. proto.RegisterType((*ShopList)(nil), "serverproto.ShopList")
  14667. proto.RegisterType((*ViewRoleInfo)(nil), "serverproto.ViewRoleInfo")
  14668. proto.RegisterType((*ShopCost)(nil), "serverproto.ShopCost")
  14669. proto.RegisterType((*RoleShop)(nil), "serverproto.RoleShop")
  14670. proto.RegisterType((*CurRoundSign)(nil), "serverproto.CurRoundSign")
  14671. proto.RegisterType((*SignUp)(nil), "serverproto.SignUp")
  14672. proto.RegisterType((*RoleActivity)(nil), "serverproto.RoleActivity")
  14673. proto.RegisterType((*ActivitiesDetailData)(nil), "serverproto.ActivitiesDetailData")
  14674. proto.RegisterType((*ActivityBTROCoin)(nil), "serverproto.ActivityBTROCoin")
  14675. proto.RegisterType((*ActivitySignIn)(nil), "serverproto.ActivitySignIn")
  14676. proto.RegisterType((*ActivityWheelData)(nil), "serverproto.ActivityWheelData")
  14677. proto.RegisterType((*ExchangeData)(nil), "serverproto.ExchangeData")
  14678. proto.RegisterType((*ExchangeInfo)(nil), "serverproto.ExchangeInfo")
  14679. proto.RegisterType((*ActivitiesData)(nil), "serverproto.ActivitiesData")
  14680. proto.RegisterType((*ActivitiesFortnightDays)(nil), "serverproto.ActivitiesFortnightDays")
  14681. proto.RegisterType((*ActivitiesUnlockRechargeData)(nil), "serverproto.ActivitiesUnlockRechargeData")
  14682. proto.RegisterType((*ActivitiesCollectionData)(nil), "serverproto.ActivitiesCollectionData")
  14683. proto.RegisterType((*ActivitiesLikabilityData)(nil), "serverproto.ActivitiesLikabilityData")
  14684. proto.RegisterType((*FriendTowerInfo)(nil), "serverproto.FriendTowerInfo")
  14685. proto.RegisterType((*RushTower)(nil), "serverproto.RushTower")
  14686. proto.RegisterType((*RoleTower)(nil), "serverproto.RoleTower")
  14687. proto.RegisterType((*RefusedApply)(nil), "serverproto.RefusedApply")
  14688. proto.RegisterType((*DayApply)(nil), "serverproto.DayApply")
  14689. proto.RegisterType((*TowerBriefInfo)(nil), "serverproto.TowerBriefInfo")
  14690. proto.RegisterType((*RecommendGuild)(nil), "serverproto.RecommendGuild")
  14691. proto.RegisterType((*RecommendSet)(nil), "serverproto.RecommendSet")
  14692. proto.RegisterType((*MemberBrief)(nil), "serverproto.MemberBrief")
  14693. proto.RegisterType((*GuildNotifyData)(nil), "serverproto.GuildNotifyData")
  14694. proto.RegisterType((*MemberInfo)(nil), "serverproto.MemberInfo")
  14695. proto.RegisterType((*GuildBossLogDetial)(nil), "serverproto.GuildBossLogDetial")
  14696. proto.RegisterType((*GuildBossData)(nil), "serverproto.GuildBossData")
  14697. proto.RegisterType((*GuildLog)(nil), "serverproto.GuildLog")
  14698. proto.RegisterType((*GuildLogSet)(nil), "serverproto.GuildLogSet")
  14699. proto.RegisterType((*GuildMember)(nil), "serverproto.GuildMember")
  14700. proto.RegisterType((*MemberData)(nil), "serverproto.MemberData")
  14701. proto.RegisterType((*GuildBrief)(nil), "serverproto.GuildBrief")
  14702. proto.RegisterType((*GuildBase)(nil), "serverproto.GuildBase")
  14703. proto.RegisterType((*DemonDamage)(nil), "serverproto.DemonDamage")
  14704. proto.RegisterType((*GuildDemon)(nil), "serverproto.GuildDemon")
  14705. proto.RegisterType((*GuildActiveInfo)(nil), "serverproto.GuildActiveInfo")
  14706. proto.RegisterType((*RoleApplyInfo)(nil), "serverproto.RoleApplyInfo")
  14707. proto.RegisterType((*GuildBossTickTime)(nil), "serverproto.GuildBossTickTime")
  14708. proto.RegisterType((*GuildBattle)(nil), "serverproto.GuildBattle")
  14709. proto.RegisterType((*GuildDemonReward)(nil), "serverproto.GuildDemonReward")
  14710. proto.RegisterType((*DemonInfo)(nil), "serverproto.DemonInfo")
  14711. proto.RegisterType((*RoleGuild)(nil), "serverproto.RoleGuild")
  14712. proto.RegisterType((*GuildIdex)(nil), "serverproto.GuildIdex")
  14713. proto.RegisterType((*RushRoundData)(nil), "serverproto.RushRoundData")
  14714. proto.RegisterType((*RushData)(nil), "serverproto.RushData")
  14715. proto.RegisterType((*GuildFightLog)(nil), "serverproto.GuildFightLog")
  14716. proto.RegisterType((*GuildFight)(nil), "serverproto.GuildFight")
  14717. proto.RegisterType((*GuildBossInfo)(nil), "serverproto.GuildBossInfo")
  14718. proto.RegisterType((*GuildBoss)(nil), "serverproto.GuildBoss")
  14719. proto.RegisterType((*RoleApplayData)(nil), "serverproto.RoleApplayData")
  14720. proto.RegisterType((*GuildApplayData)(nil), "serverproto.GuildApplayData")
  14721. proto.RegisterType((*GuildBattleSelfData)(nil), "serverproto.GuildBattleSelfData")
  14722. proto.RegisterType((*GuildPosIdxData)(nil), "serverproto.GuildPosIdxData")
  14723. proto.RegisterType((*GuildBattleLog)(nil), "serverproto.GuildBattleLog")
  14724. proto.RegisterType((*GuildBattleBaseData)(nil), "serverproto.GuildBattleBaseData")
  14725. proto.RegisterType((*GuildBattleBase)(nil), "serverproto.GuildBattleBase")
  14726. proto.RegisterType((*CountTableData)(nil), "serverproto.CountTableData")
  14727. proto.RegisterType((*GuildCountPartTable)(nil), "serverproto.GuildCountPartTable")
  14728. proto.RegisterType((*GuildBattleDetail)(nil), "serverproto.GuildBattleDetail")
  14729. proto.RegisterType((*GuildBattleMvp)(nil), "serverproto.GuildBattleMvp")
  14730. proto.RegisterType((*GuildBattleRank)(nil), "serverproto.GuildBattleRank")
  14731. proto.RegisterType((*GuildBattleCP)(nil), "serverproto.GuildBattleCP")
  14732. proto.RegisterType((*GMNoticeInfo)(nil), "serverproto.GMNoticeInfo")
  14733. proto.RegisterType((*ReconnectUserData)(nil), "serverproto.ReconnectUserData")
  14734. proto.RegisterType((*EquipSlotCards)(nil), "serverproto.EquipSlotCards")
  14735. proto.RegisterType((*BattleRecordInfo)(nil), "serverproto.BattleRecordInfo")
  14736. proto.RegisterType((*AssistSaveData)(nil), "serverproto.AssistSaveData")
  14737. proto.RegisterType((*AssistData)(nil), "serverproto.AssistData")
  14738. proto.RegisterType((*PetBondPosData)(nil), "serverproto.PetBondPosData")
  14739. proto.RegisterType((*PetBondData)(nil), "serverproto.PetBondData")
  14740. proto.RegisterType((*PetSkillData)(nil), "serverproto.PetSkillData")
  14741. proto.RegisterType((*PetData)(nil), "serverproto.PetData")
  14742. proto.RegisterType((*AssistIdxData)(nil), "serverproto.AssistIdxData")
  14743. proto.RegisterType((*PetManualST)(nil), "serverproto.PetManualST")
  14744. proto.RegisterType((*RushPet)(nil), "serverproto.RushPet")
  14745. proto.RegisterType((*RolePet)(nil), "serverproto.RolePet")
  14746. proto.RegisterType((*PetAdvAchievementData)(nil), "serverproto.PetAdvAchievementData")
  14747. proto.RegisterType((*CardCollection)(nil), "serverproto.CardCollection")
  14748. proto.RegisterType((*InvitationTaskData)(nil), "serverproto.InvitationTaskData")
  14749. proto.RegisterType((*InvitationLogData)(nil), "serverproto.InvitationLogData")
  14750. proto.RegisterType((*InvitationMemberValData)(nil), "serverproto.InvitationMemberValData")
  14751. proto.RegisterType((*RoleInvitation)(nil), "serverproto.RoleInvitation")
  14752. proto.RegisterType((*DrawData)(nil), "serverproto.DrawData")
  14753. proto.RegisterType((*RoleDraw)(nil), "serverproto.RoleDraw")
  14754. proto.RegisterType((*RuneGoods)(nil), "serverproto.RuneGoods")
  14755. proto.RegisterType((*RuneShop)(nil), "serverproto.RuneShop")
  14756. proto.RegisterType((*RuneExplore)(nil), "serverproto.RuneExplore")
  14757. proto.RegisterType((*RuneBaseData)(nil), "serverproto.RuneBaseData")
  14758. proto.RegisterType((*RuneSpecialPrivilegeData)(nil), "serverproto.RuneSpecialPrivilegeData")
  14759. proto.RegisterType((*RoleRune)(nil), "serverproto.RoleRune")
  14760. proto.RegisterType((*RushRankTop3)(nil), "serverproto.RushRankTop3")
  14761. proto.RegisterType((*RushActivityData)(nil), "serverproto.RushActivityData")
  14762. proto.RegisterType((*DaoChang100Log)(nil), "serverproto.DaoChang100Log")
  14763. proto.RegisterType((*DaoChang100PosRewardData)(nil), "serverproto.DaoChang100PosRewardData")
  14764. proto.RegisterType((*DaoChang100PosIdxData)(nil), "serverproto.DaoChang100PosIdxData")
  14765. proto.RegisterType((*WheelRewardItemInfo)(nil), "serverproto.WheelRewardItemInfo")
  14766. proto.RegisterType((*WheelLogData)(nil), "serverproto.WheelLogData")
  14767. proto.RegisterType((*RoleDaoChang100)(nil), "serverproto.RoleDaoChang100")
  14768. proto.RegisterType((*RoleCheatChat)(nil), "serverproto.RoleCheatChat")
  14769. proto.RegisterType((*RoleStatistic)(nil), "serverproto.RoleStatistic")
  14770. proto.RegisterType((*KeepSake)(nil), "serverproto.KeepSake")
  14771. proto.RegisterType((*RoleKeepSake)(nil), "serverproto.RoleKeepSake")
  14772. proto.RegisterType((*KeepSakeCollection)(nil), "serverproto.KeepSakeCollection")
  14773. proto.RegisterType((*RushInfo)(nil), "serverproto.RushInfo")
  14774. proto.RegisterType((*RushPetInfo)(nil), "serverproto.RushPetInfo")
  14775. proto.RegisterType((*RushPetData)(nil), "serverproto.RushPetData")
  14776. proto.RegisterType((*RoleCross)(nil), "serverproto.RoleCross")
  14777. proto.RegisterType((*RoleYuanHangTrial)(nil), "serverproto.RoleYuanHangTrial")
  14778. proto.RegisterType((*YuanHangTrialData)(nil), "serverproto.YuanHangTrialData")
  14779. proto.RegisterType((*YuanHangTrialLogData)(nil), "serverproto.YuanHangTrialLogData")
  14780. proto.RegisterType((*CommonRankInfo)(nil), "serverproto.CommonRankInfo")
  14781. proto.RegisterType((*RoleCrossTopTower)(nil), "serverproto.RoleCrossTopTower")
  14782. proto.RegisterType((*TopTowerFightRoleInfo)(nil), "serverproto.TopTowerFightRoleInfo")
  14783. proto.RegisterType((*ServerStateInfo)(nil), "serverproto.ServerStateInfo")
  14784. proto.RegisterType((*StateDetailDesc)(nil), "serverproto.StateDetailDesc")
  14785. proto.RegisterType((*RoleRush)(nil), "serverproto.RoleRush")
  14786. proto.RegisterType((*RushSkill)(nil), "serverproto.RushSkill")
  14787. proto.RegisterType((*HeadData)(nil), "serverproto.HeadData")
  14788. proto.RegisterType((*RoleHead)(nil), "serverproto.RoleHead")
  14789. proto.RegisterType((*RoleWish)(nil), "serverproto.RoleWish")
  14790. proto.RegisterType((*WishSlot)(nil), "serverproto.WishSlot")
  14791. proto.RegisterType((*RoleBT)(nil), "serverproto.RoleBT")
  14792. proto.RegisterType((*BTBoliData)(nil), "serverproto.BTBoliData")
  14793. proto.RegisterType((*BTBaseData)(nil), "serverproto.BTBaseData")
  14794. proto.RegisterType((*Role)(nil), "serverproto.Role")
  14795. }
  14796. func init() {
  14797. proto.RegisterFile("user.proto", fileDescriptor_116e343673f7ffaf)
  14798. }
  14799. var fileDescriptor_116e343673f7ffaf = []byte{
  14800. // 14700 bytes of a gzipped FileDescriptorProto
  14801. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x7d, 0x5b, 0x8c, 0x24, 0xe7,
  14802. 0x7a, 0x90, 0x7a, 0xba, 0x7b, 0xba, 0xfb, 0xeb, 0xdb, 0x4c, 0xed, 0xce, 0x78, 0xd6, 0xeb, 0xf5,
  14803. 0xa5, 0x8e, 0xed, 0xb3, 0xf6, 0xf1, 0xf1, 0x65, 0xd6, 0xde, 0xb3, 0x3e, 0x37, 0x6b, 0x77, 0x76,
  14804. 0xf7, 0xec, 0xf8, 0xec, 0xda, 0x73, 0x6a, 0x76, 0xed, 0x60, 0x12, 0x35, 0xd5, 0x5d, 0xff, 0x4c,
  14805. 0x97, 0xa7, 0xbb, 0xaa, 0x5d, 0x55, 0x3d, 0x3b, 0x73, 0x92, 0x10, 0x82, 0x08, 0x41, 0x89, 0x12,
  14806. 0x22, 0x84, 0x08, 0x12, 0x4a, 0x04, 0x4a, 0x10, 0x82, 0x3c, 0x44, 0x80, 0x04, 0x04, 0xf2, 0x00,
  14807. 0x89, 0x10, 0x91, 0x40, 0x22, 0xe2, 0x21, 0x48, 0x3c, 0x20, 0x25, 0x2f, 0x44, 0x8a, 0x78, 0x41,
  14808. 0x22, 0x12, 0xe4, 0x05, 0x7d, 0x97, 0xbf, 0xea, 0xaf, 0xea, 0xea, 0x99, 0xb5, 0x73, 0x14, 0xe0,
  14809. 0xa9, 0xbb, 0xbe, 0xff, 0x7e, 0xfb, 0xfe, 0xef, 0xfe, 0x03, 0xcc, 0x63, 0x15, 0xbd, 0x3e, 0x8b,
  14810. 0xc2, 0x24, 0xb4, 0xda, 0xb1, 0x8a, 0x8e, 0x55, 0x44, 0x1f, 0xf6, 0xbf, 0xa8, 0x40, 0xfb, 0xe6,
  14811. 0x68, 0x14, 0xce, 0x83, 0xc4, 0x09, 0x27, 0xca, 0x7a, 0x0a, 0x1a, 0xe1, 0x4c, 0x05, 0x03, 0xdf,
  14812. 0xdb, 0xaa, 0x3c, 0x5f, 0xb9, 0xda, 0x72, 0x56, 0xf1, 0x73, 0xd7, 0xb3, 0x9e, 0x86, 0xe6, 0x6c,
  14813. 0xe2, 0x26, 0x07, 0x61, 0x34, 0xdd, 0x5a, 0xa1, 0x94, 0xf4, 0xdb, 0x5a, 0x83, 0xea, 0xdc, 0xf7,
  14814. 0xb6, 0xaa, 0xcf, 0x57, 0xae, 0xd6, 0x1c, 0xfc, 0x6b, 0xbd, 0x04, 0xbd, 0xd9, 0x38, 0x0c, 0xd4,
  14815. 0x20, 0x2d, 0x53, 0x7b, 0xbe, 0x72, 0xb5, 0xee, 0x74, 0x09, 0xba, 0xa7, 0x0b, 0x7e, 0x09, 0xba,
  14816. 0x91, 0x3a, 0xf4, 0xe3, 0x44, 0x45, 0x83, 0xc4, 0x9f, 0xaa, 0xad, 0x3a, 0x55, 0xd1, 0xd1, 0xc0,
  14817. 0x87, 0xfe, 0x54, 0x59, 0x9b, 0xb0, 0xfa, 0x49, 0x18, 0xa8, 0x5d, 0x6f, 0x6b, 0x95, 0xea, 0x90,
  14818. 0x2f, 0xfb, 0x55, 0xe8, 0x3a, 0x6a, 0x14, 0x06, 0x81, 0x1a, 0x25, 0xbb, 0xc1, 0x41, 0x68, 0x5d,
  14819. 0x82, 0xe6, 0xec, 0x78, 0x36, 0x08, 0x42, 0x4f, 0x49, 0xe7, 0x1b, 0xb3, 0xe3, 0xd9, 0x07, 0xa1,
  14820. 0xa7, 0xec, 0x0f, 0xa1, 0xff, 0x28, 0x56, 0xd1, 0x8e, 0x91, 0xfb, 0x0a, 0xc0, 0x24, 0x3c, 0xf4,
  14821. 0x47, 0x66, 0xfe, 0x16, 0x41, 0xb0, 0x04, 0x26, 0x63, 0x8f, 0x06, 0x71, 0xe2, 0x4e, 0x67, 0x34,
  14822. 0xe2, 0xaa, 0xd3, 0x42, 0xc8, 0x3e, 0x02, 0xec, 0xeb, 0xd0, 0xf9, 0xae, 0x3a, 0xfd, 0xc8, 0x9d,
  14823. 0xcc, 0xd5, 0xc3, 0xd3, 0x99, 0xc2, 0x29, 0x38, 0x52, 0xa7, 0x54, 0x4d, 0xdd, 0xc1, 0xbf, 0xd6,
  14824. 0x45, 0xa8, 0x1f, 0x63, 0x32, 0x95, 0xad, 0x3b, 0xfc, 0x61, 0xef, 0xc0, 0x9a, 0x59, 0xee, 0xbe,
  14825. 0x1f, 0x27, 0x25, 0x65, 0xaf, 0x00, 0x50, 0xf6, 0xc1, 0xc4, 0x8f, 0x93, 0xad, 0x95, 0xe7, 0xab,
  14826. 0x57, 0xeb, 0x4e, 0x8b, 0x20, 0x58, 0xc0, 0xfe, 0xc7, 0x15, 0xe8, 0x99, 0xb5, 0x5c, 0x7f, 0xdb,
  14827. 0xac, 0xa3, 0x76, 0x46, 0xfb, 0x38, 0x99, 0xf4, 0x67, 0x9b, 0x56, 0xab, 0xee, 0xc8, 0x57, 0x0a,
  14828. 0xbf, 0x26, 0x0b, 0x25, 0x5f, 0xb8, 0x1f, 0xe2, 0x24, 0x1a, 0x1c, 0xbb, 0x13, 0x5a, 0x9b, 0x96,
  14829. 0xb3, 0x1a, 0x27, 0xd1, 0x47, 0xee, 0x24, 0x2d, 0xf0, 0x36, 0xad, 0x4a, 0x4d, 0x0a, 0xbc, 0x9d,
  14830. 0xc2, 0xdf, 0xd9, 0x6a, 0x3c, 0x5f, 0xb9, 0xda, 0x14, 0xf8, 0x3b, 0xf6, 0xb7, 0x61, 0x3d, 0xdf,
  14831. 0xe5, 0xfd, 0x24, 0x2a, 0xe9, 0xb5, 0xd1, 0xde, 0x8a, 0xd9, 0x9e, 0xbd, 0x0f, 0x7d, 0x5d, 0xfe,
  14832. 0xee, 0x24, 0x74, 0x93, 0x6b, 0xdb, 0xe7, 0xcd, 0xf9, 0x8a, 0x1e, 0xf3, 0x16, 0x34, 0xe8, 0xcf,
  14833. 0xf5, 0xb7, 0x69, 0xd0, 0x15, 0x47, 0x7f, 0xda, 0x5f, 0x83, 0xee, 0xa3, 0x65, 0xcb, 0xd8, 0x2d,
  14834. 0xa9, 0xb2, 0xab, 0x97, 0x71, 0x04, 0xbd, 0xfd, 0x49, 0x98, 0xdc, 0x56, 0x89, 0xeb, 0x4f, 0x6e,
  14835. 0xbb, 0x89, 0x8b, 0xf9, 0x26, 0xea, 0x58, 0x4d, 0xa4, 0x3b, 0xfc, 0x81, 0x5b, 0x52, 0x7d, 0x36,
  14836. 0xf7, 0x67, 0x78, 0x9e, 0x78, 0x1d, 0x1a, 0xf4, 0xbd, 0xeb, 0x59, 0xcf, 0x43, 0x67, 0xe4, 0x46,
  14837. 0xde, 0xc0, 0xf7, 0x78, 0x95, 0xab, 0xb4, 0xca, 0x80, 0xb0, 0x5d, 0x8f, 0x96, 0xf9, 0x47, 0xa0,
  14838. 0x49, 0x8d, 0x60, 0xf5, 0x4f, 0x41, 0x63, 0xac, 0xa2, 0x50, 0x9f, 0xcb, 0xba, 0xb3, 0x8a, 0x9f,
  14839. 0xbb, 0x9e, 0x75, 0x03, 0x5a, 0xf1, 0x24, 0x4c, 0xb2, 0x9d, 0xd2, 0xde, 0xbe, 0xfc, 0xba, 0x71,
  14840. 0xc2, 0x5f, 0xcf, 0xf7, 0xd3, 0x69, 0x62, 0x6e, 0xaa, 0xfe, 0x04, 0x3a, 0x7b, 0x2a, 0xb9, 0x83,
  14841. 0xdd, 0xa1, 0x26, 0x7a, 0xb0, 0x22, 0xb5, 0x77, 0x9d, 0x15, 0x9f, 0x3a, 0xc8, 0x7d, 0x1f, 0x1d,
  14842. 0x1c, 0x66, 0xfd, 0x07, 0x82, 0xed, 0x1c, 0x1c, 0xee, 0x7a, 0xd9, 0x98, 0xab, 0xe6, 0x98, 0xd3,
  14843. 0x72, 0x33, 0x95, 0x60, 0xb9, 0x1a, 0xd5, 0xc8, 0xe5, 0xf6, 0x54, 0xb2, 0xeb, 0xd9, 0x1e, 0xac,
  14844. 0xef, 0xa9, 0xa4, 0x30, 0x81, 0x6b, 0x50, 0xf5, 0xbd, 0x13, 0xbd, 0x9a, 0xbe, 0x77, 0xb2, 0x30,
  14845. 0x79, 0xdd, 0x6c, 0xf2, 0x6c, 0xe8, 0xc6, 0x09, 0xe2, 0x97, 0xfc, 0xec, 0xb5, 0x09, 0x28, 0xd3,
  14846. 0xf7, 0x16, 0xb4, 0xf6, 0x8f, 0xfc, 0xc9, 0xa4, 0x30, 0xb8, 0x3a, 0x0d, 0xee, 0x22, 0xd4, 0x67,
  14847. 0xa1, 0x1f, 0x24, 0xfa, 0x74, 0xd0, 0x87, 0xfd, 0x17, 0xa1, 0xb5, 0x33, 0x76, 0x83, 0x43, 0xf5,
  14848. 0x7e, 0x38, 0xb4, 0xb6, 0xa1, 0x95, 0xb8, 0xf1, 0x11, 0xd7, 0x5f, 0xa1, 0x99, 0xdd, 0xc8, 0xcd,
  14849. 0xec, 0x43, 0x37, 0x3e, 0xe2, 0x39, 0xc5, 0x7c, 0x74, 0x94, 0x8d, 0x65, 0x5a, 0xc9, 0x2d, 0xd3,
  14850. 0x8b, 0xd0, 0xfb, 0x34, 0x1c, 0x0e, 0x0e, 0xe6, 0xf1, 0x18, 0x51, 0x4a, 0xa2, 0x68, 0xce, 0xba,
  14851. 0x4e, 0xe7, 0xd3, 0x70, 0x78, 0x77, 0x1e, 0x8f, 0xf7, 0x11, 0x66, 0x0f, 0x61, 0x6d, 0x4f, 0x25,
  14852. 0xdf, 0xf3, 0x4f, 0xe7, 0x0a, 0x67, 0x47, 0x63, 0x35, 0x5a, 0xe0, 0x6c, 0x72, 0x1a, 0xf8, 0xbd,
  14853. 0xeb, 0x9d, 0x58, 0x1b, 0xb0, 0x2a, 0x73, 0x2c, 0x9b, 0x73, 0x86, 0xd3, 0x6b, 0x3d, 0x03, 0x80,
  14854. 0x60, 0x59, 0x36, 0x5e, 0x9b, 0xe6, 0x4c, 0x25, 0xb4, 0x68, 0xf6, 0x84, 0x96, 0x9d, 0xda, 0xa0,
  14855. 0xfa, 0xb3, 0x4a, 0x2a, 0x66, 0x25, 0x77, 0xa0, 0xff, 0x19, 0xe6, 0x19, 0x14, 0x77, 0xd7, 0x95,
  14856. 0xdc, 0x1c, 0x14, 0xbb, 0xeb, 0x74, 0x3f, 0xd3, 0x9f, 0xb4, 0x08, 0xd3, 0xac, 0xb5, 0x9b, 0x49,
  14857. 0x12, 0x2d, 0x6b, 0xed, 0x2e, 0xac, 0x0d, 0xdd, 0x24, 0x99, 0xa8, 0x81, 0x9b, 0x24, 0x91, 0xd9,
  14858. 0xdc, 0x33, 0xb9, 0xe6, 0x0a, 0x28, 0xc0, 0xe9, 0x71, 0x29, 0xac, 0x9a, 0x9a, 0xfb, 0xef, 0xab,
  14859. 0xd0, 0xbc, 0xa7, 0xa2, 0xb0, 0x74, 0xcd, 0x2f, 0x43, 0x6b, 0x14, 0x06, 0x07, 0xbe, 0xb1, 0x9b,
  14860. 0x9b, 0x0c, 0xd8, 0xf5, 0xac, 0xe7, 0xa0, 0x7d, 0xe0, 0x1f, 0x8e, 0x93, 0xc1, 0x2c, 0x7c, 0xac,
  14861. 0x22, 0x99, 0x35, 0x20, 0xd0, 0x1e, 0x42, 0xb0, 0xb4, 0x1f, 0x0f, 0xb8, 0x3d, 0xda, 0xd3, 0x4d,
  14862. 0xa7, 0xe9, 0xc7, 0xb7, 0xe8, 0x1b, 0x11, 0xf6, 0xd0, 0x8d, 0xd5, 0x80, 0x8f, 0x43, 0x9d, 0x0a,
  14863. 0xb7, 0x10, 0x72, 0x9f, 0x8e, 0xc4, 0x97, 0xa0, 0xeb, 0x7a, 0xc7, 0x6e, 0x30, 0xd2, 0x39, 0xf8,
  14864. 0x26, 0xeb, 0x08, 0x90, 0x33, 0xbd, 0x04, 0xbd, 0x38, 0x89, 0x54, 0x70, 0x98, 0x8c, 0x25, 0x57,
  14865. 0x83, 0xef, 0x4c, 0x0d, 0xe5, 0x6c, 0xaf, 0x40, 0x0d, 0x97, 0x64, 0xab, 0xf9, 0x7c, 0x65, 0x61,
  14866. 0x47, 0x6a, 0x74, 0xe1, 0x50, 0x16, 0xeb, 0x35, 0xa8, 0xc7, 0x78, 0x02, 0xb6, 0x5a, 0x94, 0x77,
  14867. 0x33, 0x97, 0x17, 0xaf, 0x7b, 0x3a, 0x1f, 0x0e, 0x67, 0xb2, 0xae, 0x43, 0x2b, 0x9b, 0x7c, 0xa0,
  14868. 0xc9, 0xbf, 0x54, 0x3a, 0xf9, 0x88, 0x29, 0x9d, 0xa6, 0x2b, 0x73, 0x8e, 0x63, 0xa7, 0x72, 0x7c,
  14869. 0x9e, 0xda, 0x3c, 0x76, 0x84, 0xec, 0x21, 0x00, 0x8f, 0xaa, 0x2c, 0xad, 0x2c, 0x7c, 0x87, 0x16,
  14870. 0xbe, 0xcd, 0x40, 0x42, 0x08, 0xd6, 0xcb, 0xd0, 0xc7, 0x44, 0x73, 0x01, 0xba, 0x74, 0x27, 0x74,
  14871. 0x67, 0x2a, 0xb9, 0x9b, 0xad, 0xc1, 0x37, 0xa1, 0xf3, 0xd9, 0xdc, 0x9d, 0xf8, 0xc9, 0x29, 0xf7,
  14872. 0xb2, 0x77, 0x5e, 0x2f, 0xdb, 0x92, 0x9d, 0x3a, 0xfa, 0x16, 0x6c, 0x44, 0x6a, 0x16, 0xa9, 0x38,
  14873. 0x1e, 0xd0, 0x88, 0x07, 0x48, 0x2d, 0xe0, 0x4d, 0xd3, 0xa7, 0x3e, 0x5b, 0x92, 0x48, 0x93, 0xb2,
  14874. 0x77, 0x3c, 0xc3, 0x5b, 0x6e, 0x17, 0xd6, 0x38, 0x2b, 0x23, 0x22, 0x9a, 0xf8, 0x35, 0x9a, 0xcc,
  14875. 0xe7, 0xf2, 0x13, 0x8f, 0x99, 0x08, 0x95, 0xa6, 0x4b, 0xd0, 0x8b, 0x73, 0x30, 0xeb, 0x3d, 0xe8,
  14876. 0xe1, 0x18, 0xf9, 0x50, 0x79, 0x6e, 0xe2, 0x6e, 0xad, 0x53, 0x45, 0x97, 0x4a, 0xcf, 0x13, 0x9d,
  14877. 0xa5, 0xce, 0x4c, 0xbe, 0x68, 0x3b, 0xbf, 0x0f, 0x17, 0x8b, 0x67, 0x64, 0x10, 0x4e, 0xbc, 0xad,
  14878. 0xed, 0xf3, 0x26, 0x61, 0x3d, 0x7f, 0x48, 0x3e, 0x9c, 0x94, 0x9f, 0xb7, 0x6b, 0x5f, 0xe0, 0xbc,
  14879. 0xfd, 0x18, 0xb4, 0xef, 0xba, 0xf1, 0xd8, 0x0f, 0x03, 0x8d, 0xc3, 0xd5, 0xa9, 0xd2, 0x38, 0x5c,
  14880. 0x9d, 0x2a, 0xcb, 0x82, 0xda, 0xd8, 0xf5, 0x23, 0x39, 0x6e, 0xf4, 0x1f, 0x8f, 0x1a, 0xfe, 0x0e,
  14881. 0xdc, 0x63, 0x37, 0x71, 0xd3, 0xa3, 0x86, 0xa0, 0x9b, 0x04, 0xc1, 0xed, 0x70, 0xc0, 0xb5, 0x0e,
  14882. 0xe6, 0x33, 0xee, 0x5c, 0x8d, 0xf0, 0x7b, 0x57, 0xc0, 0x8f, 0x66, 0xd4, 0xfa, 0xa3, 0xb4, 0x75,
  14883. 0xc2, 0x2d, 0x5b, 0xd0, 0xf8, 0x34, 0x1c, 0xe2, 0x90, 0x35, 0xa2, 0x94, 0x4f, 0x24, 0x4a, 0x70,
  14884. 0x9c, 0xbb, 0x29, 0x56, 0xe6, 0xaf, 0xec, 0x72, 0xaf, 0x9a, 0x34, 0xda, 0x9f, 0x87, 0xee, 0x3d,
  14885. 0xe5, 0x7a, 0x77, 0x23, 0x77, 0xca, 0x33, 0x6f, 0x43, 0x77, 0xac, 0x5c, 0x6f, 0x70, 0x80, 0x90,
  14886. 0xec, 0x0a, 0x6e, 0x8f, 0x75, 0x2e, 0xde, 0xc2, 0x46, 0x1e, 0x22, 0x66, 0x99, 0x68, 0xec, 0xa6,
  14887. 0xb9, 0x90, 0x9a, 0xb5, 0x7f, 0xbe, 0x82, 0x18, 0xca, 0xf5, 0x08, 0xf7, 0xbe, 0x00, 0x1d, 0x2a,
  14888. 0x74, 0xac, 0xa2, 0xd8, 0x0f, 0x03, 0xb3, 0xde, 0x8f, 0x18, 0x84, 0x68, 0x87, 0xb2, 0x18, 0x94,
  14889. 0x60, 0x13, 0x01, 0xb4, 0xa3, 0x6f, 0xe5, 0x1a, 0x4d, 0x2f, 0xc2, 0xf6, 0xf6, 0xd3, 0xb9, 0x55,
  14890. 0xcc, 0x8d, 0xc6, 0xe8, 0x10, 0x4d, 0xe2, 0xff, 0xac, 0x42, 0x13, 0x71, 0x01, 0x8d, 0xf4, 0x12,
  14891. 0x34, 0x09, 0x8f, 0xa9, 0x93, 0x99, 0x9e, 0x43, 0xfc, 0xbe, 0x73, 0x32, 0xc3, 0xab, 0x0d, 0x6f,
  14892. 0x30, 0x4c, 0x91, 0x49, 0xfc, 0x34, 0x1c, 0x62, 0xc2, 0x65, 0x68, 0x61, 0x82, 0x49, 0x09, 0x34,
  14893. 0x3f, 0x0d, 0x87, 0xf7, 0x35, 0x01, 0x44, 0x17, 0x22, 0x16, 0x63, 0xca, 0x92, 0x2e, 0x48, 0x2c,
  14894. 0xb7, 0x8d, 0x23, 0x8b, 0x42, 0x3e, 0x0b, 0xf5, 0x12, 0x6c, 0xa6, 0x11, 0xb9, 0x43, 0x55, 0x50,
  14895. 0xff, 0x0a, 0x58, 0x9a, 0x49, 0x4f, 0x13, 0x4b, 0x6f, 0xc2, 0xea, 0x28, 0x9a, 0xfb, 0xb1, 0x12,
  14896. 0xe4, 0x29, 0x5f, 0x88, 0xa4, 0xa6, 0xee, 0xc9, 0x40, 0xd2, 0x9a, 0x8c, 0xa4, 0xa6, 0xee, 0xc9,
  14897. 0x0e, 0x27, 0xd3, 0xbd, 0xed, 0x22, 0x31, 0x46, 0xb8, 0x92, 0xee, 0x6d, 0xd7, 0xe3, 0x65, 0x9d,
  14898. 0xb8, 0x71, 0x32, 0x40, 0xc6, 0x20, 0xe0, 0x65, 0x05, 0xc6, 0x4c, 0x08, 0xbe, 0x8f, 0x50, 0x62,
  14899. 0x52, 0x2e, 0x43, 0x8b, 0x11, 0xc5, 0x30, 0x3c, 0x11, 0x1c, 0xd8, 0x24, 0xc0, 0xad, 0xf0, 0xc4,
  14900. 0xda, 0x81, 0xb5, 0x61, 0x18, 0xc7, 0x83, 0x48, 0x3d, 0x46, 0x8a, 0x8f, 0xd6, 0xa9, 0x73, 0xde,
  14901. 0xa9, 0xed, 0x61, 0x11, 0x87, 0x4a, 0xd0, 0x5a, 0xbf, 0x0a, 0xeb, 0xdc, 0x42, 0xa4, 0x62, 0xbc,
  14902. 0xdd, 0x91, 0x65, 0x23, 0x2c, 0x59, 0x77, 0xfa, 0x94, 0xe0, 0x20, 0x7c, 0x07, 0xc1, 0x8b, 0x1b,
  14903. 0xb6, 0xb7, 0xb0, 0x61, 0xed, 0x3f, 0x6e, 0xf1, 0xba, 0xdf, 0x72, 0x63, 0x65, 0x5c, 0x95, 0x35,
  14904. 0x7d, 0x55, 0x06, 0xfe, 0xe8, 0x68, 0x10, 0xb8, 0xb2, 0x8f, 0x5b, 0x4e, 0x13, 0x01, 0x1f, 0xb8,
  14905. 0x53, 0x3a, 0xd3, 0x9e, 0x8a, 0x47, 0xb4, 0xd6, 0x2d, 0x87, 0xfe, 0xe3, 0xc9, 0x8f, 0xd5, 0x89,
  14906. 0x2c, 0x31, 0xfe, 0xc5, 0xd3, 0x48, 0x7d, 0x8c, 0x4e, 0xe5, 0x3e, 0xd4, 0x9f, 0xb8, 0x27, 0x0e,
  14907. 0xe7, 0xbe, 0x47, 0x1d, 0xe3, 0x8b, 0xb0, 0x41, 0xdf, 0xbb, 0x1e, 0x56, 0x3d, 0x0a, 0xfd, 0x80,
  14908. 0x16, 0xaf, 0xe6, 0xd0, 0x7f, 0xac, 0x3a, 0x9a, 0x0e, 0x69, 0xcd, 0xba, 0x0e, 0xfe, 0xb5, 0xde,
  14909. 0x86, 0x66, 0xa4, 0x62, 0x9e, 0xc7, 0xd6, 0x79, 0xf3, 0xd8, 0x88, 0x54, 0x4c, 0x13, 0xb8, 0x0d,
  14910. 0xad, 0x28, 0x9c, 0x08, 0xee, 0x85, 0x92, 0xfd, 0xa6, 0x4f, 0x81, 0xd3, 0x8c, 0xf4, 0x79, 0xf8,
  14911. 0x06, 0x74, 0x34, 0x26, 0xa2, 0x62, 0x6d, 0x2a, 0xb6, 0x95, 0x2b, 0x66, 0x20, 0x40, 0xa7, 0x7d,
  14912. 0x60, 0x60, 0xc3, 0x6d, 0x39, 0xba, 0x78, 0xd4, 0x69, 0xa5, 0x16, 0x37, 0x38, 0xe3, 0x01, 0x3e,
  14913. 0xd1, 0x29, 0xb5, 0x97, 0x84, 0xd1, 0x29, 0x2f, 0x5a, 0x95, 0xa8, 0x3d, 0xfc, 0xde, 0xf5, 0xac,
  14914. 0xb7, 0x60, 0x75, 0x44, 0xf3, 0x44, 0xf7, 0xd5, 0x99, 0x63, 0x96, 0x8c, 0xd6, 0xb7, 0xa1, 0x3b,
  14915. 0x75, 0x67, 0x03, 0x37, 0xf0, 0xa7, 0x6e, 0x82, 0x08, 0x66, 0xed, 0xbc, 0x92, 0x9d, 0xa9, 0x3b,
  14916. 0xbb, 0xa9, 0xb3, 0x33, 0x3a, 0x90, 0x6d, 0xbf, 0x4e, 0x4b, 0xd2, 0x18, 0xba, 0xbc, 0xe1, 0x5f,
  14917. 0x82, 0x5e, 0x12, 0x26, 0x2e, 0x6e, 0xc7, 0xd1, 0xd8, 0x8d, 0x0e, 0xd5, 0x96, 0x45, 0x3c, 0x57,
  14918. 0x97, 0xa0, 0x8e, 0x00, 0x11, 0xc3, 0x79, 0xee, 0x69, 0x96, 0xe9, 0x02, 0x65, 0x6a, 0x7b, 0xee,
  14919. 0x69, 0x9a, 0xe5, 0x32, 0xb4, 0x8e, 0xfd, 0x99, 0xe0, 0x8f, 0x8b, 0x7c, 0x74, 0x8e, 0xfd, 0x19,
  14920. 0xe3, 0x8f, 0xd7, 0xc0, 0xa2, 0xf3, 0xa7, 0x2b, 0xe0, 0xbe, 0x6c, 0x50, 0x5f, 0xd6, 0x30, 0x45,
  14921. 0x57, 0x43, 0x9d, 0xfa, 0x32, 0xf4, 0x3f, 0x9b, 0xab, 0x18, 0xfb, 0x2e, 0x87, 0x6d, 0x6b, 0x93,
  14922. 0x2a, 0xec, 0x69, 0x30, 0x1f, 0x28, 0x24, 0xc8, 0x46, 0x91, 0x72, 0x13, 0xa5, 0xb3, 0x3d, 0x45,
  14923. 0x04, 0x5d, 0x87, 0x81, 0x92, 0x49, 0x8f, 0x1e, 0x2f, 0x94, 0x2d, 0x8d, 0x0c, 0x03, 0xba, 0x50,
  14924. 0x6c, 0xe8, 0x8e, 0xc6, 0x6e, 0x32, 0x48, 0x67, 0xe7, 0x12, 0xf5, 0xa8, 0x8d, 0xc0, 0x5b, 0x32,
  14925. 0x43, 0xb9, 0x3c, 0x58, 0xc7, 0xd3, 0x7c, 0x08, 0x75, 0x1e, 0xac, 0xe7, 0x55, 0x58, 0xe7, 0x59,
  14926. 0x0c, 0x83, 0x89, 0x1f, 0xc8, 0xe8, 0x2e, 0xf3, 0xa1, 0xa6, 0x84, 0x0f, 0x09, 0x4e, 0xf5, 0xbd,
  14927. 0x00, 0x1d, 0xc9, 0xc5, 0x32, 0x89, 0x67, 0xb8, 0x49, 0x86, 0x91, 0x54, 0xc2, 0xba, 0x0a, 0x6b,
  14928. 0x92, 0x45, 0x50, 0x8d, 0xef, 0x6d, 0x5d, 0xe1, 0x09, 0x60, 0x38, 0x8f, 0x6c, 0xd7, 0xb3, 0xae,
  14929. 0xc1, 0xa6, 0xe7, 0xfa, 0x93, 0x53, 0xc1, 0x26, 0x86, 0xa8, 0xe3, 0x59, 0xaa, 0xf6, 0x02, 0xa5,
  14930. 0x12, 0x4a, 0x79, 0xa8, 0x85, 0x1e, 0xcb, 0x09, 0xa8, 0xe7, 0x96, 0x12, 0x50, 0x6f, 0xc0, 0xc5,
  14931. 0x61, 0x32, 0xf8, 0xfe, 0x58, 0xe1, 0x01, 0x32, 0xf6, 0xc1, 0x36, 0xed, 0x83, 0xf5, 0x61, 0xf2,
  14932. 0xc9, 0x58, 0x05, 0xb7, 0x8d, 0xdd, 0xf0, 0x55, 0xb8, 0x30, 0x4c, 0x06, 0x9f, 0xfa, 0x6e, 0x3e,
  14933. 0xff, 0x35, 0x6a, 0x61, 0x6d, 0x98, 0xbc, 0xef, 0xbb, 0x66, 0xf6, 0xb7, 0x60, 0x43, 0xb2, 0x17,
  14934. 0x76, 0xe3, 0xdb, 0x34, 0x0c, 0x8b, 0x0a, 0x3c, 0x34, 0xb7, 0xa4, 0xfd, 0x93, 0x2b, 0xb0, 0x55,
  14935. 0xa0, 0xd7, 0x32, 0x2e, 0xf4, 0x45, 0xe8, 0x99, 0x04, 0x5f, 0xca, 0xa7, 0x74, 0x32, 0x6a, 0x8e,
  14936. 0x8e, 0xe2, 0x86, 0x99, 0xab, 0xc8, 0x55, 0x58, 0x59, 0xe6, 0x1d, 0xcd, 0x5f, 0x5c, 0x83, 0xcd,
  14937. 0x1c, 0x25, 0x99, 0xb8, 0x51, 0xee, 0xca, 0xbc, 0x60, 0x90, 0x8b, 0x89, 0x1b, 0xf1, 0xee, 0xbf,
  14938. 0x02, 0xc0, 0xec, 0x17, 0x65, 0x64, 0xe4, 0x4a, 0xec, 0x3e, 0x27, 0xdf, 0x90, 0x64, 0xa4, 0x66,
  14939. 0xe2, 0xad, 0xfa, 0x79, 0x98, 0x90, 0x4a, 0x22, 0xa5, 0x14, 0xdb, 0x9f, 0x81, 0xb5, 0x48, 0xb2,
  14940. 0x2e, 0x17, 0x32, 0xdc, 0x5a, 0x14, 0x32, 0xbc, 0x74, 0x16, 0xfd, 0x5b, 0x26, 0x6e, 0xf8, 0x61,
  14941. 0xe8, 0x65, 0xb9, 0x4a, 0x05, 0x0e, 0x67, 0xf2, 0x67, 0x38, 0x15, 0xc5, 0x39, 0x6b, 0xc5, 0x7a,
  14942. 0xa6, 0xec, 0x10, 0x2e, 0x66, 0xb5, 0x33, 0x0f, 0x4f, 0x6d, 0xdc, 0xc9, 0x13, 0xf0, 0x84, 0xc4,
  14943. 0x2b, 0x84, 0x04, 0x2f, 0x2f, 0x19, 0x40, 0x91, 0x78, 0xd7, 0x84, 0xad, 0xeb, 0x71, 0xa7, 0x9a,
  14944. 0x0e, 0xfe, 0xb5, 0xff, 0x4a, 0x05, 0x7a, 0x29, 0x0b, 0x45, 0x19, 0xad, 0xaf, 0x80, 0x85, 0x34,
  14945. 0x46, 0xe9, 0xfe, 0xe9, 0x4f, 0xdd, 0x93, 0x7d, 0x73, 0x0b, 0x15, 0x3a, 0xb6, 0x5c, 0x7c, 0xb3,
  14946. 0xb4, 0x63, 0x34, 0xab, 0x5f, 0x87, 0x56, 0xd6, 0xcb, 0xdc, 0x04, 0x56, 0x0a, 0x13, 0xb8, 0x06,
  14947. 0xd5, 0x60, 0x3e, 0x95, 0x79, 0xc5, 0xbf, 0xf6, 0x2d, 0x68, 0xe1, 0x08, 0xb8, 0xf3, 0xef, 0x00,
  14948. 0x18, 0x3d, 0x61, 0x71, 0x47, 0x9e, 0x61, 0xcc, 0x3a, 0xd1, 0x52, 0x69, 0xfb, 0x63, 0x68, 0xee,
  14949. 0x26, 0x6a, 0x5a, 0x58, 0xcf, 0xda, 0xf9, 0xeb, 0x29, 0xdd, 0x61, 0x29, 0x08, 0xfe, 0x2d, 0x48,
  14950. 0x5c, 0x59, 0x6a, 0x64, 0x48, 0x5c, 0x7f, 0x08, 0x9a, 0x3b, 0xe3, 0xcf, 0x39, 0xd0, 0xd2, 0x9a,
  14951. 0xab, 0xc5, 0x9a, 0x3f, 0x81, 0x06, 0x13, 0x42, 0x87, 0x78, 0x65, 0xfb, 0x89, 0x9a, 0x2e, 0x97,
  14952. 0xf9, 0xe8, 0xc1, 0x3a, 0x4d, 0xcc, 0x47, 0x74, 0xc5, 0x65, 0x68, 0x0d, 0xdd, 0x43, 0x21, 0xc8,
  14953. 0x64, 0x98, 0x43, 0xf7, 0x90, 0x28, 0x31, 0xfb, 0xdb, 0x4c, 0x64, 0x21, 0x29, 0x9b, 0x27, 0x78,
  14954. 0xcb, 0x2a, 0x5f, 0x24, 0x78, 0x75, 0x79, 0x1c, 0x39, 0x96, 0x1f, 0x8d, 0xf3, 0x2b, 0x94, 0x2f,
  14955. 0xaf, 0xe7, 0xc7, 0x69, 0x62, 0x3e, 0x5a, 0x9f, 0x08, 0x3a, 0xef, 0x87, 0xc3, 0x4c, 0x0e, 0x26,
  14956. 0xc4, 0x7a, 0x9c, 0xb8, 0x87, 0x9a, 0x4b, 0x42, 0x62, 0x7d, 0x1f, 0xbf, 0xad, 0x3b, 0xb0, 0x3e,
  14957. 0x0f, 0x26, 0xe1, 0xe8, 0x48, 0xf6, 0xb0, 0xb1, 0x29, 0xcf, 0x40, 0x2b, 0x7d, 0x2e, 0x43, 0x6d,
  14958. 0x50, 0x9b, 0x13, 0xe8, 0xa6, 0x27, 0x83, 0x58, 0x5f, 0x24, 0x6a, 0xa8, 0xc2, 0x74, 0xb5, 0x1a,
  14959. 0xf4, 0xbd, 0xeb, 0x21, 0xbd, 0xce, 0xc5, 0x35, 0x53, 0xc1, 0x5f, 0x78, 0x93, 0x79, 0xea, 0xc0,
  14960. 0x9d, 0x4f, 0x92, 0x41, 0x5a, 0x94, 0x0f, 0x7d, 0x4f, 0xe0, 0xfb, 0x5c, 0x83, 0xfd, 0xd3, 0x15,
  14961. 0xde, 0xc6, 0xf4, 0x8d, 0x5c, 0x36, 0x8d, 0x2f, 0xeb, 0x7f, 0xa5, 0xa4, 0xff, 0xe6, 0x94, 0x90,
  14962. 0x08, 0x2e, 0xed, 0xbc, 0xf5, 0x2e, 0xc0, 0xc2, 0xe0, 0x9f, 0x2e, 0x17, 0x9c, 0xe0, 0xd8, 0x1c,
  14963. 0x26, 0xfb, 0x69, 0xdc, 0xef, 0x42, 0x73, 0xc7, 0x8d, 0xbc, 0x2f, 0x72, 0x14, 0x15, 0x74, 0xb0,
  14964. 0xe8, 0x3d, 0x37, 0xf0, 0x6e, 0x85, 0xe1, 0x11, 0x62, 0x62, 0x11, 0x0e, 0x6b, 0x4c, 0xcc, 0x72,
  14965. 0x61, 0xdc, 0xca, 0x94, 0xc0, 0x68, 0x90, 0x6b, 0x68, 0x21, 0x24, 0xbd, 0x30, 0xe4, 0xe6, 0x8f,
  14966. 0xd4, 0x48, 0x63, 0x49, 0x86, 0x38, 0x6a, 0x64, 0x8f, 0xa1, 0x8d, 0xcd, 0xec, 0x84, 0x93, 0x89,
  14967. 0x1a, 0x25, 0x48, 0x51, 0x50, 0x65, 0x22, 0x24, 0xd1, 0xec, 0x27, 0xc2, 0xbe, 0xc7, 0x20, 0xeb,
  14968. 0x3a, 0x50, 0xed, 0x83, 0x61, 0x18, 0x1e, 0x95, 0x6e, 0x05, 0xb3, 0xdb, 0x4e, 0x13, 0xf3, 0xe2,
  14969. 0x3f, 0xfb, 0x8f, 0x2a, 0xb2, 0x71, 0x91, 0x90, 0xda, 0x96, 0x4a, 0x96, 0x6f, 0x5c, 0x99, 0x36,
  14970. 0xae, 0x80, 0xd6, 0xe1, 0x45, 0xe8, 0x51, 0x99, 0xfc, 0xbd, 0x53, 0x77, 0xa8, 0xc7, 0x5a, 0xbc,
  14971. 0x88, 0xf4, 0x39, 0xe5, 0x1a, 0xf1, 0x88, 0x84, 0xfb, 0xdd, 0x5a, 0xa8, 0x5c, 0x46, 0xcc, 0x63,
  14972. 0xd3, 0xc3, 0xbf, 0x07, 0x17, 0x98, 0x68, 0xa0, 0x2a, 0x82, 0xf9, 0x34, 0x13, 0x35, 0x9c, 0xb9,
  14973. 0xe1, 0xd7, 0xa8, 0x14, 0x56, 0xfb, 0xc1, 0x9c, 0x50, 0x80, 0xfd, 0x5f, 0x2b, 0xd0, 0xc7, 0xd1,
  14974. 0x9a, 0xb2, 0x90, 0x2b, 0x00, 0x9a, 0x75, 0x48, 0x57, 0xb1, 0x25, 0x10, 0x91, 0x37, 0x4a, 0xf2,
  14975. 0xe4, 0x58, 0xaf, 0xa4, 0x2e, 0x71, 0xff, 0x78, 0x82, 0x8b, 0xa3, 0x33, 0x3c, 0x56, 0x22, 0x26,
  14976. 0x69, 0xa6, 0x0c, 0xc6, 0xc7, 0xca, 0x8d, 0xf0, 0xfe, 0x27, 0xf2, 0x8d, 0xee, 0x74, 0xe9, 0x77,
  14977. 0x29, 0x6f, 0x82, 0x19, 0x1c, 0x23, 0xaf, 0xf5, 0x3a, 0xd4, 0x4d, 0xa2, 0x61, 0x79, 0x21, 0xce,
  14978. 0x66, 0xff, 0x72, 0x05, 0xda, 0xc6, 0x00, 0xcd, 0xce, 0xa5, 0x8b, 0x5a, 0x4f, 0x3b, 0x47, 0x4b,
  14979. 0xf3, 0x5e, 0x81, 0x75, 0x2a, 0x13, 0xe7, 0x16, 0xe6, 0x2c, 0xcf, 0x3e, 0x7d, 0x05, 0xaa, 0x93,
  14980. 0xe3, 0x58, 0x96, 0xf4, 0x8c, 0xe5, 0xc0, 0x5c, 0xf6, 0x3f, 0xa9, 0x30, 0x12, 0x7f, 0xe0, 0xce,
  14981. 0x10, 0xdd, 0x20, 0xd7, 0x93, 0x18, 0x82, 0xa0, 0xa9, 0x3b, 0x23, 0x7a, 0xfb, 0xcb, 0x50, 0x9d,
  14982. 0x85, 0x31, 0xcd, 0x76, 0x71, 0x0f, 0xee, 0x85, 0xb1, 0x4f, 0x1c, 0x02, 0xe6, 0x40, 0xfc, 0xf3,
  14983. 0x38, 0x8c, 0x26, 0xb8, 0xf1, 0xe3, 0x58, 0x70, 0xbb, 0xe0, 0x1f, 0x82, 0xdf, 0x0a, 0xe3, 0x98,
  14984. 0x79, 0xed, 0x77, 0xe1, 0x92, 0x99, 0x73, 0xec, 0x4e, 0x26, 0x2a, 0x38, 0x54, 0xa6, 0xd8, 0x6a,
  14985. 0x33, 0x2b, 0xa2, 0x93, 0x69, 0xdb, 0xbc, 0x0d, 0x4d, 0xdd, 0xaa, 0xd5, 0x81, 0x0a, 0xcb, 0xf7,
  14986. 0x57, 0x9c, 0xca, 0x09, 0x7e, 0x9d, 0x8a, 0x12, 0xab, 0x72, 0x8a, 0x5f, 0xdf, 0xa7, 0xd6, 0x57,
  14987. 0x9c, 0xca, 0xf7, 0xed, 0x6b, 0xd0, 0xf8, 0x48, 0x8d, 0x92, 0x30, 0xba, 0xf6, 0x39, 0x0a, 0x7d,
  14988. 0x02, 0xab, 0x7b, 0x13, 0xf7, 0x54, 0x45, 0x5a, 0x59, 0x5b, 0xc9, 0x94, 0xb5, 0x4f, 0x3c, 0x29,
  14989. 0x1b, 0xb0, 0x3a, 0xe7, 0x69, 0x15, 0x79, 0xd9, 0x1c, 0x27, 0xd5, 0xfe, 0x47, 0x55, 0xe8, 0x71,
  14990. 0xe5, 0xfb, 0xe3, 0xf0, 0x31, 0xb1, 0xb1, 0x8b, 0x8d, 0xa4, 0xba, 0xa2, 0x15, 0x53, 0x57, 0x94,
  14991. 0xe3, 0xfd, 0xaa, 0x05, 0xde, 0x6f, 0x13, 0x56, 0x0f, 0x55, 0xe0, 0xa9, 0x48, 0xeb, 0x24, 0xf9,
  14992. 0x0b, 0xbb, 0x81, 0x38, 0xde, 0xf7, 0x44, 0xb0, 0x50, 0xff, 0x34, 0x1c, 0xee, 0x16, 0x64, 0x16,
  14993. 0xab, 0x05, 0x99, 0x45, 0x91, 0x91, 0x6f, 0x7c, 0x1e, 0x46, 0xfe, 0x32, 0xb4, 0xdc, 0x51, 0x22,
  14994. 0x27, 0x99, 0x65, 0x47, 0x4d, 0x06, 0xec, 0x7a, 0xcb, 0x45, 0x47, 0x1b, 0xb0, 0xea, 0x4f, 0x09,
  14995. 0xff, 0x03, 0x77, 0xd3, 0x9f, 0x1e, 0xb2, 0xea, 0x2a, 0x2f, 0x9b, 0x69, 0x2f, 0x0a, 0x13, 0x0b,
  14996. 0x62, 0xae, 0x4e, 0x99, 0x32, 0xe2, 0x20, 0x0a, 0xa7, 0x83, 0xef, 0x87, 0x81, 0xd2, 0x3c, 0x33,
  14997. 0x02, 0x3e, 0x09, 0x03, 0x62, 0xa8, 0x23, 0xe5, 0x4e, 0x38, 0x71, 0x83, 0x13, 0x11, 0x80, 0x89,
  14998. 0xf6, 0x2b, 0xb0, 0xf1, 0x61, 0x32, 0x56, 0x11, 0x2f, 0x18, 0x53, 0xea, 0xe5, 0x4b, 0x66, 0xff,
  14999. 0xdb, 0x0a, 0x74, 0x1f, 0x05, 0x7e, 0xb2, 0x17, 0xc6, 0x37, 0x03, 0xef, 0xb6, 0x5f, 0xb6, 0x77,
  15000. 0x5e, 0x36, 0xf7, 0xce, 0xc5, 0xdc, 0x74, 0xca, 0x26, 0xe5, 0xad, 0xf3, 0x32, 0x54, 0x3d, 0x9f,
  15001. 0x91, 0xd8, 0xd2, 0x7c, 0x9e, 0x1f, 0x59, 0xcf, 0x43, 0xc7, 0x8f, 0x07, 0x61, 0x30, 0x38, 0x8c,
  15002. 0xc2, 0x79, 0xe0, 0x89, 0xa2, 0x05, 0xfc, 0xf8, 0xc3, 0xe0, 0x3b, 0x04, 0x31, 0x36, 0x61, 0xdd,
  15003. 0xd8, 0x84, 0xa4, 0xfc, 0x77, 0x23, 0x77, 0x6a, 0x08, 0x95, 0xe8, 0x7b, 0xd7, 0xb3, 0xc7, 0xd0,
  15004. 0xff, 0xde, 0xdc, 0x1f, 0x1d, 0xb1, 0xae, 0x46, 0xaf, 0x28, 0x92, 0xea, 0x48, 0x03, 0xc6, 0xfa,
  15005. 0x7a, 0x9e, 0xba, 0x27, 0xc8, 0xea, 0xc6, 0x98, 0x88, 0xbc, 0x27, 0x27, 0x0a, 0x41, 0xe7, 0xb9,
  15006. 0xa7, 0x59, 0x62, 0xe4, 0x3e, 0x66, 0x4e, 0x9d, 0x2d, 0x1e, 0x9a, 0x08, 0x20, 0xe1, 0xee, 0x7f,
  15007. 0xa8, 0x80, 0xc5, 0xad, 0xdc, 0x39, 0xf6, 0x27, 0x78, 0xe0, 0x35, 0x5f, 0x35, 0x0b, 0x63, 0x43,
  15008. 0x83, 0xb7, 0x3a, 0x0b, 0xe3, 0x5d, 0xef, 0x04, 0x13, 0x08, 0x6b, 0x64, 0xea, 0x42, 0xfc, 0xe4,
  15009. 0x0d, 0xa0, 0x4e, 0x66, 0x7e, 0xa4, 0xcc, 0x76, 0x80, 0x41, 0x24, 0x0c, 0x78, 0x19, 0xfa, 0x72,
  15010. 0xd1, 0xab, 0x63, 0x7f, 0x62, 0x88, 0x57, 0xbb, 0x0c, 0xc6, 0xf6, 0xef, 0x9c, 0xcc, 0x10, 0x51,
  15011. 0x47, 0xea, 0x20, 0x52, 0xf1, 0x38, 0x33, 0xb0, 0xa8, 0x3b, 0x6d, 0x81, 0x51, 0x55, 0x5b, 0xd0,
  15012. 0xd0, 0x04, 0x80, 0x4c, 0x9c, 0x7c, 0xda, 0xbf, 0xb3, 0x02, 0xbd, 0x6c, 0x38, 0xe9, 0xad, 0x16,
  15013. 0x29, 0x25, 0x18, 0x51, 0xdf, 0x6a, 0x91, 0x52, 0x8c, 0x0c, 0x75, 0xf2, 0xc4, 0x9f, 0xfa, 0x89,
  15014. 0xb0, 0x4b, 0x94, 0x7c, 0x1f, 0x01, 0xd6, 0x97, 0xa1, 0x9f, 0x21, 0xc8, 0x1c, 0x52, 0x4d, 0xc1,
  15015. 0x69, 0x3d, 0x34, 0xae, 0x1c, 0xe3, 0x8b, 0x10, 0xc6, 0x0c, 0xdf, 0x84, 0x16, 0xcd, 0x1b, 0xe1,
  15016. 0x58, 0xbe, 0xc2, 0xf2, 0xfa, 0x98, 0xc5, 0x45, 0x70, 0x9a, 0x58, 0x82, 0x6e, 0xa6, 0xef, 0xc1,
  15017. 0x53, 0x5a, 0x8b, 0x54, 0xec, 0xcd, 0xea, 0x79, 0x97, 0xcd, 0x86, 0x94, 0xdc, 0xc9, 0xf7, 0xf7,
  15018. 0x39, 0x68, 0x0b, 0x29, 0x41, 0xd5, 0xb0, 0xec, 0x19, 0x98, 0x4e, 0x20, 0x3e, 0xe0, 0x47, 0x60,
  15019. 0x43, 0xfa, 0x74, 0x32, 0x53, 0x1e, 0xe1, 0xd4, 0x9b, 0xb8, 0xed, 0xcb, 0x14, 0xd3, 0x25, 0x78,
  15020. 0xb2, 0x07, 0x2b, 0xe3, 0x99, 0xcc, 0xd5, 0xca, 0x78, 0x86, 0xdf, 0xb1, 0x5e, 0xf1, 0x95, 0x78,
  15021. 0x66, 0x7b, 0xb0, 0x59, 0xac, 0x5e, 0x84, 0x58, 0x5f, 0x86, 0xbe, 0x4a, 0x61, 0xe6, 0x9d, 0xd8,
  15022. 0xcb, 0xc0, 0x74, 0x80, 0x68, 0xa7, 0xd0, 0x8e, 0x62, 0xfd, 0x34, 0x93, 0x5b, 0x6d, 0x86, 0xb1,
  15023. 0x7a, 0xfa, 0x27, 0x2b, 0x60, 0x19, 0x0d, 0xb8, 0xc1, 0x11, 0x61, 0x0e, 0x0b, 0x6a, 0x91, 0x1b,
  15024. 0x1c, 0x49, 0xbd, 0xf4, 0xdf, 0xba, 0x09, 0x30, 0x8c, 0x7c, 0x75, 0x30, 0xf0, 0x83, 0x83, 0x50,
  15025. 0xd0, 0x83, 0x9d, 0x27, 0xcb, 0xc2, 0xe9, 0x34, 0x0c, 0x18, 0x0d, 0xdd, 0xc2, 0xac, 0x24, 0x09,
  15026. 0x6d, 0x0d, 0xf5, 0x5f, 0x9c, 0x89, 0x78, 0x14, 0x46, 0x5a, 0x53, 0xce, 0x1f, 0xf6, 0xef, 0xb5,
  15027. 0x60, 0xad, 0x38, 0xd4, 0x27, 0x1f, 0xe4, 0xd5, 0x54, 0xef, 0x45, 0x9c, 0x98, 0x41, 0x57, 0x8a,
  15028. 0x66, 0x0b, 0x59, 0x30, 0xda, 0x24, 0x6f, 0xc2, 0x45, 0x5e, 0x51, 0xa3, 0x62, 0xcd, 0xb0, 0xd6,
  15029. 0x1d, 0x8b, 0xd2, 0xb2, 0x1e, 0x7c, 0x30, 0x27, 0x63, 0xa6, 0x6c, 0x3b, 0x61, 0x56, 0x5e, 0x9e,
  15030. 0x4e, 0x0a, 0xc4, 0x4c, 0xaf, 0xc3, 0x85, 0xd1, 0x3c, 0x1a, 0x14, 0x7b, 0xcb, 0xc7, 0x72, 0x7d,
  15031. 0x34, 0x8f, 0xee, 0xe4, 0x3b, 0xfc, 0x36, 0x6c, 0x1e, 0xf8, 0x81, 0x1f, 0x8f, 0xcd, 0x22, 0xd4,
  15032. 0xed, 0x55, 0xea, 0xf6, 0x45, 0x4e, 0xcd, 0x4a, 0x51, 0xe7, 0x3f, 0x84, 0x75, 0x73, 0x2d, 0xb9,
  15033. 0x40, 0x83, 0xf6, 0xf6, 0x97, 0xca, 0xce, 0x49, 0x61, 0xd3, 0x38, 0x7d, 0x63, 0xd5, 0xa9, 0xc2,
  15034. 0xab, 0xb0, 0x86, 0xdd, 0x96, 0xb9, 0xe3, 0x0d, 0xda, 0x94, 0x93, 0x3b, 0x8f, 0xb8, 0x16, 0x3e,
  15035. 0x9a, 0xef, 0x99, 0x47, 0x93, 0x85, 0xf3, 0xf6, 0x99, 0x4d, 0xd2, 0x31, 0x30, 0x4e, 0x67, 0xb6,
  15036. 0x44, 0xc3, 0xf9, 0xc1, 0x41, 0xa6, 0x8d, 0x4e, 0x97, 0xe8, 0xd6, 0xfc, 0xe0, 0x80, 0x72, 0xbe,
  15037. 0x03, 0x4f, 0x49, 0xce, 0x58, 0x21, 0x41, 0x6f, 0x14, 0x68, 0xf3, 0xe4, 0x70, 0xf2, 0x3e, 0xa5,
  15038. 0xa6, 0xc5, 0xbe, 0x07, 0x17, 0xcc, 0x3d, 0x30, 0x9e, 0x99, 0x0a, 0x99, 0x27, 0xe9, 0xeb, 0x5a,
  15039. 0xb6, 0x55, 0xee, 0xcd, 0xb4, 0x0a, 0x5c, 0xaa, 0x44, 0x1c, 0xdf, 0xd5, 0xea, 0x7f, 0x84, 0x20,
  15040. 0x9a, 0xbf, 0x01, 0xe0, 0xc6, 0xb1, 0x1f, 0x27, 0xb4, 0x2d, 0x7a, 0xe7, 0xc9, 0xe0, 0x5b, 0x9c,
  15041. 0x19, 0xb7, 0xcb, 0xb7, 0xa0, 0x3b, 0x54, 0x03, 0xa3, 0xf0, 0xb9, 0xa2, 0xff, 0xf6, 0x50, 0xdd,
  15042. 0x4c, 0x8b, 0xbf, 0x00, 0x1d, 0x29, 0xcb, 0x67, 0x7a, 0x8d, 0x79, 0x08, 0x86, 0xd1, 0xea, 0x5a,
  15043. 0x6f, 0xc1, 0x86, 0x64, 0x39, 0x9c, 0xfb, 0x13, 0x6f, 0xa0, 0x02, 0xcf, 0x94, 0xf7, 0x5b, 0x9c,
  15044. 0xf8, 0x1d, 0x4c, 0xbb, 0x13, 0x78, 0x74, 0x61, 0xdc, 0x03, 0x2b, 0xeb, 0xd4, 0x5c, 0x5b, 0xe0,
  15045. 0x58, 0x25, 0xc2, 0xab, 0xbc, 0xc5, 0x97, 0xd3, 0xd7, 0x7d, 0x7b, 0xe4, 0xa7, 0x3a, 0x2d, 0xa9,
  15046. 0xc6, 0x90, 0xcf, 0x5c, 0xa0, 0x86, 0xfb, 0x9c, 0x90, 0x09, 0x9f, 0xdf, 0x84, 0x8b, 0x85, 0x93,
  15047. 0xc3, 0xd8, 0xe1, 0x22, 0x61, 0x07, 0x2b, 0x77, 0x74, 0xf6, 0x31, 0xc5, 0xfa, 0x1a, 0x6c, 0x95,
  15048. 0x95, 0x18, 0x4c, 0xdd, 0x13, 0x22, 0x8b, 0xba, 0xce, 0xc6, 0x62, 0xa9, 0x07, 0xee, 0x89, 0xf5,
  15049. 0x2d, 0xb8, 0xbc, 0x50, 0x28, 0x93, 0x93, 0x93, 0x4a, 0xa1, 0xe6, 0x6c, 0xa9, 0x7c, 0xc1, 0x54,
  15050. 0x56, 0x8e, 0x67, 0xb6, 0x70, 0xbe, 0x4d, 0x2d, 0x43, 0xcd, 0xb9, 0x98, 0x47, 0x4a, 0x7c, 0xe6,
  15051. 0xec, 0xdf, 0x41, 0x0e, 0x66, 0x1e, 0x8f, 0x91, 0x83, 0x21, 0xf2, 0x64, 0x26, 0x03, 0x64, 0x01,
  15052. 0x22, 0xb2, 0x34, 0x3c, 0x2c, 0x91, 0x37, 0x71, 0x22, 0x4b, 0xb9, 0x9a, 0x43, 0xf7, 0x90, 0x13,
  15053. 0x9f, 0x85, 0x76, 0x34, 0x8f, 0xc7, 0x03, 0x2c, 0x2e, 0x22, 0x93, 0xae, 0xd3, 0x8a, 0xb8, 0x5e,
  15054. 0x93, 0xb2, 0xcc, 0xc8, 0x2b, 0x4d, 0x59, 0x3a, 0x44, 0x5e, 0x65, 0xd7, 0x00, 0xe7, 0x48, 0x09,
  15055. 0x06, 0x42, 0x0c, 0x94, 0xe5, 0x39, 0x68, 0x23, 0x8e, 0xd7, 0x83, 0x62, 0xa2, 0x01, 0x10, 0x24,
  15056. 0x43, 0xf9, 0xbd, 0x06, 0x00, 0x4b, 0xd4, 0xc8, 0x38, 0xe6, 0x2a, 0x90, 0xa6, 0x66, 0xe0, 0x07,
  15057. 0xa3, 0x50, 0xeb, 0xc6, 0x99, 0x84, 0xec, 0x21, 0x7c, 0x97, 0xc0, 0x5a, 0x8b, 0x8a, 0x1d, 0xcf,
  15058. 0x2e, 0x40, 0x1e, 0x37, 0x63, 0x96, 0x0d, 0x58, 0xcd, 0x8d, 0xaa, 0x3e, 0xa5, 0x11, 0xbd, 0x0c,
  15059. 0x7d, 0x24, 0xe5, 0xcc, 0xca, 0x59, 0x76, 0xd8, 0x9d, 0xba, 0x27, 0x46, 0xdd, 0xef, 0x41, 0xe7,
  15060. 0x33, 0xa4, 0x02, 0xb5, 0x09, 0x0f, 0x6b, 0x9c, 0xf3, 0xfc, 0x68, 0x81, 0x4c, 0x74, 0xda, 0x9f,
  15061. 0x65, 0x00, 0x24, 0xdc, 0x65, 0x66, 0xa4, 0x1b, 0xab, 0x6c, 0xc8, 0xc2, 0x40, 0x9e, 0xde, 0xab,
  15062. 0xb0, 0x66, 0xe4, 0xc9, 0xac, 0x78, 0xba, 0x4e, 0x2f, 0xcd, 0xc6, 0xa3, 0xc9, 0xe7, 0x64, 0xb2,
  15063. 0xa1, 0x59, 0xc8, 0xc9, 0xb4, 0xc5, 0x0d, 0x20, 0xca, 0x87, 0x6f, 0xd2, 0x56, 0x89, 0xec, 0x3a,
  15064. 0x4f, 0xa2, 0x39, 0x4d, 0xcc, 0x4d, 0x37, 0xe8, 0xdd, 0xdc, 0xb5, 0x48, 0xe5, 0x59, 0xef, 0x79,
  15065. 0xe5, 0xec, 0x4b, 0xc0, 0xb8, 0x35, 0xa9, 0x9e, 0x17, 0xa1, 0x97, 0x0e, 0x87, 0x67, 0xb8, 0xcd,
  15066. 0x76, 0xba, 0x7a, 0x6d, 0x68, 0x82, 0xdf, 0x80, 0xa6, 0xde, 0x7a, 0xc4, 0xb1, 0x14, 0xe9, 0x7c,
  15067. 0xd9, 0xdc, 0x4e, 0x43, 0x76, 0xa3, 0xf5, 0x01, 0x6c, 0xd2, 0xd8, 0xcd, 0x4b, 0x93, 0x71, 0x49,
  15068. 0xf7, 0x3c, 0x32, 0xec, 0xc2, 0xd4, 0x9d, 0xed, 0x18, 0xf7, 0x2a, 0x61, 0x93, 0x6f, 0xc3, 0x33,
  15069. 0x5a, 0x57, 0x18, 0x46, 0x9e, 0xbe, 0xac, 0xdc, 0xd1, 0x48, 0xb6, 0x45, 0x8f, 0xcf, 0xad, 0x68,
  15070. 0x0d, 0xc3, 0xc8, 0xe3, 0x81, 0xdf, 0x1c, 0x8d, 0x78, 0x87, 0xbc, 0x99, 0x19, 0xd8, 0x60, 0x19,
  15071. 0x6f, 0x1e, 0xb1, 0xd2, 0xb4, 0x2f, 0xaa, 0xa4, 0x34, 0xf7, 0x6d, 0x49, 0xc9, 0x4f, 0xcc, 0x18,
  15072. 0x0f, 0xc3, 0x1a, 0x6b, 0x8b, 0xf4, 0xc4, 0xdc, 0x43, 0x12, 0xec, 0x59, 0x68, 0xf3, 0x8e, 0xe1,
  15073. 0x2c, 0xeb, 0x7c, 0x26, 0x69, 0xf7, 0x52, 0xfa, 0x57, 0xc0, 0xca, 0x6d, 0x2c, 0xce, 0x66, 0xb1,
  15074. 0xde, 0xc0, 0xd8, 0x5d, 0x94, 0x99, 0x74, 0x70, 0xf9, 0x1d, 0xc6, 0xf9, 0x2f, 0x30, 0x1e, 0xcc,
  15075. 0x6f, 0x33, 0x2a, 0x42, 0x27, 0xc4, 0xcc, 0xbb, 0x2d, 0x48, 0xb3, 0x6b, 0x76, 0x73, 0x1b, 0x79,
  15076. 0x2f, 0xa3, 0x03, 0xdb, 0x82, 0x23, 0x21, 0xed, 0xe8, 0xb6, 0x7d, 0x0f, 0xba, 0x74, 0x05, 0xa6,
  15077. 0x52, 0x8b, 0xa2, 0x0a, 0xe7, 0x49, 0x45, 0x09, 0xf6, 0x2f, 0x54, 0xa0, 0x87, 0x04, 0x24, 0xd3,
  15078. 0x7f, 0x4b, 0x64, 0x06, 0x5f, 0x04, 0x1d, 0xdc, 0x80, 0x3a, 0x91, 0x90, 0x84, 0x04, 0x9e, 0x8c,
  15079. 0xe6, 0xe4, 0x02, 0xf6, 0xcf, 0x55, 0xe1, 0xe2, 0xc7, 0x99, 0x6c, 0x27, 0x48, 0x54, 0x90, 0x68,
  15080. 0x0b, 0x49, 0xb1, 0xa5, 0x14, 0xdb, 0xde, 0x11, 0x59, 0xbf, 0x1a, 0xcc, 0x5b, 0x35, 0xc7, 0xbc,
  15081. 0xbd, 0x0c, 0x7d, 0x4a, 0x88, 0xe7, 0xd8, 0x1a, 0x91, 0x04, 0xc2, 0x9b, 0x21, 0x78, 0x9f, 0xa0,
  15082. 0x4c, 0x16, 0x48, 0x57, 0xeb, 0x9f, 0xb3, 0xab, 0x29, 0x16, 0x57, 0x11, 0x11, 0x05, 0xab, 0x06,
  15083. 0x16, 0x57, 0x11, 0x5e, 0xfc, 0x05, 0xfe, 0xb1, 0xb1, 0xc0, 0x3f, 0x5e, 0x82, 0x26, 0x93, 0xb7,
  15084. 0xe3, 0x99, 0x10, 0x72, 0x0d, 0xfa, 0xbe, 0x37, 0xa3, 0xe1, 0xce, 0x23, 0x4c, 0x68, 0xc9, 0x70,
  15085. 0xe7, 0xd1, 0x3d, 0x92, 0xaa, 0xf9, 0x31, 0x9b, 0xe8, 0x11, 0x16, 0x69, 0x3a, 0x0d, 0x3f, 0x26,
  15086. 0xdb, 0x3c, 0xbc, 0xc6, 0x03, 0x75, 0x82, 0x07, 0xcf, 0xe0, 0x34, 0x19, 0x45, 0xf4, 0x31, 0xc1,
  15087. 0x31, 0xb8, 0xcd, 0xab, 0x62, 0x0b, 0x23, 0x93, 0x43, 0xd4, 0x2f, 0xdb, 0xdf, 0xf5, 0xb2, 0xd9,
  15088. 0x21, 0xb1, 0xd2, 0x77, 0xa1, 0x4b, 0x16, 0x84, 0x1f, 0xb8, 0x53, 0xa5, 0xf9, 0x0c, 0x92, 0xed,
  15089. 0xb0, 0xad, 0x3e, 0xfd, 0x2f, 0xb7, 0xe3, 0x5d, 0x74, 0x48, 0xb0, 0x7f, 0xab, 0x02, 0x9b, 0xe9,
  15090. 0xe2, 0x3a, 0x6e, 0xe0, 0x51, 0xd5, 0x54, 0x2d, 0x5e, 0x67, 0x86, 0x61, 0x0e, 0x8b, 0x32, 0x45,
  15091. 0x8c, 0xae, 0x8d, 0x7a, 0xcb, 0xb9, 0xf4, 0x92, 0x85, 0xae, 0x96, 0x2d, 0x74, 0xd9, 0x98, 0x6b,
  15092. 0x65, 0x63, 0xb6, 0x9e, 0x81, 0x96, 0x1f, 0x7f, 0x78, 0x70, 0x30, 0xf1, 0x03, 0xbe, 0xa1, 0x9a,
  15093. 0x4e, 0x06, 0xb0, 0x0f, 0x60, 0xed, 0xa1, 0x1b, 0x1f, 0xed, 0x45, 0xe1, 0x61, 0xa4, 0xe2, 0xf8,
  15094. 0xf3, 0x38, 0x1e, 0x10, 0x37, 0x95, 0xda, 0x1d, 0xd7, 0x1d, 0xfe, 0x40, 0x28, 0x2d, 0xbb, 0x5c,
  15095. 0x99, 0xfc, 0x61, 0xff, 0xc7, 0x0a, 0x34, 0xb5, 0x71, 0x33, 0x8e, 0x9e, 0xcc, 0xa0, 0xd3, 0x73,
  15096. 0xbe, 0x8a, 0x9f, 0xbb, 0x9e, 0xf5, 0x2e, 0x34, 0x67, 0xd2, 0x93, 0x52, 0xd3, 0xe0, 0x62, 0x57,
  15097. 0x9d, 0x34, 0x7b, 0xbe, 0x33, 0x5d, 0xdd, 0x19, 0xa4, 0xa2, 0x55, 0x6a, 0x66, 0x55, 0xa3, 0xc5,
  15098. 0x6b, 0x11, 0x44, 0x13, 0x07, 0xd4, 0x11, 0x83, 0x61, 0x22, 0xc3, 0x6b, 0x9a, 0x86, 0x2b, 0x00,
  15099. 0xe3, 0x8c, 0x77, 0xe5, 0x03, 0xd1, 0x1a, 0xa7, 0x9c, 0xeb, 0xc7, 0x6c, 0x74, 0xb7, 0x13, 0x06,
  15100. 0x39, 0x81, 0x5d, 0x25, 0x27, 0xb0, 0xcb, 0x19, 0x7c, 0xaf, 0x3c, 0x91, 0xc1, 0xb7, 0x7d, 0x07,
  15101. 0x3a, 0xac, 0xdf, 0x93, 0xca, 0xdf, 0x01, 0x18, 0x85, 0x01, 0xdf, 0x9d, 0xf1, 0x12, 0x25, 0x1f,
  15102. 0x67, 0x75, 0x8c, 0x8c, 0xdc, 0xbf, 0x28, 0xcc, 0xfa, 0x57, 0xa6, 0x85, 0xff, 0x53, 0xf5, 0x4f,
  15103. 0x2a, 0x7f, 0x92, 0xfe, 0x71, 0xd6, 0x5c, 0xff, 0xfe, 0xb0, 0xc6, 0xea, 0x1c, 0x6c, 0xe1, 0x0b,
  15104. 0x19, 0xc6, 0xbf, 0x4d, 0xfa, 0x30, 0xae, 0x4e, 0xfa, 0xbe, 0x59, 0xd0, 0x5d, 0x8a, 0xdd, 0xbd,
  15105. 0x93, 0x65, 0xb4, 0xae, 0x8b, 0x05, 0x15, 0x42, 0x44, 0x76, 0x78, 0x69, 0x41, 0x81, 0x90, 0x4e,
  15106. 0x28, 0x59, 0x51, 0xd1, 0x28, 0xaf, 0x8b, 0xa6, 0x95, 0xca, 0xd5, 0x96, 0x96, 0x93, 0x81, 0x92,
  15107. 0xb6, 0x95, 0xca, 0xed, 0xc0, 0x1a, 0x5b, 0xc5, 0xd0, 0xf8, 0x98, 0xc2, 0xae, 0x9f, 0xc7, 0x71,
  15108. 0xf5, 0xa8, 0x08, 0x8e, 0x99, 0x49, 0xf0, 0x9b, 0xd0, 0x7f, 0xac, 0xd4, 0x91, 0x59, 0xc7, 0xea,
  15109. 0x79, 0x75, 0x74, 0xb1, 0x44, 0x56, 0xc5, 0x8b, 0xda, 0xb8, 0xca, 0xf5, 0xbc, 0xc1, 0xf7, 0x55,
  15110. 0x70, 0x2a, 0x18, 0xbc, 0x43, 0xd0, 0x9b, 0x9e, 0xf7, 0x89, 0x0a, 0x4e, 0xad, 0x6d, 0xd8, 0x70,
  15111. 0x47, 0xa3, 0xf9, 0x74, 0x3e, 0x71, 0x13, 0xff, 0x58, 0xb1, 0x1a, 0x6b, 0x7a, 0xac, 0x11, 0xfa,
  15112. 0x05, 0x33, 0x71, 0x07, 0x89, 0x82, 0xe3, 0x19, 0xa2, 0xea, 0x89, 0x9b, 0xa8, 0x38, 0x79, 0x67,
  15113. 0x30, 0x0e, 0xe7, 0xe2, 0x75, 0xd5, 0x62, 0x54, 0x2d, 0x09, 0xf7, 0xc2, 0x39, 0x3b, 0x5e, 0x5d,
  15114. 0x83, 0x4d, 0x06, 0x0d, 0xb0, 0x77, 0x66, 0x01, 0x36, 0x81, 0xbc, 0xc0, 0xa9, 0x1f, 0x63, 0x62,
  15115. 0x5a, 0xe8, 0x3d, 0xe8, 0x09, 0xc7, 0x33, 0x12, 0xaa, 0xb6, 0x7d, 0x1e, 0x31, 0xd7, 0x49, 0x88,
  15116. 0x0b, 0x1a, 0xb1, 0xa4, 0xec, 0x47, 0xd9, 0xb5, 0xc6, 0xb0, 0xfa, 0x5e, 0x7a, 0x20, 0xae, 0xc2,
  15117. 0x1a, 0x25, 0x98, 0xb2, 0xf2, 0x15, 0x66, 0x2c, 0x10, 0x6e, 0x54, 0x51, 0x62, 0x60, 0x5e, 0x2d,
  15118. 0x31, 0x30, 0xb7, 0xff, 0x57, 0x05, 0x7a, 0xd9, 0x27, 0xe1, 0xbf, 0x57, 0x80, 0xf5, 0x7d, 0x5c,
  15119. 0x98, 0xcb, 0x8a, 0x4d, 0x07, 0xc1, 0xef, 0xa6, 0x60, 0xeb, 0x36, 0xf4, 0x49, 0x5d, 0x69, 0xe4,
  15120. 0x5c, 0xe6, 0x91, 0x93, 0x35, 0xe2, 0xf4, 0x62, 0xfd, 0xcd, 0xb5, 0xbc, 0x0e, 0x17, 0xb0, 0xaf,
  15121. 0xc3, 0x30, 0xf0, 0xcc, 0x9a, 0x18, 0x55, 0xae, 0xcf, 0x54, 0x72, 0x2b, 0x0c, 0x3c, 0x23, 0xff,
  15122. 0x5d, 0x58, 0x73, 0x91, 0x28, 0x33, 0x33, 0xd7, 0xce, 0x6f, 0xb6, 0x4f, 0x85, 0xb2, 0x7a, 0xec,
  15123. 0x53, 0x68, 0x21, 0x89, 0x7e, 0x33, 0x52, 0x01, 0xc9, 0x79, 0x89, 0x98, 0x67, 0x26, 0x50, 0xe4,
  15124. 0xbc, 0x08, 0x61, 0x16, 0xf0, 0x22, 0xd4, 0x4d, 0x7b, 0x07, 0xfe, 0xb0, 0x36, 0x61, 0x55, 0x78,
  15125. 0x42, 0x21, 0x88, 0xf8, 0xab, 0xc8, 0x30, 0xd6, 0x16, 0x18, 0xc6, 0x5f, 0xad, 0x43, 0x8b, 0xda,
  15126. 0xa5, 0x0b, 0xb9, 0x44, 0x4a, 0x5c, 0x29, 0x95, 0x12, 0x67, 0xbc, 0xaa, 0xd9, 0x19, 0xb9, 0xcd,
  15127. 0x39, 0x0b, 0x32, 0xcb, 0xf3, 0xd3, 0x9c, 0xac, 0xb9, 0x39, 0x9c, 0x9f, 0x72, 0x62, 0x2a, 0x61,
  15128. 0xac, 0xc9, 0x9d, 0xa8, 0xf9, 0xeb, 0xc7, 0x7e, 0x20, 0x45, 0xe4, 0x9e, 0x79, 0xec, 0x07, 0xa5,
  15129. 0x82, 0xde, 0xd5, 0xa2, 0xa0, 0x17, 0x4b, 0x87, 0x13, 0x4f, 0xce, 0x3d, 0xcb, 0x81, 0x9b, 0xe1,
  15130. 0xc4, 0xe3, 0x73, 0x7d, 0x05, 0x00, 0xab, 0x8e, 0x93, 0x48, 0xb9, 0x47, 0xda, 0x0a, 0xf9, 0xb1,
  15131. 0x1f, 0xec, 0x13, 0xc0, 0xfa, 0x12, 0x74, 0x0f, 0x5c, 0x7f, 0xa2, 0x3c, 0x9d, 0x83, 0x09, 0xb0,
  15132. 0x0e, 0x03, 0x25, 0xd3, 0x36, 0x6c, 0x10, 0x97, 0x93, 0x4d, 0xd1, 0x8c, 0x88, 0xc4, 0xec, 0x50,
  15133. 0xc6, 0x49, 0xca, 0x1a, 0x89, 0xce, 0xef, 0x45, 0xe8, 0xc5, 0x6a, 0x72, 0x60, 0x08, 0x3d, 0x59,
  15134. 0x40, 0xd6, 0x41, 0x68, 0x2a, 0xf2, 0x7c, 0x19, 0xfa, 0x2e, 0x2e, 0xc2, 0x20, 0x56, 0x6e, 0xcc,
  15135. 0xca, 0x2e, 0xd6, 0x3c, 0x75, 0x09, 0xbc, 0x4f, 0x50, 0x36, 0x65, 0xa3, 0x1e, 0xe4, 0x32, 0x13,
  15136. 0x5e, 0xe8, 0x66, 0x5d, 0xb8, 0x99, 0x15, 0xd1, 0x74, 0x9f, 0xf0, 0x65, 0xd9, 0xe4, 0xb2, 0x55,
  15137. 0x72, 0x8f, 0xe1, 0x1f, 0xeb, 0x29, 0x7e, 0x0d, 0xd9, 0x21, 0xca, 0x69, 0xce, 0x34, 0xd3, 0x88,
  15138. 0x52, 0xc7, 0xc3, 0x6c, 0xbe, 0xdf, 0x91, 0x8d, 0x4a, 0x9d, 0x11, 0xfb, 0xd6, 0xcd, 0x05, 0xbe,
  15139. 0x93, 0x7a, 0xc3, 0x1b, 0x98, 0xf7, 0xf7, 0x35, 0xd8, 0x2c, 0x8c, 0x75, 0x10, 0x29, 0x6f, 0x3e,
  15140. 0x62, 0xb9, 0x17, 0x22, 0x4f, 0x73, 0xc8, 0x0e, 0x25, 0xd9, 0x3f, 0x06, 0x5d, 0xae, 0xe8, 0xcf,
  15141. 0x52, 0xf2, 0xad, 0xf7, 0xa5, 0xfd, 0x2e, 0xdb, 0xb9, 0x70, 0xff, 0x5f, 0x83, 0x3a, 0x8f, 0xb8,
  15142. 0x52, 0x32, 0xe2, 0xf4, 0x28, 0x39, 0x9c, 0xc9, 0xfe, 0xf5, 0x15, 0x68, 0x3f, 0x70, 0xfd, 0x89,
  15143. 0x70, 0x35, 0x9f, 0xcf, 0x33, 0xca, 0x82, 0x9a, 0xa1, 0xf3, 0xa5, 0xff, 0xd6, 0xd7, 0xf3, 0x34,
  15144. 0xf3, 0xb9, 0x26, 0x13, 0x26, 0x39, 0x9d, 0x27, 0xf3, 0xea, 0x45, 0x32, 0xaf, 0xc0, 0xba, 0xac,
  15145. 0x2e, 0xb0, 0x2e, 0x29, 0xf1, 0xd8, 0x30, 0x29, 0xd9, 0x2b, 0x00, 0xac, 0xff, 0xa3, 0x0e, 0x35,
  15146. 0xd9, 0x65, 0x96, 0x20, 0xd4, 0x28, 0x12, 0xba, 0x7e, 0x32, 0xe1, 0xbb, 0xae, 0xe5, 0xf0, 0x07,
  15147. 0xdb, 0xa8, 0xd3, 0x94, 0xd0, 0xe9, 0x69, 0x39, 0xfa, 0x13, 0xf9, 0xd3, 0x26, 0xdb, 0x13, 0xf8,
  15148. 0x13, 0xeb, 0x1d, 0xe4, 0x43, 0xfd, 0x9c, 0x3d, 0x51, 0x5e, 0x73, 0x6c, 0xcc, 0x2d, 0x72, 0xa8,
  15149. 0x3e, 0x9b, 0x12, 0x11, 0xdf, 0x7f, 0x32, 0xa0, 0xa2, 0xe9, 0xbc, 0xb6, 0xa6, 0xee, 0x09, 0x66,
  15150. 0xdf, 0xf5, 0xac, 0xaf, 0x92, 0x2e, 0x20, 0x1a, 0x1c, 0x4e, 0xc2, 0xa1, 0x3b, 0x49, 0xf3, 0xf1,
  15151. 0x3c, 0xaf, 0x61, 0xd2, 0x77, 0x28, 0x85, 0xb3, 0xdb, 0x6f, 0xb0, 0x85, 0x83, 0xa3, 0xc8, 0x9b,
  15152. 0xd0, 0x8f, 0x07, 0xf3, 0x20, 0x42, 0xe2, 0x08, 0xcb, 0xd1, 0x5a, 0x36, 0x9d, 0x8e, 0x1f, 0x3f,
  15153. 0x22, 0x20, 0x16, 0xb1, 0x7f, 0x14, 0x36, 0x76, 0xc2, 0xe9, 0x4c, 0x25, 0x86, 0x68, 0x5f, 0xbb,
  15154. 0x3e, 0xa7, 0xf6, 0xc1, 0x27, 0x29, 0x72, 0x17, 0xd3, 0xe0, 0x13, 0xac, 0x5d, 0xeb, 0x16, 0x03,
  15155. 0x6f, 0x90, 0x88, 0x07, 0x00, 0xb9, 0x65, 0x93, 0x6a, 0x31, 0xf0, 0x1e, 0x4e, 0x8b, 0x13, 0x5e,
  15156. 0x2d, 0x4c, 0xb8, 0xfd, 0xbf, 0x57, 0xa0, 0x6f, 0xb4, 0x4e, 0xed, 0xbe, 0x04, 0xbd, 0x51, 0x06,
  15157. 0xca, 0xee, 0xf3, 0xae, 0x01, 0x15, 0xcf, 0xd8, 0x79, 0x94, 0x49, 0xa2, 0xb9, 0x75, 0x18, 0xcd,
  15158. 0x23, 0x2d, 0x81, 0xbe, 0x9f, 0x0a, 0xcf, 0xf0, 0x90, 0x99, 0x8e, 0x2f, 0x0b, 0x27, 0x6d, 0x71,
  15159. 0xf8, 0x5a, 0xc0, 0x86, 0xff, 0xb5, 0x01, 0xdf, 0x28, 0x9c, 0x0e, 0xa8, 0xef, 0x72, 0x15, 0x34,
  15160. 0x47, 0xe1, 0x74, 0x0f, 0xbf, 0xad, 0xaf, 0x80, 0x95, 0x26, 0x12, 0x39, 0x66, 0xec, 0xda, 0xbe,
  15161. 0xce, 0x75, 0xd3, 0xf3, 0x52, 0x2f, 0x10, 0xc4, 0xb3, 0x84, 0x14, 0x56, 0xc5, 0x0b, 0x44, 0x4d,
  15162. 0x0e, 0x10, 0x61, 0x90, 0x15, 0x22, 0xdb, 0x28, 0x63, 0x2a, 0x6f, 0xde, 0x16, 0x5b, 0xcb, 0x63,
  15163. 0xf2, 0x8b, 0xd0, 0x23, 0x26, 0x1a, 0x5b, 0xe3, 0xd3, 0xcf, 0xf7, 0x43, 0x07, 0xa1, 0x3b, 0xe1,
  15164. 0x34, 0xa5, 0x0c, 0x19, 0xfb, 0xa7, 0xb9, 0xe4, 0x8e, 0x20, 0xb4, 0x2f, 0xb9, 0xec, 0xfb, 0x00,
  15165. 0xb7, 0xfd, 0x63, 0x3f, 0x60, 0xbe, 0x19, 0xc7, 0x37, 0x8f, 0xc8, 0xe4, 0x38, 0x16, 0xf6, 0xb6,
  15166. 0x39, 0x9a, 0x47, 0xfb, 0xf8, 0xcd, 0x96, 0x3c, 0x74, 0xe7, 0xe4, 0xee, 0x50, 0x86, 0x31, 0x45,
  15167. 0xf6, 0x11, 0x74, 0x6f, 0xbb, 0xa7, 0xfb, 0xf3, 0xd9, 0x6c, 0x72, 0xaa, 0x7d, 0x9d, 0xe9, 0xbc,
  15168. 0x8a, 0xac, 0x86, 0x3f, 0xb0, 0x19, 0x5c, 0x32, 0x3f, 0xf0, 0xd4, 0x89, 0xac, 0x59, 0x53, 0x05,
  15169. 0xde, 0x2e, 0x7e, 0x93, 0xcf, 0x48, 0xe4, 0x3e, 0x16, 0x2b, 0x26, 0xfa, 0x6f, 0xdf, 0x87, 0xce,
  15170. 0x5d, 0x37, 0x88, 0x3f, 0x0a, 0x13, 0x56, 0xca, 0x97, 0xf1, 0xf7, 0x1a, 0xc3, 0xae, 0x18, 0x18,
  15171. 0xb6, 0x1c, 0x3d, 0xde, 0x81, 0x36, 0xd6, 0x76, 0x2b, 0x3c, 0xd1, 0x16, 0xbb, 0x05, 0x69, 0xd2,
  15172. 0x1a, 0x54, 0x87, 0xe1, 0x89, 0xb6, 0xba, 0x1b, 0x86, 0x27, 0x69, 0xe5, 0xd5, 0xac, 0x72, 0xfb,
  15173. 0x7d, 0xee, 0x14, 0x2e, 0xc9, 0x92, 0x7a, 0xd2, 0xe6, 0x57, 0x4c, 0xaa, 0xa1, 0xac, 0xae, 0x21,
  15174. 0xf4, 0xd2, 0x01, 0x92, 0xa1, 0x45, 0xb9, 0x8c, 0xeb, 0x38, 0x4c, 0x94, 0xb9, 0xd3, 0x9b, 0x08,
  15175. 0xd0, 0x26, 0xff, 0x89, 0x3f, 0x3a, 0x4a, 0xdd, 0x7d, 0xb8, 0xf2, 0x36, 0xc3, 0x78, 0x71, 0xee,
  15176. 0x41, 0x67, 0xd7, 0x0b, 0x27, 0xd8, 0x0e, 0x2d, 0xf6, 0x0d, 0x68, 0x1d, 0xb8, 0x41, 0x6c, 0xe2,
  15177. 0xaa, 0xcb, 0x05, 0x2b, 0x17, 0xb3, 0x47, 0x4e, 0x13, 0x73, 0xd3, 0x89, 0xfd, 0xb5, 0x15, 0x68,
  15178. 0x62, 0x55, 0xba, 0x1a, 0xea, 0x96, 0x61, 0xab, 0x7a, 0xa6, 0x6a, 0x87, 0xfa, 0xac, 0x2d, 0x04,
  15179. 0xd8, 0x72, 0x9f, 0x68, 0x3d, 0x89, 0x5d, 0x40, 0xfe, 0x1e, 0x44, 0x0b, 0xbe, 0x02, 0x6b, 0x9f,
  15180. 0x86, 0x44, 0x01, 0xa4, 0x47, 0x53, 0x36, 0x45, 0x1f, 0xe1, 0xc6, 0x89, 0x25, 0xda, 0x2d, 0x3c,
  15181. 0x19, 0x98, 0x24, 0x5a, 0x73, 0x18, 0x9e, 0xf0, 0x41, 0x20, 0x11, 0x58, 0x14, 0x27, 0x03, 0xde,
  15182. 0x89, 0x75, 0xed, 0x09, 0x16, 0xc5, 0xc9, 0x2d, 0xbd, 0x1d, 0x39, 0x83, 0x0a, 0x3c, 0xb9, 0x45,
  15183. 0x9a, 0x04, 0xb8, 0xc3, 0x5a, 0x8e, 0x58, 0x21, 0x77, 0x28, 0xc5, 0x99, 0xbd, 0x6a, 0x33, 0x8c,
  15184. 0xcb, 0x5f, 0x01, 0x90, 0x2c, 0x58, 0x41, 0x93, 0xaf, 0x29, 0x86, 0xdc, 0x09, 0x3c, 0xfb, 0x67,
  15185. 0x2a, 0xa6, 0xd1, 0xd3, 0x92, 0xad, 0xa2, 0x5d, 0x8e, 0x86, 0x6e, 0xac, 0x4a, 0x85, 0xa2, 0xda,
  15186. 0x01, 0x8b, 0x5d, 0x8e, 0xc8, 0x15, 0x2b, 0x67, 0x25, 0x5c, 0x7d, 0x22, 0xb7, 0x38, 0xfb, 0xdf,
  15187. 0xaf, 0x40, 0x0f, 0x97, 0x8e, 0xe9, 0x15, 0xea, 0xcc, 0x37, 0xa1, 0xed, 0xd1, 0x0a, 0x2f, 0xdf,
  15188. 0x09, 0xf9, 0xee, 0x3b, 0xc0, 0xf9, 0x09, 0x25, 0x5e, 0x97, 0xe5, 0x5f, 0x6a, 0x01, 0x6c, 0x9e,
  15189. 0x11, 0x5e, 0x7c, 0x7d, 0xb7, 0x1b, 0x8b, 0x5f, 0x2d, 0x2e, 0x7e, 0x61, 0xd1, 0x6a, 0x67, 0x2f,
  15190. 0x5a, 0xfd, 0x9c, 0x45, 0x5b, 0x3d, 0x6f, 0xd1, 0x1a, 0x85, 0x45, 0x43, 0xec, 0x39, 0x76, 0xe3,
  15191. 0x01, 0xee, 0x2a, 0xe9, 0x62, 0x93, 0xef, 0xcd, 0xb1, 0x8b, 0x88, 0x43, 0xb8, 0x91, 0xbf, 0x00,
  15192. 0x96, 0x3e, 0x24, 0x0c, 0x59, 0xb2, 0xba, 0x37, 0xa0, 0xe5, 0x7b, 0xe1, 0x64, 0xb9, 0xed, 0x7e,
  15193. 0xf1, 0x8c, 0x60, 0x6e, 0x3a, 0x6a, 0xbf, 0xb2, 0xc2, 0xf6, 0xa2, 0xe6, 0x6e, 0xbf, 0x03, 0x7d,
  15194. 0xc4, 0xd2, 0xe6, 0xb9, 0xa8, 0x94, 0xa8, 0xa8, 0x0a, 0x77, 0x2a, 0xe9, 0xdf, 0xcd, 0x6a, 0xb6,
  15195. 0x53, 0xfd, 0x40, 0xe1, 0xaa, 0x65, 0x6c, 0x75, 0x41, 0x33, 0x47, 0xe6, 0x85, 0xfb, 0x2e, 0x5c,
  15196. 0x2a, 0x29, 0x13, 0xcf, 0x87, 0x19, 0x39, 0xb2, 0xb9, 0x50, 0x6e, 0x7f, 0x3e, 0xdc, 0xf5, 0xac,
  15197. 0x37, 0x60, 0xd5, 0xa3, 0x9b, 0x46, 0xc4, 0x2c, 0x4f, 0xe5, 0x3a, 0x9b, 0x5d, 0x42, 0x8e, 0x64,
  15198. 0xb3, 0x5e, 0x81, 0x1a, 0x4e, 0x43, 0xa9, 0xc3, 0xa7, 0xc6, 0x3e, 0x0e, 0x65, 0xb1, 0x47, 0xac,
  15199. 0x45, 0xbc, 0x1b, 0xf9, 0x2a, 0x20, 0x6f, 0x2c, 0xec, 0x51, 0xba, 0x9b, 0x6b, 0x4e, 0x23, 0x9e,
  15200. 0x0f, 0xf5, 0x05, 0x9e, 0xe1, 0xbc, 0x15, 0x4a, 0x4b, 0xd1, 0x1a, 0x91, 0x9b, 0x13, 0x77, 0x74,
  15201. 0x94, 0x51, 0x09, 0x48, 0x6e, 0x22, 0x44, 0x04, 0x64, 0xd4, 0xc8, 0x7e, 0x38, 0xf2, 0xdd, 0x89,
  15202. 0xf5, 0x35, 0x80, 0x03, 0x6a, 0x8e, 0x7c, 0xf6, 0x2a, 0x25, 0x43, 0xca, 0x7a, 0xe4, 0x18, 0x59,
  15203. 0xed, 0x3f, 0xa9, 0x42, 0xf7, 0x2e, 0x6b, 0x51, 0x27, 0x4a, 0x7b, 0xf2, 0xf9, 0xf1, 0x20, 0x0a,
  15204. 0x87, 0x61, 0x22, 0xd4, 0x59, 0xc3, 0x8f, 0x1d, 0xfc, 0xfc, 0x41, 0xb0, 0x08, 0x67, 0x3a, 0xdd,
  15205. 0xe6, 0x3c, 0xf9, 0x6b, 0x4f, 0xee, 0xc9, 0x5f, 0x34, 0x92, 0xac, 0x7f, 0x1e, 0x23, 0xc9, 0x6f,
  15206. 0x40, 0x2f, 0xc5, 0x5b, 0x99, 0x85, 0xca, 0x52, 0xe4, 0xd5, 0xd1, 0xc8, 0x4b, 0xb3, 0x9e, 0x48,
  15207. 0x2a, 0x9b, 0xf2, 0x19, 0x09, 0x7e, 0x30, 0x75, 0x4f, 0x72, 0x01, 0x00, 0xfa, 0x46, 0x30, 0x81,
  15208. 0x94, 0xd4, 0x2f, 0xaa, 0x1a, 0xf7, 0x14, 0xfb, 0xe0, 0x77, 0xd3, 0x20, 0x03, 0xa9, 0x4d, 0x39,
  15209. 0x89, 0x19, 0x89, 0x65, 0xce, 0x2c, 0x36, 0x3b, 0x0c, 0xc5, 0xe9, 0xde, 0xf5, 0x96, 0x7b, 0xb9,
  15210. 0xc1, 0x32, 0x2f, 0x37, 0x7b, 0x04, 0xfd, 0x9d, 0xb1, 0x9b, 0x3c, 0x50, 0x71, 0xec, 0x1e, 0xf2,
  15211. 0xf2, 0x6f, 0x41, 0x63, 0xca, 0x9f, 0x3a, 0x16, 0x91, 0x7c, 0x32, 0x91, 0x98, 0xa7, 0x6d, 0x9b,
  15212. 0x08, 0xd0, 0x7a, 0x19, 0xdc, 0xe5, 0x06, 0xc3, 0x85, 0xbb, 0x9c, 0xf4, 0x21, 0x7f, 0x69, 0x05,
  15213. 0x2e, 0x60, 0x2b, 0x85, 0x5d, 0x51, 0x4e, 0x53, 0x2c, 0xf7, 0xde, 0xcd, 0xcc, 0x52, 0xab, 0xa6,
  15214. 0x59, 0x6a, 0x8e, 0x05, 0xac, 0x15, 0x58, 0xc0, 0xd4, 0x28, 0xad, 0x6e, 0x1a, 0xa5, 0x2d, 0x58,
  15215. 0xb2, 0xae, 0x2e, 0x5a, 0xb2, 0x66, 0x36, 0xbc, 0x8d, 0x9c, 0x0d, 0x6f, 0xce, 0xf0, 0xb7, 0x59,
  15216. 0x30, 0xfc, 0x5d, 0x66, 0x52, 0x6b, 0xff, 0x41, 0x9d, 0x58, 0x9a, 0xc5, 0xa3, 0xf1, 0x03, 0x9a,
  15217. 0x84, 0x65, 0x16, 0xc7, 0xe5, 0xe3, 0xcf, 0x4d, 0xd9, 0xea, 0xd9, 0xf1, 0x44, 0x1a, 0x0b, 0x26,
  15218. 0xbc, 0x39, 0x77, 0xce, 0x44, 0xc9, 0x4d, 0x94, 0xb9, 0x73, 0x26, 0x44, 0xe3, 0x98, 0x7e, 0xa1,
  15219. 0x2c, 0xa6, 0x85, 0x30, 0x73, 0x09, 0x25, 0x69, 0xd4, 0x63, 0xa5, 0xbd, 0xe2, 0x40, 0x4b, 0xa3,
  15220. 0x1e, 0xab, 0xcc, 0x81, 0x90, 0x33, 0x18, 0x2a, 0xb9, 0x16, 0x41, 0xa8, 0xbc, 0x68, 0x7c, 0x59,
  15221. 0x33, 0x9c, 0x8a, 0x7b, 0x40, 0xeb, 0x58, 0x59, 0xc4, 0x2a, 0x07, 0x4e, 0x64, 0x32, 0xbe, 0x27,
  15222. 0x52, 0x1e, 0xb1, 0xc6, 0x62, 0x4d, 0x7a, 0x99, 0x5d, 0xf3, 0xa2, 0xcf, 0x79, 0x7e, 0xd5, 0xfb,
  15223. 0x85, 0x55, 0x7f, 0x0e, 0xda, 0x62, 0xc7, 0x45, 0x86, 0xcb, 0x6b, 0xdc, 0x17, 0x06, 0x91, 0x5d,
  15224. 0xb3, 0xb1, 0x2d, 0xd6, 0x73, 0x8a, 0x9b, 0x45, 0x5f, 0xe4, 0x67, 0xcb, 0x7c, 0x91, 0xcb, 0x7d,
  15225. 0x89, 0x9f, 0x5b, 0xe2, 0x4b, 0x2c, 0x6e, 0xe7, 0xcf, 0xf3, 0x8e, 0x8a, 0xa6, 0x43, 0x24, 0xf1,
  15226. 0x49, 0x16, 0xff, 0x02, 0x3b, 0xa7, 0xe3, 0xff, 0x32, 0xc4, 0x65, 0xa7, 0xd6, 0x27, 0x06, 0xe2,
  15227. 0x7a, 0x05, 0xd6, 0x3c, 0x37, 0x24, 0x3c, 0xf3, 0xd6, 0x9b, 0x6f, 0x0e, 0x12, 0x7f, 0x16, 0x6f,
  15228. 0x7d, 0x89, 0x36, 0x65, 0xdf, 0x80, 0x3f, 0xf4, 0x67, 0xb1, 0xfd, 0x0d, 0xe8, 0x0b, 0x65, 0x86,
  15229. 0x9b, 0x60, 0xc9, 0xee, 0xde, 0x84, 0x55, 0xde, 0x07, 0x62, 0x64, 0x2b, 0x5f, 0xf6, 0x09, 0x74,
  15230. 0xf7, 0x4f, 0xe3, 0x44, 0x4d, 0x05, 0x17, 0xa5, 0xd2, 0x9b, 0x8a, 0x21, 0xbd, 0x39, 0xf3, 0x68,
  15231. 0x98, 0x86, 0xd4, 0x4c, 0xc0, 0x69, 0x43, 0xea, 0x3c, 0xe6, 0xaa, 0xe5, 0x31, 0x97, 0xfd, 0x9f,
  15232. 0x2b, 0x60, 0x49, 0xa3, 0xa6, 0xf2, 0xbc, 0xac, 0xfd, 0x77, 0xa1, 0x41, 0xd6, 0xeb, 0x42, 0x95,
  15233. 0xb4, 0xb7, 0x9f, 0x2f, 0xaa, 0x82, 0x8a, 0x48, 0xce, 0x59, 0xc5, 0x02, 0xbb, 0x9e, 0x75, 0x3d,
  15234. 0x43, 0xab, 0xd5, 0x32, 0xea, 0x28, 0x8f, 0x85, 0x73, 0x48, 0x37, 0xc1, 0xa5, 0x4d, 0x23, 0x52,
  15235. 0xd5, 0x9c, 0x26, 0x03, 0xd8, 0xa9, 0xca, 0x10, 0x65, 0xd4, 0x8b, 0xa2, 0x8c, 0x91, 0xf6, 0xc1,
  15236. 0x73, 0x13, 0xeb, 0x63, 0x78, 0x2a, 0x64, 0x6d, 0xec, 0x60, 0x1a, 0x1f, 0x8a, 0xe8, 0xd5, 0x24,
  15237. 0xb1, 0xcf, 0x1f, 0xca, 0x45, 0xa9, 0xe0, 0x41, 0x7c, 0xc8, 0x49, 0xd4, 0x48, 0x0c, 0x8d, 0x5b,
  15238. 0xf3, 0x53, 0x4d, 0x39, 0x1c, 0x86, 0xa1, 0x17, 0x1b, 0xee, 0x72, 0xf4, 0x2d, 0x36, 0x07, 0xf3,
  15239. 0xd3, 0x41, 0xe6, 0x3d, 0xb6, 0x3a, 0x9c, 0x9f, 0x7e, 0x30, 0x9f, 0x92, 0xaf, 0xfa, 0xfc, 0xd4,
  15240. 0xb4, 0x16, 0xc7, 0x8c, 0xfa, 0x4a, 0x89, 0xd4, 0x41, 0x26, 0xb7, 0xa8, 0x3a, 0x8d, 0x48, 0x1d,
  15241. 0xd0, 0x9a, 0x25, 0xd0, 0xde, 0x9f, 0x29, 0xa4, 0x7c, 0xf6, 0xc7, 0xe1, 0xa2, 0xb1, 0x78, 0x85,
  15242. 0x72, 0xe7, 0x8c, 0xc5, 0xaf, 0x00, 0x70, 0xdf, 0xcc, 0xc8, 0x74, 0x04, 0xa1, 0x1b, 0x96, 0x02,
  15243. 0xfa, 0x71, 0x0d, 0x26, 0xc7, 0xaa, 0xab, 0x65, 0x96, 0xf5, 0x6f, 0x56, 0xa0, 0x8d, 0xed, 0xe9,
  15244. 0xf1, 0xa6, 0x75, 0x1a, 0x1b, 0x85, 0xeb, 0x24, 0xd5, 0xee, 0x5b, 0xe2, 0x93, 0x29, 0xc4, 0xd2,
  15245. 0xe2, 0x6d, 0x2f, 0xf5, 0xb0, 0x4b, 0x26, 0xd5, 0x78, 0x8d, 0x87, 0x6c, 0xb0, 0x50, 0x79, 0x22,
  15246. 0xc6, 0x18, 0x34, 0x4d, 0x06, 0x31, 0x51, 0xbf, 0xbe, 0x02, 0x4d, 0x84, 0xec, 0x26, 0x6a, 0x7a,
  15247. 0xd6, 0x1a, 0x5c, 0x84, 0xfa, 0x2c, 0xf2, 0x47, 0xa9, 0xf8, 0x81, 0x3e, 0xb4, 0x90, 0x85, 0x53,
  15248. 0xf4, 0xfd, 0x39, 0x8f, 0xf6, 0x28, 0xf1, 0x59, 0x00, 0xcf, 0x8f, 0x67, 0x2a, 0x1a, 0xa9, 0x4c,
  15249. 0x69, 0x90, 0x41, 0xf0, 0x7c, 0x8f, 0xc3, 0x44, 0x22, 0xe6, 0xe1, 0x5f, 0x8a, 0x4e, 0xe8, 0x4f,
  15250. 0xfd, 0x84, 0xe7, 0x84, 0x6f, 0xc1, 0x16, 0x41, 0x68, 0x4e, 0x52, 0xfd, 0x0b, 0x14, 0xf4, 0x2f,
  15251. 0x23, 0x3f, 0x1a, 0x4d, 0x94, 0xf8, 0x94, 0xc8, 0x97, 0xf6, 0x9d, 0x4e, 0x32, 0x21, 0x7d, 0x95,
  15252. 0x7d, 0xa7, 0x13, 0xbd, 0x41, 0xd2, 0x53, 0xdd, 0xe3, 0x0d, 0xa2, 0xc9, 0x91, 0x67, 0x00, 0xc6,
  15253. 0xde, 0x80, 0xa7, 0xdf, 0xd3, 0x18, 0x7b, 0xec, 0xe1, 0x14, 0xed, 0x7a, 0xf6, 0xcf, 0xc8, 0x8c,
  15254. 0x69, 0xbe, 0xff, 0xac, 0x55, 0xdc, 0x5e, 0x5c, 0xc5, 0x42, 0xec, 0x2a, 0x99, 0x7a, 0x63, 0x19,
  15255. 0xdf, 0xe0, 0x4d, 0x4d, 0x45, 0xaa, 0x67, 0x2c, 0x3c, 0x6e, 0x75, 0x1d, 0x4f, 0x27, 0xb7, 0x81,
  15256. 0x6b, 0x8b, 0x1b, 0x78, 0x61, 0x87, 0xd6, 0x17, 0x77, 0x28, 0x1e, 0x33, 0x64, 0x63, 0xb5, 0xe4,
  15257. 0xa0, 0xea, 0xac, 0x7a, 0xee, 0xe9, 0x1d, 0x66, 0x42, 0x48, 0xb7, 0xab, 0xb9, 0xcb, 0xaa, 0xd3,
  15258. 0xc0, 0xef, 0x3b, 0x81, 0x67, 0xbf, 0xc3, 0x73, 0x41, 0xc7, 0xe0, 0x15, 0xa8, 0x2d, 0x75, 0xf2,
  15259. 0xd5, 0x13, 0xe6, 0x50, 0x16, 0xfb, 0x8f, 0xaa, 0xd0, 0xf9, 0xc8, 0x57, 0x8f, 0x53, 0xbe, 0xa1,
  15260. 0xe8, 0x45, 0x9d, 0x5a, 0x09, 0xad, 0x7c, 0x5e, 0x2b, 0x21, 0x2d, 0x7d, 0x40, 0x4a, 0xfb, 0x1c,
  15261. 0x49, 0x42, 0xa4, 0x7d, 0x94, 0x5f, 0x81, 0x1a, 0x65, 0xaf, 0x2d, 0x11, 0x56, 0x60, 0x26, 0x87,
  15262. 0xb2, 0x58, 0xdb, 0xd0, 0x10, 0xfa, 0xbf, 0x94, 0x51, 0x30, 0x7c, 0xfb, 0x1c, 0x9d, 0x31, 0xcf,
  15263. 0x99, 0xac, 0x7e, 0x71, 0xce, 0xe4, 0x73, 0xb9, 0x6f, 0x3d, 0x0d, 0x4d, 0xcf, 0x65, 0x23, 0x5d,
  15264. 0x4d, 0x6a, 0xea, 0xef, 0x02, 0xea, 0x6f, 0x15, 0xd5, 0x06, 0xb8, 0xa9, 0xc9, 0x2c, 0x9a, 0xae,
  15265. 0x4a, 0xd6, 0x11, 0xb4, 0x08, 0x42, 0x77, 0xe5, 0x1b, 0xd0, 0x4c, 0xf9, 0x90, 0xf6, 0x19, 0x7c,
  15266. 0x48, 0x63, 0xc6, 0x1c, 0x88, 0x3d, 0xe0, 0x4d, 0xb2, 0x13, 0x32, 0xd7, 0x1a, 0x8f, 0xc3, 0x9c,
  15267. 0x9f, 0x62, 0x13, 0x01, 0xda, 0x9d, 0x29, 0x52, 0x72, 0x96, 0x24, 0x70, 0x64, 0xa4, 0xf8, 0x24,
  15268. 0x91, 0x7b, 0x97, 0xe9, 0x93, 0xd8, 0x75, 0x30, 0x2f, 0xe3, 0xd6, 0x9f, 0x17, 0xbd, 0x05, 0xe1,
  15269. 0xf3, 0xd7, 0xa0, 0xe6, 0x33, 0x1f, 0xbb, 0xa8, 0xb2, 0x30, 0x10, 0xb0, 0x43, 0xb9, 0x90, 0x80,
  15270. 0x63, 0x2a, 0x2a, 0x7f, 0xc3, 0xb0, 0xbe, 0xf3, 0x16, 0x5f, 0x33, 0x6f, 0x42, 0x73, 0x14, 0x12,
  15271. 0x09, 0xa5, 0x1d, 0x33, 0x17, 0x37, 0x37, 0x0e, 0xce, 0x69, 0x60, 0x36, 0x47, 0xc5, 0xf6, 0x57,
  15272. 0xa0, 0xb3, 0x33, 0x8f, 0x48, 0x6b, 0xbc, 0xef, 0x1f, 0x92, 0x84, 0x87, 0x88, 0xb0, 0xd8, 0x3f,
  15273. 0x0c, 0xe4, 0x82, 0x69, 0x22, 0x00, 0x13, 0xed, 0x9f, 0x80, 0x55, 0xfc, 0x7d, 0x34, 0x23, 0x94,
  15274. 0xe5, 0x1f, 0x06, 0x79, 0xfd, 0x33, 0x42, 0x58, 0xff, 0xfc, 0x14, 0x34, 0x10, 0xdb, 0x7a, 0xee,
  15275. 0xa9, 0xbe, 0x07, 0x47, 0xf3, 0xe8, 0xb6, 0x7b, 0x6a, 0x7d, 0x0b, 0xba, 0x24, 0xeb, 0xc6, 0xb2,
  15276. 0x82, 0x37, 0x16, 0x4d, 0x2f, 0xcc, 0x0e, 0x39, 0xed, 0xd1, 0x3c, 0xc2, 0x3f, 0xc4, 0xc6, 0xff,
  15277. 0x66, 0x8d, 0xed, 0x65, 0x6e, 0x8e, 0x12, 0xff, 0xd8, 0x4f, 0x4e, 0xad, 0x37, 0xa1, 0x95, 0xd5,
  15278. 0xc5, 0xf2, 0x80, 0x0b, 0xf9, 0x11, 0x53, 0x7f, 0x9d, 0x66, 0x2c, 0x55, 0x58, 0x5f, 0x66, 0x57,
  15279. 0x09, 0xc1, 0x1f, 0x26, 0x97, 0xd7, 0xe5, 0x3e, 0x6a, 0x25, 0xc6, 0x87, 0x60, 0xb9, 0xd2, 0x8c,
  15280. 0xc1, 0x34, 0xf3, 0xac, 0xbe, 0x90, 0xd7, 0xe7, 0x71, 0x36, 0x5f, 0xc5, 0x46, 0x64, 0x8d, 0x35,
  15281. 0x5d, 0x38, 0x65, 0xa2, 0x5f, 0x85, 0x75, 0x16, 0x9e, 0x99, 0xe4, 0x2d, 0xd3, 0x3a, 0x7d, 0x4a,
  15282. 0xd8, 0xc9, 0xa8, 0xdb, 0x77, 0xe1, 0x52, 0x2e, 0x6f, 0xce, 0xf5, 0x87, 0x51, 0xe2, 0xa6, 0x51,
  15283. 0xc6, 0xc9, 0xfc, 0x41, 0xac, 0x8f, 0xc1, 0x92, 0x28, 0x01, 0x52, 0xd6, 0x38, 0xcc, 0xaf, 0x2c,
  15284. 0xe9, 0xf7, 0x23, 0x2a, 0xa0, 0xe9, 0x6b, 0xee, 0x3f, 0x57, 0xc2, 0xf5, 0x53, 0xff, 0x3f, 0x80,
  15285. 0xcd, 0x7c, 0xc5, 0x63, 0x37, 0x36, 0x5d, 0x57, 0xce, 0xb2, 0x07, 0x36, 0x2b, 0xbb, 0xe7, 0xea,
  15286. 0x80, 0x4f, 0x1b, 0xac, 0x36, 0xf4, 0x06, 0xe9, 0x44, 0x1b, 0xda, 0xc1, 0x0b, 0x92, 0xa8, 0xd7,
  15287. 0x9a, 0xca, 0x7c, 0x13, 0x3a, 0xee, 0x28, 0x21, 0xda, 0xce, 0x88, 0x83, 0x98, 0x0f, 0x00, 0x90,
  15288. 0x23, 0xb0, 0x1d, 0x70, 0x47, 0xc9, 0x83, 0xf8, 0x90, 0x8e, 0xf7, 0xef, 0x37, 0xe0, 0x62, 0xd9,
  15289. 0x62, 0x51, 0x00, 0xc8, 0x14, 0x9e, 0xd1, 0x14, 0x9d, 0x0c, 0xb8, 0x4b, 0xae, 0x5a, 0x46, 0x26,
  15290. 0xe3, 0xe8, 0xf7, 0x32, 0xb0, 0x36, 0x76, 0x33, 0xee, 0xf3, 0xaa, 0x48, 0x39, 0x4b, 0xef, 0x73,
  15291. 0x5e, 0xfe, 0xf4, 0x3e, 0x37, 0xce, 0x4d, 0x3d, 0x77, 0x6e, 0xee, 0xc0, 0x3a, 0x87, 0x38, 0x33,
  15292. 0xd5, 0xba, 0xe7, 0x22, 0xe8, 0x3e, 0x95, 0x31, 0x82, 0x94, 0x7d, 0x17, 0x7a, 0x07, 0x61, 0x94,
  15293. 0x04, 0xc4, 0x0e, 0x79, 0xee, 0x69, 0x2c, 0x98, 0xfa, 0xc5, 0x25, 0xfb, 0xe2, 0xae, 0xce, 0x7c,
  15294. 0xdb, 0x3d, 0x8d, 0x9d, 0xee, 0x81, 0xf9, 0x99, 0xe1, 0x66, 0x1a, 0x89, 0x48, 0xe0, 0x09, 0xa2,
  15295. 0x95, 0x23, 0xb9, 0x5d, 0xdb, 0x32, 0xad, 0x3f, 0x78, 0xab, 0x7e, 0x00, 0x7d, 0x89, 0x0c, 0x90,
  15296. 0xba, 0x4d, 0x41, 0x49, 0xf4, 0x9a, 0xac, 0x3f, 0x3b, 0x69, 0x6e, 0x8e, 0xb6, 0x92, 0x95, 0x96,
  15297. 0x1d, 0xda, 0x9f, 0xf8, 0x47, 0xee, 0xd0, 0x9f, 0xe8, 0x43, 0x2b, 0x11, 0xc1, 0x96, 0xd5, 0x77,
  15298. 0x3f, 0xcd, 0xcd, 0xf5, 0x4d, 0x72, 0xdf, 0x78, 0x43, 0x1f, 0xf9, 0xc1, 0x21, 0x99, 0x8a, 0x89,
  15299. 0x03, 0xd2, 0x32, 0x4b, 0x3a, 0xcc, 0x47, 0xd6, 0x77, 0x5f, 0x86, 0x3e, 0x71, 0x9b, 0x5c, 0x0e,
  15300. 0x39, 0x18, 0xa2, 0xe8, 0xba, 0x4e, 0x4f, 0x83, 0x1f, 0x12, 0xd4, 0xfa, 0x36, 0x74, 0xd5, 0x89,
  15301. 0xc8, 0xbb, 0x96, 0x46, 0xcb, 0xbc, 0x23, 0x39, 0x58, 0x26, 0xa7, 0xf3, 0xd3, 0x60, 0xbf, 0x05,
  15302. 0xf0, 0x78, 0xac, 0xd4, 0x84, 0xc7, 0xc9, 0x8e, 0x47, 0xcf, 0x96, 0x8d, 0xf3, 0xf4, 0x63, 0xcc,
  15303. 0xc6, 0x91, 0x61, 0x1e, 0xeb, 0xbf, 0x14, 0x98, 0x18, 0x31, 0x27, 0x95, 0x5e, 0x2b, 0x71, 0x5b,
  15304. 0xd0, 0xa5, 0x19, 0xf9, 0x32, 0x06, 0xa5, 0x92, 0x3b, 0xd0, 0x1b, 0x26, 0x83, 0x28, 0x1c, 0x85,
  15305. 0xbe, 0x14, 0xbf, 0x58, 0xe2, 0xb5, 0xa0, 0x8b, 0xdf, 0x7a, 0xe8, 0x7c, 0xb8, 0x13, 0xfa, 0x81,
  15306. 0xd3, 0x19, 0x26, 0x0e, 0x95, 0xa1, 0x4a, 0x3e, 0x86, 0x2b, 0x12, 0x78, 0xea, 0x53, 0xdf, 0x35,
  15307. 0x58, 0xfe, 0xd4, 0x70, 0x71, 0xe3, 0xac, 0xe9, 0xbe, 0xc4, 0x81, 0xa9, 0x3e, 0xf5, 0xdd, 0x54,
  15308. 0x26, 0xa0, 0x2d, 0x2a, 0x7f, 0xa3, 0x02, 0x6b, 0xc5, 0xb6, 0xad, 0x6f, 0x41, 0xdf, 0x30, 0x1c,
  15309. 0x3c, 0xdf, 0x30, 0xb2, 0x9b, 0xda, 0x0c, 0x0a, 0x79, 0xd3, 0xcb, 0x4c, 0x06, 0xcf, 0x37, 0xef,
  15310. 0xec, 0x68, 0x6b, 0x41, 0x21, 0x36, 0xd7, 0xa9, 0x70, 0xee, 0xc6, 0x61, 0xa4, 0x40, 0xb5, 0x66,
  15311. 0x57, 0x8e, 0xbd, 0x0f, 0xbd, 0xfc, 0xac, 0xa7, 0x5a, 0x67, 0x5a, 0x2a, 0xc3, 0x33, 0x87, 0xb4,
  15312. 0xce, 0x98, 0x27, 0xd5, 0x6b, 0xf3, 0x5a, 0x9e, 0xa6, 0x1e, 0xd1, 0xbc, 0x5c, 0xa7, 0xb1, 0xfd,
  15313. 0x3b, 0x2b, 0xb0, 0xbe, 0xb0, 0x13, 0xac, 0x47, 0xb0, 0xc9, 0xbb, 0x47, 0x2b, 0xea, 0x0b, 0x61,
  15314. 0x75, 0xf2, 0x7c, 0x32, 0x95, 0x13, 0x15, 0xbd, 0x50, 0xff, 0xce, 0x85, 0xc7, 0x79, 0xa0, 0x26,
  15315. 0xc8, 0xb8, 0xda, 0x70, 0xa6, 0x02, 0xed, 0x60, 0x4c, 0x90, 0x0f, 0x67, 0x2a, 0xc0, 0x2b, 0x50,
  15316. 0xb7, 0xca, 0x34, 0x7e, 0xe6, 0xb2, 0xd9, 0x97, 0xea, 0x08, 0x2e, 0xce, 0x71, 0x89, 0x9a, 0xce,
  15317. 0x26, 0x6e, 0xa2, 0x0c, 0x1b, 0xfd, 0xb6, 0x86, 0xed, 0x7a, 0x27, 0x64, 0x0a, 0x46, 0xd5, 0x61,
  15318. 0x35, 0xda, 0x14, 0x0c, 0x01, 0x58, 0x3e, 0x4d, 0xc4, 0xc2, 0xab, 0x46, 0x22, 0x96, 0x7c, 0x1b,
  15319. 0x9a, 0x93, 0xf0, 0x70, 0xf9, 0xed, 0x45, 0x03, 0xbe, 0x1f, 0x1e, 0x32, 0x79, 0x38, 0x09, 0xf9,
  15320. 0xfe, 0xb8, 0x09, 0x1d, 0xf3, 0x40, 0x2e, 0xd8, 0xe9, 0xbc, 0x00, 0xe9, 0x11, 0x35, 0x29, 0x34,
  15321. 0x0d, 0xfb, 0x60, 0x3e, 0xb5, 0xfd, 0xac, 0x0a, 0xcd, 0x12, 0xa5, 0xf6, 0xb4, 0x46, 0xe8, 0xd2,
  15322. 0x14, 0x46, 0x32, 0x95, 0x16, 0x11, 0x75, 0xb8, 0x44, 0xe7, 0x87, 0xfb, 0x21, 0x02, 0x10, 0xd7,
  15323. 0xc3, 0x1e, 0xa4, 0xbb, 0x09, 0x2f, 0xbb, 0xb2, 0xfe, 0x6a, 0xe1, 0xcf, 0x8a, 0x21, 0xfc, 0x31,
  15324. 0x6f, 0xa7, 0x6a, 0xfe, 0x76, 0xea, 0xc1, 0xca, 0xf0, 0x90, 0xd6, 0xa1, 0xe5, 0xac, 0x0c, 0x0f,
  15325. 0xed, 0xbf, 0x5d, 0x81, 0xa7, 0x96, 0xdc, 0x15, 0x24, 0xd9, 0xcc, 0x0c, 0x6c, 0x85, 0x40, 0x4c,
  15326. 0x52, 0x0b, 0xda, 0x57, 0x61, 0x3d, 0x4b, 0xce, 0x94, 0xd1, 0x6c, 0xb6, 0xa9, 0x73, 0x89, 0x56,
  15327. 0x32, 0x67, 0xcf, 0x5c, 0x7d, 0x32, 0xbb, 0xea, 0x1f, 0x87, 0x67, 0xce, 0xa2, 0x6e, 0x9e, 0xec,
  15328. 0xc2, 0xcf, 0xdf, 0xe3, 0x2b, 0x67, 0xdd, 0xe3, 0xf9, 0x99, 0xb2, 0x0f, 0x60, 0x6b, 0xd9, 0xa5,
  15329. 0xb5, 0xb0, 0x08, 0x99, 0xb5, 0x4f, 0xb6, 0x65, 0xc4, 0xda, 0x47, 0xb6, 0x71, 0x10, 0x0e, 0x82,
  15330. 0x30, 0xd1, 0x22, 0x8d, 0xa6, 0xd3, 0x0c, 0xc2, 0x0f, 0xe8, 0xdb, 0xbe, 0x6b, 0xb6, 0x93, 0xbf,
  15331. 0xcc, 0x96, 0x44, 0xbc, 0xbf, 0x08, 0x75, 0x36, 0xa4, 0xd1, 0x21, 0xc9, 0xf1, 0xc3, 0x9e, 0x40,
  15332. 0x9f, 0x95, 0x66, 0x0f, 0xc3, 0xc7, 0xe2, 0xee, 0x53, 0x90, 0x5d, 0x57, 0x16, 0x64, 0xd7, 0x37,
  15333. 0xa0, 0x8e, 0x54, 0xb7, 0x76, 0x2e, 0x78, 0x22, 0xc6, 0x97, 0x0a, 0x68, 0x4b, 0x56, 0x6a, 0xeb,
  15334. 0xcf, 0xd8, 0x92, 0xf5, 0x8f, 0x25, 0x1a, 0xd5, 0x43, 0x6d, 0x76, 0x1c, 0x84, 0x8f, 0x07, 0x8b,
  15335. 0xe3, 0xec, 0x06, 0xe1, 0xe3, 0x87, 0xd9, 0x50, 0x11, 0x0b, 0xa7, 0xf9, 0x8c, 0xd8, 0xc1, 0x1d,
  15336. 0x9d, 0x8d, 0xf6, 0x83, 0x36, 0x75, 0x4c, 0x52, 0x7b, 0xe0, 0x32, 0x53, 0x47, 0xca, 0xcf, 0x23,
  15337. 0x4c, 0x3b, 0x11, 0x9f, 0xa6, 0xc1, 0x67, 0x0d, 0xaa, 0xb0, 0x1b, 0x9f, 0x4a, 0x80, 0x59, 0xaa,
  15338. 0xfe, 0x9b, 0x70, 0xd9, 0xe8, 0xe8, 0x20, 0xd3, 0xe3, 0x9b, 0x26, 0x4f, 0x4f, 0x65, 0x0b, 0x74,
  15339. 0x5b, 0xab, 0xf5, 0x69, 0x47, 0xde, 0x83, 0x8e, 0xa3, 0x0e, 0xe6, 0xb1, 0xf2, 0x6e, 0xce, 0x66,
  15340. 0x13, 0x1d, 0xe4, 0x75, 0x92, 0xba, 0x59, 0xd4, 0x28, 0xc8, 0xeb, 0x44, 0x62, 0x58, 0xb9, 0x98,
  15341. 0xc7, 0x1c, 0x69, 0x8b, 0x20, 0x54, 0xd3, 0x6d, 0x68, 0xde, 0x76, 0x4f, 0xff, 0xb4, 0xb5, 0xfc,
  15342. 0x52, 0x05, 0x7a, 0x34, 0xfe, 0x4c, 0x47, 0xb4, 0x03, 0xed, 0x51, 0xc8, 0x9e, 0x3a, 0x19, 0x37,
  15343. 0xf7, 0x24, 0xdb, 0x0a, 0xb8, 0x98, 0xde, 0xb6, 0xa2, 0x10, 0x49, 0xdb, 0xad, 0x3b, 0xe2, 0xfd,
  15344. 0xad, 0x03, 0xa3, 0x4a, 0x06, 0x1d, 0xd5, 0x59, 0xfb, 0x04, 0x11, 0x54, 0xe2, 0x3a, 0xdb, 0xdf,
  15345. 0x87, 0x9e, 0xa3, 0xb0, 0x5e, 0x15, 0x78, 0xe4, 0x5d, 0x7d, 0xd6, 0x58, 0xcb, 0x83, 0x42, 0x3c,
  15346. 0x07, 0x6d, 0x42, 0x27, 0x46, 0x90, 0x90, 0x2a, 0xb1, 0x23, 0xfe, 0xb1, 0xd2, 0x2f, 0xa7, 0xf0,
  15347. 0x97, 0xb8, 0xf7, 0xc8, 0x17, 0x5e, 0x33, 0x69, 0xdb, 0xfb, 0x2a, 0xb1, 0xde, 0x82, 0x3a, 0xb5,
  15348. 0x54, 0x6a, 0x25, 0x92, 0xef, 0xa5, 0xc3, 0x39, 0xed, 0x1f, 0x82, 0xf6, 0x03, 0x35, 0x1d, 0xca,
  15349. 0x2c, 0x95, 0x28, 0x28, 0x5e, 0x80, 0x8e, 0x16, 0x94, 0x1b, 0x0b, 0xd4, 0x16, 0x98, 0x36, 0xe4,
  15350. 0x64, 0x9b, 0x4c, 0x11, 0xa4, 0xd2, 0x87, 0xfd, 0xd7, 0x2b, 0xd0, 0xa7, 0xa6, 0x10, 0x05, 0x1d,
  15351. 0x30, 0xaa, 0xf9, 0xaa, 0x96, 0x81, 0x95, 0x69, 0xe4, 0x29, 0x33, 0x75, 0x43, 0x0b, 0xbe, 0x2e,
  15352. 0x43, 0x6b, 0xaa, 0xa6, 0xf9, 0x88, 0x7c, 0x53, 0x35, 0x65, 0xd9, 0x1e, 0xeb, 0xe5, 0x69, 0xa3,
  15353. 0x08, 0xba, 0x6b, 0xf8, 0x31, 0xef, 0xb6, 0x0d, 0x58, 0x1d, 0xcd, 0xd2, 0xd0, 0x0d, 0x4d, 0xa7,
  15354. 0x3e, 0x9a, 0xf1, 0x95, 0x0a, 0x3c, 0x56, 0x7d, 0xa1, 0x8a, 0x6f, 0x06, 0x4f, 0x2d, 0xfb, 0x02,
  15355. 0xb0, 0x94, 0x84, 0x70, 0xa5, 0xfa, 0xe2, 0x22, 0x3b, 0xfb, 0xa7, 0x2a, 0x60, 0xf1, 0x78, 0xc2,
  15356. 0x38, 0x46, 0xf2, 0x40, 0x25, 0x6c, 0x96, 0xd0, 0x62, 0x0d, 0xd3, 0x24, 0x3c, 0x94, 0x39, 0x78,
  15357. 0x7a, 0x71, 0x0e, 0x48, 0xdd, 0x74, 0x3f, 0x3c, 0x74, 0x9a, 0x07, 0xf2, 0xcf, 0xba, 0x2e, 0x12,
  15358. 0xa0, 0x27, 0xef, 0x08, 0xe5, 0xb7, 0x8f, 0xa0, 0x9b, 0x76, 0x43, 0x7b, 0x81, 0x69, 0x1f, 0x38,
  15359. 0xf1, 0x02, 0x13, 0x1f, 0xb8, 0x2b, 0xc0, 0x4a, 0xcd, 0xdc, 0x1d, 0x46, 0x10, 0x1d, 0x04, 0x97,
  15360. 0x93, 0x47, 0xb9, 0x8b, 0x8c, 0x75, 0xa3, 0x3b, 0x8c, 0x3a, 0xfe, 0x65, 0x05, 0x9a, 0xd4, 0x1a,
  15361. 0xf6, 0xf8, 0x12, 0x34, 0xc3, 0xd9, 0x80, 0xf7, 0x85, 0x08, 0xde, 0xc3, 0xd9, 0x43, 0xb2, 0xd6,
  15362. 0xa5, 0xb7, 0x89, 0x4c, 0xa5, 0xd5, 0x6a, 0x38, 0x23, 0x31, 0xdc, 0xb3, 0xd0, 0x1e, 0xaa, 0x41,
  15363. 0x5a, 0x4c, 0xc2, 0xde, 0x0d, 0xd5, 0x87, 0x52, 0xf0, 0x19, 0x00, 0x4e, 0xa7, 0xb2, 0x4c, 0x5f,
  15364. 0x34, 0x31, 0x99, 0x4a, 0x53, 0xac, 0x19, 0x15, 0x24, 0xa6, 0x63, 0x59, 0x8b, 0x20, 0x9a, 0xd9,
  15365. 0x96, 0xe4, 0xcc, 0x1c, 0x59, 0x92, 0xb1, 0xf3, 0x37, 0xa1, 0xad, 0xfb, 0x8e, 0x47, 0x69, 0x1b,
  15366. 0x58, 0x3c, 0x28, 0x2b, 0xb5, 0x48, 0x4b, 0xe8, 0xcc, 0x0e, 0x1f, 0xf6, 0xfb, 0xe1, 0xa1, 0xfd,
  15367. 0xef, 0x2a, 0x52, 0x07, 0xef, 0x32, 0xd9, 0xbe, 0x43, 0x15, 0x65, 0x98, 0xa0, 0xc9, 0x00, 0x46,
  15368. 0x05, 0x3c, 0xca, 0x15, 0xe3, 0xd0, 0x2c, 0x9c, 0xb6, 0xea, 0xe2, 0x69, 0xfb, 0x66, 0x8a, 0x2d,
  15369. 0x68, 0x47, 0xd4, 0xce, 0xb7, 0x57, 0x12, 0x54, 0xa2, 0x5d, 0xc0, 0x5d, 0xcf, 0x93, 0x18, 0x11,
  15370. 0xe6, 0x53, 0x4d, 0xae, 0xc7, 0x88, 0x81, 0x26, 0xe3, 0x9f, 0x55, 0xf4, 0x51, 0xa1, 0x4d, 0xb3,
  15371. 0x01, 0xab, 0xb3, 0x48, 0x65, 0xa3, 0xa8, 0xcf, 0x22, 0xb5, 0x4b, 0xfe, 0xd0, 0xc7, 0xfe, 0x48,
  15372. 0x0d, 0x24, 0x8d, 0x0d, 0x76, 0x5a, 0x08, 0xda, 0xa3, 0xf4, 0x77, 0xa1, 0xad, 0xc7, 0x9f, 0x49,
  15373. 0xfe, 0xb7, 0x16, 0x67, 0x91, 0x5b, 0x72, 0x60, 0x9a, 0x1d, 0xce, 0xcb, 0xc8, 0x50, 0x8f, 0x8e,
  15374. 0x72, 0x1a, 0x4a, 0x04, 0x68, 0x7a, 0x8a, 0x12, 0x33, 0x62, 0xbe, 0x81, 0xdf, 0x78, 0xc4, 0x7f,
  15375. 0xad, 0x02, 0x90, 0xe1, 0x91, 0x73, 0xae, 0x1d, 0x43, 0x22, 0xbc, 0x52, 0x94, 0x08, 0x3f, 0x07,
  15376. 0x6d, 0x4e, 0x1e, 0xba, 0xde, 0xa1, 0xde, 0x8a, 0x5c, 0xe2, 0x16, 0x42, 0xb2, 0x0c, 0x66, 0x68,
  15377. 0x23, 0xce, 0xc0, 0xb4, 0xc0, 0x0b, 0xd0, 0xe1, 0x0c, 0x82, 0x5f, 0xea, 0x8c, 0x5f, 0x08, 0xc6,
  15378. 0xf8, 0xc5, 0xfe, 0x87, 0x2b, 0xd0, 0xe2, 0xde, 0xba, 0x31, 0x62, 0x1b, 0xdd, 0xe4, 0x93, 0xa0,
  15379. 0x48, 0xe9, 0x0b, 0x0d, 0x53, 0xac, 0xf5, 0xa4, 0x21, 0x26, 0xd8, 0x5a, 0x9e, 0x7b, 0x2a, 0x68,
  15380. 0xec, 0xb2, 0xde, 0xcb, 0xea, 0x44, 0x47, 0x4d, 0xe5, 0x69, 0xb9, 0x73, 0x32, 0x2b, 0x5e, 0x3e,
  15381. 0xb5, 0x85, 0xcb, 0x87, 0xc4, 0x33, 0xa3, 0x68, 0xee, 0xe7, 0x0e, 0x56, 0x5b, 0x60, 0x74, 0xb4,
  15382. 0x48, 0x17, 0xc3, 0x59, 0x72, 0xcf, 0xa2, 0x08, 0x30, 0x8d, 0x02, 0x27, 0xc4, 0x69, 0x83, 0x0f,
  15383. 0x3d, 0x7f, 0xe1, 0x3d, 0xab, 0x0b, 0x4b, 0x7a, 0x93, 0xd2, 0x75, 0x95, 0x42, 0xc1, 0x7e, 0x04,
  15384. 0xed, 0xdb, 0x6a, 0x8a, 0xa4, 0xf1, 0xd4, 0x3d, 0x54, 0xe5, 0x9a, 0x74, 0x8f, 0xd2, 0x04, 0x79,
  15385. 0xc9, 0x57, 0x01, 0xb1, 0x55, 0x0b, 0x88, 0xcd, 0xfe, 0x75, 0xbd, 0x63, 0xa8, 0x76, 0x6d, 0xb3,
  15386. 0xee, 0xa9, 0xa9, 0xc9, 0x66, 0xc1, 0x68, 0x1e, 0x51, 0xfa, 0xae, 0x97, 0xdd, 0x1b, 0xb9, 0xd6,
  15387. 0xf8, 0xde, 0x90, 0xce, 0xbd, 0x0b, 0x6d, 0x4e, 0x34, 0x59, 0x91, 0xfc, 0xc6, 0x37, 0xc6, 0xe2,
  15388. 0x00, 0x67, 0x26, 0xbe, 0xb8, 0x4c, 0xf3, 0x55, 0xcb, 0x69, 0xbe, 0xec, 0x9f, 0x90, 0x7b, 0xf5,
  15389. 0x66, 0x76, 0xaa, 0x5f, 0x80, 0x8e, 0x2c, 0x22, 0x7b, 0x0c, 0xcb, 0x5d, 0xc6, 0x30, 0x42, 0x05,
  15390. 0x14, 0x88, 0x35, 0xdd, 0x23, 0x03, 0xd3, 0xb1, 0xb8, 0x97, 0xee, 0x14, 0xce, 0x79, 0x1e, 0x39,
  15391. 0x62, 0x9f, 0x70, 0x5c, 0x58, 0xba, 0x6b, 0xa9, 0xf9, 0x6d, 0x0e, 0xb4, 0xc6, 0x77, 0x71, 0x19,
  15392. 0xb2, 0xd4, 0x74, 0x20, 0xc5, 0x5f, 0xe3, 0x3b, 0xfa, 0x1a, 0x34, 0x22, 0xa6, 0x33, 0x4b, 0x59,
  15393. 0x55, 0x93, 0x06, 0x75, 0x74, 0x4e, 0x3b, 0x84, 0xf5, 0xf4, 0x3a, 0x7b, 0xa8, 0xd1, 0xc1, 0x26,
  15394. 0xc8, 0x1d, 0x56, 0xb8, 0xd1, 0x52, 0xcb, 0x1d, 0x93, 0x7e, 0xe0, 0xbd, 0x60, 0xb8, 0x9d, 0x19,
  15395. 0x73, 0x5d, 0x2d, 0x9b, 0xeb, 0xb6, 0x1c, 0xd0, 0x44, 0xd0, 0x73, 0x2e, 0xa8, 0x4a, 0x65, 0x31,
  15396. 0xa8, 0xca, 0x55, 0x58, 0x9b, 0x1e, 0xcf, 0x06, 0xb9, 0x6c, 0x32, 0xcf, 0xd3, 0xe3, 0x99, 0x63,
  15397. 0xe4, 0x5c, 0x88, 0x33, 0x55, 0x5d, 0x8c, 0x33, 0x65, 0xff, 0x6c, 0x05, 0xd6, 0xb2, 0xed, 0x29,
  15398. 0x8c, 0x6e, 0x71, 0x0b, 0x56, 0x16, 0xb7, 0xe0, 0x25, 0x68, 0xa6, 0x7b, 0x58, 0xf4, 0x4e, 0x9e,
  15399. 0x6c, 0xe0, 0x2f, 0xbe, 0x3b, 0xed, 0xdf, 0xad, 0x40, 0x8b, 0xcf, 0x01, 0x2e, 0xfb, 0x55, 0x58,
  15400. 0xa3, 0x20, 0x71, 0xe6, 0x2c, 0x8b, 0x83, 0x1f, 0xc2, 0xef, 0x66, 0x33, 0xfd, 0x32, 0xf4, 0x87,
  15401. 0xf3, 0xd3, 0xc1, 0xe2, 0x72, 0x74, 0x87, 0xf3, 0xd3, 0x7c, 0xbe, 0x79, 0x9c, 0xaf, 0x50, 0x88,
  15402. 0xee, 0x79, 0x6c, 0xd6, 0x77, 0xfe, 0x29, 0x49, 0x1f, 0xfc, 0x30, 0xce, 0x7e, 0x3d, 0x7b, 0xf0,
  15403. 0xe3, 0x6e, 0x7a, 0xfe, 0xff, 0x53, 0x95, 0x19, 0xbd, 0x73, 0x69, 0xf7, 0xf7, 0x0a, 0xf8, 0x7c,
  15404. 0xa5, 0xc4, 0x6c, 0xa5, 0x70, 0x2e, 0x73, 0xd8, 0xde, 0xfa, 0x86, 0xc6, 0xef, 0x19, 0xcd, 0x5a,
  15405. 0x16, 0x92, 0x38, 0x3d, 0x56, 0x82, 0xe2, 0x53, 0x06, 0xea, 0x33, 0x42, 0x91, 0x69, 0x3c, 0xb2,
  15406. 0x06, 0x7e, 0x6b, 0xc6, 0x5f, 0x9d, 0x24, 0x83, 0x4f, 0x43, 0xb1, 0x9f, 0xaf, 0x3a, 0x4d, 0x04,
  15407. 0xbc, 0xcf, 0x02, 0x4d, 0x20, 0x7a, 0x8f, 0xe3, 0x3d, 0xb0, 0x22, 0xe0, 0xd9, 0x92, 0x3b, 0xc5,
  15408. 0x38, 0x50, 0x0e, 0x05, 0xfe, 0xe2, 0x88, 0x10, 0xf9, 0x5b, 0xb2, 0x51, 0xbc, 0x25, 0x6d, 0xe8,
  15409. 0xaa, 0x89, 0x9f, 0x28, 0x89, 0x99, 0xaa, 0xcd, 0xeb, 0xdb, 0x04, 0xa4, 0xf0, 0x1b, 0x9e, 0xf5,
  15410. 0x0d, 0x3d, 0x6f, 0x12, 0xaf, 0xa7, 0x55, 0xa2, 0xf2, 0x35, 0xce, 0x98, 0xcc, 0x99, 0x1c, 0xb8,
  15411. 0x77, 0x00, 0x64, 0x1b, 0x67, 0x41, 0x6f, 0x36, 0x17, 0xb7, 0x2a, 0x5b, 0xd5, 0x7a, 0xfa, 0xaf,
  15412. 0xfd, 0xb2, 0xdc, 0xab, 0xbb, 0x9e, 0x3a, 0x39, 0x63, 0x4d, 0x91, 0x4c, 0xef, 0x3a, 0x5a, 0x84,
  15413. 0xa0, 0xe9, 0x63, 0xe2, 0xcd, 0x33, 0x1f, 0x65, 0xfc, 0x3c, 0x5f, 0xc6, 0x73, 0x05, 0x60, 0x34,
  15414. 0x09, 0xe3, 0x5c, 0x9c, 0xc7, 0x16, 0x41, 0x74, 0xb2, 0x11, 0x78, 0x4a, 0x42, 0x22, 0x44, 0x3a,
  15415. 0xd2, 0x94, 0xfd, 0xcb, 0x15, 0x68, 0x62, 0x3f, 0xce, 0xed, 0x42, 0x24, 0xef, 0xce, 0x1d, 0xaa,
  15416. 0x54, 0x00, 0xc4, 0x8f, 0xce, 0x31, 0x45, 0x62, 0x2a, 0x7d, 0xd8, 0x42, 0xda, 0x74, 0xd8, 0x7b,
  15417. 0x17, 0x80, 0xf0, 0x11, 0xcb, 0xe2, 0x6b, 0x65, 0x21, 0xb1, 0xcd, 0xb9, 0x70, 0x5a, 0x91, 0xfe,
  15418. 0x6b, 0xff, 0x90, 0xf0, 0x11, 0x9a, 0x35, 0x29, 0xb9, 0x7f, 0xcf, 0x61, 0x20, 0xb2, 0xeb, 0x99,
  15419. 0x29, 0x10, 0xf9, 0xb2, 0xaf, 0xcb, 0xf5, 0xcb, 0xfb, 0xed, 0xbc, 0x6b, 0x3d, 0x2b, 0xf7, 0x9b,
  15420. 0x15, 0x83, 0xb5, 0x21, 0x74, 0xf4, 0x26, 0x34, 0xa6, 0xee, 0x09, 0xe2, 0xc4, 0xe5, 0xb4, 0x13,
  15421. 0x9b, 0x76, 0xaf, 0x4e, 0xdd, 0x93, 0xdb, 0xee, 0x34, 0xcf, 0x8e, 0x95, 0x85, 0x08, 0x5f, 0xc6,
  15422. 0x8e, 0x9d, 0x7f, 0x73, 0x90, 0xb9, 0x3a, 0xc5, 0x0a, 0x21, 0x9d, 0x96, 0x44, 0xbe, 0xa4, 0x28,
  15423. 0x21, 0x14, 0xc8, 0xe2, 0x47, 0x34, 0xe5, 0x17, 0xc6, 0xf1, 0x59, 0x58, 0xe7, 0x1d, 0xc0, 0x2b,
  15424. 0x93, 0xce, 0xd7, 0xf2, 0x1e, 0xea, 0x29, 0x70, 0x1a, 0x9e, 0x7b, 0x8a, 0x1f, 0xf6, 0x5b, 0xfc,
  15425. 0xa8, 0x01, 0xe2, 0x0e, 0xf7, 0x54, 0xbf, 0xb8, 0xc4, 0x62, 0x96, 0x4c, 0x42, 0x50, 0x73, 0x58,
  15426. 0xf2, 0x42, 0x75, 0xd8, 0xdb, 0x9a, 0xac, 0xf8, 0x1c, 0x65, 0xfe, 0x60, 0x05, 0x2e, 0x18, 0x67,
  15427. 0x77, 0x5f, 0x4d, 0x0e, 0x96, 0xf8, 0x58, 0x98, 0x43, 0x5c, 0xc9, 0x0f, 0xf1, 0x49, 0xee, 0x41,
  15428. 0xeb, 0x3a, 0xb4, 0xb2, 0xa8, 0x80, 0xe7, 0x9b, 0xc2, 0x0f, 0x75, 0x90, 0x40, 0x8a, 0xaf, 0x3a,
  15429. 0x0c, 0xa3, 0x20, 0x53, 0xa9, 0xc8, 0x35, 0xc0, 0x60, 0xad, 0xc4, 0x7f, 0x09, 0x7a, 0xee, 0x3c,
  15430. 0x09, 0x33, 0x6f, 0x6c, 0xa2, 0x61, 0x9b, 0x4e, 0x17, 0xa1, 0xa9, 0x1b, 0x36, 0xcd, 0x08, 0x66,
  15431. 0xe3, 0xc2, 0x62, 0xe8, 0x05, 0x08, 0x72, 0x08, 0x82, 0x87, 0xf7, 0xb1, 0xcf, 0x11, 0x26, 0xd9,
  15432. 0x44, 0x65, 0xf5, 0xb1, 0x1f, 0x68, 0x2d, 0x03, 0xbb, 0x8c, 0xa7, 0xfe, 0xe0, 0x4d, 0xf6, 0x18,
  15433. 0x77, 0x8f, 0x32, 0x0a, 0x7d, 0x16, 0x29, 0x09, 0xca, 0xc3, 0xd3, 0xb5, 0x17, 0x29, 0xfb, 0x37,
  15434. 0x56, 0x64, 0x65, 0xf6, 0x28, 0xd8, 0xec, 0xd9, 0x91, 0x68, 0xcf, 0x98, 0xe7, 0xc5, 0xd7, 0x7d,
  15435. 0x77, 0xa0, 0x1d, 0x3e, 0x0e, 0x54, 0x34, 0xf8, 0xbc, 0x91, 0x96, 0x80, 0x8a, 0x31, 0xf3, 0xf1,
  15436. 0x22, 0xb0, 0xc2, 0xb2, 0x38, 0xc1, 0x1d, 0x82, 0xea, 0xf9, 0x45, 0x5a, 0x81, 0x72, 0x19, 0x48,
  15437. 0x94, 0x79, 0x70, 0x2e, 0xbd, 0x9f, 0x62, 0xd2, 0xdc, 0x76, 0xc0, 0x0e, 0x4b, 0xc8, 0x8c, 0x14,
  15438. 0xf8, 0x88, 0xc2, 0x15, 0xf7, 0xc5, 0x54, 0x97, 0xd4, 0xa7, 0x99, 0x5e, 0x99, 0xa5, 0x14, 0x7b,
  15439. 0x7e, 0x70, 0x48, 0x88, 0xf5, 0x1f, 0x54, 0xa1, 0x67, 0x6c, 0x50, 0x3c, 0xbb, 0x65, 0x86, 0xac,
  15440. 0x84, 0x3a, 0xd9, 0x55, 0xdd, 0x70, 0x54, 0x15, 0x1f, 0xf5, 0x9c, 0xaf, 0x32, 0x4b, 0x9a, 0xc4,
  15441. 0x57, 0xd9, 0x58, 0x85, 0x5a, 0x6e, 0x15, 0x5e, 0x03, 0x4b, 0xac, 0x54, 0xc5, 0xb0, 0x94, 0xae,
  15442. 0x4f, 0x7e, 0x78, 0x77, 0x8d, 0x53, 0x78, 0x4a, 0xe9, 0x16, 0x7d, 0x19, 0xfa, 0x92, 0x3b, 0x5d,
  15443. 0x3a, 0x9e, 0x9a, 0x2e, 0x83, 0xe5, 0x2a, 0x63, 0x5d, 0x88, 0x59, 0x6b, 0x36, 0x3b, 0x7d, 0xb3,
  15444. 0xd2, 0x47, 0xe4, 0xb1, 0xb6, 0x51, 0x0c, 0x2c, 0xc0, 0x9d, 0x60, 0xe6, 0xea, 0xc2, 0x28, 0x1f,
  15445. 0x59, 0x80, 0xfa, 0xf1, 0x1a, 0x58, 0x59, 0x99, 0xb4, 0x2b, 0x6c, 0xad, 0xbe, 0x96, 0xa6, 0xe8,
  15446. 0xde, 0xbc, 0x09, 0x17, 0x17, 0x5a, 0x98, 0x4b, 0x90, 0xec, 0x9a, 0x63, 0x15, 0x1a, 0x78, 0xc4,
  15447. 0x96, 0xfc, 0x7c, 0x04, 0x94, 0x7b, 0xa4, 0xdf, 0x56, 0xa3, 0x23, 0xa0, 0xdc, 0x23, 0xfb, 0xf7,
  15448. 0x2b, 0x39, 0x54, 0x82, 0x1c, 0x31, 0xed, 0xf4, 0x57, 0x61, 0x5d, 0x07, 0x07, 0xcd, 0x76, 0x0e,
  15449. 0x23, 0x16, 0x71, 0x21, 0xc9, 0xb6, 0xce, 0xcb, 0xa9, 0x57, 0x49, 0xd1, 0x62, 0x87, 0xc1, 0x7a,
  15450. 0x33, 0x7e, 0x1d, 0x80, 0xf5, 0x49, 0x06, 0x01, 0x7c, 0xa6, 0x04, 0xa5, 0x45, 0xd9, 0xb5, 0x8f,
  15451. 0x92, 0x44, 0x9f, 0x3c, 0x9e, 0x11, 0x22, 0xaa, 0x39, 0x4d, 0x02, 0x3c, 0x38, 0x26, 0x6b, 0xa7,
  15452. 0x23, 0x7f, 0x32, 0x51, 0x11, 0xa5, 0xd6, 0x59, 0x20, 0xc2, 0x90, 0x07, 0xc7, 0x33, 0xfb, 0xb7,
  15453. 0xea, 0x72, 0x92, 0xb3, 0x31, 0x62, 0x9f, 0x4d, 0xf2, 0xc8, 0x70, 0xa6, 0x36, 0xe8, 0x20, 0x8e,
  15454. 0x51, 0x85, 0x8c, 0x29, 0xe7, 0xa5, 0xa9, 0x30, 0xac, 0x91, 0xa8, 0x52, 0x9a, 0x07, 0x5c, 0xc4,
  15455. 0x5c, 0x7d, 0x66, 0xb0, 0xa8, 0x35, 0xa3, 0x4a, 0x36, 0xac, 0xb8, 0x0a, 0x6b, 0xac, 0x36, 0x46,
  15456. 0x0a, 0x22, 0xe7, 0xcd, 0x47, 0xea, 0x64, 0x22, 0x2c, 0xd8, 0x23, 0x4f, 0xc7, 0x06, 0xd3, 0x31,
  15457. 0x5d, 0x0d, 0x6f, 0x4d, 0x8a, 0x0d, 0x26, 0x43, 0xa2, 0xbc, 0x5f, 0x05, 0x2b, 0x09, 0xe7, 0x11,
  15458. 0xee, 0xb7, 0x20, 0x41, 0x9c, 0x36, 0x73, 0x23, 0x7d, 0xdc, 0xd7, 0xb3, 0x94, 0x3d, 0x4e, 0xe0,
  15459. 0xc8, 0x2c, 0x69, 0x76, 0xd3, 0x91, 0xb3, 0x9f, 0xc1, 0xb9, 0x66, 0xf2, 0x10, 0x48, 0xb3, 0x66,
  15460. 0x0e, 0x9d, 0xdd, 0x0c, 0x7a, 0x27, 0xf0, 0xb0, 0x03, 0xb1, 0x9a, 0xfa, 0x07, 0x7e, 0xe0, 0x4e,
  15461. 0xe2, 0xb4, 0x03, 0xbc, 0x93, 0xd7, 0xb3, 0x14, 0xa3, 0x03, 0x46, 0x76, 0xee, 0x00, 0x6f, 0xe3,
  15462. 0x7e, 0x06, 0x4f, 0x3b, 0x60, 0x64, 0xc5, 0x0e, 0xb4, 0x45, 0x07, 0x93, 0x42, 0xb1, 0x03, 0x2f,
  15463. 0x21, 0x52, 0xcc, 0x35, 0xde, 0xd1, 0xe8, 0xc9, 0x6c, 0xf8, 0x05, 0xe8, 0xe4, 0x1a, 0xed, 0x6a,
  15464. 0xa1, 0x6a, 0xd6, 0x20, 0x91, 0x55, 0x69, 0x63, 0x3d, 0x4d, 0x56, 0xe9, 0x86, 0x2e, 0x41, 0x33,
  15465. 0x1e, 0x87, 0x8f, 0x29, 0x91, 0xe3, 0x1b, 0x36, 0xf0, 0xfb, 0x0e, 0xdb, 0xd6, 0xf9, 0x31, 0xeb,
  15466. 0xd7, 0xd9, 0x07, 0x63, 0xd5, 0x8f, 0x49, 0xb9, 0x5e, 0x34, 0xb8, 0x59, 0x5f, 0x34, 0xb8, 0x31,
  15467. 0x9f, 0x4c, 0xb3, 0x72, 0x4f, 0xa6, 0xd9, 0xbf, 0xbd, 0x02, 0x3d, 0xe2, 0xc2, 0x1e, 0xba, 0x43,
  15468. 0x89, 0xc2, 0xfe, 0x02, 0x74, 0xf4, 0xee, 0x25, 0xa7, 0x71, 0x61, 0x8b, 0x25, 0x70, 0x2e, 0xf9,
  15469. 0x8d, 0xeb, 0x1b, 0xee, 0xad, 0xec, 0x62, 0xe2, 0x8b, 0xea, 0x2d, 0xe6, 0xd4, 0x25, 0x91, 0x50,
  15470. 0x14, 0xbf, 0x47, 0xc8, 0x8c, 0xc7, 0x5b, 0x84, 0x99, 0xb4, 0x2c, 0xed, 0x2d, 0x11, 0xc7, 0x89,
  15471. 0x8a, 0x9f, 0x61, 0x2c, 0x8f, 0xd3, 0x0d, 0x6c, 0xeb, 0xf7, 0x04, 0x74, 0x03, 0xdb, 0x46, 0x03,
  15472. 0xdb, 0xe6, 0xa3, 0x02, 0xdc, 0xc0, 0x76, 0xae, 0x81, 0x6d, 0x69, 0xa0, 0x61, 0x34, 0xb0, 0x9d,
  15473. 0x36, 0x80, 0xd8, 0x8b, 0x49, 0x21, 0x76, 0xf2, 0x41, 0xec, 0x95, 0xf2, 0x8d, 0x98, 0x68, 0x18,
  15474. 0x79, 0x23, 0x19, 0xa0, 0x4d, 0xbc, 0x79, 0x9a, 0xc1, 0x08, 0x73, 0x61, 0xdf, 0x15, 0x6c, 0x47,
  15475. 0x33, 0xb9, 0x87, 0x08, 0x0c, 0x67, 0xd3, 0x7a, 0x23, 0x67, 0x70, 0x7c, 0xb9, 0x70, 0x15, 0x9b,
  15476. 0x93, 0x2e, 0x66, 0xc7, 0x23, 0x2d, 0x11, 0xe1, 0x60, 0xa7, 0xec, 0x9d, 0x7e, 0xb6, 0xd8, 0x93,
  15477. 0x42, 0x1b, 0x99, 0x4c, 0x38, 0xbd, 0x09, 0x56, 0x88, 0xa4, 0x93, 0x73, 0xc9, 0x3f, 0xcc, 0x5d,
  15478. 0xa2, 0x88, 0xe8, 0x16, 0x09, 0x3c, 0xed, 0xf4, 0xbf, 0x62, 0x38, 0xfd, 0x9b, 0xfd, 0xa8, 0x2e,
  15479. 0x68, 0xc2, 0x16, 0x43, 0xf6, 0xd8, 0x3f, 0x5f, 0xc9, 0x21, 0x48, 0x27, 0x17, 0x25, 0xa0, 0x52,
  15480. 0xe6, 0xa6, 0x6f, 0xc6, 0x13, 0x38, 0xa3, 0x39, 0xad, 0x3f, 0xa9, 0x7d, 0x4e, 0xfd, 0xc9, 0x5f,
  15481. 0x4d, 0xb9, 0x0c, 0xea, 0xd0, 0xce, 0xde, 0x0f, 0x54, 0x85, 0x95, 0xe9, 0xa9, 0x24, 0x7e, 0x1e,
  15482. 0xe9, 0xa9, 0xd2, 0xb1, 0xd5, 0x8c, 0x10, 0x04, 0x7f, 0xb7, 0x02, 0x9d, 0xef, 0x3c, 0x60, 0x59,
  15483. 0xa8, 0x16, 0xf9, 0xb1, 0xb8, 0x74, 0x30, 0x0a, 0x27, 0x61, 0x24, 0xce, 0x89, 0x6d, 0x86, 0xed,
  15484. 0x20, 0xc8, 0xc8, 0x12, 0xcf, 0x94, 0xd2, 0x66, 0x13, 0x92, 0x65, 0x1f, 0x41, 0xb9, 0x5a, 0x32,
  15485. 0x33, 0xe4, 0xb4, 0x16, 0xec, 0xe4, 0x97, 0xa1, 0x2f, 0x59, 0xfc, 0x20, 0x51, 0xd1, 0x71, 0x1a,
  15486. 0x64, 0xb0, 0x17, 0x48, 0x6f, 0x18, 0x6a, 0x7f, 0x07, 0xd6, 0x1d, 0x35, 0x0a, 0x83, 0x40, 0x8d,
  15487. 0x92, 0x47, 0x71, 0xa6, 0x3a, 0x90, 0xe8, 0x9e, 0x15, 0x33, 0xba, 0xe7, 0x59, 0x11, 0x41, 0xed,
  15488. 0x4f, 0xa1, 0x97, 0x3e, 0x41, 0xb7, 0xe3, 0x46, 0x5e, 0x8c, 0xa8, 0x4c, 0xde, 0x4e, 0xd7, 0xe4,
  15489. 0x2e, 0x3f, 0x9d, 0x6e, 0xbd, 0x67, 0xbe, 0x2e, 0x64, 0xb8, 0x24, 0x9c, 0x15, 0xa5, 0x4c, 0x3f,
  15490. 0x3c, 0xc4, 0x86, 0xc2, 0x55, 0x1d, 0x86, 0x5e, 0x1c, 0xe0, 0xca, 0xdd, 0xb4, 0xca, 0xdc, 0xe7,
  15491. 0x56, 0x4a, 0xdd, 0xe7, 0x72, 0x3e, 0x59, 0xd5, 0xa5, 0xee, 0x8a, 0xb5, 0x72, 0x77, 0xc5, 0x7a,
  15492. 0xb9, 0xbb, 0xe2, 0xea, 0x52, 0x77, 0xc5, 0xc6, 0xd9, 0xee, 0x8a, 0xcd, 0x05, 0x77, 0xc5, 0x02,
  15493. 0xa9, 0xdb, 0x5a, 0x20, 0x75, 0x0b, 0x8a, 0x71, 0xe0, 0xe0, 0xb1, 0x86, 0x62, 0xfc, 0x7c, 0x67,
  15494. 0x43, 0x92, 0x76, 0xc8, 0x34, 0xa5, 0x61, 0xd4, 0x23, 0x99, 0xa1, 0x93, 0x27, 0xf2, 0x30, 0x5c,
  15495. 0xd4, 0xbe, 0xf7, 0xcb, 0xb4, 0xef, 0x43, 0xe8, 0x71, 0x24, 0xf2, 0x7d, 0xf7, 0x58, 0xa5, 0xba,
  15496. 0xaa, 0x92, 0x87, 0xe9, 0xf3, 0x6f, 0xe9, 0xaf, 0xe4, 0xdf, 0xd2, 0xa7, 0x87, 0x61, 0xbc, 0x63,
  15497. 0xc3, 0x0b, 0xbb, 0xeb, 0x34, 0x5d, 0xef, 0x98, 0xb7, 0xe3, 0xcf, 0x56, 0x00, 0xb8, 0x11, 0xfd,
  15498. 0xe4, 0x08, 0x33, 0x4d, 0xd9, 0x16, 0x69, 0x12, 0x40, 0xf8, 0x12, 0x4e, 0x2c, 0xfa, 0xe5, 0x75,
  15499. 0x09, 0xfc, 0x81, 0xde, 0x08, 0x37, 0xa0, 0x4b, 0xbd, 0x2c, 0x44, 0xbd, 0x29, 0xf7, 0x3a, 0x68,
  15500. 0xe3, 0x10, 0x24, 0xc8, 0x8d, 0xfd, 0xd3, 0x15, 0xe8, 0xed, 0x71, 0xec, 0xb8, 0xbd, 0x30, 0x5e,
  15501. 0xec, 0xd1, 0x4a, 0xa1, 0x47, 0xd9, 0x7c, 0x54, 0xcd, 0xf9, 0x58, 0x78, 0xc9, 0x9e, 0xcf, 0x74,
  15502. 0xfe, 0x25, 0xfb, 0xfc, 0xa4, 0xd5, 0xf3, 0x93, 0x66, 0xff, 0x5c, 0x05, 0xda, 0xd2, 0x13, 0xea,
  15503. 0xc6, 0xb3, 0xd0, 0xa6, 0x58, 0x77, 0xb9, 0x18, 0xbb, 0x2d, 0x04, 0xf1, 0x24, 0xdf, 0x00, 0xfa,
  15504. 0x58, 0x1e, 0x66, 0x21, 0x3f, 0x2c, 0xa7, 0x89, 0xb9, 0xb5, 0xbf, 0x77, 0x1a, 0x49, 0xcf, 0xf4,
  15505. 0x94, 0xef, 0x48, 0x10, 0x3d, 0x5e, 0xa7, 0x47, 0xd0, 0xd9, 0x53, 0x49, 0xee, 0x89, 0xbc, 0xe5,
  15506. 0x4f, 0xb7, 0x95, 0x5b, 0x62, 0x10, 0xe6, 0x4d, 0xc9, 0x65, 0xfa, 0x6f, 0xff, 0xe5, 0x1a, 0x34,
  15507. 0x64, 0x25, 0x3e, 0xdf, 0x4b, 0x97, 0x69, 0x13, 0x55, 0xb3, 0x89, 0x27, 0x9a, 0xf8, 0x1b, 0xb9,
  15508. 0xc7, 0xeb, 0xca, 0x1e, 0x04, 0x35, 0x47, 0x6a, 0xbc, 0x5d, 0x67, 0xc6, 0x58, 0x5c, 0xcd, 0xc5,
  15509. 0x58, 0x4c, 0xed, 0xb9, 0x24, 0xda, 0x16, 0x7d, 0x58, 0x77, 0x25, 0xd2, 0xa1, 0xf1, 0x64, 0x64,
  15510. 0xb3, 0x44, 0x46, 0x8c, 0xad, 0xe5, 0xdf, 0x03, 0xed, 0x62, 0xb1, 0xf4, 0xf9, 0x4a, 0x3c, 0xd2,
  15511. 0xfc, 0x20, 0xbe, 0x6e, 0x5c, 0x8c, 0xb8, 0x09, 0x78, 0x8f, 0x7b, 0xf0, 0x83, 0x7c, 0xf7, 0xbe,
  15512. 0x24, 0x0e, 0xe4, 0x35, 0x76, 0xd7, 0xcd, 0xc5, 0x81, 0x2c, 0x7d, 0x1f, 0xff, 0xed, 0x2f, 0xf0,
  15513. 0x3e, 0xfe, 0x5d, 0xe8, 0x32, 0x0a, 0xd0, 0x02, 0x98, 0x25, 0x68, 0xe6, 0x59, 0x68, 0x23, 0xeb,
  15514. 0x39, 0xca, 0x71, 0x9f, 0x2d, 0x15, 0x78, 0x62, 0x22, 0x71, 0x44, 0x47, 0xe6, 0x81, 0x1b, 0xcc,
  15515. 0xdd, 0xc9, 0xfe, 0xc3, 0xc2, 0x01, 0xab, 0x9c, 0x85, 0x95, 0x56, 0xf2, 0x58, 0x69, 0x81, 0x88,
  15516. 0xaf, 0x2e, 0x10, 0xf1, 0xf6, 0x6f, 0xc8, 0x4b, 0x04, 0x7b, 0xca, 0x88, 0x77, 0x68, 0xbe, 0x45,
  15517. 0xc0, 0x71, 0xac, 0x52, 0x07, 0x2a, 0xc3, 0xbc, 0x6e, 0xa5, 0x68, 0x5e, 0x57, 0xd4, 0x7c, 0x55,
  15518. 0x17, 0x35, 0x5f, 0xaf, 0xc2, 0xba, 0x69, 0xa5, 0x39, 0x38, 0x98, 0xb8, 0x87, 0x72, 0xcf, 0xf5,
  15519. 0xe3, 0xcc, 0x4c, 0xf3, 0xee, 0xc4, 0x3d, 0x2c, 0xda, 0xdf, 0xd5, 0x17, 0xec, 0xef, 0x7e, 0xb7,
  15520. 0xca, 0x51, 0xd2, 0xb0, 0xef, 0xcf, 0xf0, 0x9b, 0xef, 0xc6, 0x7c, 0xf3, 0x2b, 0x4f, 0x7b, 0x34,
  15521. 0xe5, 0x37, 0x79, 0x2b, 0x4c, 0x69, 0x4e, 0x9f, 0xf0, 0xa9, 0x4b, 0xdc, 0x25, 0xbc, 0x08, 0x62,
  15522. 0xb6, 0x2d, 0x4f, 0x69, 0x2c, 0x7f, 0x7a, 0x3f, 0xb7, 0xfa, 0x8e, 0x3c, 0x03, 0x42, 0x85, 0x4d,
  15523. 0xdf, 0xb1, 0xda, 0x13, 0xf8, 0x8e, 0x59, 0xef, 0x98, 0x78, 0xb0, 0xec, 0xdd, 0x3e, 0x03, 0xa9,
  15524. 0x1a, 0x48, 0xf0, 0x01, 0x6c, 0x1a, 0xe3, 0x5c, 0x74, 0xef, 0x58, 0xa8, 0x43, 0xef, 0x32, 0xe7,
  15525. 0x42, 0x3a, 0x5a, 0xc3, 0xc3, 0x43, 0x47, 0xf9, 0x9f, 0xa9, 0x44, 0x7c, 0x3b, 0x16, 0xa3, 0xfc,
  15526. 0xef, 0xa9, 0x84, 0xa3, 0xfc, 0xe3, 0x2a, 0xbc, 0xc7, 0x48, 0x78, 0x01, 0x53, 0x2c, 0xe0, 0xa5,
  15527. 0xec, 0x7d, 0x59, 0xc4, 0xcf, 0xd9, 0x13, 0xb7, 0x9f, 0xc1, 0xc6, 0x9e, 0x4a, 0x6e, 0x7a, 0xc7,
  15528. 0x37, 0x47, 0x63, 0x5f, 0x1d, 0x2b, 0x64, 0xd6, 0xd3, 0x67, 0xd9, 0xd2, 0x7d, 0x2e, 0xcb, 0x9b,
  15529. 0xee, 0xf3, 0x57, 0x60, 0xcd, 0xcd, 0xf2, 0x9b, 0xc7, 0xaa, 0x6f, 0xc0, 0xb5, 0xa7, 0x7f, 0x21,
  15530. 0x5a, 0xf8, 0x0f, 0x43, 0xcf, 0x78, 0x35, 0xd2, 0x0f, 0x83, 0x72, 0xbd, 0xc5, 0x59, 0x2f, 0x71,
  15531. 0x5e, 0x62, 0x03, 0x70, 0x43, 0x15, 0xde, 0x98, 0x84, 0x2c, 0x5c, 0xfc, 0x37, 0x15, 0xb0, 0x76,
  15532. 0x83, 0x63, 0x3f, 0xa1, 0x47, 0x04, 0xce, 0x0f, 0xb4, 0xfd, 0x74, 0x2e, 0xd0, 0x36, 0x9f, 0x75,
  15533. 0x1d, 0x49, 0xfb, 0x25, 0x1d, 0xab, 0x2f, 0x0d, 0xe0, 0x56, 0x35, 0x9f, 0x01, 0x93, 0x10, 0x6e,
  15534. 0x0b, 0x91, 0x52, 0x6b, 0x8b, 0x91, 0x52, 0x5f, 0xa3, 0x40, 0x77, 0xb3, 0x89, 0x4a, 0xe8, 0x85,
  15535. 0x94, 0x9c, 0x77, 0xec, 0x9a, 0x4e, 0x79, 0xe0, 0x9e, 0xb0, 0x9f, 0xe1, 0x29, 0xac, 0x67, 0x43,
  15536. 0x10, 0x3b, 0x76, 0xd2, 0x61, 0xb3, 0xe1, 0x4e, 0x46, 0xc6, 0x30, 0x7f, 0xd1, 0x63, 0x78, 0x4a,
  15537. 0xc7, 0xbc, 0x00, 0x9d, 0x59, 0x14, 0x8e, 0x54, 0x1c, 0x9b, 0x2b, 0xd3, 0x16, 0x98, 0x76, 0x55,
  15538. 0x8a, 0x54, 0x4c, 0x81, 0x57, 0x44, 0xf3, 0x13, 0xa9, 0xf8, 0x23, 0x77, 0x62, 0xff, 0x62, 0x05,
  15539. 0x9e, 0xca, 0xda, 0x66, 0x23, 0xa0, 0x8f, 0xdc, 0xc9, 0xf2, 0x68, 0x6d, 0x25, 0x17, 0xf6, 0x62,
  15540. 0xc4, 0x88, 0x6a, 0x59, 0xc4, 0x08, 0xa3, 0x0f, 0x35, 0x6d, 0x07, 0x8c, 0x7d, 0xc8, 0x98, 0xf3,
  15541. 0xba, 0x21, 0xd7, 0xb5, 0x7f, 0xaf, 0xca, 0xea, 0x93, 0xac, 0x77, 0x74, 0xd3, 0x4f, 0xb4, 0xd1,
  15542. 0x91, 0x26, 0x26, 0x26, 0x6c, 0x75, 0x64, 0xbd, 0x0d, 0x9b, 0x14, 0x2e, 0xd0, 0x4f, 0xf3, 0x63,
  15543. 0xb6, 0x61, 0x1a, 0xc5, 0xf8, 0x22, 0xa6, 0x66, 0x95, 0x7d, 0x40, 0x69, 0xb8, 0xf1, 0xa6, 0x6e,
  15544. 0x9c, 0x08, 0xdd, 0x26, 0x2a, 0x43, 0x86, 0x08, 0x29, 0x29, 0xc9, 0x05, 0x27, 0xb0, 0x2e, 0x83,
  15545. 0xb5, 0x30, 0xf3, 0x55, 0x58, 0xe7, 0x9e, 0xc9, 0x92, 0xa5, 0x68, 0xa5, 0xe6, 0xf4, 0x29, 0x81,
  15546. 0x67, 0x56, 0xbc, 0xe2, 0x0c, 0x0b, 0xf9, 0xd5, 0x92, 0xf7, 0xd6, 0x16, 0xb7, 0xb3, 0x11, 0xfb,
  15547. 0xfb, 0x3e, 0xf4, 0xa5, 0x8d, 0xf4, 0xb1, 0x20, 0x76, 0x89, 0x78, 0x71, 0x49, 0x1d, 0xb9, 0x35,
  15548. 0x75, 0xba, 0x5c, 0x58, 0xbf, 0x19, 0xf4, 0xae, 0xe1, 0x59, 0x51, 0x46, 0x73, 0x2c, 0x6c, 0xcb,
  15549. 0xd4, 0xbd, 0x82, 0x1e, 0x04, 0xa2, 0x21, 0x47, 0x8a, 0x02, 0x00, 0xc9, 0x3c, 0xa5, 0xae, 0xbf,
  15550. 0x35, 0x67, 0x83, 0xd2, 0x1d, 0x4a, 0x7e, 0x40, 0xa9, 0x72, 0x8d, 0x37, 0x6f, 0x47, 0xee, 0x63,
  15551. 0x8d, 0x75, 0xf8, 0x01, 0x40, 0xc3, 0x6d, 0x97, 0x1e, 0x00, 0x14, 0x63, 0xc1, 0xf4, 0x75, 0x40,
  15552. 0x7d, 0x58, 0x5b, 0xfa, 0x79, 0xc0, 0xd8, 0xfe, 0x2f, 0xe2, 0x9d, 0x8b, 0x95, 0x59, 0xd7, 0xa1,
  15553. 0x4d, 0x79, 0x63, 0x72, 0x27, 0x2c, 0xb7, 0x7f, 0x91, 0x46, 0x1d, 0xaa, 0x95, 0xfd, 0x0e, 0x29,
  15554. 0x6c, 0x28, 0x9e, 0x64, 0x6e, 0x88, 0x76, 0x71, 0x66, 0xd8, 0xbf, 0x86, 0x49, 0x58, 0x8c, 0x42,
  15555. 0xe4, 0xe2, 0x26, 0xfb, 0x0a, 0x58, 0x88, 0x7f, 0x0b, 0xb9, 0xc5, 0x27, 0x66, 0xa6, 0x92, 0x5c,
  15556. 0xe6, 0xaf, 0xc3, 0xd3, 0xb9, 0xe7, 0xd2, 0xf3, 0x85, 0xf8, 0x0c, 0x6c, 0x1a, 0x6f, 0xa3, 0x1b,
  15557. 0x65, 0xed, 0xbf, 0x5f, 0x81, 0x96, 0x33, 0x0f, 0xd4, 0x77, 0xc2, 0xd0, 0x8b, 0xbf, 0x50, 0x10,
  15558. 0x8b, 0xe7, 0xa0, 0x3d, 0xf6, 0xe3, 0x24, 0x8c, 0x4e, 0x07, 0xc3, 0xf9, 0xa9, 0x36, 0x9e, 0x13,
  15559. 0xd0, 0xad, 0xf9, 0xe9, 0x82, 0x67, 0xa3, 0x11, 0xa9, 0x40, 0x4b, 0xa4, 0x8b, 0x26, 0xeb, 0x55,
  15560. 0x96, 0x48, 0x1b, 0x96, 0xea, 0xbf, 0x44, 0x4a, 0xf3, 0x80, 0x5d, 0xa4, 0x9f, 0x82, 0x06, 0x39,
  15561. 0x61, 0x1b, 0x12, 0x82, 0x71, 0x38, 0x63, 0x8a, 0x2c, 0x9e, 0x0f, 0x07, 0x3a, 0x51, 0x4b, 0xbc,
  15562. 0xe6, 0xc3, 0x7d, 0x4e, 0x7f, 0x47, 0x87, 0x3b, 0x30, 0x6c, 0x14, 0x8b, 0xc6, 0xf8, 0x32, 0x17,
  15563. 0x12, 0x06, 0x21, 0x15, 0xbf, 0x18, 0x4f, 0x65, 0xe8, 0x08, 0x05, 0xc6, 0x2b, 0x19, 0xf6, 0xff,
  15564. 0xa8, 0x40, 0x1b, 0xcb, 0xde, 0x39, 0x99, 0x4d, 0x90, 0xc2, 0xda, 0xa4, 0xf7, 0x38, 0xee, 0x1f,
  15565. 0x4f, 0xd2, 0xa7, 0xa0, 0xe9, 0x0b, 0xaf, 0x05, 0xfd, 0x0a, 0x9d, 0xbe, 0x16, 0xf4, 0xb7, 0xf5,
  15566. 0x2c, 0xc0, 0xd4, 0x8f, 0x91, 0xd5, 0xbd, 0x73, 0xa2, 0xdf, 0x0d, 0x34, 0x20, 0xd6, 0x16, 0x34,
  15567. 0x86, 0xec, 0xb5, 0x22, 0xa6, 0xce, 0xfa, 0xd3, 0xb2, 0xa1, 0x73, 0x30, 0x9f, 0x4c, 0x1e, 0xb8,
  15568. 0x27, 0x37, 0x53, 0x12, 0xab, 0xe9, 0xe4, 0x60, 0xd6, 0x1b, 0x1a, 0xfb, 0x9d, 0xeb, 0x20, 0x2a,
  15569. 0x0a, 0xaf, 0xe7, 0xa1, 0xed, 0x4e, 0x22, 0xe5, 0x7a, 0xa7, 0x38, 0x30, 0x2d, 0x25, 0x35, 0x40,
  15570. 0xf6, 0x7f, 0x5b, 0x81, 0x0e, 0xfe, 0x49, 0xf5, 0x37, 0x64, 0x1b, 0x18, 0xab, 0x24, 0xe5, 0xe3,
  15571. 0x2b, 0xda, 0x36, 0x30, 0x56, 0x89, 0xb0, 0xf1, 0x88, 0xc3, 0xa6, 0x61, 0x90, 0x8c, 0x25, 0xf4,
  15572. 0x7d, 0xe8, 0xf9, 0x07, 0xa7, 0xe2, 0x14, 0xd6, 0xa7, 0x04, 0x0a, 0x7b, 0x4f, 0x60, 0xeb, 0x4d,
  15573. 0xb8, 0x38, 0x8f, 0xf1, 0x96, 0x8c, 0x94, 0xe7, 0x27, 0x79, 0xc4, 0x5f, 0x77, 0x2c, 0x4c, 0xdb,
  15574. 0xa1, 0xa4, 0x14, 0xfb, 0xbf, 0x0e, 0x17, 0xe8, 0x22, 0x2c, 0x14, 0xe0, 0x53, 0xb0, 0x3e, 0x75,
  15575. 0x4f, 0x0a, 0xf9, 0xb7, 0x61, 0xa3, 0x90, 0x57, 0xde, 0xc1, 0xe4, 0x39, 0xbc, 0x30, 0xca, 0x65,
  15576. 0xe7, 0x17, 0x31, 0xef, 0x43, 0x6f, 0x16, 0xf9, 0xc7, 0xfe, 0x44, 0x1d, 0x4a, 0xb0, 0xcd, 0xd5,
  15577. 0x12, 0x87, 0x52, 0xda, 0xae, 0x1c, 0xb3, 0x64, 0x4f, 0xe7, 0x66, 0xdc, 0x38, 0x33, 0x3f, 0x91,
  15578. 0x9d, 0xf2, 0xe3, 0xc1, 0xcc, 0xa5, 0x87, 0x88, 0xd5, 0xe8, 0x48, 0x14, 0xcd, 0x6d, 0x3f, 0xde,
  15579. 0x73, 0xe3, 0x78, 0x07, 0x41, 0xf6, 0x8f, 0xc3, 0xd6, 0xb2, 0xea, 0x48, 0xca, 0xcb, 0x70, 0x83,
  15580. 0x13, 0x17, 0x08, 0x0b, 0x89, 0xcc, 0xe3, 0x95, 0xaa, 0x3b, 0x53, 0x17, 0x92, 0xe2, 0xb5, 0x5e,
  15581. 0x5d, 0xb8, 0xd6, 0xed, 0x7f, 0x2a, 0x28, 0x10, 0xfb, 0x60, 0x6d, 0x4b, 0x08, 0x84, 0xa5, 0x0e,
  15582. 0x93, 0xfa, 0x9c, 0x72, 0x64, 0x04, 0x1d, 0x0a, 0x22, 0x9a, 0x07, 0x6a, 0xa0, 0xf8, 0x78, 0x88,
  15583. 0x3d, 0xd5, 0xd6, 0x42, 0x31, 0x39, 0x3e, 0x4e, 0x3b, 0x32, 0xce, 0xd2, 0x75, 0x68, 0x51, 0x61,
  15584. 0x0a, 0xc8, 0x59, 0xfa, 0xa0, 0x84, 0xb1, 0x07, 0x9d, 0x66, 0x24, 0x5f, 0xf6, 0xfb, 0xb8, 0x3b,
  15585. 0xe3, 0xb1, 0xe3, 0x06, 0x47, 0x0f, 0xc3, 0xd9, 0xb5, 0x65, 0xa1, 0x6a, 0xe5, 0xa1, 0x6b, 0x12,
  15586. 0x02, 0x78, 0x12, 0xd2, 0x76, 0x21, 0x2a, 0xec, 0x3f, 0xaf, 0xc0, 0x1a, 0xc5, 0x24, 0x37, 0xfc,
  15587. 0xf7, 0x29, 0xa8, 0x03, 0xf9, 0xf6, 0x18, 0xb7, 0x0a, 0xb9, 0xf0, 0xe0, 0xad, 0xf2, 0x14, 0x34,
  15588. 0xfc, 0x60, 0x80, 0x9f, 0x3a, 0xda, 0x93, 0x1f, 0x60, 0x0d, 0xa9, 0x09, 0x17, 0x25, 0xc9, 0x63,
  15589. 0xb4, 0x84, 0x4a, 0x30, 0x91, 0x69, 0x94, 0xc3, 0x4c, 0x54, 0x9e, 0xe8, 0xe8, 0x73, 0xa4, 0xb4,
  15590. 0x33, 0x22, 0x6c, 0x12, 0xe0, 0x4e, 0x90, 0x59, 0x0a, 0x99, 0xc1, 0xed, 0xa9, 0x5f, 0x4c, 0xf4,
  15591. 0xfd, 0x9d, 0x15, 0xe8, 0xdd, 0x76, 0xc3, 0x1d, 0x89, 0x56, 0xf5, 0xff, 0xa6, 0x56, 0x3c, 0xd3,
  15592. 0x76, 0x1b, 0x16, 0x68, 0xac, 0xb9, 0xe9, 0x1b, 0x7a, 0xf1, 0x42, 0xde, 0xf3, 0x35, 0xe3, 0x85,
  15593. 0xcd, 0xcf, 0x6f, 0xb5, 0x19, 0x9b, 0xdf, 0xfe, 0xe9, 0x0a, 0x6c, 0x19, 0xb3, 0xb3, 0x17, 0xc6,
  15594. 0x46, 0xf4, 0xd0, 0xa5, 0x86, 0x17, 0xaf, 0x9a, 0x4f, 0x75, 0xe6, 0xcd, 0xc4, 0xb2, 0x57, 0x38,
  15595. 0x33, 0x3d, 0xb5, 0x19, 0x98, 0x3b, 0x3b, 0x61, 0xdd, 0x2c, 0x32, 0x37, 0xf6, 0xe4, 0x57, 0xaa,
  15596. 0xb0, 0x91, 0xef, 0xc9, 0xb9, 0xf6, 0x1f, 0x57, 0x61, 0x8d, 0x65, 0x81, 0x0b, 0xbd, 0xe8, 0x11,
  15597. 0x3c, 0xeb, 0xc4, 0x8b, 0xc0, 0x90, 0x62, 0x1f, 0x3a, 0x04, 0xd5, 0xd4, 0xe5, 0x35, 0xd8, 0xe4,
  15598. 0x5c, 0x78, 0xac, 0xd4, 0x28, 0x29, 0x12, 0xa3, 0x17, 0x28, 0x75, 0x8f, 0x13, 0x75, 0xa1, 0x82,
  15599. 0x5d, 0x49, 0xfd, 0x8b, 0xda, 0x95, 0x70, 0x25, 0x14, 0x7a, 0x33, 0x13, 0x68, 0x71, 0xff, 0x28,
  15600. 0x00, 0xe7, 0xae, 0x57, 0x62, 0x7d, 0xd2, 0x28, 0xb1, 0x3e, 0x31, 0x35, 0x43, 0xcd, 0xb3, 0xfc,
  15601. 0x00, 0x5a, 0x45, 0x0b, 0xc7, 0xa2, 0xa5, 0x17, 0x2c, 0xda, 0x08, 0xff, 0x6a, 0x05, 0x2e, 0x94,
  15602. 0xf8, 0x3d, 0x93, 0x83, 0x12, 0x07, 0x5c, 0xd2, 0x8b, 0xd4, 0xa0, 0x88, 0x48, 0xfc, 0x5e, 0xb4,
  15603. 0x8e, 0xc5, 0x24, 0x94, 0x13, 0xa7, 0xa4, 0x65, 0x32, 0xd2, 0x8e, 0x32, 0x0a, 0x51, 0xa5, 0xf7,
  15604. 0x6d, 0xf6, 0xee, 0x94, 0xde, 0xb7, 0xe9, 0xd3, 0x49, 0xb1, 0x29, 0x52, 0x69, 0x3a, 0xad, 0xb1,
  15605. 0x2b, 0xbb, 0xd7, 0xfe, 0x85, 0x0a, 0x74, 0x4c, 0x6f, 0xe5, 0x1c, 0x67, 0x2b, 0x5a, 0x42, 0xe1,
  15606. 0x6c, 0xcf, 0x0e, 0x2c, 0xb7, 0x68, 0x47, 0x74, 0x5d, 0x62, 0x42, 0x3d, 0xa1, 0x71, 0x96, 0x2f,
  15607. 0x4e, 0xe0, 0xf6, 0xdf, 0xa8, 0x71, 0xf8, 0x5c, 0x63, 0x8f, 0x3f, 0xf9, 0xa3, 0x21, 0xaf, 0x43,
  15608. 0x66, 0xc4, 0x32, 0xc8, 0xde, 0x06, 0x59, 0x91, 0x17, 0x78, 0x75, 0xd2, 0x2d, 0xfd, 0x48, 0xc8,
  15609. 0x99, 0x2f, 0x88, 0x90, 0x7e, 0x27, 0x56, 0x25, 0xce, 0x95, 0x3d, 0x84, 0x1b, 0xde, 0x95, 0x97,
  15610. 0xa1, 0x85, 0xb3, 0x66, 0x72, 0x8d, 0x38, 0x8d, 0xac, 0x36, 0xd7, 0x46, 0xc7, 0x6e, 0x92, 0xb8,
  15611. 0xa3, 0x23, 0xc2, 0x42, 0xab, 0x99, 0xd1, 0xf1, 0x4d, 0x82, 0x8a, 0x25, 0x4c, 0xe2, 0xcf, 0xe2,
  15612. 0x81, 0xa7, 0xe2, 0x91, 0x58, 0xd5, 0x36, 0x11, 0x70, 0x5b, 0xc5, 0xa3, 0x33, 0x3c, 0xee, 0xe1,
  15613. 0x07, 0xe7, 0x71, 0xdf, 0x7e, 0x22, 0x8f, 0xfb, 0xce, 0x93, 0x79, 0xdc, 0x77, 0xcf, 0xf1, 0xb8,
  15614. 0xef, 0x9d, 0xe5, 0x71, 0xdf, 0xcf, 0x7b, 0xdc, 0xdb, 0x0e, 0x7b, 0x17, 0xec, 0x8c, 0x95, 0x9b,
  15615. 0x50, 0xa8, 0xbe, 0x5c, 0xc8, 0x3f, 0xb6, 0x41, 0xcc, 0x42, 0xfe, 0x71, 0x28, 0x58, 0x0e, 0xf4,
  15616. 0x32, 0x8a, 0x46, 0xd7, 0xb6, 0xf5, 0x1b, 0x07, 0x08, 0x7d, 0x10, 0x1f, 0xee, 0x20, 0xcc, 0xde,
  15617. 0xe5, 0x3a, 0x71, 0x91, 0xfc, 0x38, 0xf1, 0x47, 0xd6, 0x0d, 0x80, 0x11, 0x36, 0x60, 0xc6, 0x45,
  15618. 0x3f, 0xeb, 0x25, 0x5f, 0xca, 0x4c, 0x96, 0xb0, 0x0f, 0xa1, 0xf9, 0x5d, 0xa5, 0x66, 0xfb, 0xee,
  15619. 0x11, 0x69, 0xc2, 0x8e, 0x94, 0x9a, 0x0d, 0x62, 0xf7, 0xc8, 0x30, 0xdc, 0x81, 0x23, 0x49, 0x67,
  15620. 0xab, 0x9d, 0x2c, 0x87, 0x29, 0xbf, 0xe8, 0xea, 0x4c, 0xac, 0xbb, 0x38, 0xe5, 0x70, 0x45, 0x69,
  15621. 0xcd, 0xdb, 0xd0, 0x4a, 0xcb, 0x95, 0x12, 0x54, 0x3a, 0xa7, 0xd3, 0xd4, 0x15, 0x59, 0xef, 0x40,
  15622. 0x73, 0xea, 0x26, 0x2a, 0xf2, 0xdd, 0xc9, 0x13, 0x78, 0xff, 0xeb, 0xac, 0xf6, 0x4d, 0xb0, 0x74,
  15623. 0x65, 0x67, 0xca, 0xc9, 0xce, 0x10, 0x84, 0xfd, 0x89, 0x98, 0x2f, 0xef, 0x4a, 0xf8, 0x29, 0x92,
  15624. 0x69, 0x17, 0x54, 0x2f, 0xed, 0x99, 0x4a, 0x76, 0xb4, 0x6a, 0xe4, 0x32, 0xb4, 0x30, 0x8f, 0x19,
  15625. 0x7e, 0xbf, 0x39, 0x53, 0x49, 0xfa, 0x2e, 0x2e, 0x09, 0x54, 0xcd, 0x90, 0xc8, 0x33, 0x25, 0x5e,
  15626. 0x44, 0x78, 0xd3, 0xb3, 0x1c, 0x9b, 0xf5, 0x23, 0x86, 0xf3, 0x15, 0x3f, 0xe3, 0x44, 0x5a, 0x91,
  15627. 0xfb, 0x5a, 0xd5, 0xa2, 0xdf, 0x87, 0xcf, 0x9e, 0x00, 0xab, 0x3b, 0x1d, 0x01, 0xa6, 0xf1, 0xe7,
  15628. 0x59, 0x93, 0x99, 0xbd, 0xf0, 0x55, 0x77, 0x80, 0x40, 0x69, 0x06, 0x6e, 0xcb, 0x7c, 0x0a, 0x88,
  15629. 0xd5, 0x33, 0xfc, 0x48, 0xc3, 0x0d, 0x64, 0xf3, 0x48, 0x46, 0x4a, 0xe3, 0x7f, 0x25, 0x17, 0xac,
  15630. 0x6b, 0x63, 0x41, 0xa8, 0x6a, 0x58, 0x17, 0xfc, 0x6c, 0x25, 0x2d, 0x7a, 0xdb, 0xa4, 0x32, 0xcd,
  15631. 0x67, 0x68, 0x0a, 0x82, 0xfb, 0x15, 0xe3, 0xa1, 0xa2, 0x7d, 0x6d, 0x09, 0x61, 0xe8, 0x9a, 0x99,
  15632. 0x84, 0xbd, 0xc6, 0x32, 0x69, 0xc3, 0xe4, 0x61, 0xab, 0x4c, 0xb8, 0xcb, 0x36, 0xc3, 0xa2, 0x5d,
  15633. 0xb4, 0x7f, 0x51, 0x5c, 0xde, 0x77, 0xa2, 0x30, 0x8e, 0xad, 0xdb, 0xd0, 0x3d, 0x9d, 0xbb, 0x01,
  15634. 0xa2, 0xe5, 0x84, 0xb6, 0x54, 0xa5, 0x24, 0x70, 0x0c, 0x66, 0xff, 0x73, 0x73, 0x37, 0xb8, 0xe7,
  15635. 0x06, 0x87, 0x0f, 0x31, 0x97, 0x93, 0x2f, 0x84, 0xb5, 0x8c, 0xb0, 0xba, 0x24, 0x9c, 0x25, 0xe9,
  15636. 0xb3, 0x5e, 0x65, 0xb5, 0x50, 0xa3, 0x0f, 0xc3, 0x19, 0x7b, 0xbd, 0xe7, 0x0b, 0xd9, 0x7f, 0xbc,
  15637. 0x02, 0xeb, 0x0b, 0x4d, 0x2d, 0xda, 0x0d, 0x57, 0x4a, 0xec, 0x86, 0x11, 0x79, 0x60, 0x6e, 0x43,
  15638. 0x4a, 0xd1, 0x24, 0x00, 0x26, 0xd2, 0x0b, 0x45, 0x72, 0xb9, 0x53, 0x26, 0x23, 0x5c, 0xf3, 0x9a,
  15639. 0xbe, 0xe2, 0x31, 0x81, 0xee, 0xd7, 0x6f, 0x01, 0x70, 0x2e, 0x31, 0x9f, 0x5f, 0x1c, 0x48, 0xae,
  15640. 0x7f, 0xac, 0x99, 0x4b, 0xf4, 0x5f, 0xeb, 0x9b, 0x86, 0xbc, 0xab, 0x5e, 0x12, 0x1c, 0x2c, 0x57,
  15641. 0x78, 0x41, 0xe4, 0x85, 0xdb, 0x80, 0x1a, 0xcf, 0x6d, 0x53, 0x02, 0xf1, 0x36, 0x30, 0x84, 0x31,
  15642. 0x8d, 0xa2, 0x30, 0x86, 0xef, 0xbd, 0x20, 0x9e, 0x0b, 0xbd, 0x5b, 0x71, 0x80, 0x6e, 0x3e, 0x82,
  15643. 0xa4, 0x21, 0x47, 0x0d, 0xdb, 0xa5, 0xe1, 0xfc, 0x94, 0x6c, 0xbd, 0x7e, 0xaa, 0x0a, 0xeb, 0x0b,
  15644. 0x83, 0x2a, 0x37, 0xfe, 0xa1, 0x58, 0xbf, 0xc2, 0x32, 0xe1, 0x7f, 0x0a, 0xec, 0x51, 0x9c, 0x54,
  15645. 0x9e, 0x0e, 0x9a, 0xcd, 0x17, 0xa1, 0xa7, 0x49, 0x36, 0x79, 0x2f, 0x9c, 0xef, 0xdb, 0x8e, 0x08,
  15646. 0x82, 0xf8, 0xb1, 0xf0, 0xa2, 0x96, 0x8b, 0x2f, 0xdc, 0x9c, 0xa9, 0xda, 0x73, 0xd0, 0xf6, 0xfc,
  15647. 0x08, 0xcf, 0x38, 0xd5, 0x22, 0xef, 0x0c, 0x11, 0x88, 0xeb, 0xc0, 0xbb, 0x5d, 0xe5, 0x5f, 0x27,
  15648. 0x96, 0x29, 0xea, 0x0d, 0x95, 0xf9, 0xf8, 0xb0, 0xf5, 0x16, 0x6c, 0xe4, 0x72, 0xa6, 0x62, 0xce,
  15649. 0x26, 0xdd, 0x3a, 0x96, 0x91, 0x5d, 0x4b, 0x31, 0x91, 0xfe, 0x8c, 0xc2, 0xe9, 0x20, 0x52, 0xee,
  15650. 0x84, 0xe3, 0x1d, 0xeb, 0xb7, 0xbe, 0xa2, 0x70, 0xea, 0x28, 0x77, 0x42, 0x11, 0x8f, 0xbf, 0x04,
  15651. 0x5d, 0xfd, 0x0a, 0x71, 0x46, 0x46, 0xd6, 0x9d, 0x8e, 0x06, 0x6a, 0x22, 0x95, 0x1c, 0x7f, 0xb1,
  15652. 0x7f, 0x6c, 0x1d, 0xdb, 0xc0, 0xef, 0x0f, 0xe6, 0x53, 0xfb, 0x5f, 0xaf, 0xc0, 0xc5, 0xb2, 0xfd,
  15653. 0xf1, 0x83, 0x64, 0xdb, 0xca, 0xb9, 0xb3, 0xda, 0xb9, 0xdc, 0x99, 0xc1, 0x71, 0xd5, 0xcb, 0x39,
  15654. 0xae, 0x85, 0x9a, 0x69, 0x9e, 0x78, 0x0b, 0xe7, 0x6a, 0xfe, 0x64, 0x71, 0xdf, 0x34, 0x8a, 0xfb,
  15655. 0x26, 0x47, 0x6b, 0x36, 0x9f, 0x9c, 0xd6, 0xfc, 0x71, 0xe8, 0x31, 0xcf, 0xf1, 0x7f, 0xe7, 0xd1,
  15656. 0xaf, 0x1f, 0x63, 0x0c, 0x96, 0x43, 0x73, 0xb8, 0x79, 0x8e, 0xdd, 0x89, 0x6f, 0xb0, 0x81, 0x12,
  15657. 0xb4, 0x89, 0xa0, 0x9a, 0x79, 0xb9, 0xa9, 0x1d, 0x6b, 0x0c, 0xdd, 0x66, 0xbe, 0x4f, 0xba, 0xc2,
  15658. 0xdc, 0xc3, 0x05, 0xe2, 0x7c, 0xa3, 0x8d, 0x46, 0x36, 0x4a, 0x33, 0xe1, 0x59, 0xce, 0xf8, 0x13,
  15659. 0xfc, 0x6b, 0xbd, 0xab, 0x9b, 0x33, 0xa6, 0x20, 0xaf, 0x0b, 0x2d, 0x6b, 0x26, 0x0b, 0xdb, 0x5a,
  15660. 0xd0, 0x49, 0xe7, 0x4f, 0xab, 0xfd, 0xdb, 0x15, 0xe8, 0xef, 0x53, 0x5d, 0x59, 0x54, 0xec, 0x62,
  15661. 0xa0, 0x9b, 0x35, 0xa8, 0xc6, 0xc2, 0x19, 0xb5, 0x1c, 0xfc, 0x6b, 0x7d, 0x83, 0x9c, 0xaf, 0x92,
  15662. 0x9c, 0xc1, 0x76, 0x5e, 0x81, 0x4f, 0xb5, 0x89, 0x7d, 0x82, 0x8a, 0x47, 0xe4, 0x9a, 0x25, 0x6f,
  15663. 0x99, 0x90, 0xbd, 0xd2, 0xc9, 0x20, 0x3d, 0x5b, 0x35, 0x6d, 0xaf, 0x74, 0x72, 0x9f, 0x8f, 0x97,
  15664. 0xf5, 0x06, 0x5c, 0xc4, 0x1c, 0xf1, 0xcc, 0x1d, 0xa9, 0x81, 0x0a, 0x12, 0xa4, 0x18, 0x32, 0xe7,
  15665. 0xf2, 0xf5, 0xa9, 0x7b, 0xb2, 0x8f, 0x49, 0x77, 0x28, 0x05, 0xcf, 0xe3, 0xb7, 0xa1, 0x5f, 0x68,
  15666. 0x10, 0x77, 0x53, 0x1a, 0xc6, 0xbb, 0xee, 0xd0, 0x7f, 0x1d, 0xa5, 0x2f, 0x63, 0xe6, 0x56, 0x47,
  15667. 0xf3, 0x08, 0xcb, 0xdf, 0xd4, 0xb2, 0xb3, 0x78, 0x9c, 0x46, 0x83, 0x21, 0x8a, 0xa2, 0xf4, 0x19,
  15668. 0x38, 0xcc, 0x46, 0x64, 0x8d, 0x78, 0x7b, 0xe1, 0x5f, 0xfb, 0x5f, 0x55, 0x38, 0x38, 0x0e, 0x7d,
  15669. 0xfd, 0x7f, 0xa7, 0xde, 0xff, 0x6b, 0x15, 0x7e, 0xc8, 0x57, 0x0b, 0x33, 0xca, 0x1f, 0xf2, 0x4d,
  15670. 0x11, 0xd5, 0x8a, 0xf9, 0x42, 0x5c, 0x31, 0x9c, 0x92, 0xa1, 0x3c, 0xd0, 0x11, 0xa0, 0x8c, 0x1b,
  15671. 0xfa, 0xac, 0x08, 0x50, 0x44, 0xd0, 0x7f, 0x8d, 0xd7, 0x02, 0x7b, 0x63, 0x7d, 0x05, 0xea, 0xd8,
  15672. 0xf4, 0xf2, 0x07, 0x7f, 0xa9, 0x2c, 0xe7, 0xd1, 0x05, 0x3f, 0xf6, 0xe3, 0x31, 0x16, 0x8c, 0x27,
  15673. 0x61, 0x52, 0x5e, 0x10, 0x73, 0xec, 0x4f, 0xc2, 0xc4, 0xe1, 0x3c, 0xf6, 0xdf, 0xab, 0x40, 0x53,
  15674. 0xc3, 0xac, 0xaf, 0x42, 0xcd, 0x67, 0xb5, 0xd1, 0x39, 0x4f, 0xcb, 0x52, 0x36, 0xb2, 0xf7, 0x8e,
  15675. 0x46, 0x3a, 0xc4, 0x17, 0xbf, 0x2b, 0x11, 0x8d, 0x74, 0xa8, 0xeb, 0x65, 0xf3, 0xb2, 0x09, 0x62,
  15676. 0xfb, 0x2d, 0x5a, 0x02, 0x6d, 0x09, 0xbe, 0x05, 0x0d, 0x3f, 0xbe, 0x3f, 0x1f, 0x1d, 0x9d, 0xca,
  15677. 0xcd, 0xaa, 0x3f, 0xed, 0x04, 0x56, 0xe9, 0x4d, 0xa3, 0x87, 0xd6, 0xdb, 0xd0, 0x1a, 0x86, 0x13,
  15678. 0x5f, 0x73, 0x4a, 0x8b, 0x46, 0xaf, 0xb7, 0x1e, 0xde, 0x0a, 0x27, 0xbe, 0xb6, 0x56, 0xe0, 0x7f,
  15679. 0x54, 0x0a, 0x19, 0xea, 0x54, 0x92, 0x5a, 0x52, 0x2a, 0x15, 0xcf, 0x0e, 0xe5, 0x9f, 0xfd, 0x87,
  15680. 0x15, 0x80, 0xac, 0xba, 0x25, 0x91, 0xa9, 0x6e, 0x42, 0xdf, 0x88, 0x69, 0xf4, 0x84, 0x06, 0x1f,
  15681. 0xe9, 0xdb, 0x45, 0x84, 0x12, 0x6e, 0x40, 0x57, 0x07, 0xa4, 0x5e, 0x6e, 0x7e, 0xa7, 0xa3, 0xea,
  15682. 0xb6, 0x25, 0x2a, 0xb5, 0xa6, 0xc3, 0x16, 0x65, 0x04, 0xa6, 0xe8, 0xfc, 0x65, 0xe8, 0x93, 0x41,
  15683. 0xbe, 0x41, 0xd8, 0x88, 0xc3, 0x19, 0x82, 0x53, 0xca, 0xc6, 0xfe, 0x5b, 0x2b, 0x34, 0x54, 0xad,
  15684. 0x26, 0x79, 0x1d, 0x2e, 0x70, 0x1c, 0xd7, 0xfc, 0xa3, 0x06, 0x7c, 0x1f, 0x70, 0x38, 0xd8, 0xdc,
  15685. 0xab, 0x06, 0xdf, 0x82, 0xcb, 0x85, 0xfc, 0x39, 0xcc, 0xcb, 0xd6, 0x42, 0x5b, 0xb9, 0x72, 0x66,
  15686. 0xec, 0xd7, 0x57, 0xe8, 0x15, 0x4f, 0x02, 0xf3, 0x33, 0x06, 0xa9, 0xf8, 0xaf, 0x6f, 0xc0, 0xa9,
  15687. 0xa5, 0xb7, 0x61, 0xd3, 0xcc, 0x2a, 0xcd, 0x78, 0xee, 0xa9, 0x1c, 0xfe, 0x8b, 0x46, 0xaa, 0x16,
  15688. 0x94, 0x9e, 0x5a, 0x37, 0x60, 0xab, 0xa4, 0x54, 0x2e, 0x2c, 0xed, 0x42, 0x39, 0xbe, 0x21, 0xfe,
  15689. 0xa8, 0x03, 0x35, 0xdc, 0x7a, 0x0b, 0x01, 0xb4, 0xbf, 0xe0, 0x23, 0x5c, 0x67, 0x87, 0xce, 0x4e,
  15690. 0x63, 0x61, 0x67, 0xa1, 0xb3, 0xdf, 0x80, 0xa6, 0xb4, 0x73, 0x28, 0x38, 0xe4, 0x62, 0x49, 0x33,
  15691. 0x87, 0x4e, 0x83, 0x5b, 0x39, 0x24, 0x0c, 0x8e, 0x05, 0x48, 0xd7, 0x2a, 0xd2, 0xce, 0xcd, 0x85,
  15692. 0x22, 0xa4, 0x68, 0x75, 0xa8, 0x3b, 0xf4, 0x37, 0xed, 0xdb, 0x68, 0xec, 0xcf, 0x44, 0x5b, 0xb4,
  15693. 0xd8, 0xb7, 0x9d, 0xb1, 0x3f, 0xe3, 0xbe, 0xe1, 0xbf, 0xb4, 0x6f, 0x53, 0x77, 0x56, 0x6e, 0xb5,
  15694. 0x43, 0x4f, 0x5d, 0xce, 0xb8, 0x6f, 0x0f, 0x5c, 0xa3, 0x11, 0xc4, 0xc3, 0xad, 0x65, 0x8d, 0x20,
  15695. 0x92, 0xe7, 0x46, 0xdc, 0x88, 0x3c, 0xb6, 0xa9, 0x8c, 0x8e, 0x0a, 0x0e, 0xe7, 0x44, 0x05, 0x6f,
  15696. 0x47, 0xd9, 0x87, 0x75, 0x03, 0xda, 0x32, 0x7b, 0xe4, 0xed, 0xdd, 0x5e, 0xf2, 0xf4, 0x92, 0xd8,
  15697. 0x5c, 0x43, 0x94, 0xfe, 0x4f, 0xbb, 0x2a, 0x41, 0x54, 0xcb, 0xbb, 0x8a, 0x08, 0x9c, 0xbb, 0xaa,
  15698. 0x9f, 0x30, 0x97, 0x39, 0x74, 0x39, 0x7c, 0x6a, 0xf9, 0x1c, 0xba, 0x89, 0x9e, 0x43, 0x37, 0x49,
  15699. 0xe7, 0x30, 0x52, 0x6c, 0x79, 0x5c, 0x36, 0x87, 0x8e, 0xf2, 0x78, 0x0e, 0x1d, 0x95, 0x6d, 0x3c,
  15700. 0x7a, 0xa0, 0xb3, 0xbf, 0xa4, 0x91, 0x07, 0xf4, 0x08, 0x5f, 0xa4, 0x9f, 0x1a, 0xfd, 0x0e, 0xac,
  15701. 0x71, 0xc7, 0x8c, 0x67, 0xc0, 0xd6, 0x4a, 0x22, 0x06, 0x14, 0x5e, 0x0f, 0x73, 0xfa, 0x51, 0xe1,
  15702. 0x39, 0x31, 0xdd, 0x78, 0x3c, 0x0e, 0x67, 0xe4, 0xa9, 0x53, 0xd6, 0x38, 0xab, 0xd6, 0x22, 0x1d,
  15703. 0x2f, 0xfc, 0xdb, 0xd0, 0xa5, 0x32, 0x3a, 0x5a, 0x32, 0xb9, 0xf0, 0x94, 0x3d, 0x9d, 0xae, 0x55,
  15704. 0x57, 0x0e, 0x2d, 0x78, 0x1a, 0x2c, 0x5b, 0x6f, 0x68, 0x66, 0xd9, 0x2f, 0x2c, 0xd9, 0xd0, 0x3a,
  15705. 0x40, 0x5d, 0x1a, 0x25, 0x4f, 0x17, 0x63, 0x17, 0x99, 0x8b, 0x4b, 0x8a, 0x71, 0xf8, 0x31, 0x2a,
  15706. 0xc6, 0xbe, 0x33, 0x7a, 0x84, 0xf4, 0xae, 0xe4, 0xc6, 0x92, 0x11, 0xde, 0x8e, 0xdc, 0xc7, 0x3c,
  15707. 0x42, 0xb2, 0xb9, 0xd0, 0x65, 0xa2, 0x79, 0xa0, 0xb6, 0x36, 0x97, 0x94, 0x71, 0xe6, 0x81, 0xe0,
  15708. 0x02, 0x52, 0x52, 0xea, 0x25, 0x31, 0xde, 0x69, 0xd9, 0x7a, 0x6a, 0xc9, 0x92, 0x18, 0x12, 0x69,
  15709. 0x5e, 0x92, 0xdb, 0x59, 0x21, 0xeb, 0x26, 0xf4, 0x78, 0x49, 0xb4, 0x38, 0x71, 0x6b, 0x6b, 0x49,
  15710. 0x2c, 0x87, 0x54, 0xe0, 0xe8, 0xd0, 0x82, 0x64, 0xf2, 0xc7, 0xf7, 0xa4, 0x8a, 0x4c, 0xc8, 0x77,
  15711. 0x69, 0xc9, 0x12, 0xa5, 0x82, 0x3e, 0x5a, 0xa2, 0xef, 0x66, 0xc2, 0x3e, 0x9e, 0x6b, 0x12, 0x94,
  15712. 0x6c, 0x3d, 0xbd, 0x64, 0xae, 0x89, 0xdd, 0xe0, 0xb9, 0x66, 0xa9, 0x4e, 0x36, 0x6f, 0xf1, 0x78,
  15713. 0xeb, 0xf2, 0xd2, 0x79, 0x8b, 0xc7, 0x7a, 0xde, 0xe2, 0xb1, 0x75, 0x47, 0xe6, 0xcd, 0x30, 0x28,
  15714. 0xd9, 0x7a, 0xa6, 0x24, 0x0e, 0x30, 0x0d, 0x38, 0x35, 0x29, 0x71, 0x68, 0x80, 0xd9, 0xb7, 0x81,
  15715. 0x8a, 0x5d, 0x6f, 0xeb, 0xca, 0x52, 0x54, 0xec, 0x7a, 0x1a, 0x15, 0xbb, 0xd9, 0xd6, 0x78, 0xec,
  15716. 0xc7, 0x63, 0x7a, 0x0b, 0xa8, 0xac, 0x0c, 0x92, 0x52, 0x5c, 0x86, 0x48, 0xb1, 0xd7, 0xa0, 0xc1,
  15717. 0x08, 0x28, 0xa1, 0x27, 0x81, 0x8a, 0x71, 0xde, 0x99, 0xaa, 0x71, 0x56, 0x09, 0xf1, 0x24, 0xb7,
  15718. 0xd6, 0x3e, 0xe9, 0xbd, 0xfe, 0xc6, 0x37, 0x8c, 0x0c, 0xc3, 0x55, 0xfa, 0xb9, 0xf6, 0x7f, 0x02,
  15719. 0x00, 0x00, 0xff, 0xff, 0xae, 0x8d, 0xe8, 0x89, 0x6b, 0xb5, 0x00, 0x00,
  15720. }