test.pb.go 248 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: test/test.proto
  3. package test
  4. import (
  5. weak "google.golang.org/protobuf/internal/testprotos/test/weak"
  6. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  7. prototype "google.golang.org/protobuf/reflect/prototype"
  8. protoiface "google.golang.org/protobuf/runtime/protoiface"
  9. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  10. sync "sync"
  11. )
  12. const (
  13. // Verify that runtime/protoimpl is sufficiently up-to-date.
  14. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 0)
  15. // Verify that this generated code is sufficiently up-to-date.
  16. _ = protoimpl.EnforceVersion(0 - protoimpl.MinVersion)
  17. )
  18. type ForeignEnum int32
  19. const (
  20. ForeignEnum_FOREIGN_FOO ForeignEnum = 4
  21. ForeignEnum_FOREIGN_BAR ForeignEnum = 5
  22. ForeignEnum_FOREIGN_BAZ ForeignEnum = 6
  23. )
  24. var ForeignEnum_name = map[int32]string{
  25. 4: "FOREIGN_FOO",
  26. 5: "FOREIGN_BAR",
  27. 6: "FOREIGN_BAZ",
  28. }
  29. var ForeignEnum_value = map[string]int32{
  30. "FOREIGN_FOO": 4,
  31. "FOREIGN_BAR": 5,
  32. "FOREIGN_BAZ": 6,
  33. }
  34. func (x ForeignEnum) Enum() *ForeignEnum {
  35. p := new(ForeignEnum)
  36. *p = x
  37. return p
  38. }
  39. func (x ForeignEnum) String() string {
  40. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  41. }
  42. func (ForeignEnum) Descriptor() protoreflect.EnumDescriptor {
  43. return file_test_test_proto_enumTypes[0].EnumDescriptor
  44. }
  45. func (x ForeignEnum) Number() protoreflect.EnumNumber {
  46. return protoreflect.EnumNumber(x)
  47. }
  48. // Deprecated: Do not use.
  49. func (x *ForeignEnum) UnmarshalJSON(b []byte) error {
  50. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  51. if err != nil {
  52. return err
  53. }
  54. *x = ForeignEnum(num)
  55. return nil
  56. }
  57. // Deprecated: Use ForeignEnum.Type instead.
  58. func (ForeignEnum) EnumDescriptor() ([]byte, []int) {
  59. return file_test_test_proto_rawDescGZIP(), []int{0}
  60. }
  61. type TestReservedEnumFields int32
  62. const (
  63. TestReservedEnumFields_RESERVED_ENUM TestReservedEnumFields = 0
  64. )
  65. var TestReservedEnumFields_name = map[int32]string{
  66. 0: "RESERVED_ENUM",
  67. }
  68. var TestReservedEnumFields_value = map[string]int32{
  69. "RESERVED_ENUM": 0,
  70. }
  71. func (x TestReservedEnumFields) Enum() *TestReservedEnumFields {
  72. p := new(TestReservedEnumFields)
  73. *p = x
  74. return p
  75. }
  76. func (x TestReservedEnumFields) String() string {
  77. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  78. }
  79. func (TestReservedEnumFields) Descriptor() protoreflect.EnumDescriptor {
  80. return file_test_test_proto_enumTypes[1].EnumDescriptor
  81. }
  82. func (x TestReservedEnumFields) Number() protoreflect.EnumNumber {
  83. return protoreflect.EnumNumber(x)
  84. }
  85. // Deprecated: Do not use.
  86. func (x *TestReservedEnumFields) UnmarshalJSON(b []byte) error {
  87. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  88. if err != nil {
  89. return err
  90. }
  91. *x = TestReservedEnumFields(num)
  92. return nil
  93. }
  94. // Deprecated: Use TestReservedEnumFields.Type instead.
  95. func (TestReservedEnumFields) EnumDescriptor() ([]byte, []int) {
  96. return file_test_test_proto_rawDescGZIP(), []int{1}
  97. }
  98. type TestAllTypes_NestedEnum int32
  99. const (
  100. TestAllTypes_FOO TestAllTypes_NestedEnum = 0
  101. TestAllTypes_BAR TestAllTypes_NestedEnum = 1
  102. TestAllTypes_BAZ TestAllTypes_NestedEnum = 2
  103. TestAllTypes_NEG TestAllTypes_NestedEnum = -1
  104. )
  105. var TestAllTypes_NestedEnum_name = map[int32]string{
  106. 0: "FOO",
  107. 1: "BAR",
  108. 2: "BAZ",
  109. -1: "NEG",
  110. }
  111. var TestAllTypes_NestedEnum_value = map[string]int32{
  112. "FOO": 0,
  113. "BAR": 1,
  114. "BAZ": 2,
  115. "NEG": -1,
  116. }
  117. func (x TestAllTypes_NestedEnum) Enum() *TestAllTypes_NestedEnum {
  118. p := new(TestAllTypes_NestedEnum)
  119. *p = x
  120. return p
  121. }
  122. func (x TestAllTypes_NestedEnum) String() string {
  123. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  124. }
  125. func (TestAllTypes_NestedEnum) Descriptor() protoreflect.EnumDescriptor {
  126. return file_test_test_proto_enumTypes[2].EnumDescriptor
  127. }
  128. func (x TestAllTypes_NestedEnum) Number() protoreflect.EnumNumber {
  129. return protoreflect.EnumNumber(x)
  130. }
  131. // Deprecated: Do not use.
  132. func (x *TestAllTypes_NestedEnum) UnmarshalJSON(b []byte) error {
  133. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  134. if err != nil {
  135. return err
  136. }
  137. *x = TestAllTypes_NestedEnum(num)
  138. return nil
  139. }
  140. // Deprecated: Use TestAllTypes_NestedEnum.Type instead.
  141. func (TestAllTypes_NestedEnum) EnumDescriptor() ([]byte, []int) {
  142. return file_test_test_proto_rawDescGZIP(), []int{0, 0}
  143. }
  144. type TestDeprecatedMessage_DeprecatedEnum int32 // Deprecated: Do not use.
  145. const (
  146. TestDeprecatedMessage_DEPRECATED TestDeprecatedMessage_DeprecatedEnum = 0 // Deprecated: Do not use.
  147. )
  148. var TestDeprecatedMessage_DeprecatedEnum_name = map[int32]string{
  149. 0: "DEPRECATED",
  150. }
  151. var TestDeprecatedMessage_DeprecatedEnum_value = map[string]int32{
  152. "DEPRECATED": 0,
  153. }
  154. func (x TestDeprecatedMessage_DeprecatedEnum) Enum() *TestDeprecatedMessage_DeprecatedEnum {
  155. p := new(TestDeprecatedMessage_DeprecatedEnum)
  156. *p = x
  157. return p
  158. }
  159. func (x TestDeprecatedMessage_DeprecatedEnum) String() string {
  160. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  161. }
  162. func (TestDeprecatedMessage_DeprecatedEnum) Descriptor() protoreflect.EnumDescriptor {
  163. return file_test_test_proto_enumTypes[3].EnumDescriptor
  164. }
  165. func (x TestDeprecatedMessage_DeprecatedEnum) Number() protoreflect.EnumNumber {
  166. return protoreflect.EnumNumber(x)
  167. }
  168. // Deprecated: Do not use.
  169. func (x *TestDeprecatedMessage_DeprecatedEnum) UnmarshalJSON(b []byte) error {
  170. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  171. if err != nil {
  172. return err
  173. }
  174. *x = TestDeprecatedMessage_DeprecatedEnum(num)
  175. return nil
  176. }
  177. // Deprecated: Use TestDeprecatedMessage_DeprecatedEnum.Type instead.
  178. func (TestDeprecatedMessage_DeprecatedEnum) EnumDescriptor() ([]byte, []int) {
  179. return file_test_test_proto_rawDescGZIP(), []int{1, 0}
  180. }
  181. type TestAllTypes struct {
  182. state protoimpl.MessageState
  183. OptionalInt32 *int32 `protobuf:"varint,1,opt,name=optional_int32,json=optionalInt32" json:"optional_int32,omitempty"`
  184. OptionalInt64 *int64 `protobuf:"varint,2,opt,name=optional_int64,json=optionalInt64" json:"optional_int64,omitempty"`
  185. OptionalUint32 *uint32 `protobuf:"varint,3,opt,name=optional_uint32,json=optionalUint32" json:"optional_uint32,omitempty"`
  186. OptionalUint64 *uint64 `protobuf:"varint,4,opt,name=optional_uint64,json=optionalUint64" json:"optional_uint64,omitempty"`
  187. OptionalSint32 *int32 `protobuf:"zigzag32,5,opt,name=optional_sint32,json=optionalSint32" json:"optional_sint32,omitempty"`
  188. OptionalSint64 *int64 `protobuf:"zigzag64,6,opt,name=optional_sint64,json=optionalSint64" json:"optional_sint64,omitempty"`
  189. OptionalFixed32 *uint32 `protobuf:"fixed32,7,opt,name=optional_fixed32,json=optionalFixed32" json:"optional_fixed32,omitempty"`
  190. OptionalFixed64 *uint64 `protobuf:"fixed64,8,opt,name=optional_fixed64,json=optionalFixed64" json:"optional_fixed64,omitempty"`
  191. OptionalSfixed32 *int32 `protobuf:"fixed32,9,opt,name=optional_sfixed32,json=optionalSfixed32" json:"optional_sfixed32,omitempty"`
  192. OptionalSfixed64 *int64 `protobuf:"fixed64,10,opt,name=optional_sfixed64,json=optionalSfixed64" json:"optional_sfixed64,omitempty"`
  193. OptionalFloat *float32 `protobuf:"fixed32,11,opt,name=optional_float,json=optionalFloat" json:"optional_float,omitempty"`
  194. OptionalDouble *float64 `protobuf:"fixed64,12,opt,name=optional_double,json=optionalDouble" json:"optional_double,omitempty"`
  195. OptionalBool *bool `protobuf:"varint,13,opt,name=optional_bool,json=optionalBool" json:"optional_bool,omitempty"`
  196. OptionalString *string `protobuf:"bytes,14,opt,name=optional_string,json=optionalString" json:"optional_string,omitempty"`
  197. OptionalBytes []byte `protobuf:"bytes,15,opt,name=optional_bytes,json=optionalBytes" json:"optional_bytes,omitempty"`
  198. Optionalgroup *TestAllTypes_OptionalGroup `protobuf:"group,16,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"`
  199. OptionalNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,18,opt,name=optional_nested_message,json=optionalNestedMessage" json:"optional_nested_message,omitempty"`
  200. OptionalForeignMessage *ForeignMessage `protobuf:"bytes,19,opt,name=optional_foreign_message,json=optionalForeignMessage" json:"optional_foreign_message,omitempty"`
  201. OptionalImportMessage *ImportMessage `protobuf:"bytes,20,opt,name=optional_import_message,json=optionalImportMessage" json:"optional_import_message,omitempty"`
  202. OptionalNestedEnum *TestAllTypes_NestedEnum `protobuf:"varint,21,opt,name=optional_nested_enum,json=optionalNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"optional_nested_enum,omitempty"`
  203. OptionalForeignEnum *ForeignEnum `protobuf:"varint,22,opt,name=optional_foreign_enum,json=optionalForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"optional_foreign_enum,omitempty"`
  204. OptionalImportEnum *ImportEnum `protobuf:"varint,23,opt,name=optional_import_enum,json=optionalImportEnum,enum=goproto.proto.test.ImportEnum" json:"optional_import_enum,omitempty"`
  205. RepeatedInt32 []int32 `protobuf:"varint,31,rep,name=repeated_int32,json=repeatedInt32" json:"repeated_int32,omitempty"`
  206. RepeatedInt64 []int64 `protobuf:"varint,32,rep,name=repeated_int64,json=repeatedInt64" json:"repeated_int64,omitempty"`
  207. RepeatedUint32 []uint32 `protobuf:"varint,33,rep,name=repeated_uint32,json=repeatedUint32" json:"repeated_uint32,omitempty"`
  208. RepeatedUint64 []uint64 `protobuf:"varint,34,rep,name=repeated_uint64,json=repeatedUint64" json:"repeated_uint64,omitempty"`
  209. RepeatedSint32 []int32 `protobuf:"zigzag32,35,rep,name=repeated_sint32,json=repeatedSint32" json:"repeated_sint32,omitempty"`
  210. RepeatedSint64 []int64 `protobuf:"zigzag64,36,rep,name=repeated_sint64,json=repeatedSint64" json:"repeated_sint64,omitempty"`
  211. RepeatedFixed32 []uint32 `protobuf:"fixed32,37,rep,name=repeated_fixed32,json=repeatedFixed32" json:"repeated_fixed32,omitempty"`
  212. RepeatedFixed64 []uint64 `protobuf:"fixed64,38,rep,name=repeated_fixed64,json=repeatedFixed64" json:"repeated_fixed64,omitempty"`
  213. RepeatedSfixed32 []int32 `protobuf:"fixed32,39,rep,name=repeated_sfixed32,json=repeatedSfixed32" json:"repeated_sfixed32,omitempty"`
  214. RepeatedSfixed64 []int64 `protobuf:"fixed64,40,rep,name=repeated_sfixed64,json=repeatedSfixed64" json:"repeated_sfixed64,omitempty"`
  215. RepeatedFloat []float32 `protobuf:"fixed32,41,rep,name=repeated_float,json=repeatedFloat" json:"repeated_float,omitempty"`
  216. RepeatedDouble []float64 `protobuf:"fixed64,42,rep,name=repeated_double,json=repeatedDouble" json:"repeated_double,omitempty"`
  217. RepeatedBool []bool `protobuf:"varint,43,rep,name=repeated_bool,json=repeatedBool" json:"repeated_bool,omitempty"`
  218. RepeatedString []string `protobuf:"bytes,44,rep,name=repeated_string,json=repeatedString" json:"repeated_string,omitempty"`
  219. RepeatedBytes [][]byte `protobuf:"bytes,45,rep,name=repeated_bytes,json=repeatedBytes" json:"repeated_bytes,omitempty"`
  220. Repeatedgroup []*TestAllTypes_RepeatedGroup `protobuf:"group,46,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"`
  221. RepeatedNestedMessage []*TestAllTypes_NestedMessage `protobuf:"bytes,48,rep,name=repeated_nested_message,json=repeatedNestedMessage" json:"repeated_nested_message,omitempty"`
  222. RepeatedForeignMessage []*ForeignMessage `protobuf:"bytes,49,rep,name=repeated_foreign_message,json=repeatedForeignMessage" json:"repeated_foreign_message,omitempty"`
  223. RepeatedImportmessage []*ImportMessage `protobuf:"bytes,50,rep,name=repeated_importmessage,json=repeatedImportmessage" json:"repeated_importmessage,omitempty"`
  224. RepeatedNestedEnum []TestAllTypes_NestedEnum `protobuf:"varint,51,rep,name=repeated_nested_enum,json=repeatedNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"repeated_nested_enum,omitempty"`
  225. RepeatedForeignEnum []ForeignEnum `protobuf:"varint,52,rep,name=repeated_foreign_enum,json=repeatedForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"repeated_foreign_enum,omitempty"`
  226. RepeatedImportenum []ImportEnum `protobuf:"varint,53,rep,name=repeated_importenum,json=repeatedImportenum,enum=goproto.proto.test.ImportEnum" json:"repeated_importenum,omitempty"`
  227. MapInt32Int32 map[int32]int32 `protobuf:"bytes,56,rep,name=map_int32_int32,json=mapInt32Int32" json:"map_int32_int32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  228. MapInt64Int64 map[int64]int64 `protobuf:"bytes,57,rep,name=map_int64_int64,json=mapInt64Int64" json:"map_int64_int64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  229. MapUint32Uint32 map[uint32]uint32 `protobuf:"bytes,58,rep,name=map_uint32_uint32,json=mapUint32Uint32" json:"map_uint32_uint32,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  230. MapUint64Uint64 map[uint64]uint64 `protobuf:"bytes,59,rep,name=map_uint64_uint64,json=mapUint64Uint64" json:"map_uint64_uint64,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  231. MapSint32Sint32 map[int32]int32 `protobuf:"bytes,60,rep,name=map_sint32_sint32,json=mapSint32Sint32" json:"map_sint32_sint32,omitempty" protobuf_key:"zigzag32,1,opt,name=key" protobuf_val:"zigzag32,2,opt,name=value"`
  232. MapSint64Sint64 map[int64]int64 `protobuf:"bytes,61,rep,name=map_sint64_sint64,json=mapSint64Sint64" json:"map_sint64_sint64,omitempty" protobuf_key:"zigzag64,1,opt,name=key" protobuf_val:"zigzag64,2,opt,name=value"`
  233. MapFixed32Fixed32 map[uint32]uint32 `protobuf:"bytes,62,rep,name=map_fixed32_fixed32,json=mapFixed32Fixed32" json:"map_fixed32_fixed32,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  234. MapFixed64Fixed64 map[uint64]uint64 `protobuf:"bytes,63,rep,name=map_fixed64_fixed64,json=mapFixed64Fixed64" json:"map_fixed64_fixed64,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  235. MapSfixed32Sfixed32 map[int32]int32 `protobuf:"bytes,64,rep,name=map_sfixed32_sfixed32,json=mapSfixed32Sfixed32" json:"map_sfixed32_sfixed32,omitempty" protobuf_key:"fixed32,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  236. MapSfixed64Sfixed64 map[int64]int64 `protobuf:"bytes,65,rep,name=map_sfixed64_sfixed64,json=mapSfixed64Sfixed64" json:"map_sfixed64_sfixed64,omitempty" protobuf_key:"fixed64,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  237. MapInt32Float map[int32]float32 `protobuf:"bytes,66,rep,name=map_int32_float,json=mapInt32Float" json:"map_int32_float,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed32,2,opt,name=value"`
  238. MapInt32Double map[int32]float64 `protobuf:"bytes,67,rep,name=map_int32_double,json=mapInt32Double" json:"map_int32_double,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"fixed64,2,opt,name=value"`
  239. MapBoolBool map[bool]bool `protobuf:"bytes,68,rep,name=map_bool_bool,json=mapBoolBool" json:"map_bool_bool,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"varint,2,opt,name=value"`
  240. MapStringString map[string]string `protobuf:"bytes,69,rep,name=map_string_string,json=mapStringString" json:"map_string_string,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  241. MapStringBytes map[string][]byte `protobuf:"bytes,70,rep,name=map_string_bytes,json=mapStringBytes" json:"map_string_bytes,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  242. MapStringNestedMessage map[string]*TestAllTypes_NestedMessage `protobuf:"bytes,71,rep,name=map_string_nested_message,json=mapStringNestedMessage" json:"map_string_nested_message,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  243. MapStringNestedEnum map[string]TestAllTypes_NestedEnum `protobuf:"bytes,73,rep,name=map_string_nested_enum,json=mapStringNestedEnum" json:"map_string_nested_enum,omitempty" protobuf_key:"bytes,1,opt,name=key" protobuf_val:"varint,2,opt,name=value,enum=goproto.proto.test.TestAllTypes_NestedEnum"`
  244. // Singular with defaults
  245. DefaultInt32 *int32 `protobuf:"varint,81,opt,name=default_int32,json=defaultInt32,def=81" json:"default_int32,omitempty"`
  246. DefaultInt64 *int64 `protobuf:"varint,82,opt,name=default_int64,json=defaultInt64,def=82" json:"default_int64,omitempty"`
  247. DefaultUint32 *uint32 `protobuf:"varint,83,opt,name=default_uint32,json=defaultUint32,def=83" json:"default_uint32,omitempty"`
  248. DefaultUint64 *uint64 `protobuf:"varint,84,opt,name=default_uint64,json=defaultUint64,def=84" json:"default_uint64,omitempty"`
  249. DefaultSint32 *int32 `protobuf:"zigzag32,85,opt,name=default_sint32,json=defaultSint32,def=-85" json:"default_sint32,omitempty"`
  250. DefaultSint64 *int64 `protobuf:"zigzag64,86,opt,name=default_sint64,json=defaultSint64,def=86" json:"default_sint64,omitempty"`
  251. DefaultFixed32 *uint32 `protobuf:"fixed32,87,opt,name=default_fixed32,json=defaultFixed32,def=87" json:"default_fixed32,omitempty"`
  252. DefaultFixed64 *uint64 `protobuf:"fixed64,88,opt,name=default_fixed64,json=defaultFixed64,def=88" json:"default_fixed64,omitempty"`
  253. DefaultSfixed32 *int32 `protobuf:"fixed32,89,opt,name=default_sfixed32,json=defaultSfixed32,def=89" json:"default_sfixed32,omitempty"`
  254. DefaultSfixed64 *int64 `protobuf:"fixed64,80,opt,name=default_sfixed64,json=defaultSfixed64,def=-90" json:"default_sfixed64,omitempty"`
  255. DefaultFloat *float32 `protobuf:"fixed32,91,opt,name=default_float,json=defaultFloat,def=91.5" json:"default_float,omitempty"`
  256. DefaultDouble *float64 `protobuf:"fixed64,92,opt,name=default_double,json=defaultDouble,def=92000" json:"default_double,omitempty"`
  257. DefaultBool *bool `protobuf:"varint,93,opt,name=default_bool,json=defaultBool,def=1" json:"default_bool,omitempty"`
  258. DefaultString *string `protobuf:"bytes,94,opt,name=default_string,json=defaultString,def=hello" json:"default_string,omitempty"`
  259. DefaultBytes []byte `protobuf:"bytes,95,opt,name=default_bytes,json=defaultBytes,def=world" json:"default_bytes,omitempty"`
  260. DefaultNestedEnum *TestAllTypes_NestedEnum `protobuf:"varint,96,opt,name=default_nested_enum,json=defaultNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum,def=1" json:"default_nested_enum,omitempty"`
  261. DefaultForeignEnum *ForeignEnum `protobuf:"varint,97,opt,name=default_foreign_enum,json=defaultForeignEnum,enum=goproto.proto.test.ForeignEnum,def=5" json:"default_foreign_enum,omitempty"`
  262. // Types that are valid to be assigned to OneofField:
  263. // *TestAllTypes_OneofUint32
  264. // *TestAllTypes_OneofNestedMessage
  265. // *TestAllTypes_OneofString
  266. // *TestAllTypes_OneofBytes
  267. // *TestAllTypes_OneofBool
  268. // *TestAllTypes_OneofUint64
  269. // *TestAllTypes_OneofFloat
  270. // *TestAllTypes_OneofDouble
  271. // *TestAllTypes_OneofEnum
  272. OneofField isTestAllTypes_OneofField `protobuf_oneof:"oneof_field"`
  273. sizeCache protoimpl.SizeCache
  274. unknownFields protoimpl.UnknownFields
  275. }
  276. func (x *TestAllTypes) Reset() {
  277. *x = TestAllTypes{}
  278. }
  279. func (x *TestAllTypes) String() string {
  280. return protoimpl.X.MessageStringOf(x)
  281. }
  282. func (*TestAllTypes) ProtoMessage() {}
  283. func (x *TestAllTypes) ProtoReflect() protoreflect.Message {
  284. mi := &file_test_test_proto_msgTypes[0]
  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. func (x *TestAllTypes) XXX_Methods() *protoiface.Methods {
  295. return file_test_test_proto_msgTypes[0].Methods()
  296. }
  297. // Deprecated: Use TestAllTypes.ProtoReflect.Type instead.
  298. func (*TestAllTypes) Descriptor() ([]byte, []int) {
  299. return file_test_test_proto_rawDescGZIP(), []int{0}
  300. }
  301. const Default_TestAllTypes_DefaultInt32 int32 = 81
  302. const Default_TestAllTypes_DefaultInt64 int64 = 82
  303. const Default_TestAllTypes_DefaultUint32 uint32 = 83
  304. const Default_TestAllTypes_DefaultUint64 uint64 = 84
  305. const Default_TestAllTypes_DefaultSint32 int32 = -85
  306. const Default_TestAllTypes_DefaultSint64 int64 = 86
  307. const Default_TestAllTypes_DefaultFixed32 uint32 = 87
  308. const Default_TestAllTypes_DefaultFixed64 uint64 = 88
  309. const Default_TestAllTypes_DefaultSfixed32 int32 = 89
  310. const Default_TestAllTypes_DefaultSfixed64 int64 = -90
  311. const Default_TestAllTypes_DefaultFloat float32 = 91.5
  312. const Default_TestAllTypes_DefaultDouble float64 = 92000
  313. const Default_TestAllTypes_DefaultBool bool = true
  314. const Default_TestAllTypes_DefaultString string = "hello"
  315. var Default_TestAllTypes_DefaultBytes []byte = []byte("world")
  316. const Default_TestAllTypes_DefaultNestedEnum TestAllTypes_NestedEnum = TestAllTypes_BAR
  317. const Default_TestAllTypes_DefaultForeignEnum ForeignEnum = ForeignEnum_FOREIGN_BAR
  318. func (x *TestAllTypes) GetOptionalInt32() int32 {
  319. if x != nil && x.OptionalInt32 != nil {
  320. return *x.OptionalInt32
  321. }
  322. return 0
  323. }
  324. func (x *TestAllTypes) GetOptionalInt64() int64 {
  325. if x != nil && x.OptionalInt64 != nil {
  326. return *x.OptionalInt64
  327. }
  328. return 0
  329. }
  330. func (x *TestAllTypes) GetOptionalUint32() uint32 {
  331. if x != nil && x.OptionalUint32 != nil {
  332. return *x.OptionalUint32
  333. }
  334. return 0
  335. }
  336. func (x *TestAllTypes) GetOptionalUint64() uint64 {
  337. if x != nil && x.OptionalUint64 != nil {
  338. return *x.OptionalUint64
  339. }
  340. return 0
  341. }
  342. func (x *TestAllTypes) GetOptionalSint32() int32 {
  343. if x != nil && x.OptionalSint32 != nil {
  344. return *x.OptionalSint32
  345. }
  346. return 0
  347. }
  348. func (x *TestAllTypes) GetOptionalSint64() int64 {
  349. if x != nil && x.OptionalSint64 != nil {
  350. return *x.OptionalSint64
  351. }
  352. return 0
  353. }
  354. func (x *TestAllTypes) GetOptionalFixed32() uint32 {
  355. if x != nil && x.OptionalFixed32 != nil {
  356. return *x.OptionalFixed32
  357. }
  358. return 0
  359. }
  360. func (x *TestAllTypes) GetOptionalFixed64() uint64 {
  361. if x != nil && x.OptionalFixed64 != nil {
  362. return *x.OptionalFixed64
  363. }
  364. return 0
  365. }
  366. func (x *TestAllTypes) GetOptionalSfixed32() int32 {
  367. if x != nil && x.OptionalSfixed32 != nil {
  368. return *x.OptionalSfixed32
  369. }
  370. return 0
  371. }
  372. func (x *TestAllTypes) GetOptionalSfixed64() int64 {
  373. if x != nil && x.OptionalSfixed64 != nil {
  374. return *x.OptionalSfixed64
  375. }
  376. return 0
  377. }
  378. func (x *TestAllTypes) GetOptionalFloat() float32 {
  379. if x != nil && x.OptionalFloat != nil {
  380. return *x.OptionalFloat
  381. }
  382. return 0
  383. }
  384. func (x *TestAllTypes) GetOptionalDouble() float64 {
  385. if x != nil && x.OptionalDouble != nil {
  386. return *x.OptionalDouble
  387. }
  388. return 0
  389. }
  390. func (x *TestAllTypes) GetOptionalBool() bool {
  391. if x != nil && x.OptionalBool != nil {
  392. return *x.OptionalBool
  393. }
  394. return false
  395. }
  396. func (x *TestAllTypes) GetOptionalString() string {
  397. if x != nil && x.OptionalString != nil {
  398. return *x.OptionalString
  399. }
  400. return ""
  401. }
  402. func (x *TestAllTypes) GetOptionalBytes() []byte {
  403. if x != nil {
  404. return x.OptionalBytes
  405. }
  406. return nil
  407. }
  408. func (x *TestAllTypes) GetOptionalgroup() *TestAllTypes_OptionalGroup {
  409. if x != nil {
  410. return x.Optionalgroup
  411. }
  412. return nil
  413. }
  414. func (x *TestAllTypes) GetOptionalNestedMessage() *TestAllTypes_NestedMessage {
  415. if x != nil {
  416. return x.OptionalNestedMessage
  417. }
  418. return nil
  419. }
  420. func (x *TestAllTypes) GetOptionalForeignMessage() *ForeignMessage {
  421. if x != nil {
  422. return x.OptionalForeignMessage
  423. }
  424. return nil
  425. }
  426. func (x *TestAllTypes) GetOptionalImportMessage() *ImportMessage {
  427. if x != nil {
  428. return x.OptionalImportMessage
  429. }
  430. return nil
  431. }
  432. func (x *TestAllTypes) GetOptionalNestedEnum() TestAllTypes_NestedEnum {
  433. if x != nil && x.OptionalNestedEnum != nil {
  434. return *x.OptionalNestedEnum
  435. }
  436. return TestAllTypes_FOO
  437. }
  438. func (x *TestAllTypes) GetOptionalForeignEnum() ForeignEnum {
  439. if x != nil && x.OptionalForeignEnum != nil {
  440. return *x.OptionalForeignEnum
  441. }
  442. return ForeignEnum_FOREIGN_FOO
  443. }
  444. func (x *TestAllTypes) GetOptionalImportEnum() ImportEnum {
  445. if x != nil && x.OptionalImportEnum != nil {
  446. return *x.OptionalImportEnum
  447. }
  448. return ImportEnum_IMPORT_ZERO
  449. }
  450. func (x *TestAllTypes) GetRepeatedInt32() []int32 {
  451. if x != nil {
  452. return x.RepeatedInt32
  453. }
  454. return nil
  455. }
  456. func (x *TestAllTypes) GetRepeatedInt64() []int64 {
  457. if x != nil {
  458. return x.RepeatedInt64
  459. }
  460. return nil
  461. }
  462. func (x *TestAllTypes) GetRepeatedUint32() []uint32 {
  463. if x != nil {
  464. return x.RepeatedUint32
  465. }
  466. return nil
  467. }
  468. func (x *TestAllTypes) GetRepeatedUint64() []uint64 {
  469. if x != nil {
  470. return x.RepeatedUint64
  471. }
  472. return nil
  473. }
  474. func (x *TestAllTypes) GetRepeatedSint32() []int32 {
  475. if x != nil {
  476. return x.RepeatedSint32
  477. }
  478. return nil
  479. }
  480. func (x *TestAllTypes) GetRepeatedSint64() []int64 {
  481. if x != nil {
  482. return x.RepeatedSint64
  483. }
  484. return nil
  485. }
  486. func (x *TestAllTypes) GetRepeatedFixed32() []uint32 {
  487. if x != nil {
  488. return x.RepeatedFixed32
  489. }
  490. return nil
  491. }
  492. func (x *TestAllTypes) GetRepeatedFixed64() []uint64 {
  493. if x != nil {
  494. return x.RepeatedFixed64
  495. }
  496. return nil
  497. }
  498. func (x *TestAllTypes) GetRepeatedSfixed32() []int32 {
  499. if x != nil {
  500. return x.RepeatedSfixed32
  501. }
  502. return nil
  503. }
  504. func (x *TestAllTypes) GetRepeatedSfixed64() []int64 {
  505. if x != nil {
  506. return x.RepeatedSfixed64
  507. }
  508. return nil
  509. }
  510. func (x *TestAllTypes) GetRepeatedFloat() []float32 {
  511. if x != nil {
  512. return x.RepeatedFloat
  513. }
  514. return nil
  515. }
  516. func (x *TestAllTypes) GetRepeatedDouble() []float64 {
  517. if x != nil {
  518. return x.RepeatedDouble
  519. }
  520. return nil
  521. }
  522. func (x *TestAllTypes) GetRepeatedBool() []bool {
  523. if x != nil {
  524. return x.RepeatedBool
  525. }
  526. return nil
  527. }
  528. func (x *TestAllTypes) GetRepeatedString() []string {
  529. if x != nil {
  530. return x.RepeatedString
  531. }
  532. return nil
  533. }
  534. func (x *TestAllTypes) GetRepeatedBytes() [][]byte {
  535. if x != nil {
  536. return x.RepeatedBytes
  537. }
  538. return nil
  539. }
  540. func (x *TestAllTypes) GetRepeatedgroup() []*TestAllTypes_RepeatedGroup {
  541. if x != nil {
  542. return x.Repeatedgroup
  543. }
  544. return nil
  545. }
  546. func (x *TestAllTypes) GetRepeatedNestedMessage() []*TestAllTypes_NestedMessage {
  547. if x != nil {
  548. return x.RepeatedNestedMessage
  549. }
  550. return nil
  551. }
  552. func (x *TestAllTypes) GetRepeatedForeignMessage() []*ForeignMessage {
  553. if x != nil {
  554. return x.RepeatedForeignMessage
  555. }
  556. return nil
  557. }
  558. func (x *TestAllTypes) GetRepeatedImportmessage() []*ImportMessage {
  559. if x != nil {
  560. return x.RepeatedImportmessage
  561. }
  562. return nil
  563. }
  564. func (x *TestAllTypes) GetRepeatedNestedEnum() []TestAllTypes_NestedEnum {
  565. if x != nil {
  566. return x.RepeatedNestedEnum
  567. }
  568. return nil
  569. }
  570. func (x *TestAllTypes) GetRepeatedForeignEnum() []ForeignEnum {
  571. if x != nil {
  572. return x.RepeatedForeignEnum
  573. }
  574. return nil
  575. }
  576. func (x *TestAllTypes) GetRepeatedImportenum() []ImportEnum {
  577. if x != nil {
  578. return x.RepeatedImportenum
  579. }
  580. return nil
  581. }
  582. func (x *TestAllTypes) GetMapInt32Int32() map[int32]int32 {
  583. if x != nil {
  584. return x.MapInt32Int32
  585. }
  586. return nil
  587. }
  588. func (x *TestAllTypes) GetMapInt64Int64() map[int64]int64 {
  589. if x != nil {
  590. return x.MapInt64Int64
  591. }
  592. return nil
  593. }
  594. func (x *TestAllTypes) GetMapUint32Uint32() map[uint32]uint32 {
  595. if x != nil {
  596. return x.MapUint32Uint32
  597. }
  598. return nil
  599. }
  600. func (x *TestAllTypes) GetMapUint64Uint64() map[uint64]uint64 {
  601. if x != nil {
  602. return x.MapUint64Uint64
  603. }
  604. return nil
  605. }
  606. func (x *TestAllTypes) GetMapSint32Sint32() map[int32]int32 {
  607. if x != nil {
  608. return x.MapSint32Sint32
  609. }
  610. return nil
  611. }
  612. func (x *TestAllTypes) GetMapSint64Sint64() map[int64]int64 {
  613. if x != nil {
  614. return x.MapSint64Sint64
  615. }
  616. return nil
  617. }
  618. func (x *TestAllTypes) GetMapFixed32Fixed32() map[uint32]uint32 {
  619. if x != nil {
  620. return x.MapFixed32Fixed32
  621. }
  622. return nil
  623. }
  624. func (x *TestAllTypes) GetMapFixed64Fixed64() map[uint64]uint64 {
  625. if x != nil {
  626. return x.MapFixed64Fixed64
  627. }
  628. return nil
  629. }
  630. func (x *TestAllTypes) GetMapSfixed32Sfixed32() map[int32]int32 {
  631. if x != nil {
  632. return x.MapSfixed32Sfixed32
  633. }
  634. return nil
  635. }
  636. func (x *TestAllTypes) GetMapSfixed64Sfixed64() map[int64]int64 {
  637. if x != nil {
  638. return x.MapSfixed64Sfixed64
  639. }
  640. return nil
  641. }
  642. func (x *TestAllTypes) GetMapInt32Float() map[int32]float32 {
  643. if x != nil {
  644. return x.MapInt32Float
  645. }
  646. return nil
  647. }
  648. func (x *TestAllTypes) GetMapInt32Double() map[int32]float64 {
  649. if x != nil {
  650. return x.MapInt32Double
  651. }
  652. return nil
  653. }
  654. func (x *TestAllTypes) GetMapBoolBool() map[bool]bool {
  655. if x != nil {
  656. return x.MapBoolBool
  657. }
  658. return nil
  659. }
  660. func (x *TestAllTypes) GetMapStringString() map[string]string {
  661. if x != nil {
  662. return x.MapStringString
  663. }
  664. return nil
  665. }
  666. func (x *TestAllTypes) GetMapStringBytes() map[string][]byte {
  667. if x != nil {
  668. return x.MapStringBytes
  669. }
  670. return nil
  671. }
  672. func (x *TestAllTypes) GetMapStringNestedMessage() map[string]*TestAllTypes_NestedMessage {
  673. if x != nil {
  674. return x.MapStringNestedMessage
  675. }
  676. return nil
  677. }
  678. func (x *TestAllTypes) GetMapStringNestedEnum() map[string]TestAllTypes_NestedEnum {
  679. if x != nil {
  680. return x.MapStringNestedEnum
  681. }
  682. return nil
  683. }
  684. func (x *TestAllTypes) GetDefaultInt32() int32 {
  685. if x != nil && x.DefaultInt32 != nil {
  686. return *x.DefaultInt32
  687. }
  688. return Default_TestAllTypes_DefaultInt32
  689. }
  690. func (x *TestAllTypes) GetDefaultInt64() int64 {
  691. if x != nil && x.DefaultInt64 != nil {
  692. return *x.DefaultInt64
  693. }
  694. return Default_TestAllTypes_DefaultInt64
  695. }
  696. func (x *TestAllTypes) GetDefaultUint32() uint32 {
  697. if x != nil && x.DefaultUint32 != nil {
  698. return *x.DefaultUint32
  699. }
  700. return Default_TestAllTypes_DefaultUint32
  701. }
  702. func (x *TestAllTypes) GetDefaultUint64() uint64 {
  703. if x != nil && x.DefaultUint64 != nil {
  704. return *x.DefaultUint64
  705. }
  706. return Default_TestAllTypes_DefaultUint64
  707. }
  708. func (x *TestAllTypes) GetDefaultSint32() int32 {
  709. if x != nil && x.DefaultSint32 != nil {
  710. return *x.DefaultSint32
  711. }
  712. return Default_TestAllTypes_DefaultSint32
  713. }
  714. func (x *TestAllTypes) GetDefaultSint64() int64 {
  715. if x != nil && x.DefaultSint64 != nil {
  716. return *x.DefaultSint64
  717. }
  718. return Default_TestAllTypes_DefaultSint64
  719. }
  720. func (x *TestAllTypes) GetDefaultFixed32() uint32 {
  721. if x != nil && x.DefaultFixed32 != nil {
  722. return *x.DefaultFixed32
  723. }
  724. return Default_TestAllTypes_DefaultFixed32
  725. }
  726. func (x *TestAllTypes) GetDefaultFixed64() uint64 {
  727. if x != nil && x.DefaultFixed64 != nil {
  728. return *x.DefaultFixed64
  729. }
  730. return Default_TestAllTypes_DefaultFixed64
  731. }
  732. func (x *TestAllTypes) GetDefaultSfixed32() int32 {
  733. if x != nil && x.DefaultSfixed32 != nil {
  734. return *x.DefaultSfixed32
  735. }
  736. return Default_TestAllTypes_DefaultSfixed32
  737. }
  738. func (x *TestAllTypes) GetDefaultSfixed64() int64 {
  739. if x != nil && x.DefaultSfixed64 != nil {
  740. return *x.DefaultSfixed64
  741. }
  742. return Default_TestAllTypes_DefaultSfixed64
  743. }
  744. func (x *TestAllTypes) GetDefaultFloat() float32 {
  745. if x != nil && x.DefaultFloat != nil {
  746. return *x.DefaultFloat
  747. }
  748. return Default_TestAllTypes_DefaultFloat
  749. }
  750. func (x *TestAllTypes) GetDefaultDouble() float64 {
  751. if x != nil && x.DefaultDouble != nil {
  752. return *x.DefaultDouble
  753. }
  754. return Default_TestAllTypes_DefaultDouble
  755. }
  756. func (x *TestAllTypes) GetDefaultBool() bool {
  757. if x != nil && x.DefaultBool != nil {
  758. return *x.DefaultBool
  759. }
  760. return Default_TestAllTypes_DefaultBool
  761. }
  762. func (x *TestAllTypes) GetDefaultString() string {
  763. if x != nil && x.DefaultString != nil {
  764. return *x.DefaultString
  765. }
  766. return Default_TestAllTypes_DefaultString
  767. }
  768. func (x *TestAllTypes) GetDefaultBytes() []byte {
  769. if x != nil && x.DefaultBytes != nil {
  770. return x.DefaultBytes
  771. }
  772. return append([]byte(nil), Default_TestAllTypes_DefaultBytes...)
  773. }
  774. func (x *TestAllTypes) GetDefaultNestedEnum() TestAllTypes_NestedEnum {
  775. if x != nil && x.DefaultNestedEnum != nil {
  776. return *x.DefaultNestedEnum
  777. }
  778. return Default_TestAllTypes_DefaultNestedEnum
  779. }
  780. func (x *TestAllTypes) GetDefaultForeignEnum() ForeignEnum {
  781. if x != nil && x.DefaultForeignEnum != nil {
  782. return *x.DefaultForeignEnum
  783. }
  784. return Default_TestAllTypes_DefaultForeignEnum
  785. }
  786. func (m *TestAllTypes) GetOneofField() isTestAllTypes_OneofField {
  787. if m != nil {
  788. return m.OneofField
  789. }
  790. return nil
  791. }
  792. func (x *TestAllTypes) GetOneofUint32() uint32 {
  793. if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint32); ok {
  794. return x.OneofUint32
  795. }
  796. return 0
  797. }
  798. func (x *TestAllTypes) GetOneofNestedMessage() *TestAllTypes_NestedMessage {
  799. if x, ok := x.GetOneofField().(*TestAllTypes_OneofNestedMessage); ok {
  800. return x.OneofNestedMessage
  801. }
  802. return nil
  803. }
  804. func (x *TestAllTypes) GetOneofString() string {
  805. if x, ok := x.GetOneofField().(*TestAllTypes_OneofString); ok {
  806. return x.OneofString
  807. }
  808. return ""
  809. }
  810. func (x *TestAllTypes) GetOneofBytes() []byte {
  811. if x, ok := x.GetOneofField().(*TestAllTypes_OneofBytes); ok {
  812. return x.OneofBytes
  813. }
  814. return nil
  815. }
  816. func (x *TestAllTypes) GetOneofBool() bool {
  817. if x, ok := x.GetOneofField().(*TestAllTypes_OneofBool); ok {
  818. return x.OneofBool
  819. }
  820. return false
  821. }
  822. func (x *TestAllTypes) GetOneofUint64() uint64 {
  823. if x, ok := x.GetOneofField().(*TestAllTypes_OneofUint64); ok {
  824. return x.OneofUint64
  825. }
  826. return 0
  827. }
  828. func (x *TestAllTypes) GetOneofFloat() float32 {
  829. if x, ok := x.GetOneofField().(*TestAllTypes_OneofFloat); ok {
  830. return x.OneofFloat
  831. }
  832. return 0
  833. }
  834. func (x *TestAllTypes) GetOneofDouble() float64 {
  835. if x, ok := x.GetOneofField().(*TestAllTypes_OneofDouble); ok {
  836. return x.OneofDouble
  837. }
  838. return 0
  839. }
  840. func (x *TestAllTypes) GetOneofEnum() TestAllTypes_NestedEnum {
  841. if x, ok := x.GetOneofField().(*TestAllTypes_OneofEnum); ok {
  842. return x.OneofEnum
  843. }
  844. return TestAllTypes_FOO
  845. }
  846. type isTestAllTypes_OneofField interface {
  847. isTestAllTypes_OneofField()
  848. }
  849. type TestAllTypes_OneofUint32 struct {
  850. OneofUint32 uint32 `protobuf:"varint,111,opt,name=oneof_uint32,json=oneofUint32,oneof"`
  851. }
  852. type TestAllTypes_OneofNestedMessage struct {
  853. OneofNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,112,opt,name=oneof_nested_message,json=oneofNestedMessage,oneof"`
  854. }
  855. type TestAllTypes_OneofString struct {
  856. OneofString string `protobuf:"bytes,113,opt,name=oneof_string,json=oneofString,oneof"`
  857. }
  858. type TestAllTypes_OneofBytes struct {
  859. OneofBytes []byte `protobuf:"bytes,114,opt,name=oneof_bytes,json=oneofBytes,oneof"`
  860. }
  861. type TestAllTypes_OneofBool struct {
  862. OneofBool bool `protobuf:"varint,115,opt,name=oneof_bool,json=oneofBool,oneof"`
  863. }
  864. type TestAllTypes_OneofUint64 struct {
  865. OneofUint64 uint64 `protobuf:"varint,116,opt,name=oneof_uint64,json=oneofUint64,oneof"`
  866. }
  867. type TestAllTypes_OneofFloat struct {
  868. OneofFloat float32 `protobuf:"fixed32,117,opt,name=oneof_float,json=oneofFloat,oneof"`
  869. }
  870. type TestAllTypes_OneofDouble struct {
  871. OneofDouble float64 `protobuf:"fixed64,118,opt,name=oneof_double,json=oneofDouble,oneof"`
  872. }
  873. type TestAllTypes_OneofEnum struct {
  874. OneofEnum TestAllTypes_NestedEnum `protobuf:"varint,119,opt,name=oneof_enum,json=oneofEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum,oneof"`
  875. }
  876. func (*TestAllTypes_OneofUint32) isTestAllTypes_OneofField() {}
  877. func (*TestAllTypes_OneofNestedMessage) isTestAllTypes_OneofField() {}
  878. func (*TestAllTypes_OneofString) isTestAllTypes_OneofField() {}
  879. func (*TestAllTypes_OneofBytes) isTestAllTypes_OneofField() {}
  880. func (*TestAllTypes_OneofBool) isTestAllTypes_OneofField() {}
  881. func (*TestAllTypes_OneofUint64) isTestAllTypes_OneofField() {}
  882. func (*TestAllTypes_OneofFloat) isTestAllTypes_OneofField() {}
  883. func (*TestAllTypes_OneofDouble) isTestAllTypes_OneofField() {}
  884. func (*TestAllTypes_OneofEnum) isTestAllTypes_OneofField() {}
  885. // Deprecated: Do not use.
  886. type TestDeprecatedMessage struct {
  887. state protoimpl.MessageState
  888. DeprecatedInt32 *int32 `protobuf:"varint,1,opt,name=deprecated_int32,json=deprecatedInt32" json:"deprecated_int32,omitempty"` // Deprecated: Do not use.
  889. // Types that are valid to be assigned to DeprecatedOneof:
  890. // *TestDeprecatedMessage_DeprecatedOneofField
  891. DeprecatedOneof isTestDeprecatedMessage_DeprecatedOneof `protobuf_oneof:"deprecated_oneof"`
  892. sizeCache protoimpl.SizeCache
  893. unknownFields protoimpl.UnknownFields
  894. }
  895. func (x *TestDeprecatedMessage) Reset() {
  896. *x = TestDeprecatedMessage{}
  897. }
  898. func (x *TestDeprecatedMessage) String() string {
  899. return protoimpl.X.MessageStringOf(x)
  900. }
  901. func (*TestDeprecatedMessage) ProtoMessage() {}
  902. func (x *TestDeprecatedMessage) ProtoReflect() protoreflect.Message {
  903. mi := &file_test_test_proto_msgTypes[1]
  904. if protoimpl.UnsafeEnabled && x != nil {
  905. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  906. if ms.LoadMessageInfo() == nil {
  907. ms.StoreMessageInfo(mi)
  908. }
  909. return ms
  910. }
  911. return mi.MessageOf(x)
  912. }
  913. func (x *TestDeprecatedMessage) XXX_Methods() *protoiface.Methods {
  914. return file_test_test_proto_msgTypes[1].Methods()
  915. }
  916. // Deprecated: Use TestDeprecatedMessage.ProtoReflect.Type instead.
  917. func (*TestDeprecatedMessage) Descriptor() ([]byte, []int) {
  918. return file_test_test_proto_rawDescGZIP(), []int{1}
  919. }
  920. // Deprecated: Do not use.
  921. func (x *TestDeprecatedMessage) GetDeprecatedInt32() int32 {
  922. if x != nil && x.DeprecatedInt32 != nil {
  923. return *x.DeprecatedInt32
  924. }
  925. return 0
  926. }
  927. func (m *TestDeprecatedMessage) GetDeprecatedOneof() isTestDeprecatedMessage_DeprecatedOneof {
  928. if m != nil {
  929. return m.DeprecatedOneof
  930. }
  931. return nil
  932. }
  933. // Deprecated: Do not use.
  934. func (x *TestDeprecatedMessage) GetDeprecatedOneofField() int32 {
  935. if x, ok := x.GetDeprecatedOneof().(*TestDeprecatedMessage_DeprecatedOneofField); ok {
  936. return x.DeprecatedOneofField
  937. }
  938. return 0
  939. }
  940. type isTestDeprecatedMessage_DeprecatedOneof interface {
  941. isTestDeprecatedMessage_DeprecatedOneof()
  942. }
  943. type TestDeprecatedMessage_DeprecatedOneofField struct {
  944. DeprecatedOneofField int32 `protobuf:"varint,2,opt,name=deprecated_oneof_field,json=deprecatedOneofField,oneof"`
  945. }
  946. func (*TestDeprecatedMessage_DeprecatedOneofField) isTestDeprecatedMessage_DeprecatedOneof() {}
  947. type ForeignMessage struct {
  948. state protoimpl.MessageState
  949. C *int32 `protobuf:"varint,1,opt,name=c" json:"c,omitempty"`
  950. D *int32 `protobuf:"varint,2,opt,name=d" json:"d,omitempty"`
  951. sizeCache protoimpl.SizeCache
  952. unknownFields protoimpl.UnknownFields
  953. }
  954. func (x *ForeignMessage) Reset() {
  955. *x = ForeignMessage{}
  956. }
  957. func (x *ForeignMessage) String() string {
  958. return protoimpl.X.MessageStringOf(x)
  959. }
  960. func (*ForeignMessage) ProtoMessage() {}
  961. func (x *ForeignMessage) ProtoReflect() protoreflect.Message {
  962. mi := &file_test_test_proto_msgTypes[2]
  963. if protoimpl.UnsafeEnabled && x != nil {
  964. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  965. if ms.LoadMessageInfo() == nil {
  966. ms.StoreMessageInfo(mi)
  967. }
  968. return ms
  969. }
  970. return mi.MessageOf(x)
  971. }
  972. func (x *ForeignMessage) XXX_Methods() *protoiface.Methods {
  973. return file_test_test_proto_msgTypes[2].Methods()
  974. }
  975. // Deprecated: Use ForeignMessage.ProtoReflect.Type instead.
  976. func (*ForeignMessage) Descriptor() ([]byte, []int) {
  977. return file_test_test_proto_rawDescGZIP(), []int{2}
  978. }
  979. func (x *ForeignMessage) GetC() int32 {
  980. if x != nil && x.C != nil {
  981. return *x.C
  982. }
  983. return 0
  984. }
  985. func (x *ForeignMessage) GetD() int32 {
  986. if x != nil && x.D != nil {
  987. return *x.D
  988. }
  989. return 0
  990. }
  991. type TestReservedFields struct {
  992. state protoimpl.MessageState
  993. sizeCache protoimpl.SizeCache
  994. unknownFields protoimpl.UnknownFields
  995. }
  996. func (x *TestReservedFields) Reset() {
  997. *x = TestReservedFields{}
  998. }
  999. func (x *TestReservedFields) String() string {
  1000. return protoimpl.X.MessageStringOf(x)
  1001. }
  1002. func (*TestReservedFields) ProtoMessage() {}
  1003. func (x *TestReservedFields) ProtoReflect() protoreflect.Message {
  1004. mi := &file_test_test_proto_msgTypes[3]
  1005. if protoimpl.UnsafeEnabled && x != nil {
  1006. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1007. if ms.LoadMessageInfo() == nil {
  1008. ms.StoreMessageInfo(mi)
  1009. }
  1010. return ms
  1011. }
  1012. return mi.MessageOf(x)
  1013. }
  1014. func (x *TestReservedFields) XXX_Methods() *protoiface.Methods {
  1015. return file_test_test_proto_msgTypes[3].Methods()
  1016. }
  1017. // Deprecated: Use TestReservedFields.ProtoReflect.Type instead.
  1018. func (*TestReservedFields) Descriptor() ([]byte, []int) {
  1019. return file_test_test_proto_rawDescGZIP(), []int{3}
  1020. }
  1021. type TestAllExtensions struct {
  1022. state protoimpl.MessageState
  1023. sizeCache protoimpl.SizeCache
  1024. unknownFields protoimpl.UnknownFields
  1025. extensionFields protoimpl.ExtensionFields
  1026. }
  1027. func (x *TestAllExtensions) Reset() {
  1028. *x = TestAllExtensions{}
  1029. }
  1030. func (x *TestAllExtensions) String() string {
  1031. return protoimpl.X.MessageStringOf(x)
  1032. }
  1033. func (*TestAllExtensions) ProtoMessage() {}
  1034. func (x *TestAllExtensions) ProtoReflect() protoreflect.Message {
  1035. mi := &file_test_test_proto_msgTypes[4]
  1036. if protoimpl.UnsafeEnabled && x != nil {
  1037. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1038. if ms.LoadMessageInfo() == nil {
  1039. ms.StoreMessageInfo(mi)
  1040. }
  1041. return ms
  1042. }
  1043. return mi.MessageOf(x)
  1044. }
  1045. func (x *TestAllExtensions) XXX_Methods() *protoiface.Methods {
  1046. return file_test_test_proto_msgTypes[4].Methods()
  1047. }
  1048. // Deprecated: Use TestAllExtensions.ProtoReflect.Type instead.
  1049. func (*TestAllExtensions) Descriptor() ([]byte, []int) {
  1050. return file_test_test_proto_rawDescGZIP(), []int{4}
  1051. }
  1052. var extRange_TestAllExtensions = []protoiface.ExtensionRangeV1{
  1053. {Start: 1, End: 536870911},
  1054. }
  1055. // Deprecated: Use TestAllExtensions.ProtoReflect.Type.ExtensionRanges instead.
  1056. func (*TestAllExtensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  1057. return extRange_TestAllExtensions
  1058. }
  1059. type OptionalGroupExtension struct {
  1060. state protoimpl.MessageState
  1061. A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"`
  1062. sizeCache protoimpl.SizeCache
  1063. unknownFields protoimpl.UnknownFields
  1064. }
  1065. func (x *OptionalGroupExtension) Reset() {
  1066. *x = OptionalGroupExtension{}
  1067. }
  1068. func (x *OptionalGroupExtension) String() string {
  1069. return protoimpl.X.MessageStringOf(x)
  1070. }
  1071. func (*OptionalGroupExtension) ProtoMessage() {}
  1072. func (x *OptionalGroupExtension) ProtoReflect() protoreflect.Message {
  1073. mi := &file_test_test_proto_msgTypes[5]
  1074. if protoimpl.UnsafeEnabled && x != nil {
  1075. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1076. if ms.LoadMessageInfo() == nil {
  1077. ms.StoreMessageInfo(mi)
  1078. }
  1079. return ms
  1080. }
  1081. return mi.MessageOf(x)
  1082. }
  1083. func (x *OptionalGroupExtension) XXX_Methods() *protoiface.Methods {
  1084. return file_test_test_proto_msgTypes[5].Methods()
  1085. }
  1086. // Deprecated: Use OptionalGroupExtension.ProtoReflect.Type instead.
  1087. func (*OptionalGroupExtension) Descriptor() ([]byte, []int) {
  1088. return file_test_test_proto_rawDescGZIP(), []int{5}
  1089. }
  1090. func (x *OptionalGroupExtension) GetA() int32 {
  1091. if x != nil && x.A != nil {
  1092. return *x.A
  1093. }
  1094. return 0
  1095. }
  1096. type RepeatedGroupExtension struct {
  1097. state protoimpl.MessageState
  1098. A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"`
  1099. sizeCache protoimpl.SizeCache
  1100. unknownFields protoimpl.UnknownFields
  1101. }
  1102. func (x *RepeatedGroupExtension) Reset() {
  1103. *x = RepeatedGroupExtension{}
  1104. }
  1105. func (x *RepeatedGroupExtension) String() string {
  1106. return protoimpl.X.MessageStringOf(x)
  1107. }
  1108. func (*RepeatedGroupExtension) ProtoMessage() {}
  1109. func (x *RepeatedGroupExtension) ProtoReflect() protoreflect.Message {
  1110. mi := &file_test_test_proto_msgTypes[6]
  1111. if protoimpl.UnsafeEnabled && x != nil {
  1112. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1113. if ms.LoadMessageInfo() == nil {
  1114. ms.StoreMessageInfo(mi)
  1115. }
  1116. return ms
  1117. }
  1118. return mi.MessageOf(x)
  1119. }
  1120. func (x *RepeatedGroupExtension) XXX_Methods() *protoiface.Methods {
  1121. return file_test_test_proto_msgTypes[6].Methods()
  1122. }
  1123. // Deprecated: Use RepeatedGroupExtension.ProtoReflect.Type instead.
  1124. func (*RepeatedGroupExtension) Descriptor() ([]byte, []int) {
  1125. return file_test_test_proto_rawDescGZIP(), []int{6}
  1126. }
  1127. func (x *RepeatedGroupExtension) GetA() int32 {
  1128. if x != nil && x.A != nil {
  1129. return *x.A
  1130. }
  1131. return 0
  1132. }
  1133. type TestNestedExtension struct {
  1134. state protoimpl.MessageState
  1135. sizeCache protoimpl.SizeCache
  1136. unknownFields protoimpl.UnknownFields
  1137. }
  1138. func (x *TestNestedExtension) Reset() {
  1139. *x = TestNestedExtension{}
  1140. }
  1141. func (x *TestNestedExtension) String() string {
  1142. return protoimpl.X.MessageStringOf(x)
  1143. }
  1144. func (*TestNestedExtension) ProtoMessage() {}
  1145. func (x *TestNestedExtension) ProtoReflect() protoreflect.Message {
  1146. mi := &file_test_test_proto_msgTypes[7]
  1147. if protoimpl.UnsafeEnabled && x != nil {
  1148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1149. if ms.LoadMessageInfo() == nil {
  1150. ms.StoreMessageInfo(mi)
  1151. }
  1152. return ms
  1153. }
  1154. return mi.MessageOf(x)
  1155. }
  1156. func (x *TestNestedExtension) XXX_Methods() *protoiface.Methods {
  1157. return file_test_test_proto_msgTypes[7].Methods()
  1158. }
  1159. // Deprecated: Use TestNestedExtension.ProtoReflect.Type instead.
  1160. func (*TestNestedExtension) Descriptor() ([]byte, []int) {
  1161. return file_test_test_proto_rawDescGZIP(), []int{7}
  1162. }
  1163. type TestRequired struct {
  1164. state protoimpl.MessageState
  1165. RequiredField *int32 `protobuf:"varint,1,req,name=required_field,json=requiredField" json:"required_field,omitempty"`
  1166. sizeCache protoimpl.SizeCache
  1167. unknownFields protoimpl.UnknownFields
  1168. }
  1169. func (x *TestRequired) Reset() {
  1170. *x = TestRequired{}
  1171. }
  1172. func (x *TestRequired) String() string {
  1173. return protoimpl.X.MessageStringOf(x)
  1174. }
  1175. func (*TestRequired) ProtoMessage() {}
  1176. func (x *TestRequired) ProtoReflect() protoreflect.Message {
  1177. mi := &file_test_test_proto_msgTypes[8]
  1178. if protoimpl.UnsafeEnabled && x != nil {
  1179. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1180. if ms.LoadMessageInfo() == nil {
  1181. ms.StoreMessageInfo(mi)
  1182. }
  1183. return ms
  1184. }
  1185. return mi.MessageOf(x)
  1186. }
  1187. func (x *TestRequired) XXX_Methods() *protoiface.Methods {
  1188. return file_test_test_proto_msgTypes[8].Methods()
  1189. }
  1190. // Deprecated: Use TestRequired.ProtoReflect.Type instead.
  1191. func (*TestRequired) Descriptor() ([]byte, []int) {
  1192. return file_test_test_proto_rawDescGZIP(), []int{8}
  1193. }
  1194. func (x *TestRequired) GetRequiredField() int32 {
  1195. if x != nil && x.RequiredField != nil {
  1196. return *x.RequiredField
  1197. }
  1198. return 0
  1199. }
  1200. type TestRequiredForeign struct {
  1201. state protoimpl.MessageState
  1202. OptionalMessage *TestRequired `protobuf:"bytes,1,opt,name=optional_message,json=optionalMessage" json:"optional_message,omitempty"`
  1203. RepeatedMessage []*TestRequired `protobuf:"bytes,2,rep,name=repeated_message,json=repeatedMessage" json:"repeated_message,omitempty"`
  1204. MapMessage map[int32]*TestRequired `protobuf:"bytes,3,rep,name=map_message,json=mapMessage" json:"map_message,omitempty" protobuf_key:"varint,1,opt,name=key" protobuf_val:"bytes,2,opt,name=value"`
  1205. // Types that are valid to be assigned to OneofField:
  1206. // *TestRequiredForeign_OneofMessage
  1207. OneofField isTestRequiredForeign_OneofField `protobuf_oneof:"oneof_field"`
  1208. sizeCache protoimpl.SizeCache
  1209. unknownFields protoimpl.UnknownFields
  1210. }
  1211. func (x *TestRequiredForeign) Reset() {
  1212. *x = TestRequiredForeign{}
  1213. }
  1214. func (x *TestRequiredForeign) String() string {
  1215. return protoimpl.X.MessageStringOf(x)
  1216. }
  1217. func (*TestRequiredForeign) ProtoMessage() {}
  1218. func (x *TestRequiredForeign) ProtoReflect() protoreflect.Message {
  1219. mi := &file_test_test_proto_msgTypes[9]
  1220. if protoimpl.UnsafeEnabled && x != nil {
  1221. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1222. if ms.LoadMessageInfo() == nil {
  1223. ms.StoreMessageInfo(mi)
  1224. }
  1225. return ms
  1226. }
  1227. return mi.MessageOf(x)
  1228. }
  1229. func (x *TestRequiredForeign) XXX_Methods() *protoiface.Methods {
  1230. return file_test_test_proto_msgTypes[9].Methods()
  1231. }
  1232. // Deprecated: Use TestRequiredForeign.ProtoReflect.Type instead.
  1233. func (*TestRequiredForeign) Descriptor() ([]byte, []int) {
  1234. return file_test_test_proto_rawDescGZIP(), []int{9}
  1235. }
  1236. func (x *TestRequiredForeign) GetOptionalMessage() *TestRequired {
  1237. if x != nil {
  1238. return x.OptionalMessage
  1239. }
  1240. return nil
  1241. }
  1242. func (x *TestRequiredForeign) GetRepeatedMessage() []*TestRequired {
  1243. if x != nil {
  1244. return x.RepeatedMessage
  1245. }
  1246. return nil
  1247. }
  1248. func (x *TestRequiredForeign) GetMapMessage() map[int32]*TestRequired {
  1249. if x != nil {
  1250. return x.MapMessage
  1251. }
  1252. return nil
  1253. }
  1254. func (m *TestRequiredForeign) GetOneofField() isTestRequiredForeign_OneofField {
  1255. if m != nil {
  1256. return m.OneofField
  1257. }
  1258. return nil
  1259. }
  1260. func (x *TestRequiredForeign) GetOneofMessage() *TestRequired {
  1261. if x, ok := x.GetOneofField().(*TestRequiredForeign_OneofMessage); ok {
  1262. return x.OneofMessage
  1263. }
  1264. return nil
  1265. }
  1266. type isTestRequiredForeign_OneofField interface {
  1267. isTestRequiredForeign_OneofField()
  1268. }
  1269. type TestRequiredForeign_OneofMessage struct {
  1270. OneofMessage *TestRequired `protobuf:"bytes,4,opt,name=oneof_message,json=oneofMessage,oneof"`
  1271. }
  1272. func (*TestRequiredForeign_OneofMessage) isTestRequiredForeign_OneofField() {}
  1273. type TestRequiredGroupFields struct {
  1274. state protoimpl.MessageState
  1275. Optionalgroup *TestRequiredGroupFields_OptionalGroup `protobuf:"group,1,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"`
  1276. Repeatedgroup []*TestRequiredGroupFields_RepeatedGroup `protobuf:"group,3,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"`
  1277. sizeCache protoimpl.SizeCache
  1278. unknownFields protoimpl.UnknownFields
  1279. }
  1280. func (x *TestRequiredGroupFields) Reset() {
  1281. *x = TestRequiredGroupFields{}
  1282. }
  1283. func (x *TestRequiredGroupFields) String() string {
  1284. return protoimpl.X.MessageStringOf(x)
  1285. }
  1286. func (*TestRequiredGroupFields) ProtoMessage() {}
  1287. func (x *TestRequiredGroupFields) ProtoReflect() protoreflect.Message {
  1288. mi := &file_test_test_proto_msgTypes[10]
  1289. if protoimpl.UnsafeEnabled && x != nil {
  1290. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1291. if ms.LoadMessageInfo() == nil {
  1292. ms.StoreMessageInfo(mi)
  1293. }
  1294. return ms
  1295. }
  1296. return mi.MessageOf(x)
  1297. }
  1298. func (x *TestRequiredGroupFields) XXX_Methods() *protoiface.Methods {
  1299. return file_test_test_proto_msgTypes[10].Methods()
  1300. }
  1301. // Deprecated: Use TestRequiredGroupFields.ProtoReflect.Type instead.
  1302. func (*TestRequiredGroupFields) Descriptor() ([]byte, []int) {
  1303. return file_test_test_proto_rawDescGZIP(), []int{10}
  1304. }
  1305. func (x *TestRequiredGroupFields) GetOptionalgroup() *TestRequiredGroupFields_OptionalGroup {
  1306. if x != nil {
  1307. return x.Optionalgroup
  1308. }
  1309. return nil
  1310. }
  1311. func (x *TestRequiredGroupFields) GetRepeatedgroup() []*TestRequiredGroupFields_RepeatedGroup {
  1312. if x != nil {
  1313. return x.Repeatedgroup
  1314. }
  1315. return nil
  1316. }
  1317. type TestWeak struct {
  1318. state protoimpl.MessageState
  1319. WeakMessage *weak.WeakImportMessage `protobuf:"bytes,1,opt,weak=goproto.proto.test.weak.WeakImportMessage,name=weak_message,json=weakMessage" json:"weak_message,omitempty"`
  1320. sizeCache protoimpl.SizeCache
  1321. unknownFields protoimpl.UnknownFields
  1322. }
  1323. func (x *TestWeak) Reset() {
  1324. *x = TestWeak{}
  1325. }
  1326. func (x *TestWeak) String() string {
  1327. return protoimpl.X.MessageStringOf(x)
  1328. }
  1329. func (*TestWeak) ProtoMessage() {}
  1330. func (x *TestWeak) ProtoReflect() protoreflect.Message {
  1331. mi := &file_test_test_proto_msgTypes[11]
  1332. if protoimpl.UnsafeEnabled && x != nil {
  1333. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1334. if ms.LoadMessageInfo() == nil {
  1335. ms.StoreMessageInfo(mi)
  1336. }
  1337. return ms
  1338. }
  1339. return mi.MessageOf(x)
  1340. }
  1341. func (x *TestWeak) XXX_Methods() *protoiface.Methods {
  1342. return file_test_test_proto_msgTypes[11].Methods()
  1343. }
  1344. // Deprecated: Use TestWeak.ProtoReflect.Type instead.
  1345. func (*TestWeak) Descriptor() ([]byte, []int) {
  1346. return file_test_test_proto_rawDescGZIP(), []int{11}
  1347. }
  1348. func (x *TestWeak) GetWeakMessage() *weak.WeakImportMessage {
  1349. if x != nil {
  1350. return x.WeakMessage
  1351. }
  1352. return nil
  1353. }
  1354. type TestPackedTypes struct {
  1355. state protoimpl.MessageState
  1356. PackedInt32 []int32 `protobuf:"varint,90,rep,packed,name=packed_int32,json=packedInt32" json:"packed_int32,omitempty"`
  1357. PackedInt64 []int64 `protobuf:"varint,91,rep,packed,name=packed_int64,json=packedInt64" json:"packed_int64,omitempty"`
  1358. PackedUint32 []uint32 `protobuf:"varint,92,rep,packed,name=packed_uint32,json=packedUint32" json:"packed_uint32,omitempty"`
  1359. PackedUint64 []uint64 `protobuf:"varint,93,rep,packed,name=packed_uint64,json=packedUint64" json:"packed_uint64,omitempty"`
  1360. PackedSint32 []int32 `protobuf:"zigzag32,94,rep,packed,name=packed_sint32,json=packedSint32" json:"packed_sint32,omitempty"`
  1361. PackedSint64 []int64 `protobuf:"zigzag64,95,rep,packed,name=packed_sint64,json=packedSint64" json:"packed_sint64,omitempty"`
  1362. PackedFixed32 []uint32 `protobuf:"fixed32,96,rep,packed,name=packed_fixed32,json=packedFixed32" json:"packed_fixed32,omitempty"`
  1363. PackedFixed64 []uint64 `protobuf:"fixed64,97,rep,packed,name=packed_fixed64,json=packedFixed64" json:"packed_fixed64,omitempty"`
  1364. PackedSfixed32 []int32 `protobuf:"fixed32,98,rep,packed,name=packed_sfixed32,json=packedSfixed32" json:"packed_sfixed32,omitempty"`
  1365. PackedSfixed64 []int64 `protobuf:"fixed64,99,rep,packed,name=packed_sfixed64,json=packedSfixed64" json:"packed_sfixed64,omitempty"`
  1366. PackedFloat []float32 `protobuf:"fixed32,100,rep,packed,name=packed_float,json=packedFloat" json:"packed_float,omitempty"`
  1367. PackedDouble []float64 `protobuf:"fixed64,101,rep,packed,name=packed_double,json=packedDouble" json:"packed_double,omitempty"`
  1368. PackedBool []bool `protobuf:"varint,102,rep,packed,name=packed_bool,json=packedBool" json:"packed_bool,omitempty"`
  1369. PackedEnum []ForeignEnum `protobuf:"varint,103,rep,packed,name=packed_enum,json=packedEnum,enum=goproto.proto.test.ForeignEnum" json:"packed_enum,omitempty"`
  1370. sizeCache protoimpl.SizeCache
  1371. unknownFields protoimpl.UnknownFields
  1372. }
  1373. func (x *TestPackedTypes) Reset() {
  1374. *x = TestPackedTypes{}
  1375. }
  1376. func (x *TestPackedTypes) String() string {
  1377. return protoimpl.X.MessageStringOf(x)
  1378. }
  1379. func (*TestPackedTypes) ProtoMessage() {}
  1380. func (x *TestPackedTypes) ProtoReflect() protoreflect.Message {
  1381. mi := &file_test_test_proto_msgTypes[12]
  1382. if protoimpl.UnsafeEnabled && x != nil {
  1383. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1384. if ms.LoadMessageInfo() == nil {
  1385. ms.StoreMessageInfo(mi)
  1386. }
  1387. return ms
  1388. }
  1389. return mi.MessageOf(x)
  1390. }
  1391. func (x *TestPackedTypes) XXX_Methods() *protoiface.Methods {
  1392. return file_test_test_proto_msgTypes[12].Methods()
  1393. }
  1394. // Deprecated: Use TestPackedTypes.ProtoReflect.Type instead.
  1395. func (*TestPackedTypes) Descriptor() ([]byte, []int) {
  1396. return file_test_test_proto_rawDescGZIP(), []int{12}
  1397. }
  1398. func (x *TestPackedTypes) GetPackedInt32() []int32 {
  1399. if x != nil {
  1400. return x.PackedInt32
  1401. }
  1402. return nil
  1403. }
  1404. func (x *TestPackedTypes) GetPackedInt64() []int64 {
  1405. if x != nil {
  1406. return x.PackedInt64
  1407. }
  1408. return nil
  1409. }
  1410. func (x *TestPackedTypes) GetPackedUint32() []uint32 {
  1411. if x != nil {
  1412. return x.PackedUint32
  1413. }
  1414. return nil
  1415. }
  1416. func (x *TestPackedTypes) GetPackedUint64() []uint64 {
  1417. if x != nil {
  1418. return x.PackedUint64
  1419. }
  1420. return nil
  1421. }
  1422. func (x *TestPackedTypes) GetPackedSint32() []int32 {
  1423. if x != nil {
  1424. return x.PackedSint32
  1425. }
  1426. return nil
  1427. }
  1428. func (x *TestPackedTypes) GetPackedSint64() []int64 {
  1429. if x != nil {
  1430. return x.PackedSint64
  1431. }
  1432. return nil
  1433. }
  1434. func (x *TestPackedTypes) GetPackedFixed32() []uint32 {
  1435. if x != nil {
  1436. return x.PackedFixed32
  1437. }
  1438. return nil
  1439. }
  1440. func (x *TestPackedTypes) GetPackedFixed64() []uint64 {
  1441. if x != nil {
  1442. return x.PackedFixed64
  1443. }
  1444. return nil
  1445. }
  1446. func (x *TestPackedTypes) GetPackedSfixed32() []int32 {
  1447. if x != nil {
  1448. return x.PackedSfixed32
  1449. }
  1450. return nil
  1451. }
  1452. func (x *TestPackedTypes) GetPackedSfixed64() []int64 {
  1453. if x != nil {
  1454. return x.PackedSfixed64
  1455. }
  1456. return nil
  1457. }
  1458. func (x *TestPackedTypes) GetPackedFloat() []float32 {
  1459. if x != nil {
  1460. return x.PackedFloat
  1461. }
  1462. return nil
  1463. }
  1464. func (x *TestPackedTypes) GetPackedDouble() []float64 {
  1465. if x != nil {
  1466. return x.PackedDouble
  1467. }
  1468. return nil
  1469. }
  1470. func (x *TestPackedTypes) GetPackedBool() []bool {
  1471. if x != nil {
  1472. return x.PackedBool
  1473. }
  1474. return nil
  1475. }
  1476. func (x *TestPackedTypes) GetPackedEnum() []ForeignEnum {
  1477. if x != nil {
  1478. return x.PackedEnum
  1479. }
  1480. return nil
  1481. }
  1482. type TestUnpackedTypes struct {
  1483. state protoimpl.MessageState
  1484. UnpackedInt32 []int32 `protobuf:"varint,90,rep,name=unpacked_int32,json=unpackedInt32" json:"unpacked_int32,omitempty"`
  1485. UnpackedInt64 []int64 `protobuf:"varint,91,rep,name=unpacked_int64,json=unpackedInt64" json:"unpacked_int64,omitempty"`
  1486. UnpackedUint32 []uint32 `protobuf:"varint,92,rep,name=unpacked_uint32,json=unpackedUint32" json:"unpacked_uint32,omitempty"`
  1487. UnpackedUint64 []uint64 `protobuf:"varint,93,rep,name=unpacked_uint64,json=unpackedUint64" json:"unpacked_uint64,omitempty"`
  1488. UnpackedSint32 []int32 `protobuf:"zigzag32,94,rep,name=unpacked_sint32,json=unpackedSint32" json:"unpacked_sint32,omitempty"`
  1489. UnpackedSint64 []int64 `protobuf:"zigzag64,95,rep,name=unpacked_sint64,json=unpackedSint64" json:"unpacked_sint64,omitempty"`
  1490. UnpackedFixed32 []uint32 `protobuf:"fixed32,96,rep,name=unpacked_fixed32,json=unpackedFixed32" json:"unpacked_fixed32,omitempty"`
  1491. UnpackedFixed64 []uint64 `protobuf:"fixed64,97,rep,name=unpacked_fixed64,json=unpackedFixed64" json:"unpacked_fixed64,omitempty"`
  1492. UnpackedSfixed32 []int32 `protobuf:"fixed32,98,rep,name=unpacked_sfixed32,json=unpackedSfixed32" json:"unpacked_sfixed32,omitempty"`
  1493. UnpackedSfixed64 []int64 `protobuf:"fixed64,99,rep,name=unpacked_sfixed64,json=unpackedSfixed64" json:"unpacked_sfixed64,omitempty"`
  1494. UnpackedFloat []float32 `protobuf:"fixed32,100,rep,name=unpacked_float,json=unpackedFloat" json:"unpacked_float,omitempty"`
  1495. UnpackedDouble []float64 `protobuf:"fixed64,101,rep,name=unpacked_double,json=unpackedDouble" json:"unpacked_double,omitempty"`
  1496. UnpackedBool []bool `protobuf:"varint,102,rep,name=unpacked_bool,json=unpackedBool" json:"unpacked_bool,omitempty"`
  1497. UnpackedEnum []ForeignEnum `protobuf:"varint,103,rep,name=unpacked_enum,json=unpackedEnum,enum=goproto.proto.test.ForeignEnum" json:"unpacked_enum,omitempty"`
  1498. sizeCache protoimpl.SizeCache
  1499. unknownFields protoimpl.UnknownFields
  1500. }
  1501. func (x *TestUnpackedTypes) Reset() {
  1502. *x = TestUnpackedTypes{}
  1503. }
  1504. func (x *TestUnpackedTypes) String() string {
  1505. return protoimpl.X.MessageStringOf(x)
  1506. }
  1507. func (*TestUnpackedTypes) ProtoMessage() {}
  1508. func (x *TestUnpackedTypes) ProtoReflect() protoreflect.Message {
  1509. mi := &file_test_test_proto_msgTypes[13]
  1510. if protoimpl.UnsafeEnabled && x != nil {
  1511. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1512. if ms.LoadMessageInfo() == nil {
  1513. ms.StoreMessageInfo(mi)
  1514. }
  1515. return ms
  1516. }
  1517. return mi.MessageOf(x)
  1518. }
  1519. func (x *TestUnpackedTypes) XXX_Methods() *protoiface.Methods {
  1520. return file_test_test_proto_msgTypes[13].Methods()
  1521. }
  1522. // Deprecated: Use TestUnpackedTypes.ProtoReflect.Type instead.
  1523. func (*TestUnpackedTypes) Descriptor() ([]byte, []int) {
  1524. return file_test_test_proto_rawDescGZIP(), []int{13}
  1525. }
  1526. func (x *TestUnpackedTypes) GetUnpackedInt32() []int32 {
  1527. if x != nil {
  1528. return x.UnpackedInt32
  1529. }
  1530. return nil
  1531. }
  1532. func (x *TestUnpackedTypes) GetUnpackedInt64() []int64 {
  1533. if x != nil {
  1534. return x.UnpackedInt64
  1535. }
  1536. return nil
  1537. }
  1538. func (x *TestUnpackedTypes) GetUnpackedUint32() []uint32 {
  1539. if x != nil {
  1540. return x.UnpackedUint32
  1541. }
  1542. return nil
  1543. }
  1544. func (x *TestUnpackedTypes) GetUnpackedUint64() []uint64 {
  1545. if x != nil {
  1546. return x.UnpackedUint64
  1547. }
  1548. return nil
  1549. }
  1550. func (x *TestUnpackedTypes) GetUnpackedSint32() []int32 {
  1551. if x != nil {
  1552. return x.UnpackedSint32
  1553. }
  1554. return nil
  1555. }
  1556. func (x *TestUnpackedTypes) GetUnpackedSint64() []int64 {
  1557. if x != nil {
  1558. return x.UnpackedSint64
  1559. }
  1560. return nil
  1561. }
  1562. func (x *TestUnpackedTypes) GetUnpackedFixed32() []uint32 {
  1563. if x != nil {
  1564. return x.UnpackedFixed32
  1565. }
  1566. return nil
  1567. }
  1568. func (x *TestUnpackedTypes) GetUnpackedFixed64() []uint64 {
  1569. if x != nil {
  1570. return x.UnpackedFixed64
  1571. }
  1572. return nil
  1573. }
  1574. func (x *TestUnpackedTypes) GetUnpackedSfixed32() []int32 {
  1575. if x != nil {
  1576. return x.UnpackedSfixed32
  1577. }
  1578. return nil
  1579. }
  1580. func (x *TestUnpackedTypes) GetUnpackedSfixed64() []int64 {
  1581. if x != nil {
  1582. return x.UnpackedSfixed64
  1583. }
  1584. return nil
  1585. }
  1586. func (x *TestUnpackedTypes) GetUnpackedFloat() []float32 {
  1587. if x != nil {
  1588. return x.UnpackedFloat
  1589. }
  1590. return nil
  1591. }
  1592. func (x *TestUnpackedTypes) GetUnpackedDouble() []float64 {
  1593. if x != nil {
  1594. return x.UnpackedDouble
  1595. }
  1596. return nil
  1597. }
  1598. func (x *TestUnpackedTypes) GetUnpackedBool() []bool {
  1599. if x != nil {
  1600. return x.UnpackedBool
  1601. }
  1602. return nil
  1603. }
  1604. func (x *TestUnpackedTypes) GetUnpackedEnum() []ForeignEnum {
  1605. if x != nil {
  1606. return x.UnpackedEnum
  1607. }
  1608. return nil
  1609. }
  1610. type TestPackedExtensions struct {
  1611. state protoimpl.MessageState
  1612. sizeCache protoimpl.SizeCache
  1613. unknownFields protoimpl.UnknownFields
  1614. extensionFields protoimpl.ExtensionFields
  1615. }
  1616. func (x *TestPackedExtensions) Reset() {
  1617. *x = TestPackedExtensions{}
  1618. }
  1619. func (x *TestPackedExtensions) String() string {
  1620. return protoimpl.X.MessageStringOf(x)
  1621. }
  1622. func (*TestPackedExtensions) ProtoMessage() {}
  1623. func (x *TestPackedExtensions) ProtoReflect() protoreflect.Message {
  1624. mi := &file_test_test_proto_msgTypes[14]
  1625. if protoimpl.UnsafeEnabled && x != nil {
  1626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1627. if ms.LoadMessageInfo() == nil {
  1628. ms.StoreMessageInfo(mi)
  1629. }
  1630. return ms
  1631. }
  1632. return mi.MessageOf(x)
  1633. }
  1634. func (x *TestPackedExtensions) XXX_Methods() *protoiface.Methods {
  1635. return file_test_test_proto_msgTypes[14].Methods()
  1636. }
  1637. // Deprecated: Use TestPackedExtensions.ProtoReflect.Type instead.
  1638. func (*TestPackedExtensions) Descriptor() ([]byte, []int) {
  1639. return file_test_test_proto_rawDescGZIP(), []int{14}
  1640. }
  1641. var extRange_TestPackedExtensions = []protoiface.ExtensionRangeV1{
  1642. {Start: 1, End: 536870911},
  1643. }
  1644. // Deprecated: Use TestPackedExtensions.ProtoReflect.Type.ExtensionRanges instead.
  1645. func (*TestPackedExtensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  1646. return extRange_TestPackedExtensions
  1647. }
  1648. type TestUnpackedExtensions struct {
  1649. state protoimpl.MessageState
  1650. sizeCache protoimpl.SizeCache
  1651. unknownFields protoimpl.UnknownFields
  1652. extensionFields protoimpl.ExtensionFields
  1653. }
  1654. func (x *TestUnpackedExtensions) Reset() {
  1655. *x = TestUnpackedExtensions{}
  1656. }
  1657. func (x *TestUnpackedExtensions) String() string {
  1658. return protoimpl.X.MessageStringOf(x)
  1659. }
  1660. func (*TestUnpackedExtensions) ProtoMessage() {}
  1661. func (x *TestUnpackedExtensions) ProtoReflect() protoreflect.Message {
  1662. mi := &file_test_test_proto_msgTypes[15]
  1663. if protoimpl.UnsafeEnabled && x != nil {
  1664. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1665. if ms.LoadMessageInfo() == nil {
  1666. ms.StoreMessageInfo(mi)
  1667. }
  1668. return ms
  1669. }
  1670. return mi.MessageOf(x)
  1671. }
  1672. func (x *TestUnpackedExtensions) XXX_Methods() *protoiface.Methods {
  1673. return file_test_test_proto_msgTypes[15].Methods()
  1674. }
  1675. // Deprecated: Use TestUnpackedExtensions.ProtoReflect.Type instead.
  1676. func (*TestUnpackedExtensions) Descriptor() ([]byte, []int) {
  1677. return file_test_test_proto_rawDescGZIP(), []int{15}
  1678. }
  1679. var extRange_TestUnpackedExtensions = []protoiface.ExtensionRangeV1{
  1680. {Start: 1, End: 536870911},
  1681. }
  1682. // Deprecated: Use TestUnpackedExtensions.ProtoReflect.Type.ExtensionRanges instead.
  1683. func (*TestUnpackedExtensions) ExtensionRangeArray() []protoiface.ExtensionRangeV1 {
  1684. return extRange_TestUnpackedExtensions
  1685. }
  1686. // Test that RPC services work.
  1687. type FooRequest struct {
  1688. state protoimpl.MessageState
  1689. sizeCache protoimpl.SizeCache
  1690. unknownFields protoimpl.UnknownFields
  1691. }
  1692. func (x *FooRequest) Reset() {
  1693. *x = FooRequest{}
  1694. }
  1695. func (x *FooRequest) String() string {
  1696. return protoimpl.X.MessageStringOf(x)
  1697. }
  1698. func (*FooRequest) ProtoMessage() {}
  1699. func (x *FooRequest) ProtoReflect() protoreflect.Message {
  1700. mi := &file_test_test_proto_msgTypes[16]
  1701. if protoimpl.UnsafeEnabled && x != nil {
  1702. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1703. if ms.LoadMessageInfo() == nil {
  1704. ms.StoreMessageInfo(mi)
  1705. }
  1706. return ms
  1707. }
  1708. return mi.MessageOf(x)
  1709. }
  1710. func (x *FooRequest) XXX_Methods() *protoiface.Methods {
  1711. return file_test_test_proto_msgTypes[16].Methods()
  1712. }
  1713. // Deprecated: Use FooRequest.ProtoReflect.Type instead.
  1714. func (*FooRequest) Descriptor() ([]byte, []int) {
  1715. return file_test_test_proto_rawDescGZIP(), []int{16}
  1716. }
  1717. type FooResponse struct {
  1718. state protoimpl.MessageState
  1719. sizeCache protoimpl.SizeCache
  1720. unknownFields protoimpl.UnknownFields
  1721. }
  1722. func (x *FooResponse) Reset() {
  1723. *x = FooResponse{}
  1724. }
  1725. func (x *FooResponse) String() string {
  1726. return protoimpl.X.MessageStringOf(x)
  1727. }
  1728. func (*FooResponse) ProtoMessage() {}
  1729. func (x *FooResponse) ProtoReflect() protoreflect.Message {
  1730. mi := &file_test_test_proto_msgTypes[17]
  1731. if protoimpl.UnsafeEnabled && x != nil {
  1732. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1733. if ms.LoadMessageInfo() == nil {
  1734. ms.StoreMessageInfo(mi)
  1735. }
  1736. return ms
  1737. }
  1738. return mi.MessageOf(x)
  1739. }
  1740. func (x *FooResponse) XXX_Methods() *protoiface.Methods {
  1741. return file_test_test_proto_msgTypes[17].Methods()
  1742. }
  1743. // Deprecated: Use FooResponse.ProtoReflect.Type instead.
  1744. func (*FooResponse) Descriptor() ([]byte, []int) {
  1745. return file_test_test_proto_rawDescGZIP(), []int{17}
  1746. }
  1747. type TestAllTypes_NestedMessage struct {
  1748. state protoimpl.MessageState
  1749. A *int32 `protobuf:"varint,1,opt,name=a" json:"a,omitempty"`
  1750. Corecursive *TestAllTypes `protobuf:"bytes,2,opt,name=corecursive" json:"corecursive,omitempty"`
  1751. sizeCache protoimpl.SizeCache
  1752. unknownFields protoimpl.UnknownFields
  1753. }
  1754. func (x *TestAllTypes_NestedMessage) Reset() {
  1755. *x = TestAllTypes_NestedMessage{}
  1756. }
  1757. func (x *TestAllTypes_NestedMessage) String() string {
  1758. return protoimpl.X.MessageStringOf(x)
  1759. }
  1760. func (*TestAllTypes_NestedMessage) ProtoMessage() {}
  1761. func (x *TestAllTypes_NestedMessage) ProtoReflect() protoreflect.Message {
  1762. mi := &file_test_test_proto_msgTypes[18]
  1763. if protoimpl.UnsafeEnabled && x != nil {
  1764. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1765. if ms.LoadMessageInfo() == nil {
  1766. ms.StoreMessageInfo(mi)
  1767. }
  1768. return ms
  1769. }
  1770. return mi.MessageOf(x)
  1771. }
  1772. func (x *TestAllTypes_NestedMessage) XXX_Methods() *protoiface.Methods {
  1773. return file_test_test_proto_msgTypes[18].Methods()
  1774. }
  1775. // Deprecated: Use TestAllTypes_NestedMessage.ProtoReflect.Type instead.
  1776. func (*TestAllTypes_NestedMessage) Descriptor() ([]byte, []int) {
  1777. return file_test_test_proto_rawDescGZIP(), []int{0, 0}
  1778. }
  1779. func (x *TestAllTypes_NestedMessage) GetA() int32 {
  1780. if x != nil && x.A != nil {
  1781. return *x.A
  1782. }
  1783. return 0
  1784. }
  1785. func (x *TestAllTypes_NestedMessage) GetCorecursive() *TestAllTypes {
  1786. if x != nil {
  1787. return x.Corecursive
  1788. }
  1789. return nil
  1790. }
  1791. type TestAllTypes_OptionalGroup struct {
  1792. state protoimpl.MessageState
  1793. A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"`
  1794. sizeCache protoimpl.SizeCache
  1795. unknownFields protoimpl.UnknownFields
  1796. }
  1797. func (x *TestAllTypes_OptionalGroup) Reset() {
  1798. *x = TestAllTypes_OptionalGroup{}
  1799. }
  1800. func (x *TestAllTypes_OptionalGroup) String() string {
  1801. return protoimpl.X.MessageStringOf(x)
  1802. }
  1803. func (*TestAllTypes_OptionalGroup) ProtoMessage() {}
  1804. func (x *TestAllTypes_OptionalGroup) ProtoReflect() protoreflect.Message {
  1805. mi := &file_test_test_proto_msgTypes[19]
  1806. if protoimpl.UnsafeEnabled && x != nil {
  1807. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1808. if ms.LoadMessageInfo() == nil {
  1809. ms.StoreMessageInfo(mi)
  1810. }
  1811. return ms
  1812. }
  1813. return mi.MessageOf(x)
  1814. }
  1815. func (x *TestAllTypes_OptionalGroup) XXX_Methods() *protoiface.Methods {
  1816. return file_test_test_proto_msgTypes[19].Methods()
  1817. }
  1818. // Deprecated: Use TestAllTypes_OptionalGroup.ProtoReflect.Type instead.
  1819. func (*TestAllTypes_OptionalGroup) Descriptor() ([]byte, []int) {
  1820. return file_test_test_proto_rawDescGZIP(), []int{0, 1}
  1821. }
  1822. func (x *TestAllTypes_OptionalGroup) GetA() int32 {
  1823. if x != nil && x.A != nil {
  1824. return *x.A
  1825. }
  1826. return 0
  1827. }
  1828. type TestAllTypes_RepeatedGroup struct {
  1829. state protoimpl.MessageState
  1830. A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"`
  1831. sizeCache protoimpl.SizeCache
  1832. unknownFields protoimpl.UnknownFields
  1833. }
  1834. func (x *TestAllTypes_RepeatedGroup) Reset() {
  1835. *x = TestAllTypes_RepeatedGroup{}
  1836. }
  1837. func (x *TestAllTypes_RepeatedGroup) String() string {
  1838. return protoimpl.X.MessageStringOf(x)
  1839. }
  1840. func (*TestAllTypes_RepeatedGroup) ProtoMessage() {}
  1841. func (x *TestAllTypes_RepeatedGroup) ProtoReflect() protoreflect.Message {
  1842. mi := &file_test_test_proto_msgTypes[20]
  1843. if protoimpl.UnsafeEnabled && x != nil {
  1844. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1845. if ms.LoadMessageInfo() == nil {
  1846. ms.StoreMessageInfo(mi)
  1847. }
  1848. return ms
  1849. }
  1850. return mi.MessageOf(x)
  1851. }
  1852. func (x *TestAllTypes_RepeatedGroup) XXX_Methods() *protoiface.Methods {
  1853. return file_test_test_proto_msgTypes[20].Methods()
  1854. }
  1855. // Deprecated: Use TestAllTypes_RepeatedGroup.ProtoReflect.Type instead.
  1856. func (*TestAllTypes_RepeatedGroup) Descriptor() ([]byte, []int) {
  1857. return file_test_test_proto_rawDescGZIP(), []int{0, 2}
  1858. }
  1859. func (x *TestAllTypes_RepeatedGroup) GetA() int32 {
  1860. if x != nil && x.A != nil {
  1861. return *x.A
  1862. }
  1863. return 0
  1864. }
  1865. type TestRequiredGroupFields_OptionalGroup struct {
  1866. state protoimpl.MessageState
  1867. A *int32 `protobuf:"varint,2,req,name=a" json:"a,omitempty"`
  1868. sizeCache protoimpl.SizeCache
  1869. unknownFields protoimpl.UnknownFields
  1870. }
  1871. func (x *TestRequiredGroupFields_OptionalGroup) Reset() {
  1872. *x = TestRequiredGroupFields_OptionalGroup{}
  1873. }
  1874. func (x *TestRequiredGroupFields_OptionalGroup) String() string {
  1875. return protoimpl.X.MessageStringOf(x)
  1876. }
  1877. func (*TestRequiredGroupFields_OptionalGroup) ProtoMessage() {}
  1878. func (x *TestRequiredGroupFields_OptionalGroup) ProtoReflect() protoreflect.Message {
  1879. mi := &file_test_test_proto_msgTypes[39]
  1880. if protoimpl.UnsafeEnabled && x != nil {
  1881. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1882. if ms.LoadMessageInfo() == nil {
  1883. ms.StoreMessageInfo(mi)
  1884. }
  1885. return ms
  1886. }
  1887. return mi.MessageOf(x)
  1888. }
  1889. func (x *TestRequiredGroupFields_OptionalGroup) XXX_Methods() *protoiface.Methods {
  1890. return file_test_test_proto_msgTypes[39].Methods()
  1891. }
  1892. // Deprecated: Use TestRequiredGroupFields_OptionalGroup.ProtoReflect.Type instead.
  1893. func (*TestRequiredGroupFields_OptionalGroup) Descriptor() ([]byte, []int) {
  1894. return file_test_test_proto_rawDescGZIP(), []int{10, 0}
  1895. }
  1896. func (x *TestRequiredGroupFields_OptionalGroup) GetA() int32 {
  1897. if x != nil && x.A != nil {
  1898. return *x.A
  1899. }
  1900. return 0
  1901. }
  1902. type TestRequiredGroupFields_RepeatedGroup struct {
  1903. state protoimpl.MessageState
  1904. A *int32 `protobuf:"varint,4,req,name=a" json:"a,omitempty"`
  1905. sizeCache protoimpl.SizeCache
  1906. unknownFields protoimpl.UnknownFields
  1907. }
  1908. func (x *TestRequiredGroupFields_RepeatedGroup) Reset() {
  1909. *x = TestRequiredGroupFields_RepeatedGroup{}
  1910. }
  1911. func (x *TestRequiredGroupFields_RepeatedGroup) String() string {
  1912. return protoimpl.X.MessageStringOf(x)
  1913. }
  1914. func (*TestRequiredGroupFields_RepeatedGroup) ProtoMessage() {}
  1915. func (x *TestRequiredGroupFields_RepeatedGroup) ProtoReflect() protoreflect.Message {
  1916. mi := &file_test_test_proto_msgTypes[40]
  1917. if protoimpl.UnsafeEnabled && x != nil {
  1918. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1919. if ms.LoadMessageInfo() == nil {
  1920. ms.StoreMessageInfo(mi)
  1921. }
  1922. return ms
  1923. }
  1924. return mi.MessageOf(x)
  1925. }
  1926. func (x *TestRequiredGroupFields_RepeatedGroup) XXX_Methods() *protoiface.Methods {
  1927. return file_test_test_proto_msgTypes[40].Methods()
  1928. }
  1929. // Deprecated: Use TestRequiredGroupFields_RepeatedGroup.ProtoReflect.Type instead.
  1930. func (*TestRequiredGroupFields_RepeatedGroup) Descriptor() ([]byte, []int) {
  1931. return file_test_test_proto_rawDescGZIP(), []int{10, 1}
  1932. }
  1933. func (x *TestRequiredGroupFields_RepeatedGroup) GetA() int32 {
  1934. if x != nil && x.A != nil {
  1935. return *x.A
  1936. }
  1937. return 0
  1938. }
  1939. var file_test_test_proto_extDescs = []protoiface.ExtensionDescV1{
  1940. {
  1941. ExtendedType: (*TestAllExtensions)(nil),
  1942. ExtensionType: (*int32)(nil),
  1943. Field: 1,
  1944. Name: "goproto.proto.test.optional_int32_extension",
  1945. Tag: "varint,1,opt,name=optional_int32_extension",
  1946. Filename: "test/test.proto",
  1947. },
  1948. {
  1949. ExtendedType: (*TestAllExtensions)(nil),
  1950. ExtensionType: (*int64)(nil),
  1951. Field: 2,
  1952. Name: "goproto.proto.test.optional_int64_extension",
  1953. Tag: "varint,2,opt,name=optional_int64_extension",
  1954. Filename: "test/test.proto",
  1955. },
  1956. {
  1957. ExtendedType: (*TestAllExtensions)(nil),
  1958. ExtensionType: (*uint32)(nil),
  1959. Field: 3,
  1960. Name: "goproto.proto.test.optional_uint32_extension",
  1961. Tag: "varint,3,opt,name=optional_uint32_extension",
  1962. Filename: "test/test.proto",
  1963. },
  1964. {
  1965. ExtendedType: (*TestAllExtensions)(nil),
  1966. ExtensionType: (*uint64)(nil),
  1967. Field: 4,
  1968. Name: "goproto.proto.test.optional_uint64_extension",
  1969. Tag: "varint,4,opt,name=optional_uint64_extension",
  1970. Filename: "test/test.proto",
  1971. },
  1972. {
  1973. ExtendedType: (*TestAllExtensions)(nil),
  1974. ExtensionType: (*int32)(nil),
  1975. Field: 5,
  1976. Name: "goproto.proto.test.optional_sint32_extension",
  1977. Tag: "zigzag32,5,opt,name=optional_sint32_extension",
  1978. Filename: "test/test.proto",
  1979. },
  1980. {
  1981. ExtendedType: (*TestAllExtensions)(nil),
  1982. ExtensionType: (*int64)(nil),
  1983. Field: 6,
  1984. Name: "goproto.proto.test.optional_sint64_extension",
  1985. Tag: "zigzag64,6,opt,name=optional_sint64_extension",
  1986. Filename: "test/test.proto",
  1987. },
  1988. {
  1989. ExtendedType: (*TestAllExtensions)(nil),
  1990. ExtensionType: (*uint32)(nil),
  1991. Field: 7,
  1992. Name: "goproto.proto.test.optional_fixed32_extension",
  1993. Tag: "fixed32,7,opt,name=optional_fixed32_extension",
  1994. Filename: "test/test.proto",
  1995. },
  1996. {
  1997. ExtendedType: (*TestAllExtensions)(nil),
  1998. ExtensionType: (*uint64)(nil),
  1999. Field: 8,
  2000. Name: "goproto.proto.test.optional_fixed64_extension",
  2001. Tag: "fixed64,8,opt,name=optional_fixed64_extension",
  2002. Filename: "test/test.proto",
  2003. },
  2004. {
  2005. ExtendedType: (*TestAllExtensions)(nil),
  2006. ExtensionType: (*int32)(nil),
  2007. Field: 9,
  2008. Name: "goproto.proto.test.optional_sfixed32_extension",
  2009. Tag: "fixed32,9,opt,name=optional_sfixed32_extension",
  2010. Filename: "test/test.proto",
  2011. },
  2012. {
  2013. ExtendedType: (*TestAllExtensions)(nil),
  2014. ExtensionType: (*int64)(nil),
  2015. Field: 10,
  2016. Name: "goproto.proto.test.optional_sfixed64_extension",
  2017. Tag: "fixed64,10,opt,name=optional_sfixed64_extension",
  2018. Filename: "test/test.proto",
  2019. },
  2020. {
  2021. ExtendedType: (*TestAllExtensions)(nil),
  2022. ExtensionType: (*float32)(nil),
  2023. Field: 11,
  2024. Name: "goproto.proto.test.optional_float_extension",
  2025. Tag: "fixed32,11,opt,name=optional_float_extension",
  2026. Filename: "test/test.proto",
  2027. },
  2028. {
  2029. ExtendedType: (*TestAllExtensions)(nil),
  2030. ExtensionType: (*float64)(nil),
  2031. Field: 12,
  2032. Name: "goproto.proto.test.optional_double_extension",
  2033. Tag: "fixed64,12,opt,name=optional_double_extension",
  2034. Filename: "test/test.proto",
  2035. },
  2036. {
  2037. ExtendedType: (*TestAllExtensions)(nil),
  2038. ExtensionType: (*bool)(nil),
  2039. Field: 13,
  2040. Name: "goproto.proto.test.optional_bool_extension",
  2041. Tag: "varint,13,opt,name=optional_bool_extension",
  2042. Filename: "test/test.proto",
  2043. },
  2044. {
  2045. ExtendedType: (*TestAllExtensions)(nil),
  2046. ExtensionType: (*string)(nil),
  2047. Field: 14,
  2048. Name: "goproto.proto.test.optional_string_extension",
  2049. Tag: "bytes,14,opt,name=optional_string_extension",
  2050. Filename: "test/test.proto",
  2051. },
  2052. {
  2053. ExtendedType: (*TestAllExtensions)(nil),
  2054. ExtensionType: ([]byte)(nil),
  2055. Field: 15,
  2056. Name: "goproto.proto.test.optional_bytes_extension",
  2057. Tag: "bytes,15,opt,name=optional_bytes_extension",
  2058. Filename: "test/test.proto",
  2059. },
  2060. {
  2061. ExtendedType: (*TestAllExtensions)(nil),
  2062. ExtensionType: (*OptionalGroupExtension)(nil),
  2063. Field: 16,
  2064. Name: "goproto.proto.test.optionalgroup_extension",
  2065. Tag: "group,16,opt,name=OptionalGroup_extension",
  2066. Filename: "test/test.proto",
  2067. },
  2068. {
  2069. ExtendedType: (*TestAllExtensions)(nil),
  2070. ExtensionType: (*TestAllTypes_NestedMessage)(nil),
  2071. Field: 18,
  2072. Name: "goproto.proto.test.optional_nested_message_extension",
  2073. Tag: "bytes,18,opt,name=optional_nested_message_extension",
  2074. Filename: "test/test.proto",
  2075. },
  2076. {
  2077. ExtendedType: (*TestAllExtensions)(nil),
  2078. ExtensionType: (*TestAllTypes_NestedEnum)(nil),
  2079. Field: 21,
  2080. Name: "goproto.proto.test.optional_nested_enum_extension",
  2081. Tag: "varint,21,opt,name=optional_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum",
  2082. Filename: "test/test.proto",
  2083. },
  2084. {
  2085. ExtendedType: (*TestAllExtensions)(nil),
  2086. ExtensionType: ([]int32)(nil),
  2087. Field: 31,
  2088. Name: "goproto.proto.test.repeated_int32_extension",
  2089. Tag: "varint,31,rep,name=repeated_int32_extension",
  2090. Filename: "test/test.proto",
  2091. },
  2092. {
  2093. ExtendedType: (*TestAllExtensions)(nil),
  2094. ExtensionType: ([]int64)(nil),
  2095. Field: 32,
  2096. Name: "goproto.proto.test.repeated_int64_extension",
  2097. Tag: "varint,32,rep,name=repeated_int64_extension",
  2098. Filename: "test/test.proto",
  2099. },
  2100. {
  2101. ExtendedType: (*TestAllExtensions)(nil),
  2102. ExtensionType: ([]uint32)(nil),
  2103. Field: 33,
  2104. Name: "goproto.proto.test.repeated_uint32_extension",
  2105. Tag: "varint,33,rep,name=repeated_uint32_extension",
  2106. Filename: "test/test.proto",
  2107. },
  2108. {
  2109. ExtendedType: (*TestAllExtensions)(nil),
  2110. ExtensionType: ([]uint64)(nil),
  2111. Field: 34,
  2112. Name: "goproto.proto.test.repeated_uint64_extension",
  2113. Tag: "varint,34,rep,name=repeated_uint64_extension",
  2114. Filename: "test/test.proto",
  2115. },
  2116. {
  2117. ExtendedType: (*TestAllExtensions)(nil),
  2118. ExtensionType: ([]int32)(nil),
  2119. Field: 35,
  2120. Name: "goproto.proto.test.repeated_sint32_extension",
  2121. Tag: "zigzag32,35,rep,name=repeated_sint32_extension",
  2122. Filename: "test/test.proto",
  2123. },
  2124. {
  2125. ExtendedType: (*TestAllExtensions)(nil),
  2126. ExtensionType: ([]int64)(nil),
  2127. Field: 36,
  2128. Name: "goproto.proto.test.repeated_sint64_extension",
  2129. Tag: "zigzag64,36,rep,name=repeated_sint64_extension",
  2130. Filename: "test/test.proto",
  2131. },
  2132. {
  2133. ExtendedType: (*TestAllExtensions)(nil),
  2134. ExtensionType: ([]uint32)(nil),
  2135. Field: 37,
  2136. Name: "goproto.proto.test.repeated_fixed32_extension",
  2137. Tag: "fixed32,37,rep,name=repeated_fixed32_extension",
  2138. Filename: "test/test.proto",
  2139. },
  2140. {
  2141. ExtendedType: (*TestAllExtensions)(nil),
  2142. ExtensionType: ([]uint64)(nil),
  2143. Field: 38,
  2144. Name: "goproto.proto.test.repeated_fixed64_extension",
  2145. Tag: "fixed64,38,rep,name=repeated_fixed64_extension",
  2146. Filename: "test/test.proto",
  2147. },
  2148. {
  2149. ExtendedType: (*TestAllExtensions)(nil),
  2150. ExtensionType: ([]int32)(nil),
  2151. Field: 39,
  2152. Name: "goproto.proto.test.repeated_sfixed32_extension",
  2153. Tag: "fixed32,39,rep,name=repeated_sfixed32_extension",
  2154. Filename: "test/test.proto",
  2155. },
  2156. {
  2157. ExtendedType: (*TestAllExtensions)(nil),
  2158. ExtensionType: ([]int64)(nil),
  2159. Field: 40,
  2160. Name: "goproto.proto.test.repeated_sfixed64_extension",
  2161. Tag: "fixed64,40,rep,name=repeated_sfixed64_extension",
  2162. Filename: "test/test.proto",
  2163. },
  2164. {
  2165. ExtendedType: (*TestAllExtensions)(nil),
  2166. ExtensionType: ([]float32)(nil),
  2167. Field: 41,
  2168. Name: "goproto.proto.test.repeated_float_extension",
  2169. Tag: "fixed32,41,rep,name=repeated_float_extension",
  2170. Filename: "test/test.proto",
  2171. },
  2172. {
  2173. ExtendedType: (*TestAllExtensions)(nil),
  2174. ExtensionType: ([]float64)(nil),
  2175. Field: 42,
  2176. Name: "goproto.proto.test.repeated_double_extension",
  2177. Tag: "fixed64,42,rep,name=repeated_double_extension",
  2178. Filename: "test/test.proto",
  2179. },
  2180. {
  2181. ExtendedType: (*TestAllExtensions)(nil),
  2182. ExtensionType: ([]bool)(nil),
  2183. Field: 43,
  2184. Name: "goproto.proto.test.repeated_bool_extension",
  2185. Tag: "varint,43,rep,name=repeated_bool_extension",
  2186. Filename: "test/test.proto",
  2187. },
  2188. {
  2189. ExtendedType: (*TestAllExtensions)(nil),
  2190. ExtensionType: ([]string)(nil),
  2191. Field: 44,
  2192. Name: "goproto.proto.test.repeated_string_extension",
  2193. Tag: "bytes,44,rep,name=repeated_string_extension",
  2194. Filename: "test/test.proto",
  2195. },
  2196. {
  2197. ExtendedType: (*TestAllExtensions)(nil),
  2198. ExtensionType: ([][]byte)(nil),
  2199. Field: 45,
  2200. Name: "goproto.proto.test.repeated_bytes_extension",
  2201. Tag: "bytes,45,rep,name=repeated_bytes_extension",
  2202. Filename: "test/test.proto",
  2203. },
  2204. {
  2205. ExtendedType: (*TestAllExtensions)(nil),
  2206. ExtensionType: ([]*RepeatedGroupExtension)(nil),
  2207. Field: 46,
  2208. Name: "goproto.proto.test.repeatedgroup_extension",
  2209. Tag: "group,46,rep,name=RepeatedGroup_extension",
  2210. Filename: "test/test.proto",
  2211. },
  2212. {
  2213. ExtendedType: (*TestAllExtensions)(nil),
  2214. ExtensionType: ([]*TestAllTypes_NestedMessage)(nil),
  2215. Field: 48,
  2216. Name: "goproto.proto.test.repeated_nested_message_extension",
  2217. Tag: "bytes,48,rep,name=repeated_nested_message_extension",
  2218. Filename: "test/test.proto",
  2219. },
  2220. {
  2221. ExtendedType: (*TestAllExtensions)(nil),
  2222. ExtensionType: ([]TestAllTypes_NestedEnum)(nil),
  2223. Field: 51,
  2224. Name: "goproto.proto.test.repeated_nested_enum_extension",
  2225. Tag: "varint,51,rep,name=repeated_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum",
  2226. Filename: "test/test.proto",
  2227. },
  2228. {
  2229. ExtendedType: (*TestAllExtensions)(nil),
  2230. ExtensionType: (*int32)(nil),
  2231. Field: 81,
  2232. Name: "goproto.proto.test.default_int32_extension",
  2233. Tag: "varint,81,opt,name=default_int32_extension,def=81",
  2234. Filename: "test/test.proto",
  2235. },
  2236. {
  2237. ExtendedType: (*TestAllExtensions)(nil),
  2238. ExtensionType: (*int64)(nil),
  2239. Field: 82,
  2240. Name: "goproto.proto.test.default_int64_extension",
  2241. Tag: "varint,82,opt,name=default_int64_extension,def=82",
  2242. Filename: "test/test.proto",
  2243. },
  2244. {
  2245. ExtendedType: (*TestAllExtensions)(nil),
  2246. ExtensionType: (*uint32)(nil),
  2247. Field: 83,
  2248. Name: "goproto.proto.test.default_uint32_extension",
  2249. Tag: "varint,83,opt,name=default_uint32_extension,def=83",
  2250. Filename: "test/test.proto",
  2251. },
  2252. {
  2253. ExtendedType: (*TestAllExtensions)(nil),
  2254. ExtensionType: (*uint64)(nil),
  2255. Field: 84,
  2256. Name: "goproto.proto.test.default_uint64_extension",
  2257. Tag: "varint,84,opt,name=default_uint64_extension,def=84",
  2258. Filename: "test/test.proto",
  2259. },
  2260. {
  2261. ExtendedType: (*TestAllExtensions)(nil),
  2262. ExtensionType: (*int32)(nil),
  2263. Field: 85,
  2264. Name: "goproto.proto.test.default_sint32_extension",
  2265. Tag: "zigzag32,85,opt,name=default_sint32_extension,def=-85",
  2266. Filename: "test/test.proto",
  2267. },
  2268. {
  2269. ExtendedType: (*TestAllExtensions)(nil),
  2270. ExtensionType: (*int64)(nil),
  2271. Field: 86,
  2272. Name: "goproto.proto.test.default_sint64_extension",
  2273. Tag: "zigzag64,86,opt,name=default_sint64_extension,def=86",
  2274. Filename: "test/test.proto",
  2275. },
  2276. {
  2277. ExtendedType: (*TestAllExtensions)(nil),
  2278. ExtensionType: (*uint32)(nil),
  2279. Field: 87,
  2280. Name: "goproto.proto.test.default_fixed32_extension",
  2281. Tag: "fixed32,87,opt,name=default_fixed32_extension,def=87",
  2282. Filename: "test/test.proto",
  2283. },
  2284. {
  2285. ExtendedType: (*TestAllExtensions)(nil),
  2286. ExtensionType: (*uint64)(nil),
  2287. Field: 88,
  2288. Name: "goproto.proto.test.default_fixed64_extension",
  2289. Tag: "fixed64,88,opt,name=default_fixed64_extension,def=88",
  2290. Filename: "test/test.proto",
  2291. },
  2292. {
  2293. ExtendedType: (*TestAllExtensions)(nil),
  2294. ExtensionType: (*int32)(nil),
  2295. Field: 89,
  2296. Name: "goproto.proto.test.default_sfixed32_extension",
  2297. Tag: "fixed32,89,opt,name=default_sfixed32_extension,def=89",
  2298. Filename: "test/test.proto",
  2299. },
  2300. {
  2301. ExtendedType: (*TestAllExtensions)(nil),
  2302. ExtensionType: (*int64)(nil),
  2303. Field: 80,
  2304. Name: "goproto.proto.test.default_sfixed64_extension",
  2305. Tag: "fixed64,80,opt,name=default_sfixed64_extension,def=-90",
  2306. Filename: "test/test.proto",
  2307. },
  2308. {
  2309. ExtendedType: (*TestAllExtensions)(nil),
  2310. ExtensionType: (*float32)(nil),
  2311. Field: 91,
  2312. Name: "goproto.proto.test.default_float_extension",
  2313. Tag: "fixed32,91,opt,name=default_float_extension,def=91.5",
  2314. Filename: "test/test.proto",
  2315. },
  2316. {
  2317. ExtendedType: (*TestAllExtensions)(nil),
  2318. ExtensionType: (*float64)(nil),
  2319. Field: 92,
  2320. Name: "goproto.proto.test.default_double_extension",
  2321. Tag: "fixed64,92,opt,name=default_double_extension,def=92000",
  2322. Filename: "test/test.proto",
  2323. },
  2324. {
  2325. ExtendedType: (*TestAllExtensions)(nil),
  2326. ExtensionType: (*bool)(nil),
  2327. Field: 93,
  2328. Name: "goproto.proto.test.default_bool_extension",
  2329. Tag: "varint,93,opt,name=default_bool_extension,def=1",
  2330. Filename: "test/test.proto",
  2331. },
  2332. {
  2333. ExtendedType: (*TestAllExtensions)(nil),
  2334. ExtensionType: (*string)(nil),
  2335. Field: 94,
  2336. Name: "goproto.proto.test.default_string_extension",
  2337. Tag: "bytes,94,opt,name=default_string_extension,def=hello",
  2338. Filename: "test/test.proto",
  2339. },
  2340. {
  2341. ExtendedType: (*TestAllExtensions)(nil),
  2342. ExtensionType: ([]byte)(nil),
  2343. Field: 95,
  2344. Name: "goproto.proto.test.default_bytes_extension",
  2345. Tag: "bytes,95,opt,name=default_bytes_extension,def=world",
  2346. Filename: "test/test.proto",
  2347. },
  2348. {
  2349. ExtendedType: (*TestPackedExtensions)(nil),
  2350. ExtensionType: ([]int32)(nil),
  2351. Field: 90,
  2352. Name: "goproto.proto.test.packed_int32_extension",
  2353. Tag: "varint,90,rep,packed,name=packed_int32_extension",
  2354. Filename: "test/test.proto",
  2355. },
  2356. {
  2357. ExtendedType: (*TestPackedExtensions)(nil),
  2358. ExtensionType: ([]int64)(nil),
  2359. Field: 91,
  2360. Name: "goproto.proto.test.packed_int64_extension",
  2361. Tag: "varint,91,rep,packed,name=packed_int64_extension",
  2362. Filename: "test/test.proto",
  2363. },
  2364. {
  2365. ExtendedType: (*TestPackedExtensions)(nil),
  2366. ExtensionType: ([]uint32)(nil),
  2367. Field: 92,
  2368. Name: "goproto.proto.test.packed_uint32_extension",
  2369. Tag: "varint,92,rep,packed,name=packed_uint32_extension",
  2370. Filename: "test/test.proto",
  2371. },
  2372. {
  2373. ExtendedType: (*TestPackedExtensions)(nil),
  2374. ExtensionType: ([]uint64)(nil),
  2375. Field: 93,
  2376. Name: "goproto.proto.test.packed_uint64_extension",
  2377. Tag: "varint,93,rep,packed,name=packed_uint64_extension",
  2378. Filename: "test/test.proto",
  2379. },
  2380. {
  2381. ExtendedType: (*TestPackedExtensions)(nil),
  2382. ExtensionType: ([]int32)(nil),
  2383. Field: 94,
  2384. Name: "goproto.proto.test.packed_sint32_extension",
  2385. Tag: "zigzag32,94,rep,packed,name=packed_sint32_extension",
  2386. Filename: "test/test.proto",
  2387. },
  2388. {
  2389. ExtendedType: (*TestPackedExtensions)(nil),
  2390. ExtensionType: ([]int64)(nil),
  2391. Field: 95,
  2392. Name: "goproto.proto.test.packed_sint64_extension",
  2393. Tag: "zigzag64,95,rep,packed,name=packed_sint64_extension",
  2394. Filename: "test/test.proto",
  2395. },
  2396. {
  2397. ExtendedType: (*TestPackedExtensions)(nil),
  2398. ExtensionType: ([]uint32)(nil),
  2399. Field: 96,
  2400. Name: "goproto.proto.test.packed_fixed32_extension",
  2401. Tag: "fixed32,96,rep,packed,name=packed_fixed32_extension",
  2402. Filename: "test/test.proto",
  2403. },
  2404. {
  2405. ExtendedType: (*TestPackedExtensions)(nil),
  2406. ExtensionType: ([]uint64)(nil),
  2407. Field: 97,
  2408. Name: "goproto.proto.test.packed_fixed64_extension",
  2409. Tag: "fixed64,97,rep,packed,name=packed_fixed64_extension",
  2410. Filename: "test/test.proto",
  2411. },
  2412. {
  2413. ExtendedType: (*TestPackedExtensions)(nil),
  2414. ExtensionType: ([]int32)(nil),
  2415. Field: 98,
  2416. Name: "goproto.proto.test.packed_sfixed32_extension",
  2417. Tag: "fixed32,98,rep,packed,name=packed_sfixed32_extension",
  2418. Filename: "test/test.proto",
  2419. },
  2420. {
  2421. ExtendedType: (*TestPackedExtensions)(nil),
  2422. ExtensionType: ([]int64)(nil),
  2423. Field: 99,
  2424. Name: "goproto.proto.test.packed_sfixed64_extension",
  2425. Tag: "fixed64,99,rep,packed,name=packed_sfixed64_extension",
  2426. Filename: "test/test.proto",
  2427. },
  2428. {
  2429. ExtendedType: (*TestPackedExtensions)(nil),
  2430. ExtensionType: ([]float32)(nil),
  2431. Field: 100,
  2432. Name: "goproto.proto.test.packed_float_extension",
  2433. Tag: "fixed32,100,rep,packed,name=packed_float_extension",
  2434. Filename: "test/test.proto",
  2435. },
  2436. {
  2437. ExtendedType: (*TestPackedExtensions)(nil),
  2438. ExtensionType: ([]float64)(nil),
  2439. Field: 101,
  2440. Name: "goproto.proto.test.packed_double_extension",
  2441. Tag: "fixed64,101,rep,packed,name=packed_double_extension",
  2442. Filename: "test/test.proto",
  2443. },
  2444. {
  2445. ExtendedType: (*TestPackedExtensions)(nil),
  2446. ExtensionType: ([]bool)(nil),
  2447. Field: 102,
  2448. Name: "goproto.proto.test.packed_bool_extension",
  2449. Tag: "varint,102,rep,packed,name=packed_bool_extension",
  2450. Filename: "test/test.proto",
  2451. },
  2452. {
  2453. ExtendedType: (*TestPackedExtensions)(nil),
  2454. ExtensionType: ([]ForeignEnum)(nil),
  2455. Field: 103,
  2456. Name: "goproto.proto.test.packed_enum_extension",
  2457. Tag: "varint,103,rep,packed,name=packed_enum_extension,enum=goproto.proto.test.ForeignEnum",
  2458. Filename: "test/test.proto",
  2459. },
  2460. {
  2461. ExtendedType: (*TestUnpackedExtensions)(nil),
  2462. ExtensionType: ([]int32)(nil),
  2463. Field: 90,
  2464. Name: "goproto.proto.test.unpacked_int32_extension",
  2465. Tag: "varint,90,rep,name=unpacked_int32_extension",
  2466. Filename: "test/test.proto",
  2467. },
  2468. {
  2469. ExtendedType: (*TestUnpackedExtensions)(nil),
  2470. ExtensionType: ([]int64)(nil),
  2471. Field: 91,
  2472. Name: "goproto.proto.test.unpacked_int64_extension",
  2473. Tag: "varint,91,rep,name=unpacked_int64_extension",
  2474. Filename: "test/test.proto",
  2475. },
  2476. {
  2477. ExtendedType: (*TestUnpackedExtensions)(nil),
  2478. ExtensionType: ([]uint32)(nil),
  2479. Field: 92,
  2480. Name: "goproto.proto.test.unpacked_uint32_extension",
  2481. Tag: "varint,92,rep,name=unpacked_uint32_extension",
  2482. Filename: "test/test.proto",
  2483. },
  2484. {
  2485. ExtendedType: (*TestUnpackedExtensions)(nil),
  2486. ExtensionType: ([]uint64)(nil),
  2487. Field: 93,
  2488. Name: "goproto.proto.test.unpacked_uint64_extension",
  2489. Tag: "varint,93,rep,name=unpacked_uint64_extension",
  2490. Filename: "test/test.proto",
  2491. },
  2492. {
  2493. ExtendedType: (*TestUnpackedExtensions)(nil),
  2494. ExtensionType: ([]int32)(nil),
  2495. Field: 94,
  2496. Name: "goproto.proto.test.unpacked_sint32_extension",
  2497. Tag: "zigzag32,94,rep,name=unpacked_sint32_extension",
  2498. Filename: "test/test.proto",
  2499. },
  2500. {
  2501. ExtendedType: (*TestUnpackedExtensions)(nil),
  2502. ExtensionType: ([]int64)(nil),
  2503. Field: 95,
  2504. Name: "goproto.proto.test.unpacked_sint64_extension",
  2505. Tag: "zigzag64,95,rep,name=unpacked_sint64_extension",
  2506. Filename: "test/test.proto",
  2507. },
  2508. {
  2509. ExtendedType: (*TestUnpackedExtensions)(nil),
  2510. ExtensionType: ([]uint32)(nil),
  2511. Field: 96,
  2512. Name: "goproto.proto.test.unpacked_fixed32_extension",
  2513. Tag: "fixed32,96,rep,name=unpacked_fixed32_extension",
  2514. Filename: "test/test.proto",
  2515. },
  2516. {
  2517. ExtendedType: (*TestUnpackedExtensions)(nil),
  2518. ExtensionType: ([]uint64)(nil),
  2519. Field: 97,
  2520. Name: "goproto.proto.test.unpacked_fixed64_extension",
  2521. Tag: "fixed64,97,rep,name=unpacked_fixed64_extension",
  2522. Filename: "test/test.proto",
  2523. },
  2524. {
  2525. ExtendedType: (*TestUnpackedExtensions)(nil),
  2526. ExtensionType: ([]int32)(nil),
  2527. Field: 98,
  2528. Name: "goproto.proto.test.unpacked_sfixed32_extension",
  2529. Tag: "fixed32,98,rep,name=unpacked_sfixed32_extension",
  2530. Filename: "test/test.proto",
  2531. },
  2532. {
  2533. ExtendedType: (*TestUnpackedExtensions)(nil),
  2534. ExtensionType: ([]int64)(nil),
  2535. Field: 99,
  2536. Name: "goproto.proto.test.unpacked_sfixed64_extension",
  2537. Tag: "fixed64,99,rep,name=unpacked_sfixed64_extension",
  2538. Filename: "test/test.proto",
  2539. },
  2540. {
  2541. ExtendedType: (*TestUnpackedExtensions)(nil),
  2542. ExtensionType: ([]float32)(nil),
  2543. Field: 100,
  2544. Name: "goproto.proto.test.unpacked_float_extension",
  2545. Tag: "fixed32,100,rep,name=unpacked_float_extension",
  2546. Filename: "test/test.proto",
  2547. },
  2548. {
  2549. ExtendedType: (*TestUnpackedExtensions)(nil),
  2550. ExtensionType: ([]float64)(nil),
  2551. Field: 101,
  2552. Name: "goproto.proto.test.unpacked_double_extension",
  2553. Tag: "fixed64,101,rep,name=unpacked_double_extension",
  2554. Filename: "test/test.proto",
  2555. },
  2556. {
  2557. ExtendedType: (*TestUnpackedExtensions)(nil),
  2558. ExtensionType: ([]bool)(nil),
  2559. Field: 102,
  2560. Name: "goproto.proto.test.unpacked_bool_extension",
  2561. Tag: "varint,102,rep,name=unpacked_bool_extension",
  2562. Filename: "test/test.proto",
  2563. },
  2564. {
  2565. ExtendedType: (*TestUnpackedExtensions)(nil),
  2566. ExtensionType: ([]ForeignEnum)(nil),
  2567. Field: 103,
  2568. Name: "goproto.proto.test.unpacked_enum_extension",
  2569. Tag: "varint,103,rep,name=unpacked_enum_extension,enum=goproto.proto.test.ForeignEnum",
  2570. Filename: "test/test.proto",
  2571. },
  2572. {
  2573. ExtendedType: (*TestAllExtensions)(nil),
  2574. ExtensionType: (*string)(nil),
  2575. Field: 1003,
  2576. Name: "goproto.proto.test.TestNestedExtension.nested_string_extension",
  2577. Tag: "bytes,1003,opt,name=nested_string_extension",
  2578. Filename: "test/test.proto",
  2579. },
  2580. {
  2581. ExtendedType: (*TestAllExtensions)(nil),
  2582. ExtensionType: (*TestRequired)(nil),
  2583. Field: 1000,
  2584. Name: "goproto.proto.test.TestRequired.single",
  2585. Tag: "bytes,1000,opt,name=single",
  2586. Filename: "test/test.proto",
  2587. },
  2588. {
  2589. ExtendedType: (*TestAllExtensions)(nil),
  2590. ExtensionType: ([]*TestRequired)(nil),
  2591. Field: 1001,
  2592. Name: "goproto.proto.test.TestRequired.multi",
  2593. Tag: "bytes,1001,rep,name=multi",
  2594. Filename: "test/test.proto",
  2595. },
  2596. }
  2597. var (
  2598. // extend goproto.proto.test.TestAllExtensions { optional int32 optional_int32_extension = 1; }
  2599. E_OptionalInt32Extension = &file_test_test_proto_extDescs[0]
  2600. // extend goproto.proto.test.TestAllExtensions { optional int64 optional_int64_extension = 2; }
  2601. E_OptionalInt64Extension = &file_test_test_proto_extDescs[1]
  2602. // extend goproto.proto.test.TestAllExtensions { optional uint32 optional_uint32_extension = 3; }
  2603. E_OptionalUint32Extension = &file_test_test_proto_extDescs[2]
  2604. // extend goproto.proto.test.TestAllExtensions { optional uint64 optional_uint64_extension = 4; }
  2605. E_OptionalUint64Extension = &file_test_test_proto_extDescs[3]
  2606. // extend goproto.proto.test.TestAllExtensions { optional sint32 optional_sint32_extension = 5; }
  2607. E_OptionalSint32Extension = &file_test_test_proto_extDescs[4]
  2608. // extend goproto.proto.test.TestAllExtensions { optional sint64 optional_sint64_extension = 6; }
  2609. E_OptionalSint64Extension = &file_test_test_proto_extDescs[5]
  2610. // extend goproto.proto.test.TestAllExtensions { optional fixed32 optional_fixed32_extension = 7; }
  2611. E_OptionalFixed32Extension = &file_test_test_proto_extDescs[6]
  2612. // extend goproto.proto.test.TestAllExtensions { optional fixed64 optional_fixed64_extension = 8; }
  2613. E_OptionalFixed64Extension = &file_test_test_proto_extDescs[7]
  2614. // extend goproto.proto.test.TestAllExtensions { optional sfixed32 optional_sfixed32_extension = 9; }
  2615. E_OptionalSfixed32Extension = &file_test_test_proto_extDescs[8]
  2616. // extend goproto.proto.test.TestAllExtensions { optional sfixed64 optional_sfixed64_extension = 10; }
  2617. E_OptionalSfixed64Extension = &file_test_test_proto_extDescs[9]
  2618. // extend goproto.proto.test.TestAllExtensions { optional float optional_float_extension = 11; }
  2619. E_OptionalFloatExtension = &file_test_test_proto_extDescs[10]
  2620. // extend goproto.proto.test.TestAllExtensions { optional double optional_double_extension = 12; }
  2621. E_OptionalDoubleExtension = &file_test_test_proto_extDescs[11]
  2622. // extend goproto.proto.test.TestAllExtensions { optional bool optional_bool_extension = 13; }
  2623. E_OptionalBoolExtension = &file_test_test_proto_extDescs[12]
  2624. // extend goproto.proto.test.TestAllExtensions { optional string optional_string_extension = 14; }
  2625. E_OptionalStringExtension = &file_test_test_proto_extDescs[13]
  2626. // extend goproto.proto.test.TestAllExtensions { optional bytes optional_bytes_extension = 15; }
  2627. E_OptionalBytesExtension = &file_test_test_proto_extDescs[14]
  2628. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.OptionalGroup_extension optionalgroup_extension = 16; }
  2629. E_OptionalgroupExtension = &file_test_test_proto_extDescs[15]
  2630. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.TestAllTypes.NestedMessage optional_nested_message_extension = 18; }
  2631. E_OptionalNestedMessageExtension = &file_test_test_proto_extDescs[16]
  2632. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.TestAllTypes.NestedEnum optional_nested_enum_extension = 21; }
  2633. E_OptionalNestedEnumExtension = &file_test_test_proto_extDescs[17]
  2634. // extend goproto.proto.test.TestAllExtensions { repeated int32 repeated_int32_extension = 31; }
  2635. E_RepeatedInt32Extension = &file_test_test_proto_extDescs[18]
  2636. // extend goproto.proto.test.TestAllExtensions { repeated int64 repeated_int64_extension = 32; }
  2637. E_RepeatedInt64Extension = &file_test_test_proto_extDescs[19]
  2638. // extend goproto.proto.test.TestAllExtensions { repeated uint32 repeated_uint32_extension = 33; }
  2639. E_RepeatedUint32Extension = &file_test_test_proto_extDescs[20]
  2640. // extend goproto.proto.test.TestAllExtensions { repeated uint64 repeated_uint64_extension = 34; }
  2641. E_RepeatedUint64Extension = &file_test_test_proto_extDescs[21]
  2642. // extend goproto.proto.test.TestAllExtensions { repeated sint32 repeated_sint32_extension = 35; }
  2643. E_RepeatedSint32Extension = &file_test_test_proto_extDescs[22]
  2644. // extend goproto.proto.test.TestAllExtensions { repeated sint64 repeated_sint64_extension = 36; }
  2645. E_RepeatedSint64Extension = &file_test_test_proto_extDescs[23]
  2646. // extend goproto.proto.test.TestAllExtensions { repeated fixed32 repeated_fixed32_extension = 37; }
  2647. E_RepeatedFixed32Extension = &file_test_test_proto_extDescs[24]
  2648. // extend goproto.proto.test.TestAllExtensions { repeated fixed64 repeated_fixed64_extension = 38; }
  2649. E_RepeatedFixed64Extension = &file_test_test_proto_extDescs[25]
  2650. // extend goproto.proto.test.TestAllExtensions { repeated sfixed32 repeated_sfixed32_extension = 39; }
  2651. E_RepeatedSfixed32Extension = &file_test_test_proto_extDescs[26]
  2652. // extend goproto.proto.test.TestAllExtensions { repeated sfixed64 repeated_sfixed64_extension = 40; }
  2653. E_RepeatedSfixed64Extension = &file_test_test_proto_extDescs[27]
  2654. // extend goproto.proto.test.TestAllExtensions { repeated float repeated_float_extension = 41; }
  2655. E_RepeatedFloatExtension = &file_test_test_proto_extDescs[28]
  2656. // extend goproto.proto.test.TestAllExtensions { repeated double repeated_double_extension = 42; }
  2657. E_RepeatedDoubleExtension = &file_test_test_proto_extDescs[29]
  2658. // extend goproto.proto.test.TestAllExtensions { repeated bool repeated_bool_extension = 43; }
  2659. E_RepeatedBoolExtension = &file_test_test_proto_extDescs[30]
  2660. // extend goproto.proto.test.TestAllExtensions { repeated string repeated_string_extension = 44; }
  2661. E_RepeatedStringExtension = &file_test_test_proto_extDescs[31]
  2662. // extend goproto.proto.test.TestAllExtensions { repeated bytes repeated_bytes_extension = 45; }
  2663. E_RepeatedBytesExtension = &file_test_test_proto_extDescs[32]
  2664. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.RepeatedGroup_extension repeatedgroup_extension = 46; }
  2665. E_RepeatedgroupExtension = &file_test_test_proto_extDescs[33]
  2666. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.TestAllTypes.NestedMessage repeated_nested_message_extension = 48; }
  2667. E_RepeatedNestedMessageExtension = &file_test_test_proto_extDescs[34]
  2668. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.TestAllTypes.NestedEnum repeated_nested_enum_extension = 51; }
  2669. E_RepeatedNestedEnumExtension = &file_test_test_proto_extDescs[35]
  2670. // extend goproto.proto.test.TestAllExtensions { optional int32 default_int32_extension = 81; }
  2671. E_DefaultInt32Extension = &file_test_test_proto_extDescs[36]
  2672. // extend goproto.proto.test.TestAllExtensions { optional int64 default_int64_extension = 82; }
  2673. E_DefaultInt64Extension = &file_test_test_proto_extDescs[37]
  2674. // extend goproto.proto.test.TestAllExtensions { optional uint32 default_uint32_extension = 83; }
  2675. E_DefaultUint32Extension = &file_test_test_proto_extDescs[38]
  2676. // extend goproto.proto.test.TestAllExtensions { optional uint64 default_uint64_extension = 84; }
  2677. E_DefaultUint64Extension = &file_test_test_proto_extDescs[39]
  2678. // extend goproto.proto.test.TestAllExtensions { optional sint32 default_sint32_extension = 85; }
  2679. E_DefaultSint32Extension = &file_test_test_proto_extDescs[40]
  2680. // extend goproto.proto.test.TestAllExtensions { optional sint64 default_sint64_extension = 86; }
  2681. E_DefaultSint64Extension = &file_test_test_proto_extDescs[41]
  2682. // extend goproto.proto.test.TestAllExtensions { optional fixed32 default_fixed32_extension = 87; }
  2683. E_DefaultFixed32Extension = &file_test_test_proto_extDescs[42]
  2684. // extend goproto.proto.test.TestAllExtensions { optional fixed64 default_fixed64_extension = 88; }
  2685. E_DefaultFixed64Extension = &file_test_test_proto_extDescs[43]
  2686. // extend goproto.proto.test.TestAllExtensions { optional sfixed32 default_sfixed32_extension = 89; }
  2687. E_DefaultSfixed32Extension = &file_test_test_proto_extDescs[44]
  2688. // extend goproto.proto.test.TestAllExtensions { optional sfixed64 default_sfixed64_extension = 80; }
  2689. E_DefaultSfixed64Extension = &file_test_test_proto_extDescs[45]
  2690. // extend goproto.proto.test.TestAllExtensions { optional float default_float_extension = 91; }
  2691. E_DefaultFloatExtension = &file_test_test_proto_extDescs[46]
  2692. // extend goproto.proto.test.TestAllExtensions { optional double default_double_extension = 92; }
  2693. E_DefaultDoubleExtension = &file_test_test_proto_extDescs[47]
  2694. // extend goproto.proto.test.TestAllExtensions { optional bool default_bool_extension = 93; }
  2695. E_DefaultBoolExtension = &file_test_test_proto_extDescs[48]
  2696. // extend goproto.proto.test.TestAllExtensions { optional string default_string_extension = 94; }
  2697. E_DefaultStringExtension = &file_test_test_proto_extDescs[49]
  2698. // extend goproto.proto.test.TestAllExtensions { optional bytes default_bytes_extension = 95; }
  2699. E_DefaultBytesExtension = &file_test_test_proto_extDescs[50]
  2700. // extend goproto.proto.test.TestPackedExtensions { repeated int32 packed_int32_extension = 90; }
  2701. E_PackedInt32Extension = &file_test_test_proto_extDescs[51]
  2702. // extend goproto.proto.test.TestPackedExtensions { repeated int64 packed_int64_extension = 91; }
  2703. E_PackedInt64Extension = &file_test_test_proto_extDescs[52]
  2704. // extend goproto.proto.test.TestPackedExtensions { repeated uint32 packed_uint32_extension = 92; }
  2705. E_PackedUint32Extension = &file_test_test_proto_extDescs[53]
  2706. // extend goproto.proto.test.TestPackedExtensions { repeated uint64 packed_uint64_extension = 93; }
  2707. E_PackedUint64Extension = &file_test_test_proto_extDescs[54]
  2708. // extend goproto.proto.test.TestPackedExtensions { repeated sint32 packed_sint32_extension = 94; }
  2709. E_PackedSint32Extension = &file_test_test_proto_extDescs[55]
  2710. // extend goproto.proto.test.TestPackedExtensions { repeated sint64 packed_sint64_extension = 95; }
  2711. E_PackedSint64Extension = &file_test_test_proto_extDescs[56]
  2712. // extend goproto.proto.test.TestPackedExtensions { repeated fixed32 packed_fixed32_extension = 96; }
  2713. E_PackedFixed32Extension = &file_test_test_proto_extDescs[57]
  2714. // extend goproto.proto.test.TestPackedExtensions { repeated fixed64 packed_fixed64_extension = 97; }
  2715. E_PackedFixed64Extension = &file_test_test_proto_extDescs[58]
  2716. // extend goproto.proto.test.TestPackedExtensions { repeated sfixed32 packed_sfixed32_extension = 98; }
  2717. E_PackedSfixed32Extension = &file_test_test_proto_extDescs[59]
  2718. // extend goproto.proto.test.TestPackedExtensions { repeated sfixed64 packed_sfixed64_extension = 99; }
  2719. E_PackedSfixed64Extension = &file_test_test_proto_extDescs[60]
  2720. // extend goproto.proto.test.TestPackedExtensions { repeated float packed_float_extension = 100; }
  2721. E_PackedFloatExtension = &file_test_test_proto_extDescs[61]
  2722. // extend goproto.proto.test.TestPackedExtensions { repeated double packed_double_extension = 101; }
  2723. E_PackedDoubleExtension = &file_test_test_proto_extDescs[62]
  2724. // extend goproto.proto.test.TestPackedExtensions { repeated bool packed_bool_extension = 102; }
  2725. E_PackedBoolExtension = &file_test_test_proto_extDescs[63]
  2726. // extend goproto.proto.test.TestPackedExtensions { repeated goproto.proto.test.ForeignEnum packed_enum_extension = 103; }
  2727. E_PackedEnumExtension = &file_test_test_proto_extDescs[64]
  2728. // extend goproto.proto.test.TestUnpackedExtensions { repeated int32 unpacked_int32_extension = 90; }
  2729. E_UnpackedInt32Extension = &file_test_test_proto_extDescs[65]
  2730. // extend goproto.proto.test.TestUnpackedExtensions { repeated int64 unpacked_int64_extension = 91; }
  2731. E_UnpackedInt64Extension = &file_test_test_proto_extDescs[66]
  2732. // extend goproto.proto.test.TestUnpackedExtensions { repeated uint32 unpacked_uint32_extension = 92; }
  2733. E_UnpackedUint32Extension = &file_test_test_proto_extDescs[67]
  2734. // extend goproto.proto.test.TestUnpackedExtensions { repeated uint64 unpacked_uint64_extension = 93; }
  2735. E_UnpackedUint64Extension = &file_test_test_proto_extDescs[68]
  2736. // extend goproto.proto.test.TestUnpackedExtensions { repeated sint32 unpacked_sint32_extension = 94; }
  2737. E_UnpackedSint32Extension = &file_test_test_proto_extDescs[69]
  2738. // extend goproto.proto.test.TestUnpackedExtensions { repeated sint64 unpacked_sint64_extension = 95; }
  2739. E_UnpackedSint64Extension = &file_test_test_proto_extDescs[70]
  2740. // extend goproto.proto.test.TestUnpackedExtensions { repeated fixed32 unpacked_fixed32_extension = 96; }
  2741. E_UnpackedFixed32Extension = &file_test_test_proto_extDescs[71]
  2742. // extend goproto.proto.test.TestUnpackedExtensions { repeated fixed64 unpacked_fixed64_extension = 97; }
  2743. E_UnpackedFixed64Extension = &file_test_test_proto_extDescs[72]
  2744. // extend goproto.proto.test.TestUnpackedExtensions { repeated sfixed32 unpacked_sfixed32_extension = 98; }
  2745. E_UnpackedSfixed32Extension = &file_test_test_proto_extDescs[73]
  2746. // extend goproto.proto.test.TestUnpackedExtensions { repeated sfixed64 unpacked_sfixed64_extension = 99; }
  2747. E_UnpackedSfixed64Extension = &file_test_test_proto_extDescs[74]
  2748. // extend goproto.proto.test.TestUnpackedExtensions { repeated float unpacked_float_extension = 100; }
  2749. E_UnpackedFloatExtension = &file_test_test_proto_extDescs[75]
  2750. // extend goproto.proto.test.TestUnpackedExtensions { repeated double unpacked_double_extension = 101; }
  2751. E_UnpackedDoubleExtension = &file_test_test_proto_extDescs[76]
  2752. // extend goproto.proto.test.TestUnpackedExtensions { repeated bool unpacked_bool_extension = 102; }
  2753. E_UnpackedBoolExtension = &file_test_test_proto_extDescs[77]
  2754. // extend goproto.proto.test.TestUnpackedExtensions { repeated goproto.proto.test.ForeignEnum unpacked_enum_extension = 103; }
  2755. E_UnpackedEnumExtension = &file_test_test_proto_extDescs[78]
  2756. // extend goproto.proto.test.TestAllExtensions { optional string nested_string_extension = 1003; }
  2757. E_TestNestedExtension_NestedStringExtension = &file_test_test_proto_extDescs[79]
  2758. // extend goproto.proto.test.TestAllExtensions { optional goproto.proto.test.TestRequired single = 1000; }
  2759. E_TestRequired_Single = &file_test_test_proto_extDescs[80]
  2760. // extend goproto.proto.test.TestAllExtensions { repeated goproto.proto.test.TestRequired multi = 1001; }
  2761. E_TestRequired_Multi = &file_test_test_proto_extDescs[81]
  2762. )
  2763. var File_test_test_proto protoreflect.FileDescriptor
  2764. var file_test_test_proto_rawDesc = []byte{
  2765. 0x0a, 0x0f, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2766. 0x6f, 0x12, 0x12, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2767. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74,
  2768. 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x16, 0x74,
  2769. 0x65, 0x73, 0x74, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x2e,
  2770. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x74, 0x65, 0x73, 0x74, 0x2f, 0x77, 0x65, 0x61, 0x6b,
  2771. 0x2f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2772. 0x22, 0xe4, 0x36, 0x0a, 0x0c, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65,
  2773. 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e,
  2774. 0x74, 0x33, 0x32, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2775. 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69,
  2776. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
  2777. 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12,
  2778. 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74,
  2779. 0x33, 0x32, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2780. 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69,
  2781. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x04, 0x20, 0x01, 0x28,
  2782. 0x04, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x36,
  2783. 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69,
  2784. 0x6e, 0x74, 0x33, 0x32, 0x18, 0x05, 0x20, 0x01, 0x28, 0x11, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69,
  2785. 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70,
  2786. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x06, 0x20,
  2787. 0x01, 0x28, 0x12, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e,
  2788. 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2789. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x07, 0x20, 0x01, 0x28, 0x07, 0x52, 0x0f, 0x6f,
  2790. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x29,
  2791. 0x0a, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64,
  2792. 0x36, 0x34, 0x18, 0x08, 0x20, 0x01, 0x28, 0x06, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2793. 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x70, 0x74,
  2794. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x09,
  2795. 0x20, 0x01, 0x28, 0x0f, 0x52, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66,
  2796. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2797. 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x0a, 0x20, 0x01, 0x28,
  2798. 0x10, 0x52, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65,
  2799. 0x64, 0x36, 0x34, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2800. 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0d, 0x6f, 0x70, 0x74,
  2801. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70,
  2802. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x0c, 0x20,
  2803. 0x01, 0x28, 0x01, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x75,
  2804. 0x62, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2805. 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x69,
  2806. 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69,
  2807. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x0e, 0x20, 0x01, 0x28,
  2808. 0x09, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e,
  2809. 0x67, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x79,
  2810. 0x74, 0x65, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2811. 0x6e, 0x61, 0x6c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69,
  2812. 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0a, 0x32,
  2813. 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2814. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65,
  2815. 0x73, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52,
  2816. 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x66,
  2817. 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65,
  2818. 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32,
  2819. 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2820. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65,
  2821. 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52,
  2822. 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d,
  2823. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5c, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2824. 0x61, 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2825. 0x67, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2826. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f,
  2827. 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x16, 0x6f, 0x70,
  2828. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73,
  2829. 0x73, 0x61, 0x67, 0x65, 0x12, 0x59, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2830. 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18,
  2831. 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2832. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72,
  2833. 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2834. 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  2835. 0x5d, 0x0a, 0x14, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74,
  2836. 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e,
  2837. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2838. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2839. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x6f, 0x70, 0x74, 0x69,
  2840. 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x53,
  2841. 0x0a, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69,
  2842. 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e,
  2843. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2844. 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x13,
  2845. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45,
  2846. 0x6e, 0x75, 0x6d, 0x12, 0x50, 0x0a, 0x14, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2847. 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x17, 0x20, 0x01, 0x28,
  2848. 0x0e, 0x32, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2849. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75,
  2850. 0x6d, 0x52, 0x12, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x6f, 0x72,
  2851. 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2852. 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x1f, 0x20, 0x03, 0x28, 0x05, 0x52, 0x0d, 0x72,
  2853. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0e,
  2854. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x20,
  2855. 0x20, 0x03, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e,
  2856. 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2857. 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x72, 0x65,
  2858. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f,
  2859. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18,
  2860. 0x22, 0x20, 0x03, 0x28, 0x04, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55,
  2861. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2862. 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x23, 0x20, 0x03, 0x28, 0x11, 0x52, 0x0e,
  2863. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27,
  2864. 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36,
  2865. 0x34, 0x18, 0x24, 0x20, 0x03, 0x28, 0x12, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2866. 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61,
  2867. 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x25, 0x20, 0x03, 0x28,
  2868. 0x07, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64,
  2869. 0x33, 0x32, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66,
  2870. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x26, 0x20, 0x03, 0x28, 0x06, 0x52, 0x0f, 0x72, 0x65,
  2871. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a,
  2872. 0x11, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64,
  2873. 0x33, 0x32, 0x18, 0x27, 0x20, 0x03, 0x28, 0x0f, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  2874. 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65,
  2875. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18,
  2876. 0x28, 0x20, 0x03, 0x28, 0x10, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53,
  2877. 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61,
  2878. 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x29, 0x20, 0x03, 0x28, 0x02, 0x52,
  2879. 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27,
  2880. 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c,
  2881. 0x65, 0x18, 0x2a, 0x20, 0x03, 0x28, 0x01, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2882. 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61,
  2883. 0x74, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x2b, 0x20, 0x03, 0x28, 0x08, 0x52, 0x0c,
  2884. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x27, 0x0a, 0x0f,
  2885. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18,
  2886. 0x2c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53,
  2887. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2888. 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x2d, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0d, 0x72,
  2889. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0d,
  2890. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x2e, 0x20,
  2891. 0x03, 0x28, 0x0a, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2892. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  2893. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72,
  2894. 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f,
  2895. 0x75, 0x70, 0x12, 0x66, 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e,
  2896. 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x30, 0x20,
  2897. 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2898. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  2899. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  2900. 0x61, 0x67, 0x65, 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73,
  2901. 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5c, 0x0a, 0x18, 0x72, 0x65,
  2902. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6d,
  2903. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x31, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67,
  2904. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2905. 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  2906. 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67,
  2907. 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x58, 0x0a, 0x16, 0x72, 0x65, 0x70, 0x65,
  2908. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2909. 0x67, 0x65, 0x18, 0x32, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2910. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d,
  2911. 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x72, 0x65, 0x70,
  2912. 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61,
  2913. 0x67, 0x65, 0x12, 0x5d, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e,
  2914. 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x33, 0x20, 0x03, 0x28, 0x0e,
  2915. 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2916. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70,
  2917. 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x72,
  2918. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75,
  2919. 0x6d, 0x12, 0x53, 0x0a, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6f,
  2920. 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x34, 0x20, 0x03, 0x28, 0x0e,
  2921. 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2922. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75,
  2923. 0x6d, 0x52, 0x13, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69,
  2924. 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x4f, 0x0a, 0x13, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  2925. 0x65, 0x64, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x35, 0x20,
  2926. 0x03, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2927. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45,
  2928. 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6d, 0x70,
  2929. 0x6f, 0x72, 0x74, 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69,
  2930. 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x38, 0x20, 0x03, 0x28, 0x0b,
  2931. 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2932. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70,
  2933. 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33, 0x32,
  2934. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49,
  2935. 0x6e, 0x74, 0x33, 0x32, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x36,
  2936. 0x34, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x39, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e,
  2937. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2938. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2939. 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74,
  2940. 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36,
  2941. 0x34, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f,
  2942. 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x3a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67,
  2943. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2944. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d,
  2945. 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e,
  2946. 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69,
  2947. 0x6e, 0x74, 0x33, 0x32, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x75, 0x69, 0x6e, 0x74,
  2948. 0x36, 0x34, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x3b, 0x20, 0x03, 0x28, 0x0b, 0x32,
  2949. 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2950. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65,
  2951. 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36,
  2952. 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36,
  2953. 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73,
  2954. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x3c, 0x20, 0x03,
  2955. 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2956. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54,
  2957. 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69,
  2958. 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x69,
  2959. 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61,
  2960. 0x70, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18,
  2961. 0x3d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2962. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  2963. 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36,
  2964. 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61,
  2965. 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x67, 0x0a,
  2966. 0x13, 0x6d, 0x61, 0x70, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x78,
  2967. 0x65, 0x64, 0x33, 0x32, 0x18, 0x3e, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70,
  2968. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2969. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70,
  2970. 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e,
  2971. 0x74, 0x72, 0x79, 0x52, 0x11, 0x6d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46,
  2972. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x67, 0x0a, 0x13, 0x6d, 0x61, 0x70, 0x5f, 0x66, 0x69,
  2973. 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x3f, 0x20,
  2974. 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2975. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  2976. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  2977. 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x6d, 0x61,
  2978. 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12,
  2979. 0x6d, 0x0a, 0x15, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f,
  2980. 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x40, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39,
  2981. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2982. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73,
  2983. 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78,
  2984. 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66,
  2985. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x6d,
  2986. 0x0a, 0x15, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x73,
  2987. 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x41, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e,
  2988. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2989. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2990. 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65,
  2991. 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66, 0x69,
  2992. 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x5b, 0x0a,
  2993. 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74,
  2994. 0x18, 0x42, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2995. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  2996. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33,
  2997. 0x32, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70,
  2998. 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x5e, 0x0a, 0x10, 0x6d, 0x61,
  2999. 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x43,
  3000. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3001. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3002. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44,
  3003. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x6d, 0x61, 0x70, 0x49,
  3004. 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x55, 0x0a, 0x0d, 0x6d, 0x61,
  3005. 0x70, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x44, 0x20, 0x03, 0x28,
  3006. 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3007. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79,
  3008. 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45,
  3009. 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x6d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f,
  3010. 0x6c, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f,
  3011. 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x45, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67,
  3012. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3013. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d,
  3014. 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x6e,
  3015. 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74,
  3016. 0x72, 0x69, 0x6e, 0x67, 0x12, 0x5e, 0x0a, 0x10, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69,
  3017. 0x6e, 0x67, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x46, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34,
  3018. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3019. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73,
  3020. 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45,
  3021. 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42,
  3022. 0x79, 0x74, 0x65, 0x73, 0x12, 0x77, 0x0a, 0x19, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69,
  3023. 0x6e, 0x67, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  3024. 0x65, 0x18, 0x47, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3025. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3026. 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72,
  3027. 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  3028. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x16, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  3029. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x6e, 0x0a,
  3030. 0x16, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6e, 0x65, 0x73, 0x74,
  3031. 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x49, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e,
  3032. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3033. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  3034. 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45,
  3035. 0x6e, 0x75, 0x6d, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72,
  3036. 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x27, 0x0a,
  3037. 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x51,
  3038. 0x20, 0x01, 0x28, 0x05, 0x3a, 0x02, 0x38, 0x31, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3039. 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3040. 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x52, 0x20, 0x01, 0x28, 0x03, 0x3a, 0x02, 0x38,
  3041. 0x32, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12,
  3042. 0x29, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33,
  3043. 0x32, 0x18, 0x53, 0x20, 0x01, 0x28, 0x0d, 0x3a, 0x02, 0x38, 0x33, 0x52, 0x0d, 0x64, 0x65, 0x66,
  3044. 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x65,
  3045. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x54, 0x20, 0x01,
  3046. 0x28, 0x04, 0x3a, 0x02, 0x38, 0x34, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55,
  3047. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2a, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3048. 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x55, 0x20, 0x01, 0x28, 0x11, 0x3a, 0x03, 0x2d,
  3049. 0x38, 0x35, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33,
  3050. 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e,
  3051. 0x74, 0x36, 0x34, 0x18, 0x56, 0x20, 0x01, 0x28, 0x12, 0x3a, 0x02, 0x38, 0x36, 0x52, 0x0d, 0x64,
  3052. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f,
  3053. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18,
  3054. 0x57, 0x20, 0x01, 0x28, 0x07, 0x3a, 0x02, 0x38, 0x37, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75,
  3055. 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x64, 0x65, 0x66,
  3056. 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x58, 0x20, 0x01,
  3057. 0x28, 0x06, 0x3a, 0x02, 0x38, 0x38, 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46,
  3058. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2d, 0x0a, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3059. 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x59, 0x20, 0x01, 0x28, 0x0f,
  3060. 0x3a, 0x02, 0x38, 0x39, 0x52, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69,
  3061. 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2e, 0x0a, 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3062. 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x50, 0x20, 0x01, 0x28, 0x10, 0x3a,
  3063. 0x03, 0x2d, 0x39, 0x30, 0x52, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69,
  3064. 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3065. 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x5b, 0x20, 0x01, 0x28, 0x02, 0x3a, 0x04, 0x39, 0x31,
  3066. 0x2e, 0x35, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74,
  3067. 0x12, 0x2c, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x64, 0x6f, 0x75, 0x62,
  3068. 0x6c, 0x65, 0x18, 0x5c, 0x20, 0x01, 0x28, 0x01, 0x3a, 0x05, 0x39, 0x32, 0x30, 0x30, 0x30, 0x52,
  3069. 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x27,
  3070. 0x0a, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x5d,
  3071. 0x20, 0x01, 0x28, 0x08, 0x3a, 0x04, 0x74, 0x72, 0x75, 0x65, 0x52, 0x0b, 0x64, 0x65, 0x66, 0x61,
  3072. 0x75, 0x6c, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x2c, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75,
  3073. 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x5e, 0x20, 0x01, 0x28, 0x09, 0x3a,
  3074. 0x05, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53,
  3075. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x2a, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3076. 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x5f, 0x20, 0x01, 0x28, 0x0c, 0x3a, 0x05, 0x77, 0x6f,
  3077. 0x72, 0x6c, 0x64, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42, 0x79, 0x74, 0x65,
  3078. 0x73, 0x12, 0x60, 0x0a, 0x13, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x6e, 0x65, 0x73,
  3079. 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x60, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b,
  3080. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3081. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73,
  3082. 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x3a, 0x03, 0x42, 0x41, 0x52,
  3083. 0x52, 0x11, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45,
  3084. 0x6e, 0x75, 0x6d, 0x12, 0x5e, 0x0a, 0x14, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66,
  3085. 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x61, 0x20, 0x01, 0x28,
  3086. 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3087. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e,
  3088. 0x75, 0x6d, 0x3a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x52, 0x52,
  3089. 0x12, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45,
  3090. 0x6e, 0x75, 0x6d, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x75, 0x69, 0x6e,
  3091. 0x74, 0x33, 0x32, 0x18, 0x6f, 0x20, 0x01, 0x28, 0x0d, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65,
  3092. 0x6f, 0x66, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x62, 0x0a, 0x14, 0x6f, 0x6e, 0x65, 0x6f,
  3093. 0x66, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  3094. 0x18, 0x70, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3095. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3096. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d,
  3097. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x12, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4e,
  3098. 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x23, 0x0a, 0x0c,
  3099. 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x71, 0x20, 0x01,
  3100. 0x28, 0x09, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x53, 0x74, 0x72, 0x69, 0x6e,
  3101. 0x67, 0x12, 0x21, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73,
  3102. 0x18, 0x72, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x42,
  3103. 0x79, 0x74, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x62, 0x6f,
  3104. 0x6f, 0x6c, 0x18, 0x73, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x6e, 0x65, 0x6f,
  3105. 0x66, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x75,
  3106. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x74, 0x20, 0x01, 0x28, 0x04, 0x48, 0x00, 0x52, 0x0b, 0x6f,
  3107. 0x6e, 0x65, 0x6f, 0x66, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x21, 0x0a, 0x0b, 0x6f, 0x6e,
  3108. 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x75, 0x20, 0x01, 0x28, 0x02, 0x48,
  3109. 0x00, 0x52, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x23, 0x0a,
  3110. 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x76, 0x20,
  3111. 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x44, 0x6f, 0x75, 0x62,
  3112. 0x6c, 0x65, 0x12, 0x4c, 0x0a, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x65, 0x6e, 0x75, 0x6d,
  3113. 0x18, 0x77, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3114. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3115. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45,
  3116. 0x6e, 0x75, 0x6d, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x45, 0x6e, 0x75, 0x6d,
  3117. 0x1a, 0x61, 0x0a, 0x0d, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  3118. 0x65, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x12,
  3119. 0x42, 0x0a, 0x0b, 0x63, 0x6f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x02,
  3120. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3121. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3122. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x0b, 0x63, 0x6f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73,
  3123. 0x69, 0x76, 0x65, 0x1a, 0x1d, 0x0a, 0x0d, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47,
  3124. 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52,
  3125. 0x01, 0x61, 0x1a, 0x1d, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72,
  3126. 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01,
  3127. 0x61, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74,
  3128. 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  3129. 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  3130. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
  3131. 0x02, 0x38, 0x01, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49,
  3132. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  3133. 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
  3134. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  3135. 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74,
  3136. 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  3137. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  3138. 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05,
  3139. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70,
  3140. 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72,
  3141. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03,
  3142. 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  3143. 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a,
  3144. 0x14, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32,
  3145. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  3146. 0x28, 0x11, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3147. 0x18, 0x02, 0x20, 0x01, 0x28, 0x11, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  3148. 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69,
  3149. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
  3150. 0x18, 0x01, 0x20, 0x01, 0x28, 0x12, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
  3151. 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x12, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
  3152. 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x44, 0x0a, 0x16, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65,
  3153. 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
  3154. 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x07, 0x52, 0x03, 0x6b, 0x65,
  3155. 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x07,
  3156. 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x44, 0x0a, 0x16, 0x4d,
  3157. 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  3158. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  3159. 0x28, 0x06, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3160. 0x18, 0x02, 0x20, 0x01, 0x28, 0x06, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  3161. 0x01, 0x1a, 0x46, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  3162. 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
  3163. 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
  3164. 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x05,
  3165. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x46, 0x0a, 0x18, 0x4d, 0x61, 0x70,
  3166. 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  3167. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  3168. 0x28, 0x10, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  3169. 0x18, 0x02, 0x20, 0x01, 0x28, 0x10, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  3170. 0x01, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c, 0x6f,
  3171. 0x61, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01,
  3172. 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
  3173. 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a,
  3174. 0x02, 0x38, 0x01, 0x1a, 0x41, 0x0a, 0x13, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44,
  3175. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  3176. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
  3177. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c,
  3178. 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x3e, 0x0a, 0x10, 0x4d, 0x61, 0x70, 0x42, 0x6f, 0x6f,
  3179. 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
  3180. 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
  3181. 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c,
  3182. 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72,
  3183. 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  3184. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
  3185. 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
  3186. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x41, 0x0a, 0x13, 0x4d, 0x61,
  3187. 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72,
  3188. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03,
  3189. 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  3190. 0x28, 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x79, 0x0a,
  3191. 0x1b, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,
  3192. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
  3193. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44,
  3194. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e,
  3195. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3196. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  3197. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x76,
  3198. 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x73, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53,
  3199. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45,
  3200. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  3201. 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x41, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  3202. 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3203. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3204. 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e,
  3205. 0x75, 0x6d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x39, 0x0a,
  3206. 0x0a, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x07, 0x0a, 0x03, 0x46,
  3207. 0x4f, 0x4f, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x42, 0x41, 0x52, 0x10, 0x01, 0x12, 0x07, 0x0a,
  3208. 0x03, 0x42, 0x41, 0x5a, 0x10, 0x02, 0x12, 0x10, 0x0a, 0x03, 0x4e, 0x45, 0x47, 0x10, 0xff, 0xff,
  3209. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f,
  3210. 0x66, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x22, 0xc4, 0x01, 0x0a, 0x15, 0x54, 0x65, 0x73, 0x74,
  3211. 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  3212. 0x65, 0x12, 0x2d, 0x0a, 0x10, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f,
  3213. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x42, 0x02, 0x18, 0x01, 0x52,
  3214. 0x0f, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32,
  3215. 0x12, 0x3a, 0x0a, 0x16, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6f,
  3216. 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
  3217. 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52, 0x14, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74,
  3218. 0x65, 0x64, 0x4f, 0x6e, 0x65, 0x6f, 0x66, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x22, 0x28, 0x0a, 0x0e,
  3219. 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x12,
  3220. 0x0a, 0x0a, 0x44, 0x45, 0x50, 0x52, 0x45, 0x43, 0x41, 0x54, 0x45, 0x44, 0x10, 0x00, 0x1a, 0x02,
  3221. 0x08, 0x01, 0x1a, 0x02, 0x18, 0x01, 0x3a, 0x02, 0x18, 0x01, 0x42, 0x12, 0x0a, 0x10, 0x64, 0x65,
  3222. 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x22, 0x2c,
  3223. 0x0a, 0x0e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  3224. 0x12, 0x0c, 0x0a, 0x01, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x63, 0x12, 0x0c,
  3225. 0x0a, 0x01, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x64, 0x22, 0x30, 0x0a, 0x12,
  3226. 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x46, 0x69, 0x65, 0x6c,
  3227. 0x64, 0x73, 0x4a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x4a, 0x04, 0x08, 0x0f, 0x10, 0x10, 0x4a, 0x04,
  3228. 0x08, 0x09, 0x10, 0x0c, 0x52, 0x03, 0x62, 0x61, 0x72, 0x52, 0x03, 0x62, 0x61, 0x7a, 0x22, 0x1d,
  3229. 0x0a, 0x11, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3230. 0x6f, 0x6e, 0x73, 0x2a, 0x08, 0x08, 0x01, 0x10, 0x80, 0x80, 0x80, 0x80, 0x02, 0x22, 0x27, 0x0a,
  3231. 0x17, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65,
  3232. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x11, 0x20,
  3233. 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22, 0x27, 0x0a, 0x17, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74,
  3234. 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3235. 0x6e, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22,
  3236. 0x75, 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x78, 0x74,
  3237. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x5e, 0x0a, 0x17, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64,
  3238. 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3239. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3240. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3241. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xeb, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52,
  3242. 0x15, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74,
  3243. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0xf7, 0x01, 0x0a, 0x0c, 0x54, 0x65, 0x73, 0x74, 0x52,
  3244. 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x71, 0x75, 0x69,
  3245. 0x72, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x02, 0x28, 0x05, 0x52,
  3246. 0x0d, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x60,
  3247. 0x0a, 0x06, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3248. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3249. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3250. 0xe8, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3251. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3252. 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x06, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65,
  3253. 0x32, 0x5e, 0x0a, 0x05, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3254. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3255. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3256. 0x18, 0xe9, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3257. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3258. 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x05, 0x6d, 0x75, 0x6c, 0x74, 0x69,
  3259. 0x22, 0xc2, 0x03, 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65,
  3260. 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x12, 0x4b, 0x0a, 0x10, 0x6f, 0x70, 0x74, 0x69,
  3261. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20, 0x01,
  3262. 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3263. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75,
  3264. 0x69, 0x72, 0x65, 0x64, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4d, 0x65,
  3265. 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x4b, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  3266. 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
  3267. 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3268. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65,
  3269. 0x64, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,
  3270. 0x67, 0x65, 0x12, 0x58, 0x0a, 0x0b, 0x6d, 0x61, 0x70, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
  3271. 0x65, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3272. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3273. 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e,
  3274. 0x2e, 0x4d, 0x61, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79,
  3275. 0x52, 0x0a, 0x6d, 0x61, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x47, 0x0a, 0x0d,
  3276. 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20,
  3277. 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3278. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x71,
  3279. 0x75, 0x69, 0x72, 0x65, 0x64, 0x48, 0x00, 0x52, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4d, 0x65,
  3280. 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x5f, 0x0a, 0x0f, 0x4d, 0x61, 0x70, 0x4d, 0x65, 0x73, 0x73,
  3281. 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
  3282. 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x36, 0x0a, 0x05, 0x76, 0x61,
  3283. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3284. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3285. 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x52, 0x05, 0x76, 0x61, 0x6c,
  3286. 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x42, 0x0d, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f,
  3287. 0x66, 0x69, 0x65, 0x6c, 0x64, 0x22, 0x99, 0x02, 0x0a, 0x17, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65,
  3288. 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46, 0x69, 0x65, 0x6c, 0x64,
  3289. 0x73, 0x12, 0x5f, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f,
  3290. 0x75, 0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3291. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3292. 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x46,
  3293. 0x69, 0x65, 0x6c, 0x64, 0x73, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72,
  3294. 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f,
  3295. 0x75, 0x70, 0x12, 0x5f, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72,
  3296. 0x6f, 0x75, 0x70, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3297. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3298. 0x65, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70,
  3299. 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47,
  3300. 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72,
  3301. 0x6f, 0x75, 0x70, 0x1a, 0x1d, 0x0a, 0x0d, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47,
  3302. 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x02, 0x20, 0x02, 0x28, 0x05, 0x52,
  3303. 0x01, 0x61, 0x1a, 0x1d, 0x0a, 0x0d, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72,
  3304. 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x04, 0x20, 0x02, 0x28, 0x05, 0x52, 0x01,
  3305. 0x61, 0x22, 0x5d, 0x0a, 0x08, 0x54, 0x65, 0x73, 0x74, 0x57, 0x65, 0x61, 0x6b, 0x12, 0x51, 0x0a,
  3306. 0x0c, 0x77, 0x65, 0x61, 0x6b, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x01, 0x20,
  3307. 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3308. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x77, 0x65, 0x61, 0x6b, 0x2e, 0x57, 0x65,
  3309. 0x61, 0x6b, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x42,
  3310. 0x02, 0x50, 0x01, 0x52, 0x0b, 0x77, 0x65, 0x61, 0x6b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  3311. 0x22, 0xee, 0x04, 0x0a, 0x0f, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x54,
  3312. 0x79, 0x70, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69,
  3313. 0x6e, 0x74, 0x33, 0x32, 0x18, 0x5a, 0x20, 0x03, 0x28, 0x05, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0b,
  3314. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0c, 0x70,
  3315. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5b, 0x20, 0x03, 0x28,
  3316. 0x03, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74,
  3317. 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e,
  3318. 0x74, 0x33, 0x32, 0x18, 0x5c, 0x20, 0x03, 0x28, 0x0d, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c, 0x70,
  3319. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0d, 0x70,
  3320. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5d, 0x20, 0x03,
  3321. 0x28, 0x04, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69,
  3322. 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73,
  3323. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x5e, 0x20, 0x03, 0x28, 0x11, 0x42, 0x02, 0x10, 0x01, 0x52,
  3324. 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a,
  3325. 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5f,
  3326. 0x20, 0x03, 0x28, 0x12, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3327. 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3328. 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x60, 0x20, 0x03, 0x28, 0x07, 0x42, 0x02,
  3329. 0x10, 0x01, 0x52, 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33,
  3330. 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65,
  3331. 0x64, 0x36, 0x34, 0x18, 0x61, 0x20, 0x03, 0x28, 0x06, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0d, 0x70,
  3332. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f,
  3333. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18,
  3334. 0x62, 0x20, 0x03, 0x28, 0x0f, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3335. 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x70, 0x61, 0x63,
  3336. 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x63, 0x20, 0x03,
  3337. 0x28, 0x10, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66,
  3338. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x25, 0x0a, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3339. 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x64, 0x20, 0x03, 0x28, 0x02, 0x42, 0x02, 0x10, 0x01,
  3340. 0x52, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a,
  3341. 0x0d, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x65,
  3342. 0x20, 0x03, 0x28, 0x01, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3343. 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3344. 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x66, 0x20, 0x03, 0x28, 0x08, 0x42, 0x02, 0x10, 0x01, 0x52,
  3345. 0x0a, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x44, 0x0a, 0x0b, 0x70,
  3346. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x67, 0x20, 0x03, 0x28, 0x0e,
  3347. 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3348. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75,
  3349. 0x6d, 0x42, 0x02, 0x10, 0x01, 0x52, 0x0a, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x6e, 0x75,
  3350. 0x6d, 0x22, 0xa8, 0x05, 0x0a, 0x11, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3351. 0x65, 0x64, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x29, 0x0a, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63,
  3352. 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x5a, 0x20, 0x03, 0x28, 0x05, 0x42,
  3353. 0x02, 0x10, 0x00, 0x52, 0x0d, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74,
  3354. 0x33, 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69,
  3355. 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5b, 0x20, 0x03, 0x28, 0x03, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0d,
  3356. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2b, 0x0a,
  3357. 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32,
  3358. 0x18, 0x5c, 0x20, 0x03, 0x28, 0x0d, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61,
  3359. 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x75, 0x6e,
  3360. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5d, 0x20,
  3361. 0x03, 0x28, 0x04, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3362. 0x64, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63,
  3363. 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x5e, 0x20, 0x03, 0x28, 0x11,
  3364. 0x42, 0x02, 0x10, 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69,
  3365. 0x6e, 0x74, 0x33, 0x32, 0x12, 0x2b, 0x0a, 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3366. 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x5f, 0x20, 0x03, 0x28, 0x12, 0x42, 0x02, 0x10,
  3367. 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36,
  3368. 0x34, 0x12, 0x2d, 0x0a, 0x10, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69,
  3369. 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x60, 0x20, 0x03, 0x28, 0x07, 0x42, 0x02, 0x10, 0x00, 0x52,
  3370. 0x0f, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  3371. 0x12, 0x2d, 0x0a, 0x10, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78,
  3372. 0x65, 0x64, 0x36, 0x34, 0x18, 0x61, 0x20, 0x03, 0x28, 0x06, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0f,
  3373. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12,
  3374. 0x2f, 0x0a, 0x11, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78,
  3375. 0x65, 0x64, 0x33, 0x32, 0x18, 0x62, 0x20, 0x03, 0x28, 0x0f, 0x42, 0x02, 0x10, 0x00, 0x52, 0x10,
  3376. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  3377. 0x12, 0x2f, 0x0a, 0x11, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69,
  3378. 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x63, 0x20, 0x03, 0x28, 0x10, 0x42, 0x02, 0x10, 0x00, 0x52,
  3379. 0x10, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36,
  3380. 0x34, 0x12, 0x29, 0x0a, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x6c,
  3381. 0x6f, 0x61, 0x74, 0x18, 0x64, 0x20, 0x03, 0x28, 0x02, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0d, 0x75,
  3382. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x2b, 0x0a, 0x0f,
  3383. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18,
  3384. 0x65, 0x20, 0x03, 0x28, 0x01, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0e, 0x75, 0x6e, 0x70, 0x61, 0x63,
  3385. 0x6b, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x27, 0x0a, 0x0d, 0x75, 0x6e, 0x70,
  3386. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x66, 0x20, 0x03, 0x28, 0x08,
  3387. 0x42, 0x02, 0x10, 0x00, 0x52, 0x0c, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x42, 0x6f,
  3388. 0x6f, 0x6c, 0x12, 0x48, 0x0a, 0x0d, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x65,
  3389. 0x6e, 0x75, 0x6d, 0x18, 0x67, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3390. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46,
  3391. 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x42, 0x02, 0x10, 0x00, 0x52, 0x0c,
  3392. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x20, 0x0a, 0x14,
  3393. 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3394. 0x69, 0x6f, 0x6e, 0x73, 0x2a, 0x08, 0x08, 0x01, 0x10, 0x80, 0x80, 0x80, 0x80, 0x02, 0x22, 0x22,
  3395. 0x0a, 0x16, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78,
  3396. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2a, 0x08, 0x08, 0x01, 0x10, 0x80, 0x80, 0x80,
  3397. 0x80, 0x02, 0x22, 0x0c, 0x0a, 0x0a, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3398. 0x22, 0x0d, 0x0a, 0x0b, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2a,
  3399. 0x40, 0x0a, 0x0b, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x0f,
  3400. 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x46, 0x4f, 0x4f, 0x10, 0x04, 0x12,
  3401. 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x52, 0x10, 0x05,
  3402. 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x5a, 0x10,
  3403. 0x06, 0x2a, 0x47, 0x0a, 0x16, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65,
  3404. 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x11, 0x0a, 0x0d, 0x52,
  3405. 0x45, 0x53, 0x45, 0x52, 0x56, 0x45, 0x44, 0x5f, 0x45, 0x4e, 0x55, 0x4d, 0x10, 0x00, 0x22, 0x04,
  3406. 0x08, 0x02, 0x10, 0x02, 0x22, 0x04, 0x08, 0x0f, 0x10, 0x0f, 0x22, 0x04, 0x08, 0x09, 0x10, 0x0b,
  3407. 0x2a, 0x03, 0x42, 0x41, 0x52, 0x2a, 0x03, 0x42, 0x41, 0x5a, 0x32, 0xa8, 0x01, 0x0a, 0x0b, 0x54,
  3408. 0x65, 0x73, 0x74, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x46, 0x0a, 0x03, 0x46, 0x6f,
  3409. 0x6f, 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3410. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
  3411. 0x74, 0x1a, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3412. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
  3413. 0x73, 0x65, 0x12, 0x51, 0x0a, 0x0a, 0x54, 0x65, 0x73, 0x74, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d,
  3414. 0x12, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3415. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
  3416. 0x1a, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3417. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
  3418. 0x65, 0x28, 0x01, 0x30, 0x01, 0x32, 0x85, 0x01, 0x0a, 0x15, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65,
  3419. 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12,
  3420. 0x67, 0x0a, 0x0a, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x29, 0x2e,
  3421. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3422. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65,
  3423. 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x29, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3424. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3425. 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  3426. 0x61, 0x67, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x1a, 0x03, 0x88, 0x02, 0x01, 0x3a, 0x5f, 0x0a,
  3427. 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f,
  3428. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3429. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3430. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3431. 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  3432. 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f,
  3433. 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34,
  3434. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  3435. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3436. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3437. 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  3438. 0x6c, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3439. 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74,
  3440. 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3441. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3442. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3443. 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3444. 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3445. 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75,
  3446. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  3447. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3448. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  3449. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x6f, 0x70,
  3450. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65,
  3451. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  3452. 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3453. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3454. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  3455. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x11, 0x52,
  3456. 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45,
  3457. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69,
  3458. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3459. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3460. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3461. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06, 0x20, 0x01,
  3462. 0x28, 0x12, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74,
  3463. 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x6f,
  3464. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f,
  3465. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3466. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3467. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3468. 0x18, 0x07, 0x20, 0x01, 0x28, 0x07, 0x52, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  3469. 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3470. 0x3a, 0x63, 0x0a, 0x1a, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78,
  3471. 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  3472. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3473. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3474. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x06, 0x52, 0x18, 0x6f, 0x70, 0x74,
  3475. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65,
  3476. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  3477. 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3478. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3479. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3480. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28,
  3481. 0x0f, 0x52, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65,
  3482. 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b,
  3483. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36,
  3484. 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3485. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3486. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3487. 0x6e, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x10, 0x52, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3488. 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3489. 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  3490. 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  3491. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3492. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  3493. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x02, 0x52, 0x16, 0x6f, 0x70,
  3494. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3495. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  3496. 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3497. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3498. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3499. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x17,
  3500. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78,
  3501. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5d, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  3502. 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3503. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3504. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  3505. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52,
  3506. 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74,
  3507. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3508. 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3509. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3510. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3511. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09,
  3512. 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  3513. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74,
  3514. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3515. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3516. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3517. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0f, 0x20, 0x01,
  3518. 0x28, 0x0c, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x79, 0x74, 0x65,
  3519. 0x73, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x8b, 0x01, 0x0a, 0x17, 0x6f,
  3520. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74,
  3521. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3522. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3523. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x10, 0x20,
  3524. 0x01, 0x28, 0x0a, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3525. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  3526. 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3527. 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x45,
  3528. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0xa0, 0x01, 0x0a, 0x21, 0x6f, 0x70, 0x74,
  3529. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73,
  3530. 0x73, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  3531. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3532. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3533. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f,
  3534. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3535. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65,
  3536. 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x1e, 0x6f, 0x70, 0x74,
  3537. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61,
  3538. 0x67, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x97, 0x01, 0x0a, 0x1e,
  3539. 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f,
  3540. 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  3541. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3542. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3543. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f,
  3544. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3545. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65,
  3546. 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  3547. 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65,
  3548. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  3549. 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3550. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3551. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3552. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x1f, 0x20, 0x03, 0x28, 0x05, 0x52, 0x16,
  3553. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74,
  3554. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  3555. 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3556. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3557. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  3558. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x20, 0x20, 0x03, 0x28, 0x03, 0x52,
  3559. 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78,
  3560. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61,
  3561. 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3562. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3563. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3564. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x21, 0x20, 0x03, 0x28,
  3565. 0x0d, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33,
  3566. 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65,
  3567. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78,
  3568. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3569. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3570. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x22,
  3571. 0x20, 0x03, 0x28, 0x04, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69,
  3572. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a,
  3573. 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32,
  3574. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  3575. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3576. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3577. 0x73, 0x18, 0x23, 0x20, 0x03, 0x28, 0x11, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  3578. 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3579. 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e,
  3580. 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  3581. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3582. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3583. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x24, 0x20, 0x03, 0x28, 0x12, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65,
  3584. 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3585. 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  3586. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3587. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3588. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  3589. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x25, 0x20, 0x03, 0x28, 0x07, 0x52, 0x18,
  3590. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45,
  3591. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x72, 0x65, 0x70, 0x65,
  3592. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74,
  3593. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3594. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3595. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x26, 0x20,
  3596. 0x03, 0x28, 0x06, 0x52, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78,
  3597. 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a,
  3598. 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64,
  3599. 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3600. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3601. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3602. 0x6f, 0x6e, 0x73, 0x18, 0x27, 0x20, 0x03, 0x28, 0x0f, 0x52, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61,
  3603. 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3604. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  3605. 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3606. 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3607. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3608. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x28, 0x20, 0x03, 0x28, 0x10,
  3609. 0x52, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  3610. 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72,
  3611. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78,
  3612. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3613. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3614. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x29,
  3615. 0x20, 0x03, 0x28, 0x02, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6c,
  3616. 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19,
  3617. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f,
  3618. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3619. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3620. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3621. 0x18, 0x2a, 0x20, 0x03, 0x28, 0x01, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  3622. 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3623. 0x5d, 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c,
  3624. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  3625. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3626. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3627. 0x73, 0x18, 0x2b, 0x20, 0x03, 0x28, 0x08, 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  3628. 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61,
  3629. 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e,
  3630. 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3631. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3632. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3633. 0x6e, 0x73, 0x18, 0x2c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  3634. 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3635. 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79,
  3636. 0x74, 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  3637. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3638. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3639. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2d, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65,
  3640. 0x61, 0x74, 0x65, 0x64, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3641. 0x6f, 0x6e, 0x3a, 0x8b, 0x01, 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67,
  3642. 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  3643. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3644. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3645. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2e, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x2b, 0x2e, 0x67, 0x6f,
  3646. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3647. 0x2e, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65,
  3648. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  3649. 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3650. 0x3a, 0xa0, 0x01, 0x0a, 0x21, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65,
  3651. 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x78, 0x74,
  3652. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3653. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3654. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x30, 0x20,
  3655. 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3656. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3657. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  3658. 0x61, 0x67, 0x65, 0x52, 0x1e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73,
  3659. 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3660. 0x69, 0x6f, 0x6e, 0x3a, 0x97, 0x01, 0x0a, 0x1e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  3661. 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74,
  3662. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3663. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3664. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x33, 0x20,
  3665. 0x03, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3666. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  3667. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  3668. 0x52, 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,
  3669. 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a,
  3670. 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65,
  3671. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3672. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3673. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3674. 0x51, 0x20, 0x01, 0x28, 0x05, 0x3a, 0x02, 0x38, 0x31, 0x52, 0x15, 0x64, 0x65, 0x66, 0x61, 0x75,
  3675. 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3676. 0x3a, 0x61, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x36,
  3677. 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f,
  3678. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3679. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3680. 0x6e, 0x73, 0x18, 0x52, 0x20, 0x01, 0x28, 0x03, 0x3a, 0x02, 0x38, 0x32, 0x52, 0x15, 0x64, 0x65,
  3681. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3682. 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75,
  3683. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  3684. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3685. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  3686. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x53, 0x20, 0x01, 0x28, 0x0d, 0x3a, 0x02, 0x38, 0x33,
  3687. 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45,
  3688. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61,
  3689. 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3690. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3691. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3692. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x54, 0x20, 0x01, 0x28,
  3693. 0x04, 0x3a, 0x02, 0x38, 0x34, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69,
  3694. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a,
  3695. 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f,
  3696. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  3697. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  3698. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3699. 0x18, 0x55, 0x20, 0x01, 0x28, 0x11, 0x3a, 0x03, 0x2d, 0x38, 0x35, 0x52, 0x16, 0x64, 0x65, 0x66,
  3700. 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3701. 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73,
  3702. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  3703. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3704. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  3705. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x56, 0x20, 0x01, 0x28, 0x12, 0x3a, 0x02, 0x38, 0x36,
  3706. 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45,
  3707. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x19, 0x64, 0x65, 0x66, 0x61,
  3708. 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3709. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3710. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3711. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x57, 0x20, 0x01,
  3712. 0x28, 0x07, 0x3a, 0x02, 0x38, 0x37, 0x52, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46,
  3713. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3714. 0x65, 0x0a, 0x19, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64,
  3715. 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3716. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3717. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3718. 0x6f, 0x6e, 0x73, 0x18, 0x58, 0x20, 0x01, 0x28, 0x06, 0x3a, 0x02, 0x38, 0x38, 0x52, 0x17, 0x64,
  3719. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74,
  3720. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x67, 0x0a, 0x1a, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3721. 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3722. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3723. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3724. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x59, 0x20, 0x01, 0x28,
  3725. 0x0f, 0x3a, 0x02, 0x38, 0x39, 0x52, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66,
  3726. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3727. 0x68, 0x0a, 0x1a, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65,
  3728. 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  3729. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3730. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3731. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x50, 0x20, 0x01, 0x28, 0x10, 0x3a, 0x03, 0x2d, 0x39, 0x30, 0x52,
  3732. 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  3733. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x17, 0x64, 0x65, 0x66,
  3734. 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3735. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3736. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  3737. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5b, 0x20, 0x01, 0x28,
  3738. 0x02, 0x3a, 0x04, 0x39, 0x31, 0x2e, 0x35, 0x52, 0x15, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  3739. 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x66,
  3740. 0x0a, 0x18, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65,
  3741. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  3742. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3743. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3744. 0x73, 0x18, 0x5c, 0x20, 0x01, 0x28, 0x01, 0x3a, 0x05, 0x39, 0x32, 0x30, 0x30, 0x30, 0x52, 0x16,
  3745. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74,
  3746. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  3747. 0x74, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3748. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3749. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  3750. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5d, 0x20, 0x01, 0x28, 0x08, 0x3a, 0x04, 0x74,
  3751. 0x72, 0x75, 0x65, 0x52, 0x14, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42, 0x6f, 0x6f, 0x6c,
  3752. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x66, 0x0a, 0x18, 0x64, 0x65, 0x66,
  3753. 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3754. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3755. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  3756. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5e, 0x20, 0x01,
  3757. 0x28, 0x09, 0x3a, 0x05, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x16, 0x64, 0x65, 0x66, 0x61, 0x75,
  3758. 0x6c, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3759. 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x79, 0x74,
  3760. 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  3761. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3762. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3763. 0x6f, 0x6e, 0x73, 0x18, 0x5f, 0x20, 0x01, 0x28, 0x0c, 0x3a, 0x05, 0x77, 0x6f, 0x72, 0x6c, 0x64,
  3764. 0x52, 0x15, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x78,
  3765. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x62, 0x0a, 0x16, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3766. 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3767. 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3768. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65,
  3769. 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5a, 0x20, 0x03, 0x28,
  3770. 0x05, 0x42, 0x02, 0x10, 0x01, 0x52, 0x14, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74,
  3771. 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x62, 0x0a, 0x16, 0x70,
  3772. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3773. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3774. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50,
  3775. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3776. 0x5b, 0x20, 0x03, 0x28, 0x03, 0x42, 0x02, 0x10, 0x01, 0x52, 0x14, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3777. 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3778. 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32,
  3779. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70,
  3780. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3781. 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3782. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5c, 0x20, 0x03, 0x28, 0x0d, 0x42, 0x02, 0x10, 0x01, 0x52, 0x15,
  3783. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65,
  3784. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f,
  3785. 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3786. 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3787. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3788. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5d, 0x20, 0x03, 0x28, 0x04,
  3789. 0x42, 0x02, 0x10, 0x01, 0x52, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74,
  3790. 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x70,
  3791. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74,
  3792. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3793. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  3794. 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3795. 0x18, 0x5e, 0x20, 0x03, 0x28, 0x11, 0x42, 0x02, 0x10, 0x01, 0x52, 0x15, 0x70, 0x61, 0x63, 0x6b,
  3796. 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3797. 0x6e, 0x3a, 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74,
  3798. 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67,
  3799. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3800. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65,
  3801. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5f, 0x20, 0x03, 0x28, 0x12, 0x42, 0x02, 0x10, 0x01,
  3802. 0x52, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78,
  3803. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x66, 0x0a, 0x18, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3804. 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3805. 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  3806. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63,
  3807. 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x60, 0x20,
  3808. 0x03, 0x28, 0x07, 0x42, 0x02, 0x10, 0x01, 0x52, 0x16, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46,
  3809. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3810. 0x66, 0x0a, 0x18, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36,
  3811. 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f,
  3812. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3813. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e,
  3814. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x61, 0x20, 0x03, 0x28, 0x06, 0x42, 0x02, 0x10, 0x01, 0x52,
  3815. 0x16, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78,
  3816. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x19, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3817. 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3818. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3819. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61,
  3820. 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x62,
  3821. 0x20, 0x03, 0x28, 0x0f, 0x42, 0x02, 0x10, 0x01, 0x52, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3822. 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3823. 0x6e, 0x3a, 0x68, 0x0a, 0x19, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78,
  3824. 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28,
  3825. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3826. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78,
  3827. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x63, 0x20, 0x03, 0x28, 0x10, 0x42, 0x02,
  3828. 0x10, 0x01, 0x52, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  3829. 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x62, 0x0a, 0x16, 0x70,
  3830. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3831. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3832. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50,
  3833. 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  3834. 0x64, 0x20, 0x03, 0x28, 0x02, 0x42, 0x02, 0x10, 0x01, 0x52, 0x14, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3835. 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3836. 0x64, 0x0a, 0x17, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65,
  3837. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70,
  3838. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3839. 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3840. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x65, 0x20, 0x03, 0x28, 0x01, 0x42, 0x02, 0x10, 0x01, 0x52, 0x15,
  3841. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65,
  3842. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x60, 0x0a, 0x15, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f,
  3843. 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x28,
  3844. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  3845. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78,
  3846. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x66, 0x20, 0x03, 0x28, 0x08, 0x42, 0x02,
  3847. 0x10, 0x01, 0x52, 0x13, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78,
  3848. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x81, 0x01, 0x0a, 0x15, 0x70, 0x61, 0x63, 0x6b,
  3849. 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3850. 0x6e, 0x12, 0x28, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3851. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x50, 0x61, 0x63, 0x6b, 0x65,
  3852. 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x67, 0x20, 0x03, 0x28,
  3853. 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3854. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e,
  3855. 0x75, 0x6d, 0x42, 0x02, 0x10, 0x01, 0x52, 0x13, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x6e,
  3856. 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x18, 0x75,
  3857. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78,
  3858. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3859. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3860. 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3861. 0x6f, 0x6e, 0x73, 0x18, 0x5a, 0x20, 0x03, 0x28, 0x05, 0x42, 0x02, 0x10, 0x00, 0x52, 0x16, 0x75,
  3862. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65,
  3863. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x18, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3864. 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3865. 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  3866. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63,
  3867. 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5b, 0x20,
  3868. 0x03, 0x28, 0x03, 0x42, 0x02, 0x10, 0x00, 0x52, 0x16, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3869. 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3870. 0x6a, 0x0a, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74,
  3871. 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67,
  3872. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3873. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78,
  3874. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5c, 0x20, 0x03, 0x28, 0x0d, 0x42, 0x02,
  3875. 0x10, 0x00, 0x52, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74,
  3876. 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6a, 0x0a, 0x19, 0x75,
  3877. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65,
  3878. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  3879. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  3880. 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3881. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5d, 0x20, 0x03, 0x28, 0x04, 0x42, 0x02, 0x10, 0x00, 0x52, 0x17,
  3882. 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78,
  3883. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6a, 0x0a, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63,
  3884. 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  3885. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  3886. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e,
  3887. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  3888. 0x18, 0x5e, 0x20, 0x03, 0x28, 0x11, 0x42, 0x02, 0x10, 0x00, 0x52, 0x17, 0x75, 0x6e, 0x70, 0x61,
  3889. 0x63, 0x6b, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3890. 0x69, 0x6f, 0x6e, 0x3a, 0x6a, 0x0a, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f,
  3891. 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3892. 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  3893. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3894. 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x5f, 0x20, 0x03,
  3895. 0x28, 0x12, 0x42, 0x02, 0x10, 0x00, 0x52, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64,
  3896. 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  3897. 0x6c, 0x0a, 0x1a, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65,
  3898. 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e,
  3899. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  3900. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45,
  3901. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x60, 0x20, 0x03, 0x28, 0x07, 0x42,
  3902. 0x02, 0x10, 0x00, 0x52, 0x18, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78,
  3903. 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6c, 0x0a,
  3904. 0x1a, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36,
  3905. 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f,
  3906. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  3907. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74,
  3908. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x61, 0x20, 0x03, 0x28, 0x06, 0x42, 0x02, 0x10,
  3909. 0x00, 0x52, 0x18, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64,
  3910. 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6e, 0x0a, 0x1b, 0x75,
  3911. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  3912. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70,
  3913. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3914. 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65,
  3915. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x62, 0x20, 0x03, 0x28, 0x0f, 0x42, 0x02, 0x10, 0x00,
  3916. 0x52, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  3917. 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6e, 0x0a, 0x1b, 0x75,
  3918. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  3919. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70,
  3920. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  3921. 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65,
  3922. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x63, 0x20, 0x03, 0x28, 0x10, 0x42, 0x02, 0x10, 0x00,
  3923. 0x52, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  3924. 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x68, 0x0a, 0x18, 0x75,
  3925. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78,
  3926. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3927. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  3928. 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3929. 0x6f, 0x6e, 0x73, 0x18, 0x64, 0x20, 0x03, 0x28, 0x02, 0x42, 0x02, 0x10, 0x00, 0x52, 0x16, 0x75,
  3930. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65,
  3931. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x6a, 0x0a, 0x19, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65,
  3932. 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  3933. 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  3934. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61,
  3935. 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x65,
  3936. 0x20, 0x03, 0x28, 0x01, 0x42, 0x02, 0x10, 0x00, 0x52, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b,
  3937. 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  3938. 0x6e, 0x3a, 0x66, 0x0a, 0x17, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x62, 0x6f,
  3939. 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67,
  3940. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  3941. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78,
  3942. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x66, 0x20, 0x03, 0x28, 0x08, 0x42, 0x02,
  3943. 0x10, 0x00, 0x52, 0x15, 0x75, 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c,
  3944. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x87, 0x01, 0x0a, 0x17, 0x75, 0x6e,
  3945. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65,
  3946. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2a, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  3947. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x55,
  3948. 0x6e, 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  3949. 0x73, 0x18, 0x67, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  3950. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72,
  3951. 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x42, 0x02, 0x10, 0x00, 0x52, 0x15, 0x75, 0x6e,
  3952. 0x70, 0x61, 0x63, 0x6b, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  3953. 0x69, 0x6f, 0x6e, 0x42, 0x35, 0x5a, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f,
  3954. 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
  3955. 0x66, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x70,
  3956. 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x50, 0x01, 0x58, 0x02,
  3957. }
  3958. var (
  3959. file_test_test_proto_rawDescOnce sync.Once
  3960. file_test_test_proto_rawDescData = file_test_test_proto_rawDesc
  3961. )
  3962. func file_test_test_proto_rawDescGZIP() []byte {
  3963. file_test_test_proto_rawDescOnce.Do(func() {
  3964. file_test_test_proto_rawDescData = protoimpl.X.CompressGZIP(file_test_test_proto_rawDescData)
  3965. })
  3966. return file_test_test_proto_rawDescData
  3967. }
  3968. var file_test_test_proto_enumTypes = make([]prototype.Enum, 4)
  3969. var file_test_test_proto_msgTypes = make([]protoimpl.MessageInfo, 41)
  3970. var file_test_test_proto_goTypes = []interface{}{
  3971. (ForeignEnum)(0), // 0: goproto.proto.test.ForeignEnum
  3972. (TestReservedEnumFields)(0), // 1: goproto.proto.test.TestReservedEnumFields
  3973. (TestAllTypes_NestedEnum)(0), // 2: goproto.proto.test.TestAllTypes.NestedEnum
  3974. (TestDeprecatedMessage_DeprecatedEnum)(0), // 3: goproto.proto.test.TestDeprecatedMessage.DeprecatedEnum
  3975. (*TestAllTypes)(nil), // 4: goproto.proto.test.TestAllTypes
  3976. (*TestDeprecatedMessage)(nil), // 5: goproto.proto.test.TestDeprecatedMessage
  3977. (*ForeignMessage)(nil), // 6: goproto.proto.test.ForeignMessage
  3978. (*TestReservedFields)(nil), // 7: goproto.proto.test.TestReservedFields
  3979. (*TestAllExtensions)(nil), // 8: goproto.proto.test.TestAllExtensions
  3980. (*OptionalGroupExtension)(nil), // 9: goproto.proto.test.OptionalGroup_extension
  3981. (*RepeatedGroupExtension)(nil), // 10: goproto.proto.test.RepeatedGroup_extension
  3982. (*TestNestedExtension)(nil), // 11: goproto.proto.test.TestNestedExtension
  3983. (*TestRequired)(nil), // 12: goproto.proto.test.TestRequired
  3984. (*TestRequiredForeign)(nil), // 13: goproto.proto.test.TestRequiredForeign
  3985. (*TestRequiredGroupFields)(nil), // 14: goproto.proto.test.TestRequiredGroupFields
  3986. (*TestWeak)(nil), // 15: goproto.proto.test.TestWeak
  3987. (*TestPackedTypes)(nil), // 16: goproto.proto.test.TestPackedTypes
  3988. (*TestUnpackedTypes)(nil), // 17: goproto.proto.test.TestUnpackedTypes
  3989. (*TestPackedExtensions)(nil), // 18: goproto.proto.test.TestPackedExtensions
  3990. (*TestUnpackedExtensions)(nil), // 19: goproto.proto.test.TestUnpackedExtensions
  3991. (*FooRequest)(nil), // 20: goproto.proto.test.FooRequest
  3992. (*FooResponse)(nil), // 21: goproto.proto.test.FooResponse
  3993. (*TestAllTypes_NestedMessage)(nil), // 22: goproto.proto.test.TestAllTypes.NestedMessage
  3994. (*TestAllTypes_OptionalGroup)(nil), // 23: goproto.proto.test.TestAllTypes.OptionalGroup
  3995. (*TestAllTypes_RepeatedGroup)(nil), // 24: goproto.proto.test.TestAllTypes.RepeatedGroup
  3996. nil, // 25: goproto.proto.test.TestAllTypes.MapInt32Int32Entry
  3997. nil, // 26: goproto.proto.test.TestAllTypes.MapInt64Int64Entry
  3998. nil, // 27: goproto.proto.test.TestAllTypes.MapUint32Uint32Entry
  3999. nil, // 28: goproto.proto.test.TestAllTypes.MapUint64Uint64Entry
  4000. nil, // 29: goproto.proto.test.TestAllTypes.MapSint32Sint32Entry
  4001. nil, // 30: goproto.proto.test.TestAllTypes.MapSint64Sint64Entry
  4002. nil, // 31: goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry
  4003. nil, // 32: goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry
  4004. nil, // 33: goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry
  4005. nil, // 34: goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry
  4006. nil, // 35: goproto.proto.test.TestAllTypes.MapInt32FloatEntry
  4007. nil, // 36: goproto.proto.test.TestAllTypes.MapInt32DoubleEntry
  4008. nil, // 37: goproto.proto.test.TestAllTypes.MapBoolBoolEntry
  4009. nil, // 38: goproto.proto.test.TestAllTypes.MapStringStringEntry
  4010. nil, // 39: goproto.proto.test.TestAllTypes.MapStringBytesEntry
  4011. nil, // 40: goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry
  4012. nil, // 41: goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry
  4013. nil, // 42: goproto.proto.test.TestRequiredForeign.MapMessageEntry
  4014. (*TestRequiredGroupFields_OptionalGroup)(nil), // 43: goproto.proto.test.TestRequiredGroupFields.OptionalGroup
  4015. (*TestRequiredGroupFields_RepeatedGroup)(nil), // 44: goproto.proto.test.TestRequiredGroupFields.RepeatedGroup
  4016. (*ImportMessage)(nil), // 45: goproto.proto.test.ImportMessage
  4017. (ImportEnum)(0), // 46: goproto.proto.test.ImportEnum
  4018. }
  4019. var file_test_test_proto_depIdxs = []int32{
  4020. 23, // goproto.proto.test.TestAllTypes.optionalgroup:type_name -> goproto.proto.test.TestAllTypes.OptionalGroup
  4021. 22, // goproto.proto.test.TestAllTypes.optional_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4022. 6, // goproto.proto.test.TestAllTypes.optional_foreign_message:type_name -> goproto.proto.test.ForeignMessage
  4023. 45, // goproto.proto.test.TestAllTypes.optional_import_message:type_name -> goproto.proto.test.ImportMessage
  4024. 2, // goproto.proto.test.TestAllTypes.optional_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4025. 0, // goproto.proto.test.TestAllTypes.optional_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  4026. 46, // goproto.proto.test.TestAllTypes.optional_import_enum:type_name -> goproto.proto.test.ImportEnum
  4027. 24, // goproto.proto.test.TestAllTypes.repeatedgroup:type_name -> goproto.proto.test.TestAllTypes.RepeatedGroup
  4028. 22, // goproto.proto.test.TestAllTypes.repeated_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4029. 6, // goproto.proto.test.TestAllTypes.repeated_foreign_message:type_name -> goproto.proto.test.ForeignMessage
  4030. 45, // goproto.proto.test.TestAllTypes.repeated_importmessage:type_name -> goproto.proto.test.ImportMessage
  4031. 2, // goproto.proto.test.TestAllTypes.repeated_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4032. 0, // goproto.proto.test.TestAllTypes.repeated_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  4033. 46, // goproto.proto.test.TestAllTypes.repeated_importenum:type_name -> goproto.proto.test.ImportEnum
  4034. 25, // goproto.proto.test.TestAllTypes.map_int32_int32:type_name -> goproto.proto.test.TestAllTypes.MapInt32Int32Entry
  4035. 26, // goproto.proto.test.TestAllTypes.map_int64_int64:type_name -> goproto.proto.test.TestAllTypes.MapInt64Int64Entry
  4036. 27, // goproto.proto.test.TestAllTypes.map_uint32_uint32:type_name -> goproto.proto.test.TestAllTypes.MapUint32Uint32Entry
  4037. 28, // goproto.proto.test.TestAllTypes.map_uint64_uint64:type_name -> goproto.proto.test.TestAllTypes.MapUint64Uint64Entry
  4038. 29, // goproto.proto.test.TestAllTypes.map_sint32_sint32:type_name -> goproto.proto.test.TestAllTypes.MapSint32Sint32Entry
  4039. 30, // goproto.proto.test.TestAllTypes.map_sint64_sint64:type_name -> goproto.proto.test.TestAllTypes.MapSint64Sint64Entry
  4040. 31, // goproto.proto.test.TestAllTypes.map_fixed32_fixed32:type_name -> goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry
  4041. 32, // goproto.proto.test.TestAllTypes.map_fixed64_fixed64:type_name -> goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry
  4042. 33, // goproto.proto.test.TestAllTypes.map_sfixed32_sfixed32:type_name -> goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry
  4043. 34, // goproto.proto.test.TestAllTypes.map_sfixed64_sfixed64:type_name -> goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry
  4044. 35, // goproto.proto.test.TestAllTypes.map_int32_float:type_name -> goproto.proto.test.TestAllTypes.MapInt32FloatEntry
  4045. 36, // goproto.proto.test.TestAllTypes.map_int32_double:type_name -> goproto.proto.test.TestAllTypes.MapInt32DoubleEntry
  4046. 37, // goproto.proto.test.TestAllTypes.map_bool_bool:type_name -> goproto.proto.test.TestAllTypes.MapBoolBoolEntry
  4047. 38, // goproto.proto.test.TestAllTypes.map_string_string:type_name -> goproto.proto.test.TestAllTypes.MapStringStringEntry
  4048. 39, // goproto.proto.test.TestAllTypes.map_string_bytes:type_name -> goproto.proto.test.TestAllTypes.MapStringBytesEntry
  4049. 40, // goproto.proto.test.TestAllTypes.map_string_nested_message:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry
  4050. 41, // goproto.proto.test.TestAllTypes.map_string_nested_enum:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry
  4051. 2, // goproto.proto.test.TestAllTypes.default_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4052. 0, // goproto.proto.test.TestAllTypes.default_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  4053. 22, // goproto.proto.test.TestAllTypes.oneof_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4054. 2, // goproto.proto.test.TestAllTypes.oneof_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4055. 12, // goproto.proto.test.TestRequiredForeign.optional_message:type_name -> goproto.proto.test.TestRequired
  4056. 12, // goproto.proto.test.TestRequiredForeign.repeated_message:type_name -> goproto.proto.test.TestRequired
  4057. 42, // goproto.proto.test.TestRequiredForeign.map_message:type_name -> goproto.proto.test.TestRequiredForeign.MapMessageEntry
  4058. 12, // goproto.proto.test.TestRequiredForeign.oneof_message:type_name -> goproto.proto.test.TestRequired
  4059. 43, // goproto.proto.test.TestRequiredGroupFields.optionalgroup:type_name -> goproto.proto.test.TestRequiredGroupFields.OptionalGroup
  4060. 44, // goproto.proto.test.TestRequiredGroupFields.repeatedgroup:type_name -> goproto.proto.test.TestRequiredGroupFields.RepeatedGroup
  4061. 0, // goproto.proto.test.TestPackedTypes.packed_enum:type_name -> goproto.proto.test.ForeignEnum
  4062. 0, // goproto.proto.test.TestUnpackedTypes.unpacked_enum:type_name -> goproto.proto.test.ForeignEnum
  4063. 4, // goproto.proto.test.TestAllTypes.NestedMessage.corecursive:type_name -> goproto.proto.test.TestAllTypes
  4064. 22, // goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4065. 2, // goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4066. 12, // goproto.proto.test.TestRequiredForeign.MapMessageEntry.value:type_name -> goproto.proto.test.TestRequired
  4067. 8, // goproto.proto.test.optional_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4068. 8, // goproto.proto.test.optional_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4069. 8, // goproto.proto.test.optional_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4070. 8, // goproto.proto.test.optional_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4071. 8, // goproto.proto.test.optional_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4072. 8, // goproto.proto.test.optional_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4073. 8, // goproto.proto.test.optional_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4074. 8, // goproto.proto.test.optional_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4075. 8, // goproto.proto.test.optional_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4076. 8, // goproto.proto.test.optional_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4077. 8, // goproto.proto.test.optional_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  4078. 8, // goproto.proto.test.optional_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  4079. 8, // goproto.proto.test.optional_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  4080. 8, // goproto.proto.test.optional_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4081. 8, // goproto.proto.test.optional_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  4082. 8, // goproto.proto.test.optionalgroup_extension:extendee -> goproto.proto.test.TestAllExtensions
  4083. 8, // goproto.proto.test.optional_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions
  4084. 8, // goproto.proto.test.optional_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions
  4085. 8, // goproto.proto.test.repeated_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4086. 8, // goproto.proto.test.repeated_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4087. 8, // goproto.proto.test.repeated_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4088. 8, // goproto.proto.test.repeated_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4089. 8, // goproto.proto.test.repeated_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4090. 8, // goproto.proto.test.repeated_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4091. 8, // goproto.proto.test.repeated_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4092. 8, // goproto.proto.test.repeated_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4093. 8, // goproto.proto.test.repeated_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4094. 8, // goproto.proto.test.repeated_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4095. 8, // goproto.proto.test.repeated_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  4096. 8, // goproto.proto.test.repeated_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  4097. 8, // goproto.proto.test.repeated_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  4098. 8, // goproto.proto.test.repeated_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4099. 8, // goproto.proto.test.repeated_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  4100. 8, // goproto.proto.test.repeatedgroup_extension:extendee -> goproto.proto.test.TestAllExtensions
  4101. 8, // goproto.proto.test.repeated_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions
  4102. 8, // goproto.proto.test.repeated_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions
  4103. 8, // goproto.proto.test.default_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4104. 8, // goproto.proto.test.default_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4105. 8, // goproto.proto.test.default_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4106. 8, // goproto.proto.test.default_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4107. 8, // goproto.proto.test.default_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4108. 8, // goproto.proto.test.default_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4109. 8, // goproto.proto.test.default_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4110. 8, // goproto.proto.test.default_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4111. 8, // goproto.proto.test.default_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  4112. 8, // goproto.proto.test.default_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  4113. 8, // goproto.proto.test.default_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  4114. 8, // goproto.proto.test.default_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  4115. 8, // goproto.proto.test.default_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  4116. 8, // goproto.proto.test.default_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4117. 8, // goproto.proto.test.default_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  4118. 18, // goproto.proto.test.packed_int32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4119. 18, // goproto.proto.test.packed_int64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4120. 18, // goproto.proto.test.packed_uint32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4121. 18, // goproto.proto.test.packed_uint64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4122. 18, // goproto.proto.test.packed_sint32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4123. 18, // goproto.proto.test.packed_sint64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4124. 18, // goproto.proto.test.packed_fixed32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4125. 18, // goproto.proto.test.packed_fixed64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4126. 18, // goproto.proto.test.packed_sfixed32_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4127. 18, // goproto.proto.test.packed_sfixed64_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4128. 18, // goproto.proto.test.packed_float_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4129. 18, // goproto.proto.test.packed_double_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4130. 18, // goproto.proto.test.packed_bool_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4131. 18, // goproto.proto.test.packed_enum_extension:extendee -> goproto.proto.test.TestPackedExtensions
  4132. 19, // goproto.proto.test.unpacked_int32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4133. 19, // goproto.proto.test.unpacked_int64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4134. 19, // goproto.proto.test.unpacked_uint32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4135. 19, // goproto.proto.test.unpacked_uint64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4136. 19, // goproto.proto.test.unpacked_sint32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4137. 19, // goproto.proto.test.unpacked_sint64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4138. 19, // goproto.proto.test.unpacked_fixed32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4139. 19, // goproto.proto.test.unpacked_fixed64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4140. 19, // goproto.proto.test.unpacked_sfixed32_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4141. 19, // goproto.proto.test.unpacked_sfixed64_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4142. 19, // goproto.proto.test.unpacked_float_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4143. 19, // goproto.proto.test.unpacked_double_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4144. 19, // goproto.proto.test.unpacked_bool_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4145. 19, // goproto.proto.test.unpacked_enum_extension:extendee -> goproto.proto.test.TestUnpackedExtensions
  4146. 8, // goproto.proto.test.TestNestedExtension.nested_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  4147. 8, // goproto.proto.test.TestRequired.single:extendee -> goproto.proto.test.TestAllExtensions
  4148. 8, // goproto.proto.test.TestRequired.multi:extendee -> goproto.proto.test.TestAllExtensions
  4149. 9, // goproto.proto.test.optionalgroup_extension:type_name -> goproto.proto.test.OptionalGroup_extension
  4150. 22, // goproto.proto.test.optional_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4151. 2, // goproto.proto.test.optional_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4152. 10, // goproto.proto.test.repeatedgroup_extension:type_name -> goproto.proto.test.RepeatedGroup_extension
  4153. 22, // goproto.proto.test.repeated_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  4154. 2, // goproto.proto.test.repeated_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  4155. 0, // goproto.proto.test.packed_enum_extension:type_name -> goproto.proto.test.ForeignEnum
  4156. 0, // goproto.proto.test.unpacked_enum_extension:type_name -> goproto.proto.test.ForeignEnum
  4157. 12, // goproto.proto.test.TestRequired.single:type_name -> goproto.proto.test.TestRequired
  4158. 12, // goproto.proto.test.TestRequired.multi:type_name -> goproto.proto.test.TestRequired
  4159. 20, // goproto.proto.test.TestService.Foo:input_type -> goproto.proto.test.FooRequest
  4160. 20, // goproto.proto.test.TestService.TestStream:input_type -> goproto.proto.test.FooRequest
  4161. 5, // goproto.proto.test.TestDeprecatedService.Deprecated:input_type -> goproto.proto.test.TestDeprecatedMessage
  4162. 21, // goproto.proto.test.TestService.Foo:output_type -> goproto.proto.test.FooResponse
  4163. 21, // goproto.proto.test.TestService.TestStream:output_type -> goproto.proto.test.FooResponse
  4164. 5, // goproto.proto.test.TestDeprecatedService.Deprecated:output_type -> goproto.proto.test.TestDeprecatedMessage
  4165. 142, // starting offset of method output_type sub-list
  4166. 139, // starting offset of method input_type sub-list
  4167. 129, // starting offset of extension type_name sub-list
  4168. 47, // starting offset of extension extendee sub-list
  4169. 0, // starting offset of field type_name sub-list
  4170. }
  4171. func init() { file_test_test_proto_init() }
  4172. func file_test_test_proto_init() {
  4173. if File_test_test_proto != nil {
  4174. return
  4175. }
  4176. file_test_test_import_proto_init()
  4177. file_test_test_public_proto_init()
  4178. if !protoimpl.UnsafeEnabled {
  4179. file_test_test_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
  4180. switch v := v.(*TestAllTypes); i {
  4181. case 0:
  4182. return &v.state
  4183. case 80:
  4184. return &v.sizeCache
  4185. case 81:
  4186. return &v.unknownFields
  4187. default:
  4188. return nil
  4189. }
  4190. }
  4191. file_test_test_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
  4192. switch v := v.(*TestDeprecatedMessage); i {
  4193. case 0:
  4194. return &v.state
  4195. case 3:
  4196. return &v.sizeCache
  4197. case 4:
  4198. return &v.unknownFields
  4199. default:
  4200. return nil
  4201. }
  4202. }
  4203. file_test_test_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
  4204. switch v := v.(*ForeignMessage); i {
  4205. case 0:
  4206. return &v.state
  4207. case 3:
  4208. return &v.sizeCache
  4209. case 4:
  4210. return &v.unknownFields
  4211. default:
  4212. return nil
  4213. }
  4214. }
  4215. file_test_test_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
  4216. switch v := v.(*TestReservedFields); i {
  4217. case 0:
  4218. return &v.state
  4219. case 1:
  4220. return &v.sizeCache
  4221. case 2:
  4222. return &v.unknownFields
  4223. default:
  4224. return nil
  4225. }
  4226. }
  4227. file_test_test_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
  4228. switch v := v.(*TestAllExtensions); i {
  4229. case 0:
  4230. return &v.state
  4231. case 1:
  4232. return &v.sizeCache
  4233. case 2:
  4234. return &v.unknownFields
  4235. case 3:
  4236. return &v.extensionFields
  4237. default:
  4238. return nil
  4239. }
  4240. }
  4241. file_test_test_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
  4242. switch v := v.(*OptionalGroupExtension); i {
  4243. case 0:
  4244. return &v.state
  4245. case 2:
  4246. return &v.sizeCache
  4247. case 3:
  4248. return &v.unknownFields
  4249. default:
  4250. return nil
  4251. }
  4252. }
  4253. file_test_test_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
  4254. switch v := v.(*RepeatedGroupExtension); i {
  4255. case 0:
  4256. return &v.state
  4257. case 2:
  4258. return &v.sizeCache
  4259. case 3:
  4260. return &v.unknownFields
  4261. default:
  4262. return nil
  4263. }
  4264. }
  4265. file_test_test_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
  4266. switch v := v.(*TestNestedExtension); i {
  4267. case 0:
  4268. return &v.state
  4269. case 1:
  4270. return &v.sizeCache
  4271. case 2:
  4272. return &v.unknownFields
  4273. default:
  4274. return nil
  4275. }
  4276. }
  4277. file_test_test_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
  4278. switch v := v.(*TestRequired); i {
  4279. case 0:
  4280. return &v.state
  4281. case 2:
  4282. return &v.sizeCache
  4283. case 3:
  4284. return &v.unknownFields
  4285. default:
  4286. return nil
  4287. }
  4288. }
  4289. file_test_test_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
  4290. switch v := v.(*TestRequiredForeign); i {
  4291. case 0:
  4292. return &v.state
  4293. case 5:
  4294. return &v.sizeCache
  4295. case 6:
  4296. return &v.unknownFields
  4297. default:
  4298. return nil
  4299. }
  4300. }
  4301. file_test_test_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
  4302. switch v := v.(*TestRequiredGroupFields); i {
  4303. case 0:
  4304. return &v.state
  4305. case 3:
  4306. return &v.sizeCache
  4307. case 4:
  4308. return &v.unknownFields
  4309. default:
  4310. return nil
  4311. }
  4312. }
  4313. file_test_test_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
  4314. switch v := v.(*TestWeak); i {
  4315. case 0:
  4316. return &v.state
  4317. case 2:
  4318. return &v.sizeCache
  4319. case 3:
  4320. return &v.unknownFields
  4321. default:
  4322. return nil
  4323. }
  4324. }
  4325. file_test_test_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
  4326. switch v := v.(*TestPackedTypes); i {
  4327. case 0:
  4328. return &v.state
  4329. case 15:
  4330. return &v.sizeCache
  4331. case 16:
  4332. return &v.unknownFields
  4333. default:
  4334. return nil
  4335. }
  4336. }
  4337. file_test_test_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
  4338. switch v := v.(*TestUnpackedTypes); i {
  4339. case 0:
  4340. return &v.state
  4341. case 15:
  4342. return &v.sizeCache
  4343. case 16:
  4344. return &v.unknownFields
  4345. default:
  4346. return nil
  4347. }
  4348. }
  4349. file_test_test_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
  4350. switch v := v.(*TestPackedExtensions); i {
  4351. case 0:
  4352. return &v.state
  4353. case 1:
  4354. return &v.sizeCache
  4355. case 2:
  4356. return &v.unknownFields
  4357. case 3:
  4358. return &v.extensionFields
  4359. default:
  4360. return nil
  4361. }
  4362. }
  4363. file_test_test_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
  4364. switch v := v.(*TestUnpackedExtensions); i {
  4365. case 0:
  4366. return &v.state
  4367. case 1:
  4368. return &v.sizeCache
  4369. case 2:
  4370. return &v.unknownFields
  4371. case 3:
  4372. return &v.extensionFields
  4373. default:
  4374. return nil
  4375. }
  4376. }
  4377. file_test_test_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
  4378. switch v := v.(*FooRequest); i {
  4379. case 0:
  4380. return &v.state
  4381. case 1:
  4382. return &v.sizeCache
  4383. case 2:
  4384. return &v.unknownFields
  4385. default:
  4386. return nil
  4387. }
  4388. }
  4389. file_test_test_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
  4390. switch v := v.(*FooResponse); i {
  4391. case 0:
  4392. return &v.state
  4393. case 1:
  4394. return &v.sizeCache
  4395. case 2:
  4396. return &v.unknownFields
  4397. default:
  4398. return nil
  4399. }
  4400. }
  4401. file_test_test_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
  4402. switch v := v.(*TestAllTypes_NestedMessage); i {
  4403. case 0:
  4404. return &v.state
  4405. case 3:
  4406. return &v.sizeCache
  4407. case 4:
  4408. return &v.unknownFields
  4409. default:
  4410. return nil
  4411. }
  4412. }
  4413. file_test_test_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
  4414. switch v := v.(*TestAllTypes_OptionalGroup); i {
  4415. case 0:
  4416. return &v.state
  4417. case 2:
  4418. return &v.sizeCache
  4419. case 3:
  4420. return &v.unknownFields
  4421. default:
  4422. return nil
  4423. }
  4424. }
  4425. file_test_test_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
  4426. switch v := v.(*TestAllTypes_RepeatedGroup); i {
  4427. case 0:
  4428. return &v.state
  4429. case 2:
  4430. return &v.sizeCache
  4431. case 3:
  4432. return &v.unknownFields
  4433. default:
  4434. return nil
  4435. }
  4436. }
  4437. file_test_test_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
  4438. switch v := v.(*TestRequiredGroupFields_OptionalGroup); i {
  4439. case 0:
  4440. return &v.state
  4441. case 2:
  4442. return &v.sizeCache
  4443. case 3:
  4444. return &v.unknownFields
  4445. default:
  4446. return nil
  4447. }
  4448. }
  4449. file_test_test_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
  4450. switch v := v.(*TestRequiredGroupFields_RepeatedGroup); i {
  4451. case 0:
  4452. return &v.state
  4453. case 2:
  4454. return &v.sizeCache
  4455. case 3:
  4456. return &v.unknownFields
  4457. default:
  4458. return nil
  4459. }
  4460. }
  4461. }
  4462. file_test_test_proto_msgTypes[0].OneofWrappers = []interface{}{
  4463. (*TestAllTypes_OneofUint32)(nil),
  4464. (*TestAllTypes_OneofNestedMessage)(nil),
  4465. (*TestAllTypes_OneofString)(nil),
  4466. (*TestAllTypes_OneofBytes)(nil),
  4467. (*TestAllTypes_OneofBool)(nil),
  4468. (*TestAllTypes_OneofUint64)(nil),
  4469. (*TestAllTypes_OneofFloat)(nil),
  4470. (*TestAllTypes_OneofDouble)(nil),
  4471. (*TestAllTypes_OneofEnum)(nil),
  4472. }
  4473. file_test_test_proto_msgTypes[1].OneofWrappers = []interface{}{
  4474. (*TestDeprecatedMessage_DeprecatedOneofField)(nil),
  4475. }
  4476. file_test_test_proto_msgTypes[9].OneofWrappers = []interface{}{
  4477. (*TestRequiredForeign_OneofMessage)(nil),
  4478. }
  4479. out := protoimpl.TypeBuilder{
  4480. File: protoimpl.DescBuilder{
  4481. RawDescriptor: file_test_test_proto_rawDesc,
  4482. NumEnums: 4,
  4483. NumMessages: 41,
  4484. NumExtensions: 82,
  4485. NumServices: 2,
  4486. },
  4487. GoTypes: file_test_test_proto_goTypes,
  4488. DependencyIndexes: file_test_test_proto_depIdxs,
  4489. MessageInfos: file_test_test_proto_msgTypes,
  4490. LegacyExtensions: file_test_test_proto_extDescs,
  4491. }.Build()
  4492. File_test_test_proto = out.File
  4493. file_test_test_proto_enumTypes = out.Enums
  4494. file_test_test_proto_rawDesc = nil
  4495. file_test_test_proto_goTypes = nil
  4496. file_test_test_proto_depIdxs = nil
  4497. }