partner.pb.go 179 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.26.0-devel
  4. // protoc v3.15.8
  5. // source: partner.proto
  6. package partner
  7. import (
  8. chat "git.ikuban.com/server/pw-protobuf/api/chat"
  9. common "git.ikuban.com/server/pw-protobuf/api/common"
  10. statistics "git.ikuban.com/server/pw-protobuf/api/statistics"
  11. _ "google.golang.org/genproto/googleapis/api/annotations"
  12. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  13. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  14. emptypb "google.golang.org/protobuf/types/known/emptypb"
  15. reflect "reflect"
  16. sync "sync"
  17. )
  18. const (
  19. // Verify that this generated code is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  21. // Verify that runtime/protoimpl is sufficiently up-to-date.
  22. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  23. )
  24. type OnlinePersonReply struct {
  25. state protoimpl.MessageState
  26. sizeCache protoimpl.SizeCache
  27. unknownFields protoimpl.UnknownFields
  28. UserManNum int64 `protobuf:"varint,1,opt,name=userManNum,proto3" json:"userManNum"` // 男用户在线数
  29. UserWomanNum int64 `protobuf:"varint,2,opt,name=userWomanNum,proto3" json:"userWomanNum"` // 女用户在线数
  30. PartnerManNum int64 `protobuf:"varint,3,opt,name=partnerManNum,proto3" json:"partnerManNum"` // 男接待员在线数
  31. PartnerWomanNum int64 `protobuf:"varint,4,opt,name=partnerWomanNum,proto3" json:"partnerWomanNum"` // 女接待员在线数
  32. UserOtherNum int64 `protobuf:"varint,5,opt,name=userOtherNum,proto3" json:"userOtherNum"` // 未填写性别的用户在线数
  33. PartnerOtherNum int64 `protobuf:"varint,6,opt,name=partnerOtherNum,proto3" json:"partnerOtherNum"` // 未填写性别的接待员在线数
  34. }
  35. func (x *OnlinePersonReply) Reset() {
  36. *x = OnlinePersonReply{}
  37. if protoimpl.UnsafeEnabled {
  38. mi := &file_partner_proto_msgTypes[0]
  39. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  40. ms.StoreMessageInfo(mi)
  41. }
  42. }
  43. func (x *OnlinePersonReply) String() string {
  44. return protoimpl.X.MessageStringOf(x)
  45. }
  46. func (*OnlinePersonReply) ProtoMessage() {}
  47. func (x *OnlinePersonReply) ProtoReflect() protoreflect.Message {
  48. mi := &file_partner_proto_msgTypes[0]
  49. if protoimpl.UnsafeEnabled && x != nil {
  50. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  51. if ms.LoadMessageInfo() == nil {
  52. ms.StoreMessageInfo(mi)
  53. }
  54. return ms
  55. }
  56. return mi.MessageOf(x)
  57. }
  58. // Deprecated: Use OnlinePersonReply.ProtoReflect.Descriptor instead.
  59. func (*OnlinePersonReply) Descriptor() ([]byte, []int) {
  60. return file_partner_proto_rawDescGZIP(), []int{0}
  61. }
  62. func (x *OnlinePersonReply) GetUserManNum() int64 {
  63. if x != nil {
  64. return x.UserManNum
  65. }
  66. return 0
  67. }
  68. func (x *OnlinePersonReply) GetUserWomanNum() int64 {
  69. if x != nil {
  70. return x.UserWomanNum
  71. }
  72. return 0
  73. }
  74. func (x *OnlinePersonReply) GetPartnerManNum() int64 {
  75. if x != nil {
  76. return x.PartnerManNum
  77. }
  78. return 0
  79. }
  80. func (x *OnlinePersonReply) GetPartnerWomanNum() int64 {
  81. if x != nil {
  82. return x.PartnerWomanNum
  83. }
  84. return 0
  85. }
  86. func (x *OnlinePersonReply) GetUserOtherNum() int64 {
  87. if x != nil {
  88. return x.UserOtherNum
  89. }
  90. return 0
  91. }
  92. func (x *OnlinePersonReply) GetPartnerOtherNum() int64 {
  93. if x != nil {
  94. return x.PartnerOtherNum
  95. }
  96. return 0
  97. }
  98. type SendOverOneMinuteUnreadMessageMessageRequest struct {
  99. state protoimpl.MessageState
  100. sizeCache protoimpl.SizeCache
  101. unknownFields protoimpl.UnknownFields
  102. PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"`
  103. UnreadNum int64 `protobuf:"varint,2,opt,name=unreadNum,proto3" json:"unreadNum"`
  104. NameList []string `protobuf:"bytes,3,rep,name=nameList,proto3" json:"nameList"`
  105. }
  106. func (x *SendOverOneMinuteUnreadMessageMessageRequest) Reset() {
  107. *x = SendOverOneMinuteUnreadMessageMessageRequest{}
  108. if protoimpl.UnsafeEnabled {
  109. mi := &file_partner_proto_msgTypes[1]
  110. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  111. ms.StoreMessageInfo(mi)
  112. }
  113. }
  114. func (x *SendOverOneMinuteUnreadMessageMessageRequest) String() string {
  115. return protoimpl.X.MessageStringOf(x)
  116. }
  117. func (*SendOverOneMinuteUnreadMessageMessageRequest) ProtoMessage() {}
  118. func (x *SendOverOneMinuteUnreadMessageMessageRequest) ProtoReflect() protoreflect.Message {
  119. mi := &file_partner_proto_msgTypes[1]
  120. if protoimpl.UnsafeEnabled && x != nil {
  121. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  122. if ms.LoadMessageInfo() == nil {
  123. ms.StoreMessageInfo(mi)
  124. }
  125. return ms
  126. }
  127. return mi.MessageOf(x)
  128. }
  129. // Deprecated: Use SendOverOneMinuteUnreadMessageMessageRequest.ProtoReflect.Descriptor instead.
  130. func (*SendOverOneMinuteUnreadMessageMessageRequest) Descriptor() ([]byte, []int) {
  131. return file_partner_proto_rawDescGZIP(), []int{1}
  132. }
  133. func (x *SendOverOneMinuteUnreadMessageMessageRequest) GetPersonID() string {
  134. if x != nil {
  135. return x.PersonID
  136. }
  137. return ""
  138. }
  139. func (x *SendOverOneMinuteUnreadMessageMessageRequest) GetUnreadNum() int64 {
  140. if x != nil {
  141. return x.UnreadNum
  142. }
  143. return 0
  144. }
  145. func (x *SendOverOneMinuteUnreadMessageMessageRequest) GetNameList() []string {
  146. if x != nil {
  147. return x.NameList
  148. }
  149. return nil
  150. }
  151. type GetRecommendPartnerDBRequest struct {
  152. state protoimpl.MessageState
  153. sizeCache protoimpl.SizeCache
  154. unknownFields protoimpl.UnknownFields
  155. Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type"` // 类型
  156. Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
  157. IdentifyIds []string `protobuf:"bytes,3,rep,name=identifyIds,proto3" json:"identifyIds"` // 匹配过的identifyID
  158. }
  159. func (x *GetRecommendPartnerDBRequest) Reset() {
  160. *x = GetRecommendPartnerDBRequest{}
  161. if protoimpl.UnsafeEnabled {
  162. mi := &file_partner_proto_msgTypes[2]
  163. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  164. ms.StoreMessageInfo(mi)
  165. }
  166. }
  167. func (x *GetRecommendPartnerDBRequest) String() string {
  168. return protoimpl.X.MessageStringOf(x)
  169. }
  170. func (*GetRecommendPartnerDBRequest) ProtoMessage() {}
  171. func (x *GetRecommendPartnerDBRequest) ProtoReflect() protoreflect.Message {
  172. mi := &file_partner_proto_msgTypes[2]
  173. if protoimpl.UnsafeEnabled && x != nil {
  174. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  175. if ms.LoadMessageInfo() == nil {
  176. ms.StoreMessageInfo(mi)
  177. }
  178. return ms
  179. }
  180. return mi.MessageOf(x)
  181. }
  182. // Deprecated: Use GetRecommendPartnerDBRequest.ProtoReflect.Descriptor instead.
  183. func (*GetRecommendPartnerDBRequest) Descriptor() ([]byte, []int) {
  184. return file_partner_proto_rawDescGZIP(), []int{2}
  185. }
  186. func (x *GetRecommendPartnerDBRequest) GetType() string {
  187. if x != nil {
  188. return x.Type
  189. }
  190. return ""
  191. }
  192. func (x *GetRecommendPartnerDBRequest) GetSex() int64 {
  193. if x != nil {
  194. return x.Sex
  195. }
  196. return 0
  197. }
  198. func (x *GetRecommendPartnerDBRequest) GetIdentifyIds() []string {
  199. if x != nil {
  200. return x.IdentifyIds
  201. }
  202. return nil
  203. }
  204. type FindExamineRecordListRequest struct {
  205. state protoimpl.MessageState
  206. sizeCache protoimpl.SizeCache
  207. unknownFields protoimpl.UnknownFields
  208. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  209. Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
  210. Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"` // 审核状态
  211. Pid int64 `protobuf:"varint,4,opt,name=pid,proto3" json:"pid"` // 陪伴员的ID(number)
  212. }
  213. func (x *FindExamineRecordListRequest) Reset() {
  214. *x = FindExamineRecordListRequest{}
  215. if protoimpl.UnsafeEnabled {
  216. mi := &file_partner_proto_msgTypes[3]
  217. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  218. ms.StoreMessageInfo(mi)
  219. }
  220. }
  221. func (x *FindExamineRecordListRequest) String() string {
  222. return protoimpl.X.MessageStringOf(x)
  223. }
  224. func (*FindExamineRecordListRequest) ProtoMessage() {}
  225. func (x *FindExamineRecordListRequest) ProtoReflect() protoreflect.Message {
  226. mi := &file_partner_proto_msgTypes[3]
  227. if protoimpl.UnsafeEnabled && x != nil {
  228. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  229. if ms.LoadMessageInfo() == nil {
  230. ms.StoreMessageInfo(mi)
  231. }
  232. return ms
  233. }
  234. return mi.MessageOf(x)
  235. }
  236. // Deprecated: Use FindExamineRecordListRequest.ProtoReflect.Descriptor instead.
  237. func (*FindExamineRecordListRequest) Descriptor() ([]byte, []int) {
  238. return file_partner_proto_rawDescGZIP(), []int{3}
  239. }
  240. func (x *FindExamineRecordListRequest) GetNextId() int64 {
  241. if x != nil {
  242. return x.NextId
  243. }
  244. return 0
  245. }
  246. func (x *FindExamineRecordListRequest) GetOffset() int64 {
  247. if x != nil {
  248. return x.Offset
  249. }
  250. return 0
  251. }
  252. func (x *FindExamineRecordListRequest) GetStatus() string {
  253. if x != nil {
  254. return x.Status
  255. }
  256. return ""
  257. }
  258. func (x *FindExamineRecordListRequest) GetPid() int64 {
  259. if x != nil {
  260. return x.Pid
  261. }
  262. return 0
  263. }
  264. type FindExamineRecordListReply struct {
  265. state protoimpl.MessageState
  266. sizeCache protoimpl.SizeCache
  267. unknownFields protoimpl.UnknownFields
  268. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  269. List []*ExamineRecordInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  270. }
  271. func (x *FindExamineRecordListReply) Reset() {
  272. *x = FindExamineRecordListReply{}
  273. if protoimpl.UnsafeEnabled {
  274. mi := &file_partner_proto_msgTypes[4]
  275. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  276. ms.StoreMessageInfo(mi)
  277. }
  278. }
  279. func (x *FindExamineRecordListReply) String() string {
  280. return protoimpl.X.MessageStringOf(x)
  281. }
  282. func (*FindExamineRecordListReply) ProtoMessage() {}
  283. func (x *FindExamineRecordListReply) ProtoReflect() protoreflect.Message {
  284. mi := &file_partner_proto_msgTypes[4]
  285. if protoimpl.UnsafeEnabled && x != nil {
  286. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  287. if ms.LoadMessageInfo() == nil {
  288. ms.StoreMessageInfo(mi)
  289. }
  290. return ms
  291. }
  292. return mi.MessageOf(x)
  293. }
  294. // Deprecated: Use FindExamineRecordListReply.ProtoReflect.Descriptor instead.
  295. func (*FindExamineRecordListReply) Descriptor() ([]byte, []int) {
  296. return file_partner_proto_rawDescGZIP(), []int{4}
  297. }
  298. func (x *FindExamineRecordListReply) GetNextId() int64 {
  299. if x != nil {
  300. return x.NextId
  301. }
  302. return 0
  303. }
  304. func (x *FindExamineRecordListReply) GetList() []*ExamineRecordInfo {
  305. if x != nil {
  306. return x.List
  307. }
  308. return nil
  309. }
  310. type ExamineRecordInfo struct {
  311. state protoimpl.MessageState
  312. sizeCache protoimpl.SizeCache
  313. unknownFields protoimpl.UnknownFields
  314. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID(string)
  315. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  316. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  317. IntroduceVoice string `protobuf:"bytes,4,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
  318. Signature string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  319. Pictures []string `protobuf:"bytes,6,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
  320. Sex int64 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex"` // 性别
  321. Pid int64 `protobuf:"varint,8,opt,name=pid,proto3" json:"pid"` // 接待员ID(number)
  322. ExamineStatus string `protobuf:"bytes,9,opt,name=examineStatus,proto3" json:"examineStatus"` //审核状态
  323. Id int64 `protobuf:"varint,10,opt,name=id,proto3" json:"id"` //id
  324. Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
  325. Constellation string `protobuf:"bytes,12,opt,name=constellation,proto3" json:"constellation"` // 星座
  326. CreateTime int64 `protobuf:"varint,13,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  327. }
  328. func (x *ExamineRecordInfo) Reset() {
  329. *x = ExamineRecordInfo{}
  330. if protoimpl.UnsafeEnabled {
  331. mi := &file_partner_proto_msgTypes[5]
  332. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  333. ms.StoreMessageInfo(mi)
  334. }
  335. }
  336. func (x *ExamineRecordInfo) String() string {
  337. return protoimpl.X.MessageStringOf(x)
  338. }
  339. func (*ExamineRecordInfo) ProtoMessage() {}
  340. func (x *ExamineRecordInfo) ProtoReflect() protoreflect.Message {
  341. mi := &file_partner_proto_msgTypes[5]
  342. if protoimpl.UnsafeEnabled && x != nil {
  343. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  344. if ms.LoadMessageInfo() == nil {
  345. ms.StoreMessageInfo(mi)
  346. }
  347. return ms
  348. }
  349. return mi.MessageOf(x)
  350. }
  351. // Deprecated: Use ExamineRecordInfo.ProtoReflect.Descriptor instead.
  352. func (*ExamineRecordInfo) Descriptor() ([]byte, []int) {
  353. return file_partner_proto_rawDescGZIP(), []int{5}
  354. }
  355. func (x *ExamineRecordInfo) GetPartnerId() string {
  356. if x != nil {
  357. return x.PartnerId
  358. }
  359. return ""
  360. }
  361. func (x *ExamineRecordInfo) GetNickname() string {
  362. if x != nil {
  363. return x.Nickname
  364. }
  365. return ""
  366. }
  367. func (x *ExamineRecordInfo) GetAvatarUrl() string {
  368. if x != nil {
  369. return x.AvatarUrl
  370. }
  371. return ""
  372. }
  373. func (x *ExamineRecordInfo) GetIntroduceVoice() string {
  374. if x != nil {
  375. return x.IntroduceVoice
  376. }
  377. return ""
  378. }
  379. func (x *ExamineRecordInfo) GetSignature() string {
  380. if x != nil {
  381. return x.Signature
  382. }
  383. return ""
  384. }
  385. func (x *ExamineRecordInfo) GetPictures() []string {
  386. if x != nil {
  387. return x.Pictures
  388. }
  389. return nil
  390. }
  391. func (x *ExamineRecordInfo) GetSex() int64 {
  392. if x != nil {
  393. return x.Sex
  394. }
  395. return 0
  396. }
  397. func (x *ExamineRecordInfo) GetPid() int64 {
  398. if x != nil {
  399. return x.Pid
  400. }
  401. return 0
  402. }
  403. func (x *ExamineRecordInfo) GetExamineStatus() string {
  404. if x != nil {
  405. return x.ExamineStatus
  406. }
  407. return ""
  408. }
  409. func (x *ExamineRecordInfo) GetId() int64 {
  410. if x != nil {
  411. return x.Id
  412. }
  413. return 0
  414. }
  415. func (x *ExamineRecordInfo) GetAge() int64 {
  416. if x != nil {
  417. return x.Age
  418. }
  419. return 0
  420. }
  421. func (x *ExamineRecordInfo) GetConstellation() string {
  422. if x != nil {
  423. return x.Constellation
  424. }
  425. return ""
  426. }
  427. func (x *ExamineRecordInfo) GetCreateTime() int64 {
  428. if x != nil {
  429. return x.CreateTime
  430. }
  431. return 0
  432. }
  433. type FindExamineListReply struct {
  434. state protoimpl.MessageState
  435. sizeCache protoimpl.SizeCache
  436. unknownFields protoimpl.UnknownFields
  437. NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
  438. List []*ExamineInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  439. }
  440. func (x *FindExamineListReply) Reset() {
  441. *x = FindExamineListReply{}
  442. if protoimpl.UnsafeEnabled {
  443. mi := &file_partner_proto_msgTypes[6]
  444. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  445. ms.StoreMessageInfo(mi)
  446. }
  447. }
  448. func (x *FindExamineListReply) String() string {
  449. return protoimpl.X.MessageStringOf(x)
  450. }
  451. func (*FindExamineListReply) ProtoMessage() {}
  452. func (x *FindExamineListReply) ProtoReflect() protoreflect.Message {
  453. mi := &file_partner_proto_msgTypes[6]
  454. if protoimpl.UnsafeEnabled && x != nil {
  455. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  456. if ms.LoadMessageInfo() == nil {
  457. ms.StoreMessageInfo(mi)
  458. }
  459. return ms
  460. }
  461. return mi.MessageOf(x)
  462. }
  463. // Deprecated: Use FindExamineListReply.ProtoReflect.Descriptor instead.
  464. func (*FindExamineListReply) Descriptor() ([]byte, []int) {
  465. return file_partner_proto_rawDescGZIP(), []int{6}
  466. }
  467. func (x *FindExamineListReply) GetNextId() string {
  468. if x != nil {
  469. return x.NextId
  470. }
  471. return ""
  472. }
  473. func (x *FindExamineListReply) GetList() []*ExamineInfo {
  474. if x != nil {
  475. return x.List
  476. }
  477. return nil
  478. }
  479. type ExamineInfo struct {
  480. state protoimpl.MessageState
  481. sizeCache protoimpl.SizeCache
  482. unknownFields protoimpl.UnknownFields
  483. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID(string)
  484. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  485. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
  486. IntroduceVoice string `protobuf:"bytes,4,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
  487. Signature string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
  488. Pictures []string `protobuf:"bytes,6,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
  489. Sex int64 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex"` // 性别
  490. Pid int64 `protobuf:"varint,8,opt,name=pid,proto3" json:"pid"` // 接待员ID(number)
  491. Age int64 `protobuf:"varint,9,opt,name=age,proto3" json:"age"` // 年龄
  492. Constellation string `protobuf:"bytes,10,opt,name=constellation,proto3" json:"constellation"` // 星座
  493. WxNickname string `protobuf:"bytes,11,opt,name=wxNickname,proto3" json:"wxNickname"` // 昵称
  494. WxAvatarUrl string `protobuf:"bytes,12,opt,name=wxAvatarUrl,proto3" json:"wxAvatarUrl"` // 头像
  495. }
  496. func (x *ExamineInfo) Reset() {
  497. *x = ExamineInfo{}
  498. if protoimpl.UnsafeEnabled {
  499. mi := &file_partner_proto_msgTypes[7]
  500. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  501. ms.StoreMessageInfo(mi)
  502. }
  503. }
  504. func (x *ExamineInfo) String() string {
  505. return protoimpl.X.MessageStringOf(x)
  506. }
  507. func (*ExamineInfo) ProtoMessage() {}
  508. func (x *ExamineInfo) ProtoReflect() protoreflect.Message {
  509. mi := &file_partner_proto_msgTypes[7]
  510. if protoimpl.UnsafeEnabled && x != nil {
  511. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  512. if ms.LoadMessageInfo() == nil {
  513. ms.StoreMessageInfo(mi)
  514. }
  515. return ms
  516. }
  517. return mi.MessageOf(x)
  518. }
  519. // Deprecated: Use ExamineInfo.ProtoReflect.Descriptor instead.
  520. func (*ExamineInfo) Descriptor() ([]byte, []int) {
  521. return file_partner_proto_rawDescGZIP(), []int{7}
  522. }
  523. func (x *ExamineInfo) GetPartnerId() string {
  524. if x != nil {
  525. return x.PartnerId
  526. }
  527. return ""
  528. }
  529. func (x *ExamineInfo) GetNickname() string {
  530. if x != nil {
  531. return x.Nickname
  532. }
  533. return ""
  534. }
  535. func (x *ExamineInfo) GetAvatarUrl() string {
  536. if x != nil {
  537. return x.AvatarUrl
  538. }
  539. return ""
  540. }
  541. func (x *ExamineInfo) GetIntroduceVoice() string {
  542. if x != nil {
  543. return x.IntroduceVoice
  544. }
  545. return ""
  546. }
  547. func (x *ExamineInfo) GetSignature() string {
  548. if x != nil {
  549. return x.Signature
  550. }
  551. return ""
  552. }
  553. func (x *ExamineInfo) GetPictures() []string {
  554. if x != nil {
  555. return x.Pictures
  556. }
  557. return nil
  558. }
  559. func (x *ExamineInfo) GetSex() int64 {
  560. if x != nil {
  561. return x.Sex
  562. }
  563. return 0
  564. }
  565. func (x *ExamineInfo) GetPid() int64 {
  566. if x != nil {
  567. return x.Pid
  568. }
  569. return 0
  570. }
  571. func (x *ExamineInfo) GetAge() int64 {
  572. if x != nil {
  573. return x.Age
  574. }
  575. return 0
  576. }
  577. func (x *ExamineInfo) GetConstellation() string {
  578. if x != nil {
  579. return x.Constellation
  580. }
  581. return ""
  582. }
  583. func (x *ExamineInfo) GetWxNickname() string {
  584. if x != nil {
  585. return x.WxNickname
  586. }
  587. return ""
  588. }
  589. func (x *ExamineInfo) GetWxAvatarUrl() string {
  590. if x != nil {
  591. return x.WxAvatarUrl
  592. }
  593. return ""
  594. }
  595. type ExaminePartnerRequest struct {
  596. state protoimpl.MessageState
  597. sizeCache protoimpl.SizeCache
  598. unknownFields protoimpl.UnknownFields
  599. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
  600. IsPass bool `protobuf:"varint,2,opt,name=isPass,proto3" json:"isPass"` // 是否审核通过
  601. }
  602. func (x *ExaminePartnerRequest) Reset() {
  603. *x = ExaminePartnerRequest{}
  604. if protoimpl.UnsafeEnabled {
  605. mi := &file_partner_proto_msgTypes[8]
  606. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  607. ms.StoreMessageInfo(mi)
  608. }
  609. }
  610. func (x *ExaminePartnerRequest) String() string {
  611. return protoimpl.X.MessageStringOf(x)
  612. }
  613. func (*ExaminePartnerRequest) ProtoMessage() {}
  614. func (x *ExaminePartnerRequest) ProtoReflect() protoreflect.Message {
  615. mi := &file_partner_proto_msgTypes[8]
  616. if protoimpl.UnsafeEnabled && x != nil {
  617. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  618. if ms.LoadMessageInfo() == nil {
  619. ms.StoreMessageInfo(mi)
  620. }
  621. return ms
  622. }
  623. return mi.MessageOf(x)
  624. }
  625. // Deprecated: Use ExaminePartnerRequest.ProtoReflect.Descriptor instead.
  626. func (*ExaminePartnerRequest) Descriptor() ([]byte, []int) {
  627. return file_partner_proto_rawDescGZIP(), []int{8}
  628. }
  629. func (x *ExaminePartnerRequest) GetPartnerId() string {
  630. if x != nil {
  631. return x.PartnerId
  632. }
  633. return ""
  634. }
  635. func (x *ExaminePartnerRequest) GetIsPass() bool {
  636. if x != nil {
  637. return x.IsPass
  638. }
  639. return false
  640. }
  641. type PartnerGetRoomBalanceAndTodayBalanceReply struct {
  642. state protoimpl.MessageState
  643. sizeCache protoimpl.SizeCache
  644. unknownFields protoimpl.UnknownFields
  645. TodayProfit int64 `protobuf:"varint,1,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
  646. RoomProfit int64 `protobuf:"varint,2,opt,name=roomProfit,proto3" json:"roomProfit"` // 房间收益
  647. }
  648. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) Reset() {
  649. *x = PartnerGetRoomBalanceAndTodayBalanceReply{}
  650. if protoimpl.UnsafeEnabled {
  651. mi := &file_partner_proto_msgTypes[9]
  652. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  653. ms.StoreMessageInfo(mi)
  654. }
  655. }
  656. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) String() string {
  657. return protoimpl.X.MessageStringOf(x)
  658. }
  659. func (*PartnerGetRoomBalanceAndTodayBalanceReply) ProtoMessage() {}
  660. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) ProtoReflect() protoreflect.Message {
  661. mi := &file_partner_proto_msgTypes[9]
  662. if protoimpl.UnsafeEnabled && x != nil {
  663. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  664. if ms.LoadMessageInfo() == nil {
  665. ms.StoreMessageInfo(mi)
  666. }
  667. return ms
  668. }
  669. return mi.MessageOf(x)
  670. }
  671. // Deprecated: Use PartnerGetRoomBalanceAndTodayBalanceReply.ProtoReflect.Descriptor instead.
  672. func (*PartnerGetRoomBalanceAndTodayBalanceReply) Descriptor() ([]byte, []int) {
  673. return file_partner_proto_rawDescGZIP(), []int{9}
  674. }
  675. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) GetTodayProfit() int64 {
  676. if x != nil {
  677. return x.TodayProfit
  678. }
  679. return 0
  680. }
  681. func (x *PartnerGetRoomBalanceAndTodayBalanceReply) GetRoomProfit() int64 {
  682. if x != nil {
  683. return x.RoomProfit
  684. }
  685. return 0
  686. }
  687. type PartnerCollectIDsRequest struct {
  688. state protoimpl.MessageState
  689. sizeCache protoimpl.SizeCache
  690. unknownFields protoimpl.UnknownFields
  691. ChatRecordIds []int64 `protobuf:"varint,1,rep,packed,name=chatRecordIds,proto3" json:"chatRecordIds"` // 记录ID
  692. RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"` // 房间ID
  693. }
  694. func (x *PartnerCollectIDsRequest) Reset() {
  695. *x = PartnerCollectIDsRequest{}
  696. if protoimpl.UnsafeEnabled {
  697. mi := &file_partner_proto_msgTypes[10]
  698. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  699. ms.StoreMessageInfo(mi)
  700. }
  701. }
  702. func (x *PartnerCollectIDsRequest) String() string {
  703. return protoimpl.X.MessageStringOf(x)
  704. }
  705. func (*PartnerCollectIDsRequest) ProtoMessage() {}
  706. func (x *PartnerCollectIDsRequest) ProtoReflect() protoreflect.Message {
  707. mi := &file_partner_proto_msgTypes[10]
  708. if protoimpl.UnsafeEnabled && x != nil {
  709. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  710. if ms.LoadMessageInfo() == nil {
  711. ms.StoreMessageInfo(mi)
  712. }
  713. return ms
  714. }
  715. return mi.MessageOf(x)
  716. }
  717. // Deprecated: Use PartnerCollectIDsRequest.ProtoReflect.Descriptor instead.
  718. func (*PartnerCollectIDsRequest) Descriptor() ([]byte, []int) {
  719. return file_partner_proto_rawDescGZIP(), []int{10}
  720. }
  721. func (x *PartnerCollectIDsRequest) GetChatRecordIds() []int64 {
  722. if x != nil {
  723. return x.ChatRecordIds
  724. }
  725. return nil
  726. }
  727. func (x *PartnerCollectIDsRequest) GetRoomId() int64 {
  728. if x != nil {
  729. return x.RoomId
  730. }
  731. return 0
  732. }
  733. type PartnerCollectRequest struct {
  734. state protoimpl.MessageState
  735. sizeCache protoimpl.SizeCache
  736. unknownFields protoimpl.UnknownFields
  737. ChatRecordId int64 `protobuf:"varint,1,opt,name=chatRecordId,proto3" json:"chatRecordId"` // 记录ID
  738. }
  739. func (x *PartnerCollectRequest) Reset() {
  740. *x = PartnerCollectRequest{}
  741. if protoimpl.UnsafeEnabled {
  742. mi := &file_partner_proto_msgTypes[11]
  743. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  744. ms.StoreMessageInfo(mi)
  745. }
  746. }
  747. func (x *PartnerCollectRequest) String() string {
  748. return protoimpl.X.MessageStringOf(x)
  749. }
  750. func (*PartnerCollectRequest) ProtoMessage() {}
  751. func (x *PartnerCollectRequest) ProtoReflect() protoreflect.Message {
  752. mi := &file_partner_proto_msgTypes[11]
  753. if protoimpl.UnsafeEnabled && x != nil {
  754. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  755. if ms.LoadMessageInfo() == nil {
  756. ms.StoreMessageInfo(mi)
  757. }
  758. return ms
  759. }
  760. return mi.MessageOf(x)
  761. }
  762. // Deprecated: Use PartnerCollectRequest.ProtoReflect.Descriptor instead.
  763. func (*PartnerCollectRequest) Descriptor() ([]byte, []int) {
  764. return file_partner_proto_rawDescGZIP(), []int{11}
  765. }
  766. func (x *PartnerCollectRequest) GetChatRecordId() int64 {
  767. if x != nil {
  768. return x.ChatRecordId
  769. }
  770. return 0
  771. }
  772. type CreateScripRequest struct {
  773. state protoimpl.MessageState
  774. sizeCache protoimpl.SizeCache
  775. unknownFields protoimpl.UnknownFields
  776. Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
  777. PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
  778. }
  779. func (x *CreateScripRequest) Reset() {
  780. *x = CreateScripRequest{}
  781. if protoimpl.UnsafeEnabled {
  782. mi := &file_partner_proto_msgTypes[12]
  783. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  784. ms.StoreMessageInfo(mi)
  785. }
  786. }
  787. func (x *CreateScripRequest) String() string {
  788. return protoimpl.X.MessageStringOf(x)
  789. }
  790. func (*CreateScripRequest) ProtoMessage() {}
  791. func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
  792. mi := &file_partner_proto_msgTypes[12]
  793. if protoimpl.UnsafeEnabled && x != nil {
  794. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  795. if ms.LoadMessageInfo() == nil {
  796. ms.StoreMessageInfo(mi)
  797. }
  798. return ms
  799. }
  800. return mi.MessageOf(x)
  801. }
  802. // Deprecated: Use CreateScripRequest.ProtoReflect.Descriptor instead.
  803. func (*CreateScripRequest) Descriptor() ([]byte, []int) {
  804. return file_partner_proto_rawDescGZIP(), []int{12}
  805. }
  806. func (x *CreateScripRequest) GetText() string {
  807. if x != nil {
  808. return x.Text
  809. }
  810. return ""
  811. }
  812. func (x *CreateScripRequest) GetPictureUrl() string {
  813. if x != nil {
  814. return x.PictureUrl
  815. }
  816. return ""
  817. }
  818. type ReplyScripRequest struct {
  819. state protoimpl.MessageState
  820. sizeCache protoimpl.SizeCache
  821. unknownFields protoimpl.UnknownFields
  822. ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
  823. Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
  824. MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
  825. }
  826. func (x *ReplyScripRequest) Reset() {
  827. *x = ReplyScripRequest{}
  828. if protoimpl.UnsafeEnabled {
  829. mi := &file_partner_proto_msgTypes[13]
  830. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  831. ms.StoreMessageInfo(mi)
  832. }
  833. }
  834. func (x *ReplyScripRequest) String() string {
  835. return protoimpl.X.MessageStringOf(x)
  836. }
  837. func (*ReplyScripRequest) ProtoMessage() {}
  838. func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
  839. mi := &file_partner_proto_msgTypes[13]
  840. if protoimpl.UnsafeEnabled && x != nil {
  841. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  842. if ms.LoadMessageInfo() == nil {
  843. ms.StoreMessageInfo(mi)
  844. }
  845. return ms
  846. }
  847. return mi.MessageOf(x)
  848. }
  849. // Deprecated: Use ReplyScripRequest.ProtoReflect.Descriptor instead.
  850. func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
  851. return file_partner_proto_rawDescGZIP(), []int{13}
  852. }
  853. func (x *ReplyScripRequest) GetScripId() int64 {
  854. if x != nil {
  855. return x.ScripId
  856. }
  857. return 0
  858. }
  859. func (x *ReplyScripRequest) GetMessage() *common.Message {
  860. if x != nil {
  861. return x.Message
  862. }
  863. return nil
  864. }
  865. func (x *ReplyScripRequest) GetMsgType() string {
  866. if x != nil {
  867. return x.MsgType
  868. }
  869. return ""
  870. }
  871. type PartnerWithdrawRecordListReply struct {
  872. state protoimpl.MessageState
  873. sizeCache protoimpl.SizeCache
  874. unknownFields protoimpl.UnknownFields
  875. NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
  876. List []*WithdrawInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
  877. }
  878. func (x *PartnerWithdrawRecordListReply) Reset() {
  879. *x = PartnerWithdrawRecordListReply{}
  880. if protoimpl.UnsafeEnabled {
  881. mi := &file_partner_proto_msgTypes[14]
  882. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  883. ms.StoreMessageInfo(mi)
  884. }
  885. }
  886. func (x *PartnerWithdrawRecordListReply) String() string {
  887. return protoimpl.X.MessageStringOf(x)
  888. }
  889. func (*PartnerWithdrawRecordListReply) ProtoMessage() {}
  890. func (x *PartnerWithdrawRecordListReply) ProtoReflect() protoreflect.Message {
  891. mi := &file_partner_proto_msgTypes[14]
  892. if protoimpl.UnsafeEnabled && x != nil {
  893. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  894. if ms.LoadMessageInfo() == nil {
  895. ms.StoreMessageInfo(mi)
  896. }
  897. return ms
  898. }
  899. return mi.MessageOf(x)
  900. }
  901. // Deprecated: Use PartnerWithdrawRecordListReply.ProtoReflect.Descriptor instead.
  902. func (*PartnerWithdrawRecordListReply) Descriptor() ([]byte, []int) {
  903. return file_partner_proto_rawDescGZIP(), []int{14}
  904. }
  905. func (x *PartnerWithdrawRecordListReply) GetNextId() int64 {
  906. if x != nil {
  907. return x.NextId
  908. }
  909. return 0
  910. }
  911. func (x *PartnerWithdrawRecordListReply) GetList() []*WithdrawInfo {
  912. if x != nil {
  913. return x.List
  914. }
  915. return nil
  916. }
  917. type WithdrawInfo struct {
  918. state protoimpl.MessageState
  919. sizeCache protoimpl.SizeCache
  920. unknownFields protoimpl.UnknownFields
  921. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 记录ID
  922. Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
  923. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
  924. Status string `protobuf:"bytes,4,opt,name=status,proto3" json:"status"` // 状态
  925. Result string `protobuf:"bytes,5,opt,name=result,proto3" json:"result"` // 结果
  926. CreateTime int64 `protobuf:"varint,6,opt,name=createTime,proto3" json:"createTime"` // 创建时间
  927. SuccessTime int64 `protobuf:"varint,7,opt,name=successTime,proto3" json:"successTime"` // 成功时间
  928. }
  929. func (x *WithdrawInfo) Reset() {
  930. *x = WithdrawInfo{}
  931. if protoimpl.UnsafeEnabled {
  932. mi := &file_partner_proto_msgTypes[15]
  933. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  934. ms.StoreMessageInfo(mi)
  935. }
  936. }
  937. func (x *WithdrawInfo) String() string {
  938. return protoimpl.X.MessageStringOf(x)
  939. }
  940. func (*WithdrawInfo) ProtoMessage() {}
  941. func (x *WithdrawInfo) ProtoReflect() protoreflect.Message {
  942. mi := &file_partner_proto_msgTypes[15]
  943. if protoimpl.UnsafeEnabled && x != nil {
  944. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  945. if ms.LoadMessageInfo() == nil {
  946. ms.StoreMessageInfo(mi)
  947. }
  948. return ms
  949. }
  950. return mi.MessageOf(x)
  951. }
  952. // Deprecated: Use WithdrawInfo.ProtoReflect.Descriptor instead.
  953. func (*WithdrawInfo) Descriptor() ([]byte, []int) {
  954. return file_partner_proto_rawDescGZIP(), []int{15}
  955. }
  956. func (x *WithdrawInfo) GetId() int64 {
  957. if x != nil {
  958. return x.Id
  959. }
  960. return 0
  961. }
  962. func (x *WithdrawInfo) GetMoney() int64 {
  963. if x != nil {
  964. return x.Money
  965. }
  966. return 0
  967. }
  968. func (x *WithdrawInfo) GetCredit() int64 {
  969. if x != nil {
  970. return x.Credit
  971. }
  972. return 0
  973. }
  974. func (x *WithdrawInfo) GetStatus() string {
  975. if x != nil {
  976. return x.Status
  977. }
  978. return ""
  979. }
  980. func (x *WithdrawInfo) GetResult() string {
  981. if x != nil {
  982. return x.Result
  983. }
  984. return ""
  985. }
  986. func (x *WithdrawInfo) GetCreateTime() int64 {
  987. if x != nil {
  988. return x.CreateTime
  989. }
  990. return 0
  991. }
  992. func (x *WithdrawInfo) GetSuccessTime() int64 {
  993. if x != nil {
  994. return x.SuccessTime
  995. }
  996. return 0
  997. }
  998. type PartnerWithdrawTemplateListReply struct {
  999. state protoimpl.MessageState
  1000. sizeCache protoimpl.SizeCache
  1001. unknownFields protoimpl.UnknownFields
  1002. List []*PartnerWithdrawTemplateInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1003. }
  1004. func (x *PartnerWithdrawTemplateListReply) Reset() {
  1005. *x = PartnerWithdrawTemplateListReply{}
  1006. if protoimpl.UnsafeEnabled {
  1007. mi := &file_partner_proto_msgTypes[16]
  1008. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1009. ms.StoreMessageInfo(mi)
  1010. }
  1011. }
  1012. func (x *PartnerWithdrawTemplateListReply) String() string {
  1013. return protoimpl.X.MessageStringOf(x)
  1014. }
  1015. func (*PartnerWithdrawTemplateListReply) ProtoMessage() {}
  1016. func (x *PartnerWithdrawTemplateListReply) ProtoReflect() protoreflect.Message {
  1017. mi := &file_partner_proto_msgTypes[16]
  1018. if protoimpl.UnsafeEnabled && x != nil {
  1019. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1020. if ms.LoadMessageInfo() == nil {
  1021. ms.StoreMessageInfo(mi)
  1022. }
  1023. return ms
  1024. }
  1025. return mi.MessageOf(x)
  1026. }
  1027. // Deprecated: Use PartnerWithdrawTemplateListReply.ProtoReflect.Descriptor instead.
  1028. func (*PartnerWithdrawTemplateListReply) Descriptor() ([]byte, []int) {
  1029. return file_partner_proto_rawDescGZIP(), []int{16}
  1030. }
  1031. func (x *PartnerWithdrawTemplateListReply) GetList() []*PartnerWithdrawTemplateInfo {
  1032. if x != nil {
  1033. return x.List
  1034. }
  1035. return nil
  1036. }
  1037. type PartnerWithdrawTemplateInfo struct {
  1038. state protoimpl.MessageState
  1039. sizeCache protoimpl.SizeCache
  1040. unknownFields protoimpl.UnknownFields
  1041. Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
  1042. Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
  1043. Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
  1044. Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title"` // 提现的标题
  1045. }
  1046. func (x *PartnerWithdrawTemplateInfo) Reset() {
  1047. *x = PartnerWithdrawTemplateInfo{}
  1048. if protoimpl.UnsafeEnabled {
  1049. mi := &file_partner_proto_msgTypes[17]
  1050. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1051. ms.StoreMessageInfo(mi)
  1052. }
  1053. }
  1054. func (x *PartnerWithdrawTemplateInfo) String() string {
  1055. return protoimpl.X.MessageStringOf(x)
  1056. }
  1057. func (*PartnerWithdrawTemplateInfo) ProtoMessage() {}
  1058. func (x *PartnerWithdrawTemplateInfo) ProtoReflect() protoreflect.Message {
  1059. mi := &file_partner_proto_msgTypes[17]
  1060. if protoimpl.UnsafeEnabled && x != nil {
  1061. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1062. if ms.LoadMessageInfo() == nil {
  1063. ms.StoreMessageInfo(mi)
  1064. }
  1065. return ms
  1066. }
  1067. return mi.MessageOf(x)
  1068. }
  1069. // Deprecated: Use PartnerWithdrawTemplateInfo.ProtoReflect.Descriptor instead.
  1070. func (*PartnerWithdrawTemplateInfo) Descriptor() ([]byte, []int) {
  1071. return file_partner_proto_rawDescGZIP(), []int{17}
  1072. }
  1073. func (x *PartnerWithdrawTemplateInfo) GetId() int64 {
  1074. if x != nil {
  1075. return x.Id
  1076. }
  1077. return 0
  1078. }
  1079. func (x *PartnerWithdrawTemplateInfo) GetMoney() int64 {
  1080. if x != nil {
  1081. return x.Money
  1082. }
  1083. return 0
  1084. }
  1085. func (x *PartnerWithdrawTemplateInfo) GetCredit() int64 {
  1086. if x != nil {
  1087. return x.Credit
  1088. }
  1089. return 0
  1090. }
  1091. func (x *PartnerWithdrawTemplateInfo) GetTitle() string {
  1092. if x != nil {
  1093. return x.Title
  1094. }
  1095. return ""
  1096. }
  1097. type PartnerUpdateWorkingStatusRequest struct {
  1098. state protoimpl.MessageState
  1099. sizeCache protoimpl.SizeCache
  1100. unknownFields protoimpl.UnknownFields
  1101. WorkingStatus string `protobuf:"bytes,1,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  1102. }
  1103. func (x *PartnerUpdateWorkingStatusRequest) Reset() {
  1104. *x = PartnerUpdateWorkingStatusRequest{}
  1105. if protoimpl.UnsafeEnabled {
  1106. mi := &file_partner_proto_msgTypes[18]
  1107. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1108. ms.StoreMessageInfo(mi)
  1109. }
  1110. }
  1111. func (x *PartnerUpdateWorkingStatusRequest) String() string {
  1112. return protoimpl.X.MessageStringOf(x)
  1113. }
  1114. func (*PartnerUpdateWorkingStatusRequest) ProtoMessage() {}
  1115. func (x *PartnerUpdateWorkingStatusRequest) ProtoReflect() protoreflect.Message {
  1116. mi := &file_partner_proto_msgTypes[18]
  1117. if protoimpl.UnsafeEnabled && x != nil {
  1118. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1119. if ms.LoadMessageInfo() == nil {
  1120. ms.StoreMessageInfo(mi)
  1121. }
  1122. return ms
  1123. }
  1124. return mi.MessageOf(x)
  1125. }
  1126. // Deprecated: Use PartnerUpdateWorkingStatusRequest.ProtoReflect.Descriptor instead.
  1127. func (*PartnerUpdateWorkingStatusRequest) Descriptor() ([]byte, []int) {
  1128. return file_partner_proto_rawDescGZIP(), []int{18}
  1129. }
  1130. func (x *PartnerUpdateWorkingStatusRequest) GetWorkingStatus() string {
  1131. if x != nil {
  1132. return x.WorkingStatus
  1133. }
  1134. return ""
  1135. }
  1136. type PartnerGetAwardRequest struct {
  1137. state protoimpl.MessageState
  1138. sizeCache protoimpl.SizeCache
  1139. unknownFields protoimpl.UnknownFields
  1140. AwardType string `protobuf:"bytes,1,opt,name=awardType,proto3" json:"awardType"` // 奖励类型
  1141. PersonID string `protobuf:"bytes,2,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
  1142. PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"` // 类型
  1143. }
  1144. func (x *PartnerGetAwardRequest) Reset() {
  1145. *x = PartnerGetAwardRequest{}
  1146. if protoimpl.UnsafeEnabled {
  1147. mi := &file_partner_proto_msgTypes[19]
  1148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1149. ms.StoreMessageInfo(mi)
  1150. }
  1151. }
  1152. func (x *PartnerGetAwardRequest) String() string {
  1153. return protoimpl.X.MessageStringOf(x)
  1154. }
  1155. func (*PartnerGetAwardRequest) ProtoMessage() {}
  1156. func (x *PartnerGetAwardRequest) ProtoReflect() protoreflect.Message {
  1157. mi := &file_partner_proto_msgTypes[19]
  1158. if protoimpl.UnsafeEnabled && x != nil {
  1159. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1160. if ms.LoadMessageInfo() == nil {
  1161. ms.StoreMessageInfo(mi)
  1162. }
  1163. return ms
  1164. }
  1165. return mi.MessageOf(x)
  1166. }
  1167. // Deprecated: Use PartnerGetAwardRequest.ProtoReflect.Descriptor instead.
  1168. func (*PartnerGetAwardRequest) Descriptor() ([]byte, []int) {
  1169. return file_partner_proto_rawDescGZIP(), []int{19}
  1170. }
  1171. func (x *PartnerGetAwardRequest) GetAwardType() string {
  1172. if x != nil {
  1173. return x.AwardType
  1174. }
  1175. return ""
  1176. }
  1177. func (x *PartnerGetAwardRequest) GetPersonID() string {
  1178. if x != nil {
  1179. return x.PersonID
  1180. }
  1181. return ""
  1182. }
  1183. func (x *PartnerGetAwardRequest) GetPersonType() string {
  1184. if x != nil {
  1185. return x.PersonType
  1186. }
  1187. return ""
  1188. }
  1189. type LevelTable struct {
  1190. state protoimpl.MessageState
  1191. sizeCache protoimpl.SizeCache
  1192. unknownFields protoimpl.UnknownFields
  1193. List []*LevelInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
  1194. }
  1195. func (x *LevelTable) Reset() {
  1196. *x = LevelTable{}
  1197. if protoimpl.UnsafeEnabled {
  1198. mi := &file_partner_proto_msgTypes[20]
  1199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1200. ms.StoreMessageInfo(mi)
  1201. }
  1202. }
  1203. func (x *LevelTable) String() string {
  1204. return protoimpl.X.MessageStringOf(x)
  1205. }
  1206. func (*LevelTable) ProtoMessage() {}
  1207. func (x *LevelTable) ProtoReflect() protoreflect.Message {
  1208. mi := &file_partner_proto_msgTypes[20]
  1209. if protoimpl.UnsafeEnabled && x != nil {
  1210. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1211. if ms.LoadMessageInfo() == nil {
  1212. ms.StoreMessageInfo(mi)
  1213. }
  1214. return ms
  1215. }
  1216. return mi.MessageOf(x)
  1217. }
  1218. // Deprecated: Use LevelTable.ProtoReflect.Descriptor instead.
  1219. func (*LevelTable) Descriptor() ([]byte, []int) {
  1220. return file_partner_proto_rawDescGZIP(), []int{20}
  1221. }
  1222. func (x *LevelTable) GetList() []*LevelInfo {
  1223. if x != nil {
  1224. return x.List
  1225. }
  1226. return nil
  1227. }
  1228. type LevelInfo struct {
  1229. state protoimpl.MessageState
  1230. sizeCache protoimpl.SizeCache
  1231. unknownFields protoimpl.UnknownFields
  1232. Level int64 `protobuf:"varint,1,opt,name=level,proto3" json:"level"` // 等级
  1233. ChatBenefit int64 `protobuf:"varint,2,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  1234. CallBenefit int64 `protobuf:"varint,3,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  1235. Condition string `protobuf:"bytes,4,opt,name=condition,proto3" json:"condition"` // 达成条件
  1236. }
  1237. func (x *LevelInfo) Reset() {
  1238. *x = LevelInfo{}
  1239. if protoimpl.UnsafeEnabled {
  1240. mi := &file_partner_proto_msgTypes[21]
  1241. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1242. ms.StoreMessageInfo(mi)
  1243. }
  1244. }
  1245. func (x *LevelInfo) String() string {
  1246. return protoimpl.X.MessageStringOf(x)
  1247. }
  1248. func (*LevelInfo) ProtoMessage() {}
  1249. func (x *LevelInfo) ProtoReflect() protoreflect.Message {
  1250. mi := &file_partner_proto_msgTypes[21]
  1251. if protoimpl.UnsafeEnabled && x != nil {
  1252. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1253. if ms.LoadMessageInfo() == nil {
  1254. ms.StoreMessageInfo(mi)
  1255. }
  1256. return ms
  1257. }
  1258. return mi.MessageOf(x)
  1259. }
  1260. // Deprecated: Use LevelInfo.ProtoReflect.Descriptor instead.
  1261. func (*LevelInfo) Descriptor() ([]byte, []int) {
  1262. return file_partner_proto_rawDescGZIP(), []int{21}
  1263. }
  1264. func (x *LevelInfo) GetLevel() int64 {
  1265. if x != nil {
  1266. return x.Level
  1267. }
  1268. return 0
  1269. }
  1270. func (x *LevelInfo) GetChatBenefit() int64 {
  1271. if x != nil {
  1272. return x.ChatBenefit
  1273. }
  1274. return 0
  1275. }
  1276. func (x *LevelInfo) GetCallBenefit() int64 {
  1277. if x != nil {
  1278. return x.CallBenefit
  1279. }
  1280. return 0
  1281. }
  1282. func (x *LevelInfo) GetCondition() string {
  1283. if x != nil {
  1284. return x.Condition
  1285. }
  1286. return ""
  1287. }
  1288. type AddPartnerBalanceRequest struct {
  1289. state protoimpl.MessageState
  1290. sizeCache protoimpl.SizeCache
  1291. unknownFields protoimpl.UnknownFields
  1292. PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
  1293. Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"`
  1294. }
  1295. func (x *AddPartnerBalanceRequest) Reset() {
  1296. *x = AddPartnerBalanceRequest{}
  1297. if protoimpl.UnsafeEnabled {
  1298. mi := &file_partner_proto_msgTypes[22]
  1299. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1300. ms.StoreMessageInfo(mi)
  1301. }
  1302. }
  1303. func (x *AddPartnerBalanceRequest) String() string {
  1304. return protoimpl.X.MessageStringOf(x)
  1305. }
  1306. func (*AddPartnerBalanceRequest) ProtoMessage() {}
  1307. func (x *AddPartnerBalanceRequest) ProtoReflect() protoreflect.Message {
  1308. mi := &file_partner_proto_msgTypes[22]
  1309. if protoimpl.UnsafeEnabled && x != nil {
  1310. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1311. if ms.LoadMessageInfo() == nil {
  1312. ms.StoreMessageInfo(mi)
  1313. }
  1314. return ms
  1315. }
  1316. return mi.MessageOf(x)
  1317. }
  1318. // Deprecated: Use AddPartnerBalanceRequest.ProtoReflect.Descriptor instead.
  1319. func (*AddPartnerBalanceRequest) Descriptor() ([]byte, []int) {
  1320. return file_partner_proto_rawDescGZIP(), []int{22}
  1321. }
  1322. func (x *AddPartnerBalanceRequest) GetPartnerId() string {
  1323. if x != nil {
  1324. return x.PartnerId
  1325. }
  1326. return ""
  1327. }
  1328. func (x *AddPartnerBalanceRequest) GetBalance() int64 {
  1329. if x != nil {
  1330. return x.Balance
  1331. }
  1332. return 0
  1333. }
  1334. type PartnerInfo struct {
  1335. state protoimpl.MessageState
  1336. sizeCache protoimpl.SizeCache
  1337. unknownFields protoimpl.UnknownFields
  1338. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1339. Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
  1340. AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
  1341. Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
  1342. Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
  1343. Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
  1344. Level int64 `protobuf:"varint,7,opt,name=level,proto3" json:"level"` // 等级
  1345. TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
  1346. Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
  1347. IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
  1348. Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
  1349. City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
  1350. Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
  1351. PartnerId int64 `protobuf:"varint,14,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
  1352. IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
  1353. WorkingStatus string `protobuf:"bytes,16,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
  1354. RegisterStatus string `protobuf:"bytes,17,opt,name=registerStatus,proto3" json:"registerStatus"` // 审核状态
  1355. }
  1356. func (x *PartnerInfo) Reset() {
  1357. *x = PartnerInfo{}
  1358. if protoimpl.UnsafeEnabled {
  1359. mi := &file_partner_proto_msgTypes[23]
  1360. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1361. ms.StoreMessageInfo(mi)
  1362. }
  1363. }
  1364. func (x *PartnerInfo) String() string {
  1365. return protoimpl.X.MessageStringOf(x)
  1366. }
  1367. func (*PartnerInfo) ProtoMessage() {}
  1368. func (x *PartnerInfo) ProtoReflect() protoreflect.Message {
  1369. mi := &file_partner_proto_msgTypes[23]
  1370. if protoimpl.UnsafeEnabled && x != nil {
  1371. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1372. if ms.LoadMessageInfo() == nil {
  1373. ms.StoreMessageInfo(mi)
  1374. }
  1375. return ms
  1376. }
  1377. return mi.MessageOf(x)
  1378. }
  1379. // Deprecated: Use PartnerInfo.ProtoReflect.Descriptor instead.
  1380. func (*PartnerInfo) Descriptor() ([]byte, []int) {
  1381. return file_partner_proto_rawDescGZIP(), []int{23}
  1382. }
  1383. func (x *PartnerInfo) GetId() string {
  1384. if x != nil {
  1385. return x.Id
  1386. }
  1387. return ""
  1388. }
  1389. func (x *PartnerInfo) GetNickname() string {
  1390. if x != nil {
  1391. return x.Nickname
  1392. }
  1393. return ""
  1394. }
  1395. func (x *PartnerInfo) GetAvatarUrl() string {
  1396. if x != nil {
  1397. return x.AvatarUrl
  1398. }
  1399. return ""
  1400. }
  1401. func (x *PartnerInfo) GetAge() int64 {
  1402. if x != nil {
  1403. return x.Age
  1404. }
  1405. return 0
  1406. }
  1407. func (x *PartnerInfo) GetSex() int64 {
  1408. if x != nil {
  1409. return x.Sex
  1410. }
  1411. return 0
  1412. }
  1413. func (x *PartnerInfo) GetConstellation() string {
  1414. if x != nil {
  1415. return x.Constellation
  1416. }
  1417. return ""
  1418. }
  1419. func (x *PartnerInfo) GetLevel() int64 {
  1420. if x != nil {
  1421. return x.Level
  1422. }
  1423. return 0
  1424. }
  1425. func (x *PartnerInfo) GetTagList() []int64 {
  1426. if x != nil {
  1427. return x.TagList
  1428. }
  1429. return nil
  1430. }
  1431. func (x *PartnerInfo) GetSignature() string {
  1432. if x != nil {
  1433. return x.Signature
  1434. }
  1435. return ""
  1436. }
  1437. func (x *PartnerInfo) GetIntroduceVoice() string {
  1438. if x != nil {
  1439. return x.IntroduceVoice
  1440. }
  1441. return ""
  1442. }
  1443. func (x *PartnerInfo) GetProvince() string {
  1444. if x != nil {
  1445. return x.Province
  1446. }
  1447. return ""
  1448. }
  1449. func (x *PartnerInfo) GetCity() string {
  1450. if x != nil {
  1451. return x.City
  1452. }
  1453. return ""
  1454. }
  1455. func (x *PartnerInfo) GetArea() string {
  1456. if x != nil {
  1457. return x.Area
  1458. }
  1459. return ""
  1460. }
  1461. func (x *PartnerInfo) GetPartnerId() int64 {
  1462. if x != nil {
  1463. return x.PartnerId
  1464. }
  1465. return 0
  1466. }
  1467. func (x *PartnerInfo) GetIsBlack() bool {
  1468. if x != nil {
  1469. return x.IsBlack
  1470. }
  1471. return false
  1472. }
  1473. func (x *PartnerInfo) GetWorkingStatus() string {
  1474. if x != nil {
  1475. return x.WorkingStatus
  1476. }
  1477. return ""
  1478. }
  1479. func (x *PartnerInfo) GetRegisterStatus() string {
  1480. if x != nil {
  1481. return x.RegisterStatus
  1482. }
  1483. return ""
  1484. }
  1485. type PartnerMessage struct {
  1486. state protoimpl.MessageState
  1487. sizeCache protoimpl.SizeCache
  1488. unknownFields protoimpl.UnknownFields
  1489. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1490. LookNum int64 `protobuf:"varint,2,opt,name=lookNum,proto3" json:"lookNum"` // 看过我的数量
  1491. LookUnreadNum int64 `protobuf:"varint,3,opt,name=lookUnreadNum,proto3" json:"lookUnreadNum"` // 未读的看过我的数量
  1492. TodayReceptionNum int64 `protobuf:"varint,4,opt,name=todayReceptionNum,proto3" json:"todayReceptionNum"` // 今日接待人数
  1493. ReversionRate string `protobuf:"bytes,5,opt,name=reversionRate,proto3" json:"reversionRate"` // 五分钟的回复率
  1494. LikedNum int64 `protobuf:"varint,6,opt,name=likedNum,proto3" json:"likedNum"` // 喜欢我
  1495. LikedUnreadNum int64 `protobuf:"varint,7,opt,name=likedUnreadNum,proto3" json:"likedUnreadNum"` // 喜欢我的未读数
  1496. AvatarUrlList []string `protobuf:"bytes,8,rep,name=avatarUrlList,proto3" json:"avatarUrlList"` // 头像列表
  1497. LikeNum int64 `protobuf:"varint,9,opt,name=likeNum,proto3" json:"likeNum"` // 我喜欢
  1498. }
  1499. func (x *PartnerMessage) Reset() {
  1500. *x = PartnerMessage{}
  1501. if protoimpl.UnsafeEnabled {
  1502. mi := &file_partner_proto_msgTypes[24]
  1503. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1504. ms.StoreMessageInfo(mi)
  1505. }
  1506. }
  1507. func (x *PartnerMessage) String() string {
  1508. return protoimpl.X.MessageStringOf(x)
  1509. }
  1510. func (*PartnerMessage) ProtoMessage() {}
  1511. func (x *PartnerMessage) ProtoReflect() protoreflect.Message {
  1512. mi := &file_partner_proto_msgTypes[24]
  1513. if protoimpl.UnsafeEnabled && x != nil {
  1514. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1515. if ms.LoadMessageInfo() == nil {
  1516. ms.StoreMessageInfo(mi)
  1517. }
  1518. return ms
  1519. }
  1520. return mi.MessageOf(x)
  1521. }
  1522. // Deprecated: Use PartnerMessage.ProtoReflect.Descriptor instead.
  1523. func (*PartnerMessage) Descriptor() ([]byte, []int) {
  1524. return file_partner_proto_rawDescGZIP(), []int{24}
  1525. }
  1526. func (x *PartnerMessage) GetId() string {
  1527. if x != nil {
  1528. return x.Id
  1529. }
  1530. return ""
  1531. }
  1532. func (x *PartnerMessage) GetLookNum() int64 {
  1533. if x != nil {
  1534. return x.LookNum
  1535. }
  1536. return 0
  1537. }
  1538. func (x *PartnerMessage) GetLookUnreadNum() int64 {
  1539. if x != nil {
  1540. return x.LookUnreadNum
  1541. }
  1542. return 0
  1543. }
  1544. func (x *PartnerMessage) GetTodayReceptionNum() int64 {
  1545. if x != nil {
  1546. return x.TodayReceptionNum
  1547. }
  1548. return 0
  1549. }
  1550. func (x *PartnerMessage) GetReversionRate() string {
  1551. if x != nil {
  1552. return x.ReversionRate
  1553. }
  1554. return ""
  1555. }
  1556. func (x *PartnerMessage) GetLikedNum() int64 {
  1557. if x != nil {
  1558. return x.LikedNum
  1559. }
  1560. return 0
  1561. }
  1562. func (x *PartnerMessage) GetLikedUnreadNum() int64 {
  1563. if x != nil {
  1564. return x.LikedUnreadNum
  1565. }
  1566. return 0
  1567. }
  1568. func (x *PartnerMessage) GetAvatarUrlList() []string {
  1569. if x != nil {
  1570. return x.AvatarUrlList
  1571. }
  1572. return nil
  1573. }
  1574. func (x *PartnerMessage) GetLikeNum() int64 {
  1575. if x != nil {
  1576. return x.LikeNum
  1577. }
  1578. return 0
  1579. }
  1580. type PartnerBalance struct {
  1581. state protoimpl.MessageState
  1582. sizeCache protoimpl.SizeCache
  1583. unknownFields protoimpl.UnknownFields
  1584. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1585. Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"` // 可提现余额
  1586. TodayProfit int64 `protobuf:"varint,3,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
  1587. Level int64 `protobuf:"varint,4,opt,name=level,proto3" json:"level"` // 等级
  1588. ChatBenefit int64 `protobuf:"varint,5,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  1589. CallBenefit int64 `protobuf:"varint,6,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  1590. UpLevelCondition string `protobuf:"bytes,7,opt,name=upLevelCondition,proto3" json:"upLevelCondition"` // 升级条件
  1591. UpLevelBenefit int64 `protobuf:"varint,8,opt,name=upLevelBenefit,proto3" json:"upLevelBenefit"` // 升级需要的收益
  1592. CumulativeIncome int64 `protobuf:"varint,9,opt,name=cumulativeIncome,proto3" json:"cumulativeIncome"` // 累计收益
  1593. }
  1594. func (x *PartnerBalance) Reset() {
  1595. *x = PartnerBalance{}
  1596. if protoimpl.UnsafeEnabled {
  1597. mi := &file_partner_proto_msgTypes[25]
  1598. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1599. ms.StoreMessageInfo(mi)
  1600. }
  1601. }
  1602. func (x *PartnerBalance) String() string {
  1603. return protoimpl.X.MessageStringOf(x)
  1604. }
  1605. func (*PartnerBalance) ProtoMessage() {}
  1606. func (x *PartnerBalance) ProtoReflect() protoreflect.Message {
  1607. mi := &file_partner_proto_msgTypes[25]
  1608. if protoimpl.UnsafeEnabled && x != nil {
  1609. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1610. if ms.LoadMessageInfo() == nil {
  1611. ms.StoreMessageInfo(mi)
  1612. }
  1613. return ms
  1614. }
  1615. return mi.MessageOf(x)
  1616. }
  1617. // Deprecated: Use PartnerBalance.ProtoReflect.Descriptor instead.
  1618. func (*PartnerBalance) Descriptor() ([]byte, []int) {
  1619. return file_partner_proto_rawDescGZIP(), []int{25}
  1620. }
  1621. func (x *PartnerBalance) GetId() string {
  1622. if x != nil {
  1623. return x.Id
  1624. }
  1625. return ""
  1626. }
  1627. func (x *PartnerBalance) GetBalance() int64 {
  1628. if x != nil {
  1629. return x.Balance
  1630. }
  1631. return 0
  1632. }
  1633. func (x *PartnerBalance) GetTodayProfit() int64 {
  1634. if x != nil {
  1635. return x.TodayProfit
  1636. }
  1637. return 0
  1638. }
  1639. func (x *PartnerBalance) GetLevel() int64 {
  1640. if x != nil {
  1641. return x.Level
  1642. }
  1643. return 0
  1644. }
  1645. func (x *PartnerBalance) GetChatBenefit() int64 {
  1646. if x != nil {
  1647. return x.ChatBenefit
  1648. }
  1649. return 0
  1650. }
  1651. func (x *PartnerBalance) GetCallBenefit() int64 {
  1652. if x != nil {
  1653. return x.CallBenefit
  1654. }
  1655. return 0
  1656. }
  1657. func (x *PartnerBalance) GetUpLevelCondition() string {
  1658. if x != nil {
  1659. return x.UpLevelCondition
  1660. }
  1661. return ""
  1662. }
  1663. func (x *PartnerBalance) GetUpLevelBenefit() int64 {
  1664. if x != nil {
  1665. return x.UpLevelBenefit
  1666. }
  1667. return 0
  1668. }
  1669. func (x *PartnerBalance) GetCumulativeIncome() int64 {
  1670. if x != nil {
  1671. return x.CumulativeIncome
  1672. }
  1673. return 0
  1674. }
  1675. type PartnerDBBalance struct {
  1676. state protoimpl.MessageState
  1677. sizeCache protoimpl.SizeCache
  1678. unknownFields protoimpl.UnknownFields
  1679. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
  1680. Level int64 `protobuf:"varint,2,opt,name=level,proto3" json:"level"` // 等级
  1681. ChatBenefit int64 `protobuf:"varint,3,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
  1682. CallBenefit int64 `protobuf:"varint,4,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
  1683. }
  1684. func (x *PartnerDBBalance) Reset() {
  1685. *x = PartnerDBBalance{}
  1686. if protoimpl.UnsafeEnabled {
  1687. mi := &file_partner_proto_msgTypes[26]
  1688. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1689. ms.StoreMessageInfo(mi)
  1690. }
  1691. }
  1692. func (x *PartnerDBBalance) String() string {
  1693. return protoimpl.X.MessageStringOf(x)
  1694. }
  1695. func (*PartnerDBBalance) ProtoMessage() {}
  1696. func (x *PartnerDBBalance) ProtoReflect() protoreflect.Message {
  1697. mi := &file_partner_proto_msgTypes[26]
  1698. if protoimpl.UnsafeEnabled && x != nil {
  1699. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1700. if ms.LoadMessageInfo() == nil {
  1701. ms.StoreMessageInfo(mi)
  1702. }
  1703. return ms
  1704. }
  1705. return mi.MessageOf(x)
  1706. }
  1707. // Deprecated: Use PartnerDBBalance.ProtoReflect.Descriptor instead.
  1708. func (*PartnerDBBalance) Descriptor() ([]byte, []int) {
  1709. return file_partner_proto_rawDescGZIP(), []int{26}
  1710. }
  1711. func (x *PartnerDBBalance) GetId() string {
  1712. if x != nil {
  1713. return x.Id
  1714. }
  1715. return ""
  1716. }
  1717. func (x *PartnerDBBalance) GetLevel() int64 {
  1718. if x != nil {
  1719. return x.Level
  1720. }
  1721. return 0
  1722. }
  1723. func (x *PartnerDBBalance) GetChatBenefit() int64 {
  1724. if x != nil {
  1725. return x.ChatBenefit
  1726. }
  1727. return 0
  1728. }
  1729. func (x *PartnerDBBalance) GetCallBenefit() int64 {
  1730. if x != nil {
  1731. return x.CallBenefit
  1732. }
  1733. return 0
  1734. }
  1735. type PartnerApplyWithdrawRequest struct {
  1736. state protoimpl.MessageState
  1737. sizeCache protoimpl.SizeCache
  1738. unknownFields protoimpl.UnknownFields
  1739. TemplateId int64 `protobuf:"varint,1,opt,name=templateId,proto3" json:"templateId"` // 提现模板id
  1740. }
  1741. func (x *PartnerApplyWithdrawRequest) Reset() {
  1742. *x = PartnerApplyWithdrawRequest{}
  1743. if protoimpl.UnsafeEnabled {
  1744. mi := &file_partner_proto_msgTypes[27]
  1745. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1746. ms.StoreMessageInfo(mi)
  1747. }
  1748. }
  1749. func (x *PartnerApplyWithdrawRequest) String() string {
  1750. return protoimpl.X.MessageStringOf(x)
  1751. }
  1752. func (*PartnerApplyWithdrawRequest) ProtoMessage() {}
  1753. func (x *PartnerApplyWithdrawRequest) ProtoReflect() protoreflect.Message {
  1754. mi := &file_partner_proto_msgTypes[27]
  1755. if protoimpl.UnsafeEnabled && x != nil {
  1756. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1757. if ms.LoadMessageInfo() == nil {
  1758. ms.StoreMessageInfo(mi)
  1759. }
  1760. return ms
  1761. }
  1762. return mi.MessageOf(x)
  1763. }
  1764. // Deprecated: Use PartnerApplyWithdrawRequest.ProtoReflect.Descriptor instead.
  1765. func (*PartnerApplyWithdrawRequest) Descriptor() ([]byte, []int) {
  1766. return file_partner_proto_rawDescGZIP(), []int{27}
  1767. }
  1768. func (x *PartnerApplyWithdrawRequest) GetTemplateId() int64 {
  1769. if x != nil {
  1770. return x.TemplateId
  1771. }
  1772. return 0
  1773. }
  1774. var File_partner_proto protoreflect.FileDescriptor
  1775. var file_partner_proto_rawDesc = []byte{
  1776. 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
  1777. 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f,
  1778. 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
  1779. 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67,
  1780. 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74,
  1781. 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d,
  1782. 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1783. 0x1a, 0x1f, 0x61, 0x70, 0x69, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73,
  1784. 0x2f, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1785. 0x6f, 0x1a, 0x13, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74,
  1786. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xf5, 0x01, 0x0a, 0x11, 0x4f, 0x6e, 0x6c, 0x69, 0x6e,
  1787. 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x0a,
  1788. 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1789. 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x22, 0x0a, 0x0c,
  1790. 0x75, 0x73, 0x65, 0x72, 0x57, 0x6f, 0x6d, 0x61, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01,
  1791. 0x28, 0x03, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x57, 0x6f, 0x6d, 0x61, 0x6e, 0x4e, 0x75, 0x6d,
  1792. 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4d, 0x61, 0x6e, 0x4e, 0x75,
  1793. 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  1794. 0x4d, 0x61, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x28, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  1795. 0x72, 0x57, 0x6f, 0x6d, 0x61, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52,
  1796. 0x0f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x6f, 0x6d, 0x61, 0x6e, 0x4e, 0x75, 0x6d,
  1797. 0x12, 0x22, 0x0a, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4e, 0x75, 0x6d,
  1798. 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x4f, 0x74, 0x68, 0x65,
  1799. 0x72, 0x4e, 0x75, 0x6d, 0x12, 0x28, 0x0a, 0x0f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4f,
  1800. 0x74, 0x68, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x70,
  1801. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x22, 0x84,
  1802. 0x01, 0x0a, 0x2c, 0x53, 0x65, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x4d, 0x69,
  1803. 0x6e, 0x75, 0x74, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1804. 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
  1805. 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28,
  1806. 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x75,
  1807. 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
  1808. 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x61, 0x6d,
  1809. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x61, 0x6d,
  1810. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x66, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f,
  1811. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65,
  1812. 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20,
  1813. 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78,
  1814. 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x20, 0x0a, 0x0b, 0x69,
  1815. 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09,
  1816. 0x52, 0x0b, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x73, 0x22, 0x78, 0x0a,
  1817. 0x1c, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f,
  1818. 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
  1819. 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e,
  1820. 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
  1821. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a,
  1822. 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73,
  1823. 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01,
  1824. 0x28, 0x03, 0x52, 0x03, 0x70, 0x69, 0x64, 0x22, 0x68, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x45,
  1825. 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74,
  1826. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18,
  1827. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x32, 0x0a,
  1828. 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x70,
  1829. 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  1830. 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73,
  1831. 0x74, 0x22, 0xff, 0x02, 0x0a, 0x11, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63,
  1832. 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e,
  1833. 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74,
  1834. 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d,
  1835. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d,
  1836. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03,
  1837. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12,
  1838. 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63,
  1839. 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75,
  1840. 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61,
  1841. 0x74, 0x75, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e,
  1842. 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  1843. 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65,
  1844. 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03,
  1845. 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03,
  1846. 0x52, 0x03, 0x70, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
  1847. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x78,
  1848. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  1849. 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61,
  1850. 0x67, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a,
  1851. 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c,
  1852. 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74,
  1853. 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d,
  1854. 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54,
  1855. 0x69, 0x6d, 0x65, 0x22, 0x5c, 0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69,
  1856. 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e,
  1857. 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78,
  1858. 0x74, 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28,
  1859. 0x0b, 0x32, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e,
  1860. 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73,
  1861. 0x74, 0x22, 0xe5, 0x02, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66,
  1862. 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01,
  1863. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12,
  1864. 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  1865. 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61,
  1866. 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
  1867. 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74,
  1868. 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
  1869. 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63,
  1870. 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x05,
  1871. 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12,
  1872. 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28,
  1873. 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73,
  1874. 0x65, 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a,
  1875. 0x03, 0x70, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x70, 0x69, 0x64, 0x12,
  1876. 0x10, 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67,
  1877. 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69,
  1878. 0x6f, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65,
  1879. 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x77, 0x78, 0x4e, 0x69, 0x63,
  1880. 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x77, 0x78, 0x4e,
  1881. 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x77, 0x78, 0x41, 0x76, 0x61,
  1882. 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x78,
  1883. 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x22, 0x4d, 0x0a, 0x15, 0x45, 0x78, 0x61,
  1884. 0x6d, 0x69, 0x6e, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
  1885. 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18,
  1886. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64,
  1887. 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
  1888. 0x52, 0x06, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x22, 0x6d, 0x0a, 0x29, 0x50, 0x61, 0x72, 0x74,
  1889. 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63,
  1890. 0x65, 0x41, 0x6e, 0x64, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
  1891. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72,
  1892. 0x6f, 0x66, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61,
  1893. 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x72, 0x6f, 0x6f, 0x6d, 0x50,
  1894. 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x6f, 0x6f,
  1895. 0x6d, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x22, 0x58, 0x0a, 0x18, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1896. 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x44, 0x73, 0x52, 0x65, 0x71, 0x75,
  1897. 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72,
  1898. 0x64, 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0d, 0x63, 0x68, 0x61, 0x74,
  1899. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f,
  1900. 0x6d, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49,
  1901. 0x64, 0x22, 0x3b, 0x0a, 0x15, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c,
  1902. 0x65, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x68,
  1903. 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
  1904. 0x52, 0x0c, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x22, 0x48,
  1905. 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71,
  1906. 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01,
  1907. 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74,
  1908. 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69,
  1909. 0x63, 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x76, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c,
  1910. 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a,
  1911. 0x07, 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07,
  1912. 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61,
  1913. 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  1914. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d,
  1915. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70,
  1916. 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
  1917. 0x22, 0x67, 0x0a, 0x1e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64,
  1918. 0x72, 0x61, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  1919. 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01,
  1920. 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69,
  1921. 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70,
  1922. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x49,
  1923. 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xbe, 0x01, 0x0a, 0x0c, 0x57, 0x69,
  1924. 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
  1925. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f,
  1926. 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79,
  1927. 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
  1928. 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74,
  1929. 0x75, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73,
  1930. 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
  1931. 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61,
  1932. 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72,
  1933. 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x75, 0x63, 0x63,
  1934. 0x65, 0x73, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73,
  1935. 0x75, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x60, 0x0a, 0x20, 0x50, 0x61,
  1936. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d,
  1937. 0x70, 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x3c,
  1938. 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x61,
  1939. 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e,
  1940. 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61,
  1941. 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x71, 0x0a, 0x1b,
  1942. 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54,
  1943. 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69,
  1944. 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d,
  1945. 0x6f, 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65,
  1946. 0x79, 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
  1947. 0x03, 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74,
  1948. 0x6c, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22,
  1949. 0x49, 0x0a, 0x21, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  1950. 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71,
  1951. 0x75, 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53,
  1952. 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72,
  1953. 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x72, 0x0a, 0x16, 0x50, 0x61,
  1954. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71,
  1955. 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70,
  1956. 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79,
  1957. 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x02,
  1958. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e,
  1959. 0x0a, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01,
  1960. 0x28, 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x38,
  1961. 0x0a, 0x0a, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2a, 0x0a, 0x04,
  1962. 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69,
  1963. 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e,
  1964. 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x83, 0x01, 0x0a, 0x09, 0x4c, 0x65, 0x76,
  1965. 0x65, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18,
  1966. 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b,
  1967. 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
  1968. 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20,
  1969. 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20,
  1970. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74,
  1971. 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20,
  1972. 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x52,
  1973. 0x0a, 0x18, 0x41, 0x64, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61,
  1974. 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61,
  1975. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70,
  1976. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61,
  1977. 0x6e, 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e,
  1978. 0x63, 0x65, 0x22, 0xe1, 0x03, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e,
  1979. 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
  1980. 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
  1981. 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c,
  1982. 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28,
  1983. 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03,
  1984. 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10,
  1985. 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78,
  1986. 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
  1987. 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c,
  1988. 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18,
  1989. 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07,
  1990. 0x74, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74,
  1991. 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74,
  1992. 0x75, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61,
  1993. 0x74, 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63,
  1994. 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e,
  1995. 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08,
  1996. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
  1997. 0x70, 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79,
  1998. 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04,
  1999. 0x61, 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61,
  2000. 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20,
  2001. 0x01, 0x28, 0x03, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18,
  2002. 0x0a, 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52,
  2003. 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b,
  2004. 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52,
  2005. 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26,
  2006. 0x0a, 0x0e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
  2007. 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72,
  2008. 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xb8, 0x02, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2009. 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
  2010. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x6f,
  2011. 0x6b, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x6f, 0x6f, 0x6b,
  2012. 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61,
  2013. 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b,
  2014. 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x74, 0x6f, 0x64,
  2015. 0x61, 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x04,
  2016. 0x20, 0x01, 0x28, 0x03, 0x52, 0x11, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x63, 0x65, 0x70,
  2017. 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x76, 0x65, 0x72,
  2018. 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
  2019. 0x72, 0x65, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a,
  2020. 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52,
  2021. 0x08, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x6c, 0x69, 0x6b,
  2022. 0x65, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28,
  2023. 0x03, 0x52, 0x0e, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75,
  2024. 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4c, 0x69,
  2025. 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72,
  2026. 0x55, 0x72, 0x6c, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x69, 0x6b, 0x65, 0x4e,
  2027. 0x75, 0x6d, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x69, 0x6b, 0x65, 0x4e, 0x75,
  2028. 0x6d, 0x22, 0xb6, 0x02, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c,
  2029. 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2030. 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18,
  2031. 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x20,
  2032. 0x0a, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20,
  2033. 0x01, 0x28, 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74,
  2034. 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52,
  2035. 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65,
  2036. 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61,
  2037. 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c,
  2038. 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63,
  2039. 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x70,
  2040. 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07,
  2041. 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x43, 0x6f, 0x6e,
  2042. 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65,
  2043. 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e,
  2044. 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x2a,
  2045. 0x0a, 0x10, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x63, 0x6f,
  2046. 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61,
  2047. 0x74, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x22, 0x7c, 0x0a, 0x10, 0x50, 0x61,
  2048. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e,
  2049. 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14,
  2050. 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c,
  2051. 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65,
  2052. 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42,
  2053. 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65,
  2054. 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61, 0x6c,
  2055. 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x22, 0x3d, 0x0a, 0x1b, 0x50, 0x61, 0x72, 0x74,
  2056. 0x6e, 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77,
  2057. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c,
  2058. 0x61, 0x74, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x65, 0x6d,
  2059. 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x32, 0xe3, 0x50, 0x0a, 0x07, 0x50, 0x61, 0x72, 0x74,
  2060. 0x6e, 0x65, 0x72, 0x12, 0x60, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2061. 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2062. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e,
  2063. 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74,
  2064. 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22,
  2065. 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x69, 0x6e,
  2066. 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x0d, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f,
  2067. 0x6e, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2068. 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64,
  2069. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2070. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2071. 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  2072. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x73, 0x65, 0x6e, 0x64,
  2073. 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x0e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e,
  2074. 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2075. 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x64,
  2076. 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2077. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2078. 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  2079. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x64, 0x65, 0x2f, 0x63, 0x68, 0x65, 0x63,
  2080. 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x84, 0x01, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50,
  2081. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f,
  2082. 0x6e, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55,
  2083. 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e,
  2084. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2085. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2086. 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x1f, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  2087. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x69, 0x6e, 0x66,
  2088. 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x15, 0x43,
  2089. 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2090. 0x52, 0x6f, 0x6f, 0x6d, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2091. 0x6e, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d,
  2092. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74,
  2093. 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93,
  2094. 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2095. 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12,
  2096. 0x69, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c,
  2097. 0x61, 0x6e, 0x63, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2098. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61,
  2099. 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2100. 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02,
  2101. 0x19, 0x22, 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f,
  2102. 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x61, 0x0a, 0x12, 0x50, 0x61,
  2103. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f,
  2104. 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65,
  2105. 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2106. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22,
  2107. 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  2108. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x68, 0x6f, 0x6d, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a,
  2109. 0x1e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2110. 0x6e, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x12,
  2111. 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72,
  2112. 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2113. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x65, 0x64, 0x41, 0x6e, 0x64, 0x4c,
  2114. 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x22, 0x1b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x22,
  2115. 0x10, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6e, 0x75,
  2116. 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x74, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x6f, 0x6f, 0x6b,
  2117. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2118. 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2119. 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69,
  2120. 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69,
  2121. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22,
  2122. 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  2123. 0x73, 0x74, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x06, 0x57, 0x78,
  2124. 0x43, 0x6f, 0x6e, 0x66, 0x12, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2125. 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52, 0x65, 0x71, 0x1a, 0x1a, 0x2e, 0x61, 0x70,
  2126. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x78, 0x43, 0x6f, 0x6e, 0x66, 0x52,
  2127. 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22,
  2128. 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x77, 0x78, 0x2f, 0x6a, 0x73, 0x73, 0x64, 0x6b, 0x2f, 0x63,
  2129. 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x62, 0x0a, 0x10, 0x46, 0x69, 0x6e, 0x64,
  2130. 0x54, 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x79, 0x53, 0x65, 0x78, 0x12, 0x12, 0x2e, 0x61,
  2131. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x78, 0x52, 0x65, 0x71,
  2132. 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61,
  2133. 0x67, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93,
  2134. 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2135. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x74, 0x61, 0x67, 0x3a, 0x01, 0x2a, 0x12, 0x79, 0x0a, 0x0e,
  2136. 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c,
  2137. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
  2138. 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61,
  2139. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  2140. 0x65, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  2141. 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69,
  2142. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6f, 0x6e,
  2143. 0x6c, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x87, 0x01, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64,
  2144. 0x57, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f,
  2145. 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2146. 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,
  2147. 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50,
  2148. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69,
  2149. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22,
  2150. 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69,
  2151. 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x69, 0x6e, 0x3a, 0x01,
  2152. 0x2a, 0x12, 0x83, 0x01, 0x0a, 0x18, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53, 0x65,
  2153. 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b,
  2154. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
  2155. 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70,
  2156. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69,
  2157. 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2158. 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  2159. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  2160. 0x6f, 0x76, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64,
  2161. 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25,
  2162. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  2163. 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
  2164. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2165. 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73,
  2166. 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18,
  2167. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61,
  2168. 0x74, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x75, 0x0a, 0x0f, 0x46,
  2169. 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x12, 0x22,
  2170. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64,
  2171. 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x52, 0x65, 0x71, 0x75, 0x65,
  2172. 0x73, 0x74, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2173. 0x43, 0x68, 0x61, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x4d, 0x73, 0x67, 0x22, 0x25, 0x82, 0xd3, 0xe4,
  2174. 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2175. 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6d, 0x73, 0x67, 0x3a,
  2176. 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x10, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2177. 0x49, 0x73, 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2178. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  2179. 0x12, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x73, 0x4c,
  2180. 0x69, 0x6b, 0x65, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f, 0x61, 0x70,
  2181. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x69, 0x73, 0x6c, 0x69, 0x6b, 0x65,
  2182. 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0e, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x42,
  2183. 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2184. 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14,
  2185. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65,
  2186. 0x4c, 0x69, 0x73, 0x74, 0x22, 0x26, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61,
  2187. 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f,
  2188. 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x0d,
  2189. 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x20, 0x2e,
  2190. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43,
  2191. 0x68, 0x61, 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2192. 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61,
  2193. 0x74, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93,
  2194. 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2195. 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x3a, 0x01, 0x2a, 0x12, 0x69,
  2196. 0x0a, 0x0a, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x4d, 0x65, 0x6d, 0x65, 0x12, 0x15, 0x2e, 0x61,
  2197. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  2198. 0x4e, 0x75, 0x6d, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2199. 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22,
  2200. 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  2201. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f,
  2202. 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x78, 0x0a, 0x12, 0x52, 0x61, 0x6e,
  2203. 0x64, 0x6f, 0x6d, 0x53, 0x77, 0x69, 0x66, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  2204. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x61, 0x6e,
  2205. 0x64, 0x6f, 0x6d, 0x4e, 0x75, 0x6d, 0x41, 0x6e, 0x64, 0x53, 0x65, 0x78, 0x1a, 0x1a, 0x2e, 0x61,
  2206. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2207. 0x54, 0x65, 0x78, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23,
  2208. 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66,
  2209. 0x69, 0x6e, 0x64, 0x2f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x2f, 0x72, 0x61, 0x6e, 0x64, 0x6f, 0x6d,
  2210. 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x65, 0x6d, 0x65, 0x54,
  2211. 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2212. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x19, 0x2e, 0x61,
  2213. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x6d, 0x65, 0x54, 0x69,
  2214. 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22,
  2215. 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x66, 0x69,
  2216. 0x6e, 0x64, 0x2f, 0x6d, 0x65, 0x6d, 0x65, 0x2f, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x3a, 0x01, 0x2a,
  2217. 0x12, 0x71, 0x0a, 0x12, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x43, 0x68,
  2218. 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2219. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a,
  2220. 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72,
  2221. 0x74, 0x6e, 0x65, 0x72, 0x43, 0x68, 0x61, 0x74, 0x43, 0x61, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f,
  2222. 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  2223. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x63, 0x61, 0x72, 0x64,
  2224. 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x12, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x54,
  2225. 0x6f, 0x70, 0x69, 0x63, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2226. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2227. 0x79, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  2228. 0x65, 0x6d, 0x65, 0x54, 0x69, 0x74, 0x6c, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x22, 0x27, 0x82, 0xd3,
  2229. 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  2230. 0x65, 0x72, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x74, 0x69, 0x74,
  2231. 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5c, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2232. 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2233. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  2234. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2235. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f,
  2236. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x6b, 0x65,
  2237. 0x3a, 0x01, 0x2a, 0x12, 0x60, 0x0a, 0x0d, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x6e,
  2238. 0x4c, 0x69, 0x6b, 0x65, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2239. 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
  2240. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2241. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13, 0x2f,
  2242. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x75, 0x6e, 0x6c, 0x69,
  2243. 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x5f, 0x0a, 0x06, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12,
  2244. 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x70,
  2245. 0x6f, 0x72, 0x74, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
  2246. 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
  2247. 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x22, 0x13,
  2248. 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70,
  2249. 0x6f, 0x72, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x83, 0x01, 0x0a, 0x16, 0x46, 0x69, 0x6e, 0x64, 0x4f,
  2250. 0x76, 0x65, 0x72, 0x53, 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61,
  2251. 0x72, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2252. 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2253. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x53,
  2254. 0x65, 0x76, 0x65, 0x6e, 0x44, 0x61, 0x79, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x70,
  2255. 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69,
  2256. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6f, 0x76, 0x65, 0x72, 0x2f, 0x61, 0x76,
  2257. 0x61, 0x74, 0x61, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7c, 0x0a, 0x11,
  2258. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49,
  2259. 0x44, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55,
  2260. 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44,
  2261. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
  2262. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
  2263. 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  2264. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x61, 0x73, 0x74,
  2265. 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0b, 0x43, 0x72,
  2266. 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2267. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63,
  2268. 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x13, 0x2e, 0x61, 0x70, 0x69,
  2269. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x22,
  2270. 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  2271. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x63, 0x72, 0x65, 0x61,
  2272. 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x0b, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53,
  2273. 0x63, 0x72, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2274. 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2275. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2276. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e,
  2277. 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73,
  2278. 0x63, 0x72, 0x69, 0x70, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6b,
  2279. 0x0a, 0x0b, 0x46, 0x69, 0x6e, 0x64, 0x4d, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e,
  2280. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50,
  2281. 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69,
  2282. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70,
  2283. 0x6c, 0x79, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69,
  2284. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66,
  2285. 0x69, 0x6e, 0x64, 0x2f, 0x73, 0x65, 0x6c, 0x66, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x0e, 0x46,
  2286. 0x69, 0x6e, 0x64, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1c, 0x2e,
  2287. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x53,
  2288. 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70,
  2289. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
  2290. 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70,
  2291. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f,
  2292. 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x77, 0x0a,
  2293. 0x12, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x53, 0x63,
  2294. 0x72, 0x69, 0x70, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2295. 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2296. 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63,
  2297. 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26,
  2298. 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73,
  2299. 0x63, 0x72, 0x69, 0x70, 0x2f, 0x66, 0x69, 0x6e, 0x64, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d,
  2300. 0x65, 0x6e, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x0f, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2301. 0x4c, 0x6f, 0x6f, 0x6b, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2302. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x52, 0x65,
  2303. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2304. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x22, 0x82,
  2305. 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  2306. 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x3a, 0x01,
  2307. 0x2a, 0x12, 0x6d, 0x0a, 0x13, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b,
  2308. 0x4c, 0x6f, 0x6f, 0x6b, 0x42, 0x61, 0x63, 0x6b, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
  2309. 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
  2310. 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x63,
  2311. 0x72, 0x69, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22,
  2312. 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63,
  2313. 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x2f, 0x62, 0x61, 0x63, 0x6b, 0x3a, 0x01, 0x2a,
  2314. 0x12, 0x73, 0x0a, 0x10, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53,
  2315. 0x63, 0x72, 0x69, 0x70, 0x12, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e,
  2316. 0x65, 0x72, 0x2e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71,
  2317. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2318. 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f,
  2319. 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70,
  2320. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x72, 0x65, 0x70,
  2321. 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x6b, 0x0a, 0x11, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2322. 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x68, 0x61, 0x74, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69,
  2323. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65,
  2324. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2325. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x23, 0x82,
  2326. 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  2327. 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x3a,
  2328. 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2329. 0x41, 0x6c, 0x6c, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67,
  2330. 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
  2331. 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e,
  2332. 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x27,
  2333. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x22, 0x1c, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72,
  2334. 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x61, 0x64,
  2335. 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x16, 0x47, 0x65, 0x74, 0x50, 0x61,
  2336. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x79, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2337. 0x6e, 0x12, 0x17, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50,
  2338. 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69,
  2339. 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x6f, 0x6f,
  2340. 0x6d, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f,
  2341. 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x6f, 0x6f, 0x6d,
  2342. 0x2f, 0x69, 0x6e, 0x66, 0x6f, 0x3a, 0x01, 0x2a, 0x12, 0x74, 0x0a, 0x0c, 0x46, 0x69, 0x6e, 0x64,
  2343. 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2344. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65,
  2345. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74,
  2346. 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69,
  2347. 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4,
  2348. 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2349. 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69, 0x6b, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x76,
  2350. 0x0a, 0x0d, 0x46, 0x69, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12,
  2351. 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73,
  2352. 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61,
  2353. 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74, 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f,
  2354. 0x6f, 0x6b, 0x41, 0x6e, 0x64, 0x4c, 0x69, 0x6b, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  2355. 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69,
  2356. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x6c, 0x69,
  2357. 0x6b, 0x65, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x70, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2358. 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x12, 0x25, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70,
  2359. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f,
  2360. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x44, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2361. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2362. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22,
  2363. 0x14, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f,
  2364. 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x7a, 0x0a, 0x14, 0x50, 0x61, 0x72, 0x74,
  2365. 0x6e, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74,
  2366. 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50,
  2367. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x52, 0x65, 0x71,
  2368. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2369. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x26, 0x82, 0xd3,
  2370. 0xe4, 0x93, 0x02, 0x20, 0x22, 0x1b, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  2371. 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74,
  2372. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x83, 0x01, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61,
  2373. 0x74, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x25, 0x2e, 0x61,
  2374. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68,
  2375. 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  2376. 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2377. 0x2e, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
  2378. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61,
  2379. 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
  2380. 0x63, 0x74, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x69, 0x0a, 0x11, 0x47, 0x65,
  2381. 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  2382. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2383. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
  2384. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4d, 0x65, 0x73,
  2385. 0x73, 0x61, 0x67, 0x65, 0x22, 0x1f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x22, 0x14, 0x2f, 0x61,
  2386. 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2387. 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x6f, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74,
  2388. 0x6e, 0x65, 0x72, 0x4c, 0x6f, 0x6f, 0x6b, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2389. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2390. 0x74, 0x79, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x73, 0x74, 0x61, 0x74, 0x69, 0x73, 0x74,
  2391. 0x69, 0x63, 0x73, 0x2e, 0x4c, 0x6f, 0x6f, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52,
  2392. 0x65, 0x70, 0x6c, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61,
  2393. 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6e, 0x75, 0x6d, 0x2f, 0x6c,
  2394. 0x6f, 0x6f, 0x6b, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x13, 0x46, 0x69, 0x6e, 0x64, 0x55,
  2395. 0x6e, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b,
  2396. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74,
  2397. 0x50, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x22, 0x2e, 0x61, 0x70,
  2398. 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x46, 0x69,
  2399. 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
  2400. 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61,
  2401. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f,
  2402. 0x75, 0x6e, 0x72, 0x65, 0x70, 0x6c, 0x79, 0x3a, 0x01, 0x2a, 0x12, 0x6c, 0x0a, 0x14, 0x47, 0x65,
  2403. 0x74, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x54, 0x61, 0x62,
  2404. 0x6c, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2405. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x17, 0x2e, 0x61, 0x70, 0x69,
  2406. 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x54, 0x61,
  2407. 0x62, 0x6c, 0x65, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x61, 0x70,
  2408. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x2f,
  2409. 0x74, 0x61, 0x62, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x72, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74,
  2410. 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x12, 0x23, 0x2e, 0x61, 0x70,
  2411. 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2412. 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  2413. 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
  2414. 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c,
  2415. 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x63,
  2416. 0x68, 0x61, 0x74, 0x2f, 0x61, 0x77, 0x61, 0x72, 0x64, 0x3a, 0x01, 0x2a, 0x12, 0x93, 0x01, 0x0a,
  2417. 0x1a, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x6f,
  2418. 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70,
  2419. 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2420. 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74,
  2421. 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2422. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2423. 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70,
  2424. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e,
  2425. 0x67, 0x2f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a,
  2426. 0x01, 0x2a, 0x12, 0x73, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x52, 0x65, 0x70,
  2427. 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2428. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1e, 0x2e,
  2429. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x68, 0x61, 0x74, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x4e, 0x6f, 0x74,
  2430. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x4e, 0x75, 0x6d, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x28, 0x82,
  2431. 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74,
  2432. 0x6e, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x75, 0x6e, 0x72, 0x65, 0x70, 0x6c, 0x79,
  2433. 0x2f, 0x6e, 0x75, 0x6d, 0x3a, 0x01, 0x2a, 0x12, 0x7a, 0x0a, 0x14, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2434. 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x12,
  2435. 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61,
  2436. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72,
  2437. 0x61, 0x77, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
  2438. 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
  2439. 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70, 0x69, 0x2f,
  2440. 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77,
  2441. 0x3a, 0x01, 0x2a, 0x12, 0x94, 0x01, 0x0a, 0x1b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57,
  2442. 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x4c,
  2443. 0x69, 0x73, 0x74, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2444. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x2d, 0x2e, 0x61, 0x70,
  2445. 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2446. 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
  2447. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93,
  2448. 0x02, 0x28, 0x22, 0x23, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2449. 0x2f, 0x77, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x2f, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61,
  2450. 0x74, 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x93, 0x01, 0x0a, 0x19, 0x50,
  2451. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52, 0x65,
  2452. 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2453. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x52, 0x65,
  2454. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74,
  2455. 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64,
  2456. 0x72, 0x61, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  2457. 0x6c, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69,
  2458. 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x77, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61,
  2459. 0x77, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a,
  2460. 0x12, 0x9f, 0x01, 0x0a, 0x24, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x52,
  2461. 0x6f, 0x6f, 0x6d, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x41, 0x6e, 0x64, 0x54, 0x6f, 0x64,
  2462. 0x61, 0x79, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2463. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x6f, 0x6f, 0x6d, 0x49, 0x44, 0x52, 0x65, 0x71,
  2464. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e,
  2465. 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f,
  2466. 0x6d, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x41, 0x6e, 0x64, 0x54, 0x6f, 0x64, 0x61, 0x79,
  2467. 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3,
  2468. 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e,
  2469. 0x65, 0x72, 0x2f, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x3a,
  2470. 0x01, 0x2a, 0x12, 0x71, 0x0a, 0x0f, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x67,
  2471. 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2472. 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x72, 0x6d, 0x61,
  2473. 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
  2474. 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
  2475. 0x70, 0x74, 0x79, 0x22, 0x20, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x61, 0x70,
  2476. 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74,
  2477. 0x65, 0x72, 0x3a, 0x01, 0x2a, 0x12, 0x81, 0x01, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78,
  2478. 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e,
  2479. 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32,
  2480. 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
  2481. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  2482. 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93,
  2483. 0x02, 0x27, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2484. 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  2485. 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x76, 0x0a, 0x0e, 0x45, 0x78, 0x61,
  2486. 0x6d, 0x69, 0x6e, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x12, 0x22, 0x2e, 0x61, 0x70,
  2487. 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
  2488. 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2489. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2490. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22,
  2491. 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x65,
  2492. 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x3a, 0x01,
  2493. 0x2a, 0x12, 0x66, 0x0a, 0x0c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69,
  2494. 0x6e, 0x12, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  2495. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65,
  2496. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2497. 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93,
  2498. 0x02, 0x17, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2499. 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0xa1, 0x01, 0x0a, 0x15, 0x46, 0x69,
  2500. 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c,
  2501. 0x69, 0x73, 0x74, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2502. 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63,
  2503. 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27,
  2504. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e,
  2505. 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69,
  2506. 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x34, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x22,
  2507. 0x29, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x72, 0x65,
  2508. 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x2f, 0x72,
  2509. 0x65, 0x63, 0x6f, 0x72, 0x64, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x6d, 0x0a,
  2510. 0x0c, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x16, 0x2e,
  2511. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2512. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74,
  2513. 0x6e, 0x65, 0x72, 0x2e, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2514. 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x22, 0x1a, 0x2f,
  2515. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x6f, 0x6e, 0x6c, 0x69,
  2516. 0x6e, 0x65, 0x2f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x12, 0x86, 0x01, 0x0a,
  2517. 0x13, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d,
  2518. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2519. 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f,
  2520. 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61,
  2521. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2522. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  2523. 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69,
  2524. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6c, 0x69,
  2525. 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x8d, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2526. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c,
  2527. 0x69, 0x73, 0x74, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
  2528. 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74,
  2529. 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  2530. 0x74, 0x1a, 0x1f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43,
  2531. 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  2532. 0x6c, 0x79, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69,
  2533. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6c, 0x69,
  2534. 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x90, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2535. 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74,
  2536. 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
  2537. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c,
  2538. 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x26, 0x2e, 0x61, 0x70, 0x69,
  2539. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46,
  2540. 0x69, 0x6e, 0x64, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70,
  2541. 0x6c, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69,
  2542. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2543. 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x8e, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e,
  2544. 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
  2545. 0x72, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x2b, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2546. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74,
  2547. 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x52, 0x65, 0x71, 0x75,
  2548. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2549. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4,
  2550. 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
  2551. 0x72, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x2f,
  2552. 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x97, 0x01, 0x0a, 0x1c, 0x4d, 0x61,
  2553. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2554. 0x65, 0x72, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x2e, 0x2e, 0x61, 0x70, 0x69,
  2555. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55,
  2556. 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x50, 0x69, 0x63, 0x74, 0x75,
  2557. 0x72, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
  2558. 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
  2559. 0x74, 0x79, 0x22, 0x2f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x22, 0x24, 0x2f, 0x61, 0x70, 0x69,
  2560. 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2561. 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65,
  2562. 0x3a, 0x01, 0x2a, 0x12, 0x9a, 0x01, 0x0a, 0x1d, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55,
  2563. 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x53, 0x69, 0x67, 0x6e,
  2564. 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x2f, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
  2565. 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
  2566. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x53, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52,
  2567. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2568. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x30,
  2569. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2570. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x73, 0x69, 0x67,
  2571. 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a,
  2572. 0x12, 0x91, 0x01, 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  2573. 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x12,
  2574. 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
  2575. 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2576. 0x41, 0x76, 0x61, 0x74, 0x61, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2577. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2578. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f,
  2579. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x72, 0x74,
  2580. 0x6e, 0x65, 0x72, 0x2f, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74,
  2581. 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x8b, 0x01, 0x0a, 0x18, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2582. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4e, 0x61, 0x6d,
  2583. 0x65, 0x12, 0x2a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  2584. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73,
  2585. 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
  2586. 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
  2587. 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x22, 0x20, 0x2f,
  2588. 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x72, 0x74,
  2589. 0x6e, 0x65, 0x72, 0x2f, 0x6e, 0x61, 0x6d, 0x65, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a,
  2590. 0x01, 0x2a, 0x12, 0x91, 0x01, 0x0a, 0x1a, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70,
  2591. 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x65, 0x69, 0x67, 0x68,
  2592. 0x74, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
  2593. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x65, 0x72, 0x73,
  2594. 0x6f, 0x6e, 0x57, 0x65, 0x69, 0x67, 0x68, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
  2595. 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2596. 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22,
  2597. 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x70, 0x61,
  2598. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x77, 0x65, 0x69, 0x67, 0x68, 0x74, 0x2f, 0x75, 0x70, 0x64,
  2599. 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x92, 0x01, 0x0a, 0x1b, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2600. 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49,
  2601. 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x2d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2602. 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74,
  2603. 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x52, 0x65,
  2604. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2605. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82,
  2606. 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61,
  2607. 0x67, 0x65, 0x72, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x62, 0x6c, 0x61, 0x63,
  2608. 0x6b, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x82, 0x01, 0x0a, 0x14,
  2609. 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70,
  2610. 0x4c, 0x69, 0x73, 0x74, 0x12, 0x27, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
  2611. 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72,
  2612. 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e,
  2613. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
  2614. 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3,
  2615. 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67,
  2616. 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x3a, 0x01, 0x2a,
  2617. 0x12, 0x86, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  2618. 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x54, 0x65, 0x78, 0x74, 0x12, 0x29, 0x2e, 0x61, 0x70,
  2619. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
  2620. 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x54, 0x65, 0x78, 0x74, 0x52,
  2621. 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2622. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29,
  2623. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2624. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x73, 0x63, 0x72, 0x69,
  2625. 0x70, 0x2f, 0x74, 0x65, 0x78, 0x74, 0x3a, 0x01, 0x2a, 0x12, 0x8f, 0x01, 0x0a, 0x19, 0x4d, 0x61,
  2626. 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70,
  2627. 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2628. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
  2629. 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65,
  2630. 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2631. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82,
  2632. 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x22, 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61,
  2633. 0x67, 0x65, 0x72, 0x2f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70,
  2634. 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x3a, 0x01, 0x2a, 0x12, 0x67, 0x0a, 0x12, 0x4d,
  2635. 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69,
  2636. 0x70, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49,
  2637. 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
  2638. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24,
  2639. 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e,
  2640. 0x61, 0x67, 0x65, 0x72, 0x2f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x2f, 0x73, 0x63, 0x72, 0x69,
  2641. 0x70, 0x3a, 0x01, 0x2a, 0x12, 0x43, 0x0a, 0x0f, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2642. 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2643. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  2644. 0x61, 0x6d, 0x1a, 0x15, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2645. 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x48, 0x0a, 0x11, 0x46, 0x69, 0x6e,
  2646. 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18,
  2647. 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73,
  2648. 0x6f, 0x6e, 0x49, 0x44, 0x4c, 0x69, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2649. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x52, 0x65,
  2650. 0x70, 0x6c, 0x79, 0x12, 0x57, 0x0a, 0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61, 0x73,
  2651. 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69,
  2652. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4c, 0x61,
  2653. 0x73, 0x74, 0x53, 0x63, 0x72, 0x69, 0x70, 0x49, 0x44, 0x44, 0x42, 0x52, 0x65, 0x71, 0x75, 0x65,
  2654. 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2655. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x5b, 0x0a, 0x1a,
  2656. 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x61, 0x72,
  2657. 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x20, 0x2e, 0x61, 0x70, 0x69,
  2658. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x63, 0x6f,
  2659. 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x19, 0x2e, 0x61,
  2660. 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
  2661. 0x44, 0x42, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x00, 0x12, 0x51, 0x0a, 0x1a, 0x55, 0x70, 0x64,
  2662. 0x61, 0x74, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x4c, 0x61, 0x73, 0x74, 0x4c, 0x6f,
  2663. 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
  2664. 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x50, 0x61, 0x72,
  2665. 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2666. 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x46, 0x0a, 0x18,
  2667. 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x4d, 0x73, 0x67, 0x42,
  2668. 0x79, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2669. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x15, 0x2e,
  2670. 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f,
  2671. 0x6e, 0x4d, 0x73, 0x67, 0x12, 0x52, 0x0a, 0x13, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e,
  2672. 0x65, 0x72, 0x44, 0x42, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x1a, 0x2e, 0x61, 0x70,
  2673. 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
  2674. 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
  2675. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x42,
  2676. 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x22, 0x00, 0x12, 0x54, 0x0a, 0x11, 0x41, 0x64, 0x64, 0x50,
  2677. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x25, 0x2e,
  2678. 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x41, 0x64, 0x64, 0x50,
  2679. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x71,
  2680. 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
  2681. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12, 0x54,
  2682. 0x0a, 0x14, 0x47, 0x65, 0x74, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x69, 0x72, 0x63,
  2683. 0x6c, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1a, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
  2684. 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x44, 0x50, 0x61, 0x72,
  2685. 0x61, 0x6d, 0x1a, 0x20, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
  2686. 0x41, 0x64, 0x64, 0x46, 0x72, 0x69, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2687. 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x5a, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d,
  2688. 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x12, 0x29, 0x2e,
  2689. 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x47, 0x65, 0x74, 0x52,
  2690. 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44,
  2691. 0x42, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x14, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
  2692. 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x44, 0x42, 0x22, 0x00,
  2693. 0x12, 0x4d, 0x0a, 0x16, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x53,
  2694. 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x19, 0x2e, 0x61, 0x70, 0x69,
  2695. 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44,
  2696. 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
  2697. 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x12,
  2698. 0x7c, 0x0a, 0x25, 0x53, 0x65, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x4d, 0x69,
  2699. 0x6e, 0x75, 0x74, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  2700. 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x39, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70,
  2701. 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x4f,
  2702. 0x6e, 0x65, 0x4d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x65,
  2703. 0x73, 0x73, 0x61, 0x67, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75,
  2704. 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
  2705. 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x00, 0x42, 0x46, 0x0a,
  2706. 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x35,
  2707. 0x67, 0x69, 0x74, 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73,
  2708. 0x65, 0x72, 0x76, 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  2709. 0x66, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3b, 0x70, 0x61,
  2710. 0x72, 0x74, 0x6e, 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
  2711. }
  2712. var (
  2713. file_partner_proto_rawDescOnce sync.Once
  2714. file_partner_proto_rawDescData = file_partner_proto_rawDesc
  2715. )
  2716. func file_partner_proto_rawDescGZIP() []byte {
  2717. file_partner_proto_rawDescOnce.Do(func() {
  2718. file_partner_proto_rawDescData = protoimpl.X.CompressGZIP(file_partner_proto_rawDescData)
  2719. })
  2720. return file_partner_proto_rawDescData
  2721. }
  2722. var file_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 28)
  2723. var file_partner_proto_goTypes = []interface{}{
  2724. (*OnlinePersonReply)(nil), // 0: api.partner.OnlinePersonReply
  2725. (*SendOverOneMinuteUnreadMessageMessageRequest)(nil), // 1: api.partner.SendOverOneMinuteUnreadMessageMessageRequest
  2726. (*GetRecommendPartnerDBRequest)(nil), // 2: api.partner.GetRecommendPartnerDBRequest
  2727. (*FindExamineRecordListRequest)(nil), // 3: api.partner.FindExamineRecordListRequest
  2728. (*FindExamineRecordListReply)(nil), // 4: api.partner.FindExamineRecordListReply
  2729. (*ExamineRecordInfo)(nil), // 5: api.partner.ExamineRecordInfo
  2730. (*FindExamineListReply)(nil), // 6: api.partner.FindExamineListReply
  2731. (*ExamineInfo)(nil), // 7: api.partner.ExamineInfo
  2732. (*ExaminePartnerRequest)(nil), // 8: api.partner.ExaminePartnerRequest
  2733. (*PartnerGetRoomBalanceAndTodayBalanceReply)(nil), // 9: api.partner.PartnerGetRoomBalanceAndTodayBalanceReply
  2734. (*PartnerCollectIDsRequest)(nil), // 10: api.partner.PartnerCollectIDsRequest
  2735. (*PartnerCollectRequest)(nil), // 11: api.partner.PartnerCollectRequest
  2736. (*CreateScripRequest)(nil), // 12: api.partner.CreateScripRequest
  2737. (*ReplyScripRequest)(nil), // 13: api.partner.ReplyScripRequest
  2738. (*PartnerWithdrawRecordListReply)(nil), // 14: api.partner.PartnerWithdrawRecordListReply
  2739. (*WithdrawInfo)(nil), // 15: api.partner.WithdrawInfo
  2740. (*PartnerWithdrawTemplateListReply)(nil), // 16: api.partner.PartnerWithdrawTemplateListReply
  2741. (*PartnerWithdrawTemplateInfo)(nil), // 17: api.partner.PartnerWithdrawTemplateInfo
  2742. (*PartnerUpdateWorkingStatusRequest)(nil), // 18: api.partner.PartnerUpdateWorkingStatusRequest
  2743. (*PartnerGetAwardRequest)(nil), // 19: api.partner.PartnerGetAwardRequest
  2744. (*LevelTable)(nil), // 20: api.partner.LevelTable
  2745. (*LevelInfo)(nil), // 21: api.partner.LevelInfo
  2746. (*AddPartnerBalanceRequest)(nil), // 22: api.partner.AddPartnerBalanceRequest
  2747. (*PartnerInfo)(nil), // 23: api.partner.PartnerInfo
  2748. (*PartnerMessage)(nil), // 24: api.partner.PartnerMessage
  2749. (*PartnerBalance)(nil), // 25: api.partner.PartnerBalance
  2750. (*PartnerDBBalance)(nil), // 26: api.partner.PartnerDBBalance
  2751. (*PartnerApplyWithdrawRequest)(nil), // 27: api.partner.PartnerApplyWithdrawRequest
  2752. (*common.Message)(nil), // 28: api.common.Message
  2753. (*emptypb.Empty)(nil), // 29: google.protobuf.Empty
  2754. (*common.SendPhoneCodeRequest)(nil), // 30: api.common.SendPhoneCodeRequest
  2755. (*common.CheckPhoneCodeRequest)(nil), // 31: api.common.CheckPhoneCodeRequest
  2756. (*common.UpdateInformationRequest)(nil), // 32: api.common.UpdateInformationRequest
  2757. (*common.CreateChatRoomParam)(nil), // 33: api.common.CreateChatRoomParam
  2758. (*common.PersonParam)(nil), // 34: api.common.PersonParam
  2759. (*common.ListPageRequest)(nil), // 35: api.common.ListPageRequest
  2760. (*common.WxConfReq)(nil), // 36: api.common.WxConfReq
  2761. (*common.SexReq)(nil), // 37: api.common.SexReq
  2762. (*common.ListPage2Request)(nil), // 38: api.common.ListPage2Request
  2763. (*common.FindChatRecordListRequest)(nil), // 39: api.common.FindChatRecordListRequest
  2764. (*common.FindChatRoomMsgRequest)(nil), // 40: api.common.FindChatRoomMsgRequest
  2765. (*common.MemeRequest)(nil), // 41: api.common.MemeRequest
  2766. (*common.FindChatTopicRequest)(nil), // 42: api.common.FindChatTopicRequest
  2767. (*common.RandomNum)(nil), // 43: api.common.RandomNum
  2768. (*common.RandomNumAndSex)(nil), // 44: api.common.RandomNumAndSex
  2769. (*common.ReportChatRequest)(nil), // 45: api.common.ReportChatRequest
  2770. (*common.UpdateLastScripIDRequest)(nil), // 46: api.common.UpdateLastScripIDRequest
  2771. (*common.ScripIdRequest)(nil), // 47: api.common.ScripIdRequest
  2772. (*common.FindScripRequest)(nil), // 48: api.common.FindScripRequest
  2773. (*common.RoomIDRequest)(nil), // 49: api.common.RoomIDRequest
  2774. (*common.ManagerLoginRequest)(nil), // 50: api.common.ManagerLoginRequest
  2775. (*common.ManagerFindRoomListRequest)(nil), // 51: api.common.ManagerFindRoomListRequest
  2776. (*common.ManagerFindChatRecordListRequest)(nil), // 52: api.common.ManagerFindChatRecordListRequest
  2777. (*common.ManagerFindPersonListRequest)(nil), // 53: api.common.ManagerFindPersonListRequest
  2778. (*common.ManagerUpdatePersonVoiceRequest)(nil), // 54: api.common.ManagerUpdatePersonVoiceRequest
  2779. (*common.ManagerUpdatePersonPicturesRequest)(nil), // 55: api.common.ManagerUpdatePersonPicturesRequest
  2780. (*common.ManagerUpdatePersonSignatureRequest)(nil), // 56: api.common.ManagerUpdatePersonSignatureRequest
  2781. (*common.ManagerUpdatePersonAvatarRequest)(nil), // 57: api.common.ManagerUpdatePersonAvatarRequest
  2782. (*common.ManagerUpdatePersonNameRequest)(nil), // 58: api.common.ManagerUpdatePersonNameRequest
  2783. (*common.ManagerUpdatePersonWeightRequest)(nil), // 59: api.common.ManagerUpdatePersonWeightRequest
  2784. (*common.ManagerUpdatePersonIsBlackRequest)(nil), // 60: api.common.ManagerUpdatePersonIsBlackRequest
  2785. (*common.ManagerFindScripListRequest)(nil), // 61: api.common.ManagerFindScripListRequest
  2786. (*common.ManagerUpdateScripTextRequest)(nil), // 62: api.common.ManagerUpdateScripTextRequest
  2787. (*common.ManagerUpdateScripPictureRequest)(nil), // 63: api.common.ManagerUpdateScripPictureRequest
  2788. (*common.IDParam)(nil), // 64: api.common.IDParam
  2789. (*common.PersonIDParam)(nil), // 65: api.common.PersonIDParam
  2790. (*common.PersonIDList)(nil), // 66: api.common.PersonIDList
  2791. (*common.UpdateLastScripIDDBRequest)(nil), // 67: api.common.UpdateLastScripIDDBRequest
  2792. (*common.FindRecommendRequest)(nil), // 68: api.common.FindRecommendRequest
  2793. (*common.PartnerIDParam)(nil), // 69: api.common.PartnerIDParam
  2794. (*chat.RoomReply)(nil), // 70: api.chat.RoomReply
  2795. (*common.HomeInfo)(nil), // 71: api.common.HomeInfo
  2796. (*common.LookedAndLikedNum)(nil), // 72: api.common.LookedAndLikedNum
  2797. (*statistics.LookAndLikeListReply)(nil), // 73: api.statistics.LookAndLikeListReply
  2798. (*common.WxConfResponse)(nil), // 74: api.common.WxConfResponse
  2799. (*common.TagListReply)(nil), // 75: api.common.TagListReply
  2800. (*common.RecommendPersonListReply)(nil), // 76: api.common.RecommendPersonListReply
  2801. (*chat.PartnerFindRoomListReply)(nil), // 77: api.chat.PartnerFindRoomListReply
  2802. (*common.ChatRecordListReply)(nil), // 78: api.common.ChatRecordListReply
  2803. (*common.ChatRoomMsg)(nil), // 79: api.common.ChatRoomMsg
  2804. (*common.IsLike)(nil), // 80: api.common.IsLike
  2805. (*common.MemeList)(nil), // 81: api.common.MemeList
  2806. (*common.ChatTopicList)(nil), // 82: api.common.ChatTopicList
  2807. (*common.CommonTextList)(nil), // 83: api.common.CommonTextList
  2808. (*common.MemeTitleList)(nil), // 84: api.common.MemeTitleList
  2809. (*common.PartnerChatCardInfo)(nil), // 85: api.common.PartnerChatCardInfo
  2810. (*common.FindOverSevenDayAvatarReply)(nil), // 86: api.common.FindOverSevenDayAvatarReply
  2811. (*common.ScripID)(nil), // 87: api.common.ScripID
  2812. (*common.ScripReply)(nil), // 88: api.common.ScripReply
  2813. (*common.ScripInfo)(nil), // 89: api.common.ScripInfo
  2814. (*common.ChatRecordInfo)(nil), // 90: api.common.ChatRecordInfo
  2815. (*chat.UnreadNumReply)(nil), // 91: api.chat.UnreadNumReply
  2816. (*chat.PartnerRoomInfo)(nil), // 92: api.chat.PartnerRoomInfo
  2817. (*statistics.LookMessageReply)(nil), // 93: api.statistics.LookMessageReply
  2818. (*chat.FindNotReplyNumReply)(nil), // 94: api.chat.FindNotReplyNumReply
  2819. (*common.LoginToken)(nil), // 95: api.common.LoginToken
  2820. (*common.ManagerFindRoomListReply)(nil), // 96: api.common.ManagerFindRoomListReply
  2821. (*common.ManagerFindPersonListReply)(nil), // 97: api.common.ManagerFindPersonListReply
  2822. (*common.ManagerScripReply)(nil), // 98: api.common.ManagerScripReply
  2823. (*common.PersonMsg)(nil), // 99: api.common.PersonMsg
  2824. (*common.PersonDBReply)(nil), // 100: api.common.PersonDBReply
  2825. (*common.AddFriendMessageInfo)(nil), // 101: api.common.AddFriendMessageInfo
  2826. (*common.PersonDB)(nil), // 102: api.common.PersonDB
  2827. }
  2828. var file_partner_proto_depIdxs = []int32{
  2829. 5, // 0: api.partner.FindExamineRecordListReply.list:type_name -> api.partner.ExamineRecordInfo
  2830. 7, // 1: api.partner.FindExamineListReply.list:type_name -> api.partner.ExamineInfo
  2831. 28, // 2: api.partner.ReplyScripRequest.message:type_name -> api.common.Message
  2832. 15, // 3: api.partner.PartnerWithdrawRecordListReply.list:type_name -> api.partner.WithdrawInfo
  2833. 17, // 4: api.partner.PartnerWithdrawTemplateListReply.list:type_name -> api.partner.PartnerWithdrawTemplateInfo
  2834. 21, // 5: api.partner.LevelTable.list:type_name -> api.partner.LevelInfo
  2835. 29, // 6: api.partner.Partner.GetPartnerInfo:input_type -> google.protobuf.Empty
  2836. 30, // 7: api.partner.Partner.SendPhoneCode:input_type -> api.common.SendPhoneCodeRequest
  2837. 31, // 8: api.partner.Partner.CheckPhoneCode:input_type -> api.common.CheckPhoneCodeRequest
  2838. 32, // 9: api.partner.Partner.UpdatePartnerInformation:input_type -> api.common.UpdateInformationRequest
  2839. 33, // 10: api.partner.Partner.CreateUserPartnerRoom:input_type -> api.common.CreateChatRoomParam
  2840. 29, // 11: api.partner.Partner.GetPartnerBalance:input_type -> google.protobuf.Empty
  2841. 34, // 12: api.partner.Partner.PartnerGetHomeInfo:input_type -> api.common.PersonParam
  2842. 34, // 13: api.partner.Partner.PartnerGetPersonLikedAndLooked:input_type -> api.common.PersonParam
  2843. 35, // 14: api.partner.Partner.FindLookList:input_type -> api.common.ListPageRequest
  2844. 36, // 15: api.partner.Partner.WxConf:input_type -> api.common.WxConfReq
  2845. 37, // 16: api.partner.Partner.FindTagListBySex:input_type -> api.common.SexReq
  2846. 38, // 17: api.partner.Partner.FindOnlineList:input_type -> api.common.ListPage2Request
  2847. 35, // 18: api.partner.Partner.FindWithinSevenDayRoomList:input_type -> api.common.ListPageRequest
  2848. 35, // 19: api.partner.Partner.FindOverSevenDayRoomList:input_type -> api.common.ListPageRequest
  2849. 39, // 20: api.partner.Partner.FindChatRecordList:input_type -> api.common.FindChatRecordListRequest
  2850. 40, // 21: api.partner.Partner.FindChatRoomMsg:input_type -> api.common.FindChatRoomMsgRequest
  2851. 34, // 22: api.partner.Partner.GetPartnerIsLike:input_type -> api.common.PersonParam
  2852. 41, // 23: api.partner.Partner.FindMemeByType:input_type -> api.common.MemeRequest
  2853. 42, // 24: api.partner.Partner.FindChatTopic:input_type -> api.common.FindChatTopicRequest
  2854. 43, // 25: api.partner.Partner.RandomMeme:input_type -> api.common.RandomNum
  2855. 44, // 26: api.partner.Partner.RandomSwiftMessage:input_type -> api.common.RandomNumAndSex
  2856. 29, // 27: api.partner.Partner.FindMemeTitle:input_type -> google.protobuf.Empty
  2857. 34, // 28: api.partner.Partner.PartnerGetChatCard:input_type -> api.common.PersonParam
  2858. 29, // 29: api.partner.Partner.FindChatTopicTitle:input_type -> google.protobuf.Empty
  2859. 34, // 30: api.partner.Partner.PartnerLike:input_type -> api.common.PersonParam
  2860. 34, // 31: api.partner.Partner.PartnerUnLike:input_type -> api.common.PersonParam
  2861. 45, // 32: api.partner.Partner.Report:input_type -> api.common.ReportChatRequest
  2862. 29, // 33: api.partner.Partner.FindOverSevenDayAvatar:input_type -> google.protobuf.Empty
  2863. 46, // 34: api.partner.Partner.UpdateLastScripID:input_type -> api.common.UpdateLastScripIDRequest
  2864. 12, // 35: api.partner.Partner.CreateScrip:input_type -> api.partner.CreateScripRequest
  2865. 47, // 36: api.partner.Partner.DeleteScrip:input_type -> api.common.ScripIdRequest
  2866. 35, // 37: api.partner.Partner.FindMyScrip:input_type -> api.common.ListPageRequest
  2867. 48, // 38: api.partner.Partner.FindOtherScrip:input_type -> api.common.FindScripRequest
  2868. 35, // 39: api.partner.Partner.FindRecommendScrip:input_type -> api.common.ListPageRequest
  2869. 47, // 40: api.partner.Partner.PersonLookScrip:input_type -> api.common.ScripIdRequest
  2870. 29, // 41: api.partner.Partner.PersonClickLookBack:input_type -> google.protobuf.Empty
  2871. 13, // 42: api.partner.Partner.PersonReplyScrip:input_type -> api.partner.ReplyScripRequest
  2872. 49, // 43: api.partner.Partner.PartnerDeleteChat:input_type -> api.common.RoomIDRequest
  2873. 29, // 44: api.partner.Partner.GetPartnerAllUnreadNum:input_type -> google.protobuf.Empty
  2874. 34, // 45: api.partner.Partner.GetPartnerRoomByPerson:input_type -> api.common.PersonParam
  2875. 35, // 46: api.partner.Partner.FindLikeList:input_type -> api.common.ListPageRequest
  2876. 35, // 47: api.partner.Partner.FindLikedList:input_type -> api.common.ListPageRequest
  2877. 10, // 48: api.partner.Partner.PartnerCollect:input_type -> api.partner.PartnerCollectIDsRequest
  2878. 11, // 49: api.partner.Partner.PartnerDeleteCollect:input_type -> api.partner.PartnerCollectRequest
  2879. 39, // 50: api.partner.Partner.FindChatCollectList:input_type -> api.common.FindChatRecordListRequest
  2880. 29, // 51: api.partner.Partner.GetPartnerMessage:input_type -> google.protobuf.Empty
  2881. 29, // 52: api.partner.Partner.GetPartnerLookNum:input_type -> google.protobuf.Empty
  2882. 35, // 53: api.partner.Partner.FindUnReplyRoomList:input_type -> api.common.ListPageRequest
  2883. 29, // 54: api.partner.Partner.GetLevelBalanceTable:input_type -> google.protobuf.Empty
  2884. 19, // 55: api.partner.Partner.PartnerGetAward:input_type -> api.partner.PartnerGetAwardRequest
  2885. 18, // 56: api.partner.Partner.PartnerUpdateWorkingStatus:input_type -> api.partner.PartnerUpdateWorkingStatusRequest
  2886. 29, // 57: api.partner.Partner.FindNotReplyNum:input_type -> google.protobuf.Empty
  2887. 27, // 58: api.partner.Partner.PartnerApplyWithdraw:input_type -> api.partner.PartnerApplyWithdrawRequest
  2888. 29, // 59: api.partner.Partner.PartnerWithdrawTemplateList:input_type -> google.protobuf.Empty
  2889. 35, // 60: api.partner.Partner.PartnerWithdrawRecordList:input_type -> api.common.ListPageRequest
  2890. 49, // 61: api.partner.Partner.PartnerGetRoomBalanceAndTodayBalance:input_type -> api.common.RoomIDRequest
  2891. 32, // 62: api.partner.Partner.PartnerRegister:input_type -> api.common.UpdateInformationRequest
  2892. 38, // 63: api.partner.Partner.FindExamineList:input_type -> api.common.ListPage2Request
  2893. 8, // 64: api.partner.Partner.ExaminePartner:input_type -> api.partner.ExaminePartnerRequest
  2894. 50, // 65: api.partner.Partner.ManagerLogin:input_type -> api.common.ManagerLoginRequest
  2895. 3, // 66: api.partner.Partner.FindExamineRecordList:input_type -> api.partner.FindExamineRecordListRequest
  2896. 29, // 67: api.partner.Partner.OnlinePerson:input_type -> google.protobuf.Empty
  2897. 51, // 68: api.partner.Partner.ManagerFindRoomList:input_type -> api.common.ManagerFindRoomListRequest
  2898. 52, // 69: api.partner.Partner.ManagerFindChatRecordList:input_type -> api.common.ManagerFindChatRecordListRequest
  2899. 53, // 70: api.partner.Partner.ManagerFindPartnerList:input_type -> api.common.ManagerFindPersonListRequest
  2900. 54, // 71: api.partner.Partner.ManagerUpdatePartnerVoice:input_type -> api.common.ManagerUpdatePersonVoiceRequest
  2901. 55, // 72: api.partner.Partner.ManagerUpdatePartnerPictures:input_type -> api.common.ManagerUpdatePersonPicturesRequest
  2902. 56, // 73: api.partner.Partner.ManagerUpdatePartnerSignature:input_type -> api.common.ManagerUpdatePersonSignatureRequest
  2903. 57, // 74: api.partner.Partner.ManagerUpdatePartnerAvatar:input_type -> api.common.ManagerUpdatePersonAvatarRequest
  2904. 58, // 75: api.partner.Partner.ManagerUpdatePartnerName:input_type -> api.common.ManagerUpdatePersonNameRequest
  2905. 59, // 76: api.partner.Partner.ManagerUpdatePartnerWeight:input_type -> api.common.ManagerUpdatePersonWeightRequest
  2906. 60, // 77: api.partner.Partner.ManagerUpdatePartnerIsBlack:input_type -> api.common.ManagerUpdatePersonIsBlackRequest
  2907. 61, // 78: api.partner.Partner.ManagerFindScripList:input_type -> api.common.ManagerFindScripListRequest
  2908. 62, // 79: api.partner.Partner.ManagerUpdateScripText:input_type -> api.common.ManagerUpdateScripTextRequest
  2909. 63, // 80: api.partner.Partner.ManagerUpdateScripPicture:input_type -> api.common.ManagerUpdateScripPictureRequest
  2910. 64, // 81: api.partner.Partner.ManagerDeleteScrip:input_type -> api.common.IDParam
  2911. 65, // 82: api.partner.Partner.GetPartnerDBMsg:input_type -> api.common.PersonIDParam
  2912. 66, // 83: api.partner.Partner.FindPartnerDBList:input_type -> api.common.PersonIDList
  2913. 67, // 84: api.partner.Partner.UpdateLastScripIDDB:input_type -> api.common.UpdateLastScripIDDBRequest
  2914. 68, // 85: api.partner.Partner.FindRecommendPartnerDBList:input_type -> api.common.FindRecommendRequest
  2915. 65, // 86: api.partner.Partner.UpdatePartnerLastLoginTime:input_type -> api.common.PersonIDParam
  2916. 64, // 87: api.partner.Partner.GetPartnerDBMsgByPartner:input_type -> api.common.IDParam
  2917. 69, // 88: api.partner.Partner.GetPartnerDBBalance:input_type -> api.common.PartnerIDParam
  2918. 22, // 89: api.partner.Partner.AddPartnerBalance:input_type -> api.partner.AddPartnerBalanceRequest
  2919. 69, // 90: api.partner.Partner.GetPartnerCircleInfo:input_type -> api.common.PartnerIDParam
  2920. 2, // 91: api.partner.Partner.GetRecommendPartnerDB:input_type -> api.partner.GetRecommendPartnerDBRequest
  2921. 65, // 92: api.partner.Partner.SendNewUserSendMessage:input_type -> api.common.PersonIDParam
  2922. 1, // 93: api.partner.Partner.SendOverOneMinuteUnreadMessageMessage:input_type -> api.partner.SendOverOneMinuteUnreadMessageMessageRequest
  2923. 23, // 94: api.partner.Partner.GetPartnerInfo:output_type -> api.partner.PartnerInfo
  2924. 29, // 95: api.partner.Partner.SendPhoneCode:output_type -> google.protobuf.Empty
  2925. 29, // 96: api.partner.Partner.CheckPhoneCode:output_type -> google.protobuf.Empty
  2926. 29, // 97: api.partner.Partner.UpdatePartnerInformation:output_type -> google.protobuf.Empty
  2927. 70, // 98: api.partner.Partner.CreateUserPartnerRoom:output_type -> api.chat.RoomReply
  2928. 25, // 99: api.partner.Partner.GetPartnerBalance:output_type -> api.partner.PartnerBalance
  2929. 71, // 100: api.partner.Partner.PartnerGetHomeInfo:output_type -> api.common.HomeInfo
  2930. 72, // 101: api.partner.Partner.PartnerGetPersonLikedAndLooked:output_type -> api.common.LookedAndLikedNum
  2931. 73, // 102: api.partner.Partner.FindLookList:output_type -> api.statistics.LookAndLikeListReply
  2932. 74, // 103: api.partner.Partner.WxConf:output_type -> api.common.WxConfResponse
  2933. 75, // 104: api.partner.Partner.FindTagListBySex:output_type -> api.common.TagListReply
  2934. 76, // 105: api.partner.Partner.FindOnlineList:output_type -> api.common.RecommendPersonListReply
  2935. 77, // 106: api.partner.Partner.FindWithinSevenDayRoomList:output_type -> api.chat.PartnerFindRoomListReply
  2936. 77, // 107: api.partner.Partner.FindOverSevenDayRoomList:output_type -> api.chat.PartnerFindRoomListReply
  2937. 78, // 108: api.partner.Partner.FindChatRecordList:output_type -> api.common.ChatRecordListReply
  2938. 79, // 109: api.partner.Partner.FindChatRoomMsg:output_type -> api.common.ChatRoomMsg
  2939. 80, // 110: api.partner.Partner.GetPartnerIsLike:output_type -> api.common.IsLike
  2940. 81, // 111: api.partner.Partner.FindMemeByType:output_type -> api.common.MemeList
  2941. 82, // 112: api.partner.Partner.FindChatTopic:output_type -> api.common.ChatTopicList
  2942. 83, // 113: api.partner.Partner.RandomMeme:output_type -> api.common.CommonTextList
  2943. 83, // 114: api.partner.Partner.RandomSwiftMessage:output_type -> api.common.CommonTextList
  2944. 84, // 115: api.partner.Partner.FindMemeTitle:output_type -> api.common.MemeTitleList
  2945. 85, // 116: api.partner.Partner.PartnerGetChatCard:output_type -> api.common.PartnerChatCardInfo
  2946. 84, // 117: api.partner.Partner.FindChatTopicTitle:output_type -> api.common.MemeTitleList
  2947. 29, // 118: api.partner.Partner.PartnerLike:output_type -> google.protobuf.Empty
  2948. 29, // 119: api.partner.Partner.PartnerUnLike:output_type -> google.protobuf.Empty
  2949. 29, // 120: api.partner.Partner.Report:output_type -> google.protobuf.Empty
  2950. 86, // 121: api.partner.Partner.FindOverSevenDayAvatar:output_type -> api.common.FindOverSevenDayAvatarReply
  2951. 29, // 122: api.partner.Partner.UpdateLastScripID:output_type -> google.protobuf.Empty
  2952. 87, // 123: api.partner.Partner.CreateScrip:output_type -> api.common.ScripID
  2953. 29, // 124: api.partner.Partner.DeleteScrip:output_type -> google.protobuf.Empty
  2954. 88, // 125: api.partner.Partner.FindMyScrip:output_type -> api.common.ScripReply
  2955. 88, // 126: api.partner.Partner.FindOtherScrip:output_type -> api.common.ScripReply
  2956. 88, // 127: api.partner.Partner.FindRecommendScrip:output_type -> api.common.ScripReply
  2957. 29, // 128: api.partner.Partner.PersonLookScrip:output_type -> google.protobuf.Empty
  2958. 89, // 129: api.partner.Partner.PersonClickLookBack:output_type -> api.common.ScripInfo
  2959. 90, // 130: api.partner.Partner.PersonReplyScrip:output_type -> api.common.ChatRecordInfo
  2960. 29, // 131: api.partner.Partner.PartnerDeleteChat:output_type -> google.protobuf.Empty
  2961. 91, // 132: api.partner.Partner.GetPartnerAllUnreadNum:output_type -> api.chat.UnreadNumReply
  2962. 92, // 133: api.partner.Partner.GetPartnerRoomByPerson:output_type -> api.chat.PartnerRoomInfo
  2963. 73, // 134: api.partner.Partner.FindLikeList:output_type -> api.statistics.LookAndLikeListReply
  2964. 73, // 135: api.partner.Partner.FindLikedList:output_type -> api.statistics.LookAndLikeListReply
  2965. 29, // 136: api.partner.Partner.PartnerCollect:output_type -> google.protobuf.Empty
  2966. 29, // 137: api.partner.Partner.PartnerDeleteCollect:output_type -> google.protobuf.Empty
  2967. 78, // 138: api.partner.Partner.FindChatCollectList:output_type -> api.common.ChatRecordListReply
  2968. 24, // 139: api.partner.Partner.GetPartnerMessage:output_type -> api.partner.PartnerMessage
  2969. 93, // 140: api.partner.Partner.GetPartnerLookNum:output_type -> api.statistics.LookMessageReply
  2970. 77, // 141: api.partner.Partner.FindUnReplyRoomList:output_type -> api.chat.PartnerFindRoomListReply
  2971. 20, // 142: api.partner.Partner.GetLevelBalanceTable:output_type -> api.partner.LevelTable
  2972. 29, // 143: api.partner.Partner.PartnerGetAward:output_type -> google.protobuf.Empty
  2973. 29, // 144: api.partner.Partner.PartnerUpdateWorkingStatus:output_type -> google.protobuf.Empty
  2974. 94, // 145: api.partner.Partner.FindNotReplyNum:output_type -> api.chat.FindNotReplyNumReply
  2975. 29, // 146: api.partner.Partner.PartnerApplyWithdraw:output_type -> google.protobuf.Empty
  2976. 16, // 147: api.partner.Partner.PartnerWithdrawTemplateList:output_type -> api.partner.PartnerWithdrawTemplateListReply
  2977. 14, // 148: api.partner.Partner.PartnerWithdrawRecordList:output_type -> api.partner.PartnerWithdrawRecordListReply
  2978. 9, // 149: api.partner.Partner.PartnerGetRoomBalanceAndTodayBalance:output_type -> api.partner.PartnerGetRoomBalanceAndTodayBalanceReply
  2979. 29, // 150: api.partner.Partner.PartnerRegister:output_type -> google.protobuf.Empty
  2980. 6, // 151: api.partner.Partner.FindExamineList:output_type -> api.partner.FindExamineListReply
  2981. 29, // 152: api.partner.Partner.ExaminePartner:output_type -> google.protobuf.Empty
  2982. 95, // 153: api.partner.Partner.ManagerLogin:output_type -> api.common.LoginToken
  2983. 4, // 154: api.partner.Partner.FindExamineRecordList:output_type -> api.partner.FindExamineRecordListReply
  2984. 0, // 155: api.partner.Partner.OnlinePerson:output_type -> api.partner.OnlinePersonReply
  2985. 96, // 156: api.partner.Partner.ManagerFindRoomList:output_type -> api.common.ManagerFindRoomListReply
  2986. 78, // 157: api.partner.Partner.ManagerFindChatRecordList:output_type -> api.common.ChatRecordListReply
  2987. 97, // 158: api.partner.Partner.ManagerFindPartnerList:output_type -> api.common.ManagerFindPersonListReply
  2988. 29, // 159: api.partner.Partner.ManagerUpdatePartnerVoice:output_type -> google.protobuf.Empty
  2989. 29, // 160: api.partner.Partner.ManagerUpdatePartnerPictures:output_type -> google.protobuf.Empty
  2990. 29, // 161: api.partner.Partner.ManagerUpdatePartnerSignature:output_type -> google.protobuf.Empty
  2991. 29, // 162: api.partner.Partner.ManagerUpdatePartnerAvatar:output_type -> google.protobuf.Empty
  2992. 29, // 163: api.partner.Partner.ManagerUpdatePartnerName:output_type -> google.protobuf.Empty
  2993. 29, // 164: api.partner.Partner.ManagerUpdatePartnerWeight:output_type -> google.protobuf.Empty
  2994. 29, // 165: api.partner.Partner.ManagerUpdatePartnerIsBlack:output_type -> google.protobuf.Empty
  2995. 98, // 166: api.partner.Partner.ManagerFindScripList:output_type -> api.common.ManagerScripReply
  2996. 29, // 167: api.partner.Partner.ManagerUpdateScripText:output_type -> google.protobuf.Empty
  2997. 29, // 168: api.partner.Partner.ManagerUpdateScripPicture:output_type -> google.protobuf.Empty
  2998. 29, // 169: api.partner.Partner.ManagerDeleteScrip:output_type -> google.protobuf.Empty
  2999. 99, // 170: api.partner.Partner.GetPartnerDBMsg:output_type -> api.common.PersonMsg
  3000. 100, // 171: api.partner.Partner.FindPartnerDBList:output_type -> api.common.PersonDBReply
  3001. 29, // 172: api.partner.Partner.UpdateLastScripIDDB:output_type -> google.protobuf.Empty
  3002. 100, // 173: api.partner.Partner.FindRecommendPartnerDBList:output_type -> api.common.PersonDBReply
  3003. 29, // 174: api.partner.Partner.UpdatePartnerLastLoginTime:output_type -> google.protobuf.Empty
  3004. 99, // 175: api.partner.Partner.GetPartnerDBMsgByPartner:output_type -> api.common.PersonMsg
  3005. 26, // 176: api.partner.Partner.GetPartnerDBBalance:output_type -> api.partner.PartnerDBBalance
  3006. 29, // 177: api.partner.Partner.AddPartnerBalance:output_type -> google.protobuf.Empty
  3007. 101, // 178: api.partner.Partner.GetPartnerCircleInfo:output_type -> api.common.AddFriendMessageInfo
  3008. 102, // 179: api.partner.Partner.GetRecommendPartnerDB:output_type -> api.common.PersonDB
  3009. 29, // 180: api.partner.Partner.SendNewUserSendMessage:output_type -> google.protobuf.Empty
  3010. 29, // 181: api.partner.Partner.SendOverOneMinuteUnreadMessageMessage:output_type -> google.protobuf.Empty
  3011. 94, // [94:182] is the sub-list for method output_type
  3012. 6, // [6:94] is the sub-list for method input_type
  3013. 6, // [6:6] is the sub-list for extension type_name
  3014. 6, // [6:6] is the sub-list for extension extendee
  3015. 0, // [0:6] is the sub-list for field type_name
  3016. }
  3017. func init() { file_partner_proto_init() }
  3018. func file_partner_proto_init() {
  3019. if File_partner_proto != nil {
  3020. return
  3021. }
  3022. if !protoimpl.UnsafeEnabled {
  3023. file_partner_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  3024. switch v := v.(*OnlinePersonReply); i {
  3025. case 0:
  3026. return &v.state
  3027. case 1:
  3028. return &v.sizeCache
  3029. case 2:
  3030. return &v.unknownFields
  3031. default:
  3032. return nil
  3033. }
  3034. }
  3035. file_partner_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  3036. switch v := v.(*SendOverOneMinuteUnreadMessageMessageRequest); i {
  3037. case 0:
  3038. return &v.state
  3039. case 1:
  3040. return &v.sizeCache
  3041. case 2:
  3042. return &v.unknownFields
  3043. default:
  3044. return nil
  3045. }
  3046. }
  3047. file_partner_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  3048. switch v := v.(*GetRecommendPartnerDBRequest); i {
  3049. case 0:
  3050. return &v.state
  3051. case 1:
  3052. return &v.sizeCache
  3053. case 2:
  3054. return &v.unknownFields
  3055. default:
  3056. return nil
  3057. }
  3058. }
  3059. file_partner_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  3060. switch v := v.(*FindExamineRecordListRequest); i {
  3061. case 0:
  3062. return &v.state
  3063. case 1:
  3064. return &v.sizeCache
  3065. case 2:
  3066. return &v.unknownFields
  3067. default:
  3068. return nil
  3069. }
  3070. }
  3071. file_partner_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  3072. switch v := v.(*FindExamineRecordListReply); i {
  3073. case 0:
  3074. return &v.state
  3075. case 1:
  3076. return &v.sizeCache
  3077. case 2:
  3078. return &v.unknownFields
  3079. default:
  3080. return nil
  3081. }
  3082. }
  3083. file_partner_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  3084. switch v := v.(*ExamineRecordInfo); i {
  3085. case 0:
  3086. return &v.state
  3087. case 1:
  3088. return &v.sizeCache
  3089. case 2:
  3090. return &v.unknownFields
  3091. default:
  3092. return nil
  3093. }
  3094. }
  3095. file_partner_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  3096. switch v := v.(*FindExamineListReply); i {
  3097. case 0:
  3098. return &v.state
  3099. case 1:
  3100. return &v.sizeCache
  3101. case 2:
  3102. return &v.unknownFields
  3103. default:
  3104. return nil
  3105. }
  3106. }
  3107. file_partner_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  3108. switch v := v.(*ExamineInfo); i {
  3109. case 0:
  3110. return &v.state
  3111. case 1:
  3112. return &v.sizeCache
  3113. case 2:
  3114. return &v.unknownFields
  3115. default:
  3116. return nil
  3117. }
  3118. }
  3119. file_partner_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  3120. switch v := v.(*ExaminePartnerRequest); i {
  3121. case 0:
  3122. return &v.state
  3123. case 1:
  3124. return &v.sizeCache
  3125. case 2:
  3126. return &v.unknownFields
  3127. default:
  3128. return nil
  3129. }
  3130. }
  3131. file_partner_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  3132. switch v := v.(*PartnerGetRoomBalanceAndTodayBalanceReply); i {
  3133. case 0:
  3134. return &v.state
  3135. case 1:
  3136. return &v.sizeCache
  3137. case 2:
  3138. return &v.unknownFields
  3139. default:
  3140. return nil
  3141. }
  3142. }
  3143. file_partner_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  3144. switch v := v.(*PartnerCollectIDsRequest); i {
  3145. case 0:
  3146. return &v.state
  3147. case 1:
  3148. return &v.sizeCache
  3149. case 2:
  3150. return &v.unknownFields
  3151. default:
  3152. return nil
  3153. }
  3154. }
  3155. file_partner_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  3156. switch v := v.(*PartnerCollectRequest); i {
  3157. case 0:
  3158. return &v.state
  3159. case 1:
  3160. return &v.sizeCache
  3161. case 2:
  3162. return &v.unknownFields
  3163. default:
  3164. return nil
  3165. }
  3166. }
  3167. file_partner_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  3168. switch v := v.(*CreateScripRequest); i {
  3169. case 0:
  3170. return &v.state
  3171. case 1:
  3172. return &v.sizeCache
  3173. case 2:
  3174. return &v.unknownFields
  3175. default:
  3176. return nil
  3177. }
  3178. }
  3179. file_partner_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  3180. switch v := v.(*ReplyScripRequest); i {
  3181. case 0:
  3182. return &v.state
  3183. case 1:
  3184. return &v.sizeCache
  3185. case 2:
  3186. return &v.unknownFields
  3187. default:
  3188. return nil
  3189. }
  3190. }
  3191. file_partner_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  3192. switch v := v.(*PartnerWithdrawRecordListReply); i {
  3193. case 0:
  3194. return &v.state
  3195. case 1:
  3196. return &v.sizeCache
  3197. case 2:
  3198. return &v.unknownFields
  3199. default:
  3200. return nil
  3201. }
  3202. }
  3203. file_partner_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  3204. switch v := v.(*WithdrawInfo); i {
  3205. case 0:
  3206. return &v.state
  3207. case 1:
  3208. return &v.sizeCache
  3209. case 2:
  3210. return &v.unknownFields
  3211. default:
  3212. return nil
  3213. }
  3214. }
  3215. file_partner_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  3216. switch v := v.(*PartnerWithdrawTemplateListReply); i {
  3217. case 0:
  3218. return &v.state
  3219. case 1:
  3220. return &v.sizeCache
  3221. case 2:
  3222. return &v.unknownFields
  3223. default:
  3224. return nil
  3225. }
  3226. }
  3227. file_partner_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  3228. switch v := v.(*PartnerWithdrawTemplateInfo); i {
  3229. case 0:
  3230. return &v.state
  3231. case 1:
  3232. return &v.sizeCache
  3233. case 2:
  3234. return &v.unknownFields
  3235. default:
  3236. return nil
  3237. }
  3238. }
  3239. file_partner_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  3240. switch v := v.(*PartnerUpdateWorkingStatusRequest); i {
  3241. case 0:
  3242. return &v.state
  3243. case 1:
  3244. return &v.sizeCache
  3245. case 2:
  3246. return &v.unknownFields
  3247. default:
  3248. return nil
  3249. }
  3250. }
  3251. file_partner_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  3252. switch v := v.(*PartnerGetAwardRequest); i {
  3253. case 0:
  3254. return &v.state
  3255. case 1:
  3256. return &v.sizeCache
  3257. case 2:
  3258. return &v.unknownFields
  3259. default:
  3260. return nil
  3261. }
  3262. }
  3263. file_partner_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  3264. switch v := v.(*LevelTable); i {
  3265. case 0:
  3266. return &v.state
  3267. case 1:
  3268. return &v.sizeCache
  3269. case 2:
  3270. return &v.unknownFields
  3271. default:
  3272. return nil
  3273. }
  3274. }
  3275. file_partner_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
  3276. switch v := v.(*LevelInfo); i {
  3277. case 0:
  3278. return &v.state
  3279. case 1:
  3280. return &v.sizeCache
  3281. case 2:
  3282. return &v.unknownFields
  3283. default:
  3284. return nil
  3285. }
  3286. }
  3287. file_partner_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
  3288. switch v := v.(*AddPartnerBalanceRequest); i {
  3289. case 0:
  3290. return &v.state
  3291. case 1:
  3292. return &v.sizeCache
  3293. case 2:
  3294. return &v.unknownFields
  3295. default:
  3296. return nil
  3297. }
  3298. }
  3299. file_partner_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
  3300. switch v := v.(*PartnerInfo); i {
  3301. case 0:
  3302. return &v.state
  3303. case 1:
  3304. return &v.sizeCache
  3305. case 2:
  3306. return &v.unknownFields
  3307. default:
  3308. return nil
  3309. }
  3310. }
  3311. file_partner_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
  3312. switch v := v.(*PartnerMessage); i {
  3313. case 0:
  3314. return &v.state
  3315. case 1:
  3316. return &v.sizeCache
  3317. case 2:
  3318. return &v.unknownFields
  3319. default:
  3320. return nil
  3321. }
  3322. }
  3323. file_partner_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
  3324. switch v := v.(*PartnerBalance); i {
  3325. case 0:
  3326. return &v.state
  3327. case 1:
  3328. return &v.sizeCache
  3329. case 2:
  3330. return &v.unknownFields
  3331. default:
  3332. return nil
  3333. }
  3334. }
  3335. file_partner_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
  3336. switch v := v.(*PartnerDBBalance); i {
  3337. case 0:
  3338. return &v.state
  3339. case 1:
  3340. return &v.sizeCache
  3341. case 2:
  3342. return &v.unknownFields
  3343. default:
  3344. return nil
  3345. }
  3346. }
  3347. file_partner_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
  3348. switch v := v.(*PartnerApplyWithdrawRequest); i {
  3349. case 0:
  3350. return &v.state
  3351. case 1:
  3352. return &v.sizeCache
  3353. case 2:
  3354. return &v.unknownFields
  3355. default:
  3356. return nil
  3357. }
  3358. }
  3359. }
  3360. type x struct{}
  3361. out := protoimpl.TypeBuilder{
  3362. File: protoimpl.DescBuilder{
  3363. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  3364. RawDescriptor: file_partner_proto_rawDesc,
  3365. NumEnums: 0,
  3366. NumMessages: 28,
  3367. NumExtensions: 0,
  3368. NumServices: 1,
  3369. },
  3370. GoTypes: file_partner_proto_goTypes,
  3371. DependencyIndexes: file_partner_proto_depIdxs,
  3372. MessageInfos: file_partner_proto_msgTypes,
  3373. }.Build()
  3374. File_partner_proto = out.File
  3375. file_partner_proto_rawDesc = nil
  3376. file_partner_proto_goTypes = nil
  3377. file_partner_proto_depIdxs = nil
  3378. }