test.pb.go 160 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: test.proto
  3. package test
  4. import (
  5. bytes "bytes"
  6. gzip "compress/gzip"
  7. proto "github.com/golang/protobuf/proto"
  8. protoreflect "github.com/golang/protobuf/v2/reflect/protoreflect"
  9. protoimpl "github.com/golang/protobuf/v2/runtime/protoimpl"
  10. reflect "reflect"
  11. )
  12. // This is a compile-time assertion to ensure that this generated file
  13. // is compatible with the proto package it is being compiled against.
  14. // A compilation error at this line likely means your copy of the
  15. // proto package needs to be updated.
  16. const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
  17. type ForeignEnum int32
  18. const (
  19. ForeignEnum_FOREIGN_FOO ForeignEnum = 4
  20. ForeignEnum_FOREIGN_BAR ForeignEnum = 5
  21. ForeignEnum_FOREIGN_BAZ ForeignEnum = 6
  22. )
  23. func (e ForeignEnum) Type() protoreflect.EnumType {
  24. return xxx_Test_protoFile_enumTypes[0]
  25. }
  26. func (e ForeignEnum) Number() protoreflect.EnumNumber {
  27. return protoreflect.EnumNumber(e)
  28. }
  29. var ForeignEnum_name = map[int32]string{
  30. 4: "FOREIGN_FOO",
  31. 5: "FOREIGN_BAR",
  32. 6: "FOREIGN_BAZ",
  33. }
  34. var ForeignEnum_value = map[string]int32{
  35. "FOREIGN_FOO": 4,
  36. "FOREIGN_BAR": 5,
  37. "FOREIGN_BAZ": 6,
  38. }
  39. func (x ForeignEnum) Enum() *ForeignEnum {
  40. p := new(ForeignEnum)
  41. *p = x
  42. return p
  43. }
  44. func (x ForeignEnum) String() string {
  45. return proto.EnumName(ForeignEnum_name, int32(x))
  46. }
  47. func (x *ForeignEnum) UnmarshalJSON(data []byte) error {
  48. value, err := proto.UnmarshalJSONEnum(ForeignEnum_value, data, "ForeignEnum")
  49. if err != nil {
  50. return err
  51. }
  52. *x = ForeignEnum(value)
  53. return nil
  54. }
  55. func (ForeignEnum) EnumDescriptor() ([]byte, []int) {
  56. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{0}
  57. }
  58. type TestReservedEnumFields int32
  59. const (
  60. TestReservedEnumFields_RESERVED_ENUM TestReservedEnumFields = 0
  61. )
  62. func (e TestReservedEnumFields) Type() protoreflect.EnumType {
  63. return xxx_Test_protoFile_enumTypes[1]
  64. }
  65. func (e TestReservedEnumFields) Number() protoreflect.EnumNumber {
  66. return protoreflect.EnumNumber(e)
  67. }
  68. var TestReservedEnumFields_name = map[int32]string{
  69. 0: "RESERVED_ENUM",
  70. }
  71. var TestReservedEnumFields_value = map[string]int32{
  72. "RESERVED_ENUM": 0,
  73. }
  74. func (x TestReservedEnumFields) Enum() *TestReservedEnumFields {
  75. p := new(TestReservedEnumFields)
  76. *p = x
  77. return p
  78. }
  79. func (x TestReservedEnumFields) String() string {
  80. return proto.EnumName(TestReservedEnumFields_name, int32(x))
  81. }
  82. func (x *TestReservedEnumFields) UnmarshalJSON(data []byte) error {
  83. value, err := proto.UnmarshalJSONEnum(TestReservedEnumFields_value, data, "TestReservedEnumFields")
  84. if err != nil {
  85. return err
  86. }
  87. *x = TestReservedEnumFields(value)
  88. return nil
  89. }
  90. func (TestReservedEnumFields) EnumDescriptor() ([]byte, []int) {
  91. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{1}
  92. }
  93. type TestAllTypes_NestedEnum int32
  94. const (
  95. TestAllTypes_FOO TestAllTypes_NestedEnum = 0
  96. TestAllTypes_BAR TestAllTypes_NestedEnum = 1
  97. TestAllTypes_BAZ TestAllTypes_NestedEnum = 2
  98. TestAllTypes_NEG TestAllTypes_NestedEnum = -1
  99. )
  100. func (e TestAllTypes_NestedEnum) Type() protoreflect.EnumType {
  101. return xxx_Test_protoFile_enumTypes[2]
  102. }
  103. func (e TestAllTypes_NestedEnum) Number() protoreflect.EnumNumber {
  104. return protoreflect.EnumNumber(e)
  105. }
  106. var TestAllTypes_NestedEnum_name = map[int32]string{
  107. 0: "FOO",
  108. 1: "BAR",
  109. 2: "BAZ",
  110. -1: "NEG",
  111. }
  112. var TestAllTypes_NestedEnum_value = map[string]int32{
  113. "FOO": 0,
  114. "BAR": 1,
  115. "BAZ": 2,
  116. "NEG": -1,
  117. }
  118. func (x TestAllTypes_NestedEnum) Enum() *TestAllTypes_NestedEnum {
  119. p := new(TestAllTypes_NestedEnum)
  120. *p = x
  121. return p
  122. }
  123. func (x TestAllTypes_NestedEnum) String() string {
  124. return proto.EnumName(TestAllTypes_NestedEnum_name, int32(x))
  125. }
  126. func (x *TestAllTypes_NestedEnum) UnmarshalJSON(data []byte) error {
  127. value, err := proto.UnmarshalJSONEnum(TestAllTypes_NestedEnum_value, data, "TestAllTypes_NestedEnum")
  128. if err != nil {
  129. return err
  130. }
  131. *x = TestAllTypes_NestedEnum(value)
  132. return nil
  133. }
  134. func (TestAllTypes_NestedEnum) EnumDescriptor() ([]byte, []int) {
  135. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{0, 0}
  136. }
  137. type TestDeprecatedMessage_DeprecatedEnum int32 // Deprecated: Do not use.
  138. const (
  139. TestDeprecatedMessage_DEPRECATED TestDeprecatedMessage_DeprecatedEnum = 0 // Deprecated: Do not use.
  140. )
  141. func (e TestDeprecatedMessage_DeprecatedEnum) Type() protoreflect.EnumType {
  142. return xxx_Test_protoFile_enumTypes[3]
  143. }
  144. func (e TestDeprecatedMessage_DeprecatedEnum) Number() protoreflect.EnumNumber {
  145. return protoreflect.EnumNumber(e)
  146. }
  147. var TestDeprecatedMessage_DeprecatedEnum_name = map[int32]string{
  148. 0: "DEPRECATED",
  149. }
  150. var TestDeprecatedMessage_DeprecatedEnum_value = map[string]int32{
  151. "DEPRECATED": 0,
  152. }
  153. func (x TestDeprecatedMessage_DeprecatedEnum) Enum() *TestDeprecatedMessage_DeprecatedEnum {
  154. p := new(TestDeprecatedMessage_DeprecatedEnum)
  155. *p = x
  156. return p
  157. }
  158. func (x TestDeprecatedMessage_DeprecatedEnum) String() string {
  159. return proto.EnumName(TestDeprecatedMessage_DeprecatedEnum_name, int32(x))
  160. }
  161. func (x *TestDeprecatedMessage_DeprecatedEnum) UnmarshalJSON(data []byte) error {
  162. value, err := proto.UnmarshalJSONEnum(TestDeprecatedMessage_DeprecatedEnum_value, data, "TestDeprecatedMessage_DeprecatedEnum")
  163. if err != nil {
  164. return err
  165. }
  166. *x = TestDeprecatedMessage_DeprecatedEnum(value)
  167. return nil
  168. }
  169. func (TestDeprecatedMessage_DeprecatedEnum) EnumDescriptor() ([]byte, []int) {
  170. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{1, 0}
  171. }
  172. type TestAllTypes struct {
  173. OptionalInt32 *int32 `protobuf:"varint,1,opt,name=optional_int32,json=optionalInt32" json:"optional_int32,omitempty"`
  174. OptionalInt64 *int64 `protobuf:"varint,2,opt,name=optional_int64,json=optionalInt64" json:"optional_int64,omitempty"`
  175. OptionalUint32 *uint32 `protobuf:"varint,3,opt,name=optional_uint32,json=optionalUint32" json:"optional_uint32,omitempty"`
  176. OptionalUint64 *uint64 `protobuf:"varint,4,opt,name=optional_uint64,json=optionalUint64" json:"optional_uint64,omitempty"`
  177. OptionalSint32 *int32 `protobuf:"zigzag32,5,opt,name=optional_sint32,json=optionalSint32" json:"optional_sint32,omitempty"`
  178. OptionalSint64 *int64 `protobuf:"zigzag64,6,opt,name=optional_sint64,json=optionalSint64" json:"optional_sint64,omitempty"`
  179. OptionalFixed32 *uint32 `protobuf:"fixed32,7,opt,name=optional_fixed32,json=optionalFixed32" json:"optional_fixed32,omitempty"`
  180. OptionalFixed64 *uint64 `protobuf:"fixed64,8,opt,name=optional_fixed64,json=optionalFixed64" json:"optional_fixed64,omitempty"`
  181. OptionalSfixed32 *int32 `protobuf:"fixed32,9,opt,name=optional_sfixed32,json=optionalSfixed32" json:"optional_sfixed32,omitempty"`
  182. OptionalSfixed64 *int64 `protobuf:"fixed64,10,opt,name=optional_sfixed64,json=optionalSfixed64" json:"optional_sfixed64,omitempty"`
  183. OptionalFloat *float32 `protobuf:"fixed32,11,opt,name=optional_float,json=optionalFloat" json:"optional_float,omitempty"`
  184. OptionalDouble *float64 `protobuf:"fixed64,12,opt,name=optional_double,json=optionalDouble" json:"optional_double,omitempty"`
  185. OptionalBool *bool `protobuf:"varint,13,opt,name=optional_bool,json=optionalBool" json:"optional_bool,omitempty"`
  186. OptionalString *string `protobuf:"bytes,14,opt,name=optional_string,json=optionalString" json:"optional_string,omitempty"`
  187. OptionalBytes []byte `protobuf:"bytes,15,opt,name=optional_bytes,json=optionalBytes" json:"optional_bytes,omitempty"`
  188. Optionalgroup *TestAllTypes_OptionalGroup `protobuf:"group,16,opt,name=OptionalGroup,json=optionalgroup" json:"optionalgroup,omitempty"`
  189. OptionalNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,18,opt,name=optional_nested_message,json=optionalNestedMessage" json:"optional_nested_message,omitempty"`
  190. OptionalForeignMessage *ForeignMessage `protobuf:"bytes,19,opt,name=optional_foreign_message,json=optionalForeignMessage" json:"optional_foreign_message,omitempty"`
  191. OptionalImportMessage *ImportMessage `protobuf:"bytes,20,opt,name=optional_import_message,json=optionalImportMessage" json:"optional_import_message,omitempty"`
  192. OptionalNestedEnum *TestAllTypes_NestedEnum `protobuf:"varint,21,opt,name=optional_nested_enum,json=optionalNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"optional_nested_enum,omitempty"`
  193. OptionalForeignEnum *ForeignEnum `protobuf:"varint,22,opt,name=optional_foreign_enum,json=optionalForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"optional_foreign_enum,omitempty"`
  194. OptionalImportEnum *ImportEnum `protobuf:"varint,23,opt,name=optional_import_enum,json=optionalImportEnum,enum=goproto.proto.test.ImportEnum" json:"optional_import_enum,omitempty"`
  195. RepeatedInt32 []int32 `protobuf:"varint,31,rep,name=repeated_int32,json=repeatedInt32" json:"repeated_int32,omitempty"`
  196. RepeatedInt64 []int64 `protobuf:"varint,32,rep,name=repeated_int64,json=repeatedInt64" json:"repeated_int64,omitempty"`
  197. RepeatedUint32 []uint32 `protobuf:"varint,33,rep,name=repeated_uint32,json=repeatedUint32" json:"repeated_uint32,omitempty"`
  198. RepeatedUint64 []uint64 `protobuf:"varint,34,rep,name=repeated_uint64,json=repeatedUint64" json:"repeated_uint64,omitempty"`
  199. RepeatedSint32 []int32 `protobuf:"zigzag32,35,rep,name=repeated_sint32,json=repeatedSint32" json:"repeated_sint32,omitempty"`
  200. RepeatedSint64 []int64 `protobuf:"zigzag64,36,rep,name=repeated_sint64,json=repeatedSint64" json:"repeated_sint64,omitempty"`
  201. RepeatedFixed32 []uint32 `protobuf:"fixed32,37,rep,name=repeated_fixed32,json=repeatedFixed32" json:"repeated_fixed32,omitempty"`
  202. RepeatedFixed64 []uint64 `protobuf:"fixed64,38,rep,name=repeated_fixed64,json=repeatedFixed64" json:"repeated_fixed64,omitempty"`
  203. RepeatedSfixed32 []int32 `protobuf:"fixed32,39,rep,name=repeated_sfixed32,json=repeatedSfixed32" json:"repeated_sfixed32,omitempty"`
  204. RepeatedSfixed64 []int64 `protobuf:"fixed64,40,rep,name=repeated_sfixed64,json=repeatedSfixed64" json:"repeated_sfixed64,omitempty"`
  205. RepeatedFloat []float32 `protobuf:"fixed32,41,rep,name=repeated_float,json=repeatedFloat" json:"repeated_float,omitempty"`
  206. RepeatedDouble []float64 `protobuf:"fixed64,42,rep,name=repeated_double,json=repeatedDouble" json:"repeated_double,omitempty"`
  207. RepeatedBool []bool `protobuf:"varint,43,rep,name=repeated_bool,json=repeatedBool" json:"repeated_bool,omitempty"`
  208. RepeatedString []string `protobuf:"bytes,44,rep,name=repeated_string,json=repeatedString" json:"repeated_string,omitempty"`
  209. RepeatedBytes [][]byte `protobuf:"bytes,45,rep,name=repeated_bytes,json=repeatedBytes" json:"repeated_bytes,omitempty"`
  210. Repeatedgroup []*TestAllTypes_RepeatedGroup `protobuf:"group,46,rep,name=RepeatedGroup,json=repeatedgroup" json:"repeatedgroup,omitempty"`
  211. RepeatedNestedMessage []*TestAllTypes_NestedMessage `protobuf:"bytes,48,rep,name=repeated_nested_message,json=repeatedNestedMessage" json:"repeated_nested_message,omitempty"`
  212. RepeatedForeignMessage []*ForeignMessage `protobuf:"bytes,49,rep,name=repeated_foreign_message,json=repeatedForeignMessage" json:"repeated_foreign_message,omitempty"`
  213. RepeatedImportmessage []*ImportMessage `protobuf:"bytes,50,rep,name=repeated_importmessage,json=repeatedImportmessage" json:"repeated_importmessage,omitempty"`
  214. RepeatedNestedEnum []TestAllTypes_NestedEnum `protobuf:"varint,51,rep,name=repeated_nested_enum,json=repeatedNestedEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum" json:"repeated_nested_enum,omitempty"`
  215. RepeatedForeignEnum []ForeignEnum `protobuf:"varint,52,rep,name=repeated_foreign_enum,json=repeatedForeignEnum,enum=goproto.proto.test.ForeignEnum" json:"repeated_foreign_enum,omitempty"`
  216. RepeatedImportenum []ImportEnum `protobuf:"varint,53,rep,name=repeated_importenum,json=repeatedImportenum,enum=goproto.proto.test.ImportEnum" json:"repeated_importenum,omitempty"`
  217. 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"`
  218. 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"`
  219. 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"`
  220. 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"`
  221. 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"`
  222. 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"`
  223. 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"`
  224. 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"`
  225. 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"`
  226. 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"`
  227. 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"`
  228. 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"`
  229. 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"`
  230. 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"`
  231. 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"`
  232. 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"`
  233. 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"`
  234. // Singular with defaults
  235. DefaultInt32 *int32 `protobuf:"varint,81,opt,name=default_int32,json=defaultInt32,def=81" json:"default_int32,omitempty"`
  236. DefaultInt64 *int64 `protobuf:"varint,82,opt,name=default_int64,json=defaultInt64,def=82" json:"default_int64,omitempty"`
  237. DefaultUint32 *uint32 `protobuf:"varint,83,opt,name=default_uint32,json=defaultUint32,def=83" json:"default_uint32,omitempty"`
  238. DefaultUint64 *uint64 `protobuf:"varint,84,opt,name=default_uint64,json=defaultUint64,def=84" json:"default_uint64,omitempty"`
  239. DefaultSint32 *int32 `protobuf:"zigzag32,85,opt,name=default_sint32,json=defaultSint32,def=-85" json:"default_sint32,omitempty"`
  240. DefaultSint64 *int64 `protobuf:"zigzag64,86,opt,name=default_sint64,json=defaultSint64,def=86" json:"default_sint64,omitempty"`
  241. DefaultFixed32 *uint32 `protobuf:"fixed32,87,opt,name=default_fixed32,json=defaultFixed32,def=87" json:"default_fixed32,omitempty"`
  242. DefaultFixed64 *uint64 `protobuf:"fixed64,88,opt,name=default_fixed64,json=defaultFixed64,def=88" json:"default_fixed64,omitempty"`
  243. DefaultSfixed32 *int32 `protobuf:"fixed32,89,opt,name=default_sfixed32,json=defaultSfixed32,def=89" json:"default_sfixed32,omitempty"`
  244. DefaultSfixed64 *int64 `protobuf:"fixed64,80,opt,name=default_sfixed64,json=defaultSfixed64,def=-90" json:"default_sfixed64,omitempty"`
  245. DefaultFloat *float32 `protobuf:"fixed32,91,opt,name=default_float,json=defaultFloat,def=91.5" json:"default_float,omitempty"`
  246. DefaultDouble *float64 `protobuf:"fixed64,92,opt,name=default_double,json=defaultDouble,def=92000" json:"default_double,omitempty"`
  247. DefaultBool *bool `protobuf:"varint,93,opt,name=default_bool,json=defaultBool,def=1" json:"default_bool,omitempty"`
  248. DefaultString *string `protobuf:"bytes,94,opt,name=default_string,json=defaultString,def=hello" json:"default_string,omitempty"`
  249. DefaultBytes []byte `protobuf:"bytes,95,opt,name=default_bytes,json=defaultBytes,def=world" json:"default_bytes,omitempty"`
  250. 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"`
  251. DefaultForeignEnum *ForeignEnum `protobuf:"varint,97,opt,name=default_foreign_enum,json=defaultForeignEnum,enum=goproto.proto.test.ForeignEnum,def=5" json:"default_foreign_enum,omitempty"`
  252. // Types that are valid to be assigned to OneofField:
  253. // *TestAllTypes_OneofUint32
  254. // *TestAllTypes_OneofNestedMessage
  255. // *TestAllTypes_OneofString
  256. // *TestAllTypes_OneofBytes
  257. // *TestAllTypes_OneofBool
  258. // *TestAllTypes_OneofUint64
  259. // *TestAllTypes_OneofFloat
  260. // *TestAllTypes_OneofDouble
  261. // *TestAllTypes_OneofEnum
  262. OneofField isTestAllTypes_OneofField `protobuf_oneof:"oneof_field"`
  263. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  264. XXX_unrecognized []byte `json:"-"`
  265. XXX_sizecache int32 `json:"-"`
  266. }
  267. func (m *TestAllTypes) ProtoReflect() protoreflect.Message {
  268. return xxx_Test_protoFile_messageTypes[0].MessageOf(m)
  269. }
  270. func (m *TestAllTypes) Reset() { *m = TestAllTypes{} }
  271. func (m *TestAllTypes) String() string { return proto.CompactTextString(m) }
  272. func (*TestAllTypes) ProtoMessage() {}
  273. func (*TestAllTypes) Descriptor() ([]byte, []int) {
  274. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{0}
  275. }
  276. func (m *TestAllTypes) XXX_Unmarshal(b []byte) error {
  277. return xxx_messageInfo_TestAllTypes.Unmarshal(m, b)
  278. }
  279. func (m *TestAllTypes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  280. return xxx_messageInfo_TestAllTypes.Marshal(b, m, deterministic)
  281. }
  282. func (m *TestAllTypes) XXX_Merge(src proto.Message) {
  283. xxx_messageInfo_TestAllTypes.Merge(m, src)
  284. }
  285. func (m *TestAllTypes) XXX_Size() int {
  286. return xxx_messageInfo_TestAllTypes.Size(m)
  287. }
  288. func (m *TestAllTypes) XXX_DiscardUnknown() {
  289. xxx_messageInfo_TestAllTypes.DiscardUnknown(m)
  290. }
  291. var xxx_messageInfo_TestAllTypes proto.InternalMessageInfo
  292. const Default_TestAllTypes_DefaultInt32 int32 = 81
  293. const Default_TestAllTypes_DefaultInt64 int64 = 82
  294. const Default_TestAllTypes_DefaultUint32 uint32 = 83
  295. const Default_TestAllTypes_DefaultUint64 uint64 = 84
  296. const Default_TestAllTypes_DefaultSint32 int32 = -85
  297. const Default_TestAllTypes_DefaultSint64 int64 = 86
  298. const Default_TestAllTypes_DefaultFixed32 uint32 = 87
  299. const Default_TestAllTypes_DefaultFixed64 uint64 = 88
  300. const Default_TestAllTypes_DefaultSfixed32 int32 = 89
  301. const Default_TestAllTypes_DefaultSfixed64 int64 = -90
  302. const Default_TestAllTypes_DefaultFloat float32 = 91.5
  303. const Default_TestAllTypes_DefaultDouble float64 = 92000
  304. const Default_TestAllTypes_DefaultBool bool = true
  305. const Default_TestAllTypes_DefaultString string = "hello"
  306. var Default_TestAllTypes_DefaultBytes []byte = []byte("world")
  307. const Default_TestAllTypes_DefaultNestedEnum TestAllTypes_NestedEnum = TestAllTypes_BAR
  308. const Default_TestAllTypes_DefaultForeignEnum ForeignEnum = ForeignEnum_FOREIGN_BAR
  309. func (m *TestAllTypes) GetOptionalInt32() int32 {
  310. if m != nil && m.OptionalInt32 != nil {
  311. return *m.OptionalInt32
  312. }
  313. return 0
  314. }
  315. func (m *TestAllTypes) GetOptionalInt64() int64 {
  316. if m != nil && m.OptionalInt64 != nil {
  317. return *m.OptionalInt64
  318. }
  319. return 0
  320. }
  321. func (m *TestAllTypes) GetOptionalUint32() uint32 {
  322. if m != nil && m.OptionalUint32 != nil {
  323. return *m.OptionalUint32
  324. }
  325. return 0
  326. }
  327. func (m *TestAllTypes) GetOptionalUint64() uint64 {
  328. if m != nil && m.OptionalUint64 != nil {
  329. return *m.OptionalUint64
  330. }
  331. return 0
  332. }
  333. func (m *TestAllTypes) GetOptionalSint32() int32 {
  334. if m != nil && m.OptionalSint32 != nil {
  335. return *m.OptionalSint32
  336. }
  337. return 0
  338. }
  339. func (m *TestAllTypes) GetOptionalSint64() int64 {
  340. if m != nil && m.OptionalSint64 != nil {
  341. return *m.OptionalSint64
  342. }
  343. return 0
  344. }
  345. func (m *TestAllTypes) GetOptionalFixed32() uint32 {
  346. if m != nil && m.OptionalFixed32 != nil {
  347. return *m.OptionalFixed32
  348. }
  349. return 0
  350. }
  351. func (m *TestAllTypes) GetOptionalFixed64() uint64 {
  352. if m != nil && m.OptionalFixed64 != nil {
  353. return *m.OptionalFixed64
  354. }
  355. return 0
  356. }
  357. func (m *TestAllTypes) GetOptionalSfixed32() int32 {
  358. if m != nil && m.OptionalSfixed32 != nil {
  359. return *m.OptionalSfixed32
  360. }
  361. return 0
  362. }
  363. func (m *TestAllTypes) GetOptionalSfixed64() int64 {
  364. if m != nil && m.OptionalSfixed64 != nil {
  365. return *m.OptionalSfixed64
  366. }
  367. return 0
  368. }
  369. func (m *TestAllTypes) GetOptionalFloat() float32 {
  370. if m != nil && m.OptionalFloat != nil {
  371. return *m.OptionalFloat
  372. }
  373. return 0
  374. }
  375. func (m *TestAllTypes) GetOptionalDouble() float64 {
  376. if m != nil && m.OptionalDouble != nil {
  377. return *m.OptionalDouble
  378. }
  379. return 0
  380. }
  381. func (m *TestAllTypes) GetOptionalBool() bool {
  382. if m != nil && m.OptionalBool != nil {
  383. return *m.OptionalBool
  384. }
  385. return false
  386. }
  387. func (m *TestAllTypes) GetOptionalString() string {
  388. if m != nil && m.OptionalString != nil {
  389. return *m.OptionalString
  390. }
  391. return ""
  392. }
  393. func (m *TestAllTypes) GetOptionalBytes() []byte {
  394. if m != nil {
  395. return m.OptionalBytes
  396. }
  397. return nil
  398. }
  399. func (m *TestAllTypes) GetOptionalgroup() *TestAllTypes_OptionalGroup {
  400. if m != nil {
  401. return m.Optionalgroup
  402. }
  403. return nil
  404. }
  405. func (m *TestAllTypes) GetOptionalNestedMessage() *TestAllTypes_NestedMessage {
  406. if m != nil {
  407. return m.OptionalNestedMessage
  408. }
  409. return nil
  410. }
  411. func (m *TestAllTypes) GetOptionalForeignMessage() *ForeignMessage {
  412. if m != nil {
  413. return m.OptionalForeignMessage
  414. }
  415. return nil
  416. }
  417. func (m *TestAllTypes) GetOptionalImportMessage() *ImportMessage {
  418. if m != nil {
  419. return m.OptionalImportMessage
  420. }
  421. return nil
  422. }
  423. func (m *TestAllTypes) GetOptionalNestedEnum() TestAllTypes_NestedEnum {
  424. if m != nil && m.OptionalNestedEnum != nil {
  425. return *m.OptionalNestedEnum
  426. }
  427. return TestAllTypes_FOO
  428. }
  429. func (m *TestAllTypes) GetOptionalForeignEnum() ForeignEnum {
  430. if m != nil && m.OptionalForeignEnum != nil {
  431. return *m.OptionalForeignEnum
  432. }
  433. return ForeignEnum_FOREIGN_FOO
  434. }
  435. func (m *TestAllTypes) GetOptionalImportEnum() ImportEnum {
  436. if m != nil && m.OptionalImportEnum != nil {
  437. return *m.OptionalImportEnum
  438. }
  439. return ImportEnum_IMPORT_ZERO
  440. }
  441. func (m *TestAllTypes) GetRepeatedInt32() []int32 {
  442. if m != nil {
  443. return m.RepeatedInt32
  444. }
  445. return nil
  446. }
  447. func (m *TestAllTypes) GetRepeatedInt64() []int64 {
  448. if m != nil {
  449. return m.RepeatedInt64
  450. }
  451. return nil
  452. }
  453. func (m *TestAllTypes) GetRepeatedUint32() []uint32 {
  454. if m != nil {
  455. return m.RepeatedUint32
  456. }
  457. return nil
  458. }
  459. func (m *TestAllTypes) GetRepeatedUint64() []uint64 {
  460. if m != nil {
  461. return m.RepeatedUint64
  462. }
  463. return nil
  464. }
  465. func (m *TestAllTypes) GetRepeatedSint32() []int32 {
  466. if m != nil {
  467. return m.RepeatedSint32
  468. }
  469. return nil
  470. }
  471. func (m *TestAllTypes) GetRepeatedSint64() []int64 {
  472. if m != nil {
  473. return m.RepeatedSint64
  474. }
  475. return nil
  476. }
  477. func (m *TestAllTypes) GetRepeatedFixed32() []uint32 {
  478. if m != nil {
  479. return m.RepeatedFixed32
  480. }
  481. return nil
  482. }
  483. func (m *TestAllTypes) GetRepeatedFixed64() []uint64 {
  484. if m != nil {
  485. return m.RepeatedFixed64
  486. }
  487. return nil
  488. }
  489. func (m *TestAllTypes) GetRepeatedSfixed32() []int32 {
  490. if m != nil {
  491. return m.RepeatedSfixed32
  492. }
  493. return nil
  494. }
  495. func (m *TestAllTypes) GetRepeatedSfixed64() []int64 {
  496. if m != nil {
  497. return m.RepeatedSfixed64
  498. }
  499. return nil
  500. }
  501. func (m *TestAllTypes) GetRepeatedFloat() []float32 {
  502. if m != nil {
  503. return m.RepeatedFloat
  504. }
  505. return nil
  506. }
  507. func (m *TestAllTypes) GetRepeatedDouble() []float64 {
  508. if m != nil {
  509. return m.RepeatedDouble
  510. }
  511. return nil
  512. }
  513. func (m *TestAllTypes) GetRepeatedBool() []bool {
  514. if m != nil {
  515. return m.RepeatedBool
  516. }
  517. return nil
  518. }
  519. func (m *TestAllTypes) GetRepeatedString() []string {
  520. if m != nil {
  521. return m.RepeatedString
  522. }
  523. return nil
  524. }
  525. func (m *TestAllTypes) GetRepeatedBytes() [][]byte {
  526. if m != nil {
  527. return m.RepeatedBytes
  528. }
  529. return nil
  530. }
  531. func (m *TestAllTypes) GetRepeatedgroup() []*TestAllTypes_RepeatedGroup {
  532. if m != nil {
  533. return m.Repeatedgroup
  534. }
  535. return nil
  536. }
  537. func (m *TestAllTypes) GetRepeatedNestedMessage() []*TestAllTypes_NestedMessage {
  538. if m != nil {
  539. return m.RepeatedNestedMessage
  540. }
  541. return nil
  542. }
  543. func (m *TestAllTypes) GetRepeatedForeignMessage() []*ForeignMessage {
  544. if m != nil {
  545. return m.RepeatedForeignMessage
  546. }
  547. return nil
  548. }
  549. func (m *TestAllTypes) GetRepeatedImportmessage() []*ImportMessage {
  550. if m != nil {
  551. return m.RepeatedImportmessage
  552. }
  553. return nil
  554. }
  555. func (m *TestAllTypes) GetRepeatedNestedEnum() []TestAllTypes_NestedEnum {
  556. if m != nil {
  557. return m.RepeatedNestedEnum
  558. }
  559. return nil
  560. }
  561. func (m *TestAllTypes) GetRepeatedForeignEnum() []ForeignEnum {
  562. if m != nil {
  563. return m.RepeatedForeignEnum
  564. }
  565. return nil
  566. }
  567. func (m *TestAllTypes) GetRepeatedImportenum() []ImportEnum {
  568. if m != nil {
  569. return m.RepeatedImportenum
  570. }
  571. return nil
  572. }
  573. func (m *TestAllTypes) GetMapInt32Int32() map[int32]int32 {
  574. if m != nil {
  575. return m.MapInt32Int32
  576. }
  577. return nil
  578. }
  579. func (m *TestAllTypes) GetMapInt64Int64() map[int64]int64 {
  580. if m != nil {
  581. return m.MapInt64Int64
  582. }
  583. return nil
  584. }
  585. func (m *TestAllTypes) GetMapUint32Uint32() map[uint32]uint32 {
  586. if m != nil {
  587. return m.MapUint32Uint32
  588. }
  589. return nil
  590. }
  591. func (m *TestAllTypes) GetMapUint64Uint64() map[uint64]uint64 {
  592. if m != nil {
  593. return m.MapUint64Uint64
  594. }
  595. return nil
  596. }
  597. func (m *TestAllTypes) GetMapSint32Sint32() map[int32]int32 {
  598. if m != nil {
  599. return m.MapSint32Sint32
  600. }
  601. return nil
  602. }
  603. func (m *TestAllTypes) GetMapSint64Sint64() map[int64]int64 {
  604. if m != nil {
  605. return m.MapSint64Sint64
  606. }
  607. return nil
  608. }
  609. func (m *TestAllTypes) GetMapFixed32Fixed32() map[uint32]uint32 {
  610. if m != nil {
  611. return m.MapFixed32Fixed32
  612. }
  613. return nil
  614. }
  615. func (m *TestAllTypes) GetMapFixed64Fixed64() map[uint64]uint64 {
  616. if m != nil {
  617. return m.MapFixed64Fixed64
  618. }
  619. return nil
  620. }
  621. func (m *TestAllTypes) GetMapSfixed32Sfixed32() map[int32]int32 {
  622. if m != nil {
  623. return m.MapSfixed32Sfixed32
  624. }
  625. return nil
  626. }
  627. func (m *TestAllTypes) GetMapSfixed64Sfixed64() map[int64]int64 {
  628. if m != nil {
  629. return m.MapSfixed64Sfixed64
  630. }
  631. return nil
  632. }
  633. func (m *TestAllTypes) GetMapInt32Float() map[int32]float32 {
  634. if m != nil {
  635. return m.MapInt32Float
  636. }
  637. return nil
  638. }
  639. func (m *TestAllTypes) GetMapInt32Double() map[int32]float64 {
  640. if m != nil {
  641. return m.MapInt32Double
  642. }
  643. return nil
  644. }
  645. func (m *TestAllTypes) GetMapBoolBool() map[bool]bool {
  646. if m != nil {
  647. return m.MapBoolBool
  648. }
  649. return nil
  650. }
  651. func (m *TestAllTypes) GetMapStringString() map[string]string {
  652. if m != nil {
  653. return m.MapStringString
  654. }
  655. return nil
  656. }
  657. func (m *TestAllTypes) GetMapStringBytes() map[string][]byte {
  658. if m != nil {
  659. return m.MapStringBytes
  660. }
  661. return nil
  662. }
  663. func (m *TestAllTypes) GetMapStringNestedMessage() map[string]*TestAllTypes_NestedMessage {
  664. if m != nil {
  665. return m.MapStringNestedMessage
  666. }
  667. return nil
  668. }
  669. func (m *TestAllTypes) GetMapStringNestedEnum() map[string]TestAllTypes_NestedEnum {
  670. if m != nil {
  671. return m.MapStringNestedEnum
  672. }
  673. return nil
  674. }
  675. func (m *TestAllTypes) GetDefaultInt32() int32 {
  676. if m != nil && m.DefaultInt32 != nil {
  677. return *m.DefaultInt32
  678. }
  679. return Default_TestAllTypes_DefaultInt32
  680. }
  681. func (m *TestAllTypes) GetDefaultInt64() int64 {
  682. if m != nil && m.DefaultInt64 != nil {
  683. return *m.DefaultInt64
  684. }
  685. return Default_TestAllTypes_DefaultInt64
  686. }
  687. func (m *TestAllTypes) GetDefaultUint32() uint32 {
  688. if m != nil && m.DefaultUint32 != nil {
  689. return *m.DefaultUint32
  690. }
  691. return Default_TestAllTypes_DefaultUint32
  692. }
  693. func (m *TestAllTypes) GetDefaultUint64() uint64 {
  694. if m != nil && m.DefaultUint64 != nil {
  695. return *m.DefaultUint64
  696. }
  697. return Default_TestAllTypes_DefaultUint64
  698. }
  699. func (m *TestAllTypes) GetDefaultSint32() int32 {
  700. if m != nil && m.DefaultSint32 != nil {
  701. return *m.DefaultSint32
  702. }
  703. return Default_TestAllTypes_DefaultSint32
  704. }
  705. func (m *TestAllTypes) GetDefaultSint64() int64 {
  706. if m != nil && m.DefaultSint64 != nil {
  707. return *m.DefaultSint64
  708. }
  709. return Default_TestAllTypes_DefaultSint64
  710. }
  711. func (m *TestAllTypes) GetDefaultFixed32() uint32 {
  712. if m != nil && m.DefaultFixed32 != nil {
  713. return *m.DefaultFixed32
  714. }
  715. return Default_TestAllTypes_DefaultFixed32
  716. }
  717. func (m *TestAllTypes) GetDefaultFixed64() uint64 {
  718. if m != nil && m.DefaultFixed64 != nil {
  719. return *m.DefaultFixed64
  720. }
  721. return Default_TestAllTypes_DefaultFixed64
  722. }
  723. func (m *TestAllTypes) GetDefaultSfixed32() int32 {
  724. if m != nil && m.DefaultSfixed32 != nil {
  725. return *m.DefaultSfixed32
  726. }
  727. return Default_TestAllTypes_DefaultSfixed32
  728. }
  729. func (m *TestAllTypes) GetDefaultSfixed64() int64 {
  730. if m != nil && m.DefaultSfixed64 != nil {
  731. return *m.DefaultSfixed64
  732. }
  733. return Default_TestAllTypes_DefaultSfixed64
  734. }
  735. func (m *TestAllTypes) GetDefaultFloat() float32 {
  736. if m != nil && m.DefaultFloat != nil {
  737. return *m.DefaultFloat
  738. }
  739. return Default_TestAllTypes_DefaultFloat
  740. }
  741. func (m *TestAllTypes) GetDefaultDouble() float64 {
  742. if m != nil && m.DefaultDouble != nil {
  743. return *m.DefaultDouble
  744. }
  745. return Default_TestAllTypes_DefaultDouble
  746. }
  747. func (m *TestAllTypes) GetDefaultBool() bool {
  748. if m != nil && m.DefaultBool != nil {
  749. return *m.DefaultBool
  750. }
  751. return Default_TestAllTypes_DefaultBool
  752. }
  753. func (m *TestAllTypes) GetDefaultString() string {
  754. if m != nil && m.DefaultString != nil {
  755. return *m.DefaultString
  756. }
  757. return Default_TestAllTypes_DefaultString
  758. }
  759. func (m *TestAllTypes) GetDefaultBytes() []byte {
  760. if m != nil && m.DefaultBytes != nil {
  761. return m.DefaultBytes
  762. }
  763. return append([]byte(nil), Default_TestAllTypes_DefaultBytes...)
  764. }
  765. func (m *TestAllTypes) GetDefaultNestedEnum() TestAllTypes_NestedEnum {
  766. if m != nil && m.DefaultNestedEnum != nil {
  767. return *m.DefaultNestedEnum
  768. }
  769. return Default_TestAllTypes_DefaultNestedEnum
  770. }
  771. func (m *TestAllTypes) GetDefaultForeignEnum() ForeignEnum {
  772. if m != nil && m.DefaultForeignEnum != nil {
  773. return *m.DefaultForeignEnum
  774. }
  775. return Default_TestAllTypes_DefaultForeignEnum
  776. }
  777. type isTestAllTypes_OneofField interface {
  778. isTestAllTypes_OneofField()
  779. }
  780. type TestAllTypes_OneofUint32 struct {
  781. OneofUint32 uint32 `protobuf:"varint,111,opt,name=oneof_uint32,json=oneofUint32,oneof"`
  782. }
  783. type TestAllTypes_OneofNestedMessage struct {
  784. OneofNestedMessage *TestAllTypes_NestedMessage `protobuf:"bytes,112,opt,name=oneof_nested_message,json=oneofNestedMessage,oneof"`
  785. }
  786. type TestAllTypes_OneofString struct {
  787. OneofString string `protobuf:"bytes,113,opt,name=oneof_string,json=oneofString,oneof"`
  788. }
  789. type TestAllTypes_OneofBytes struct {
  790. OneofBytes []byte `protobuf:"bytes,114,opt,name=oneof_bytes,json=oneofBytes,oneof"`
  791. }
  792. type TestAllTypes_OneofBool struct {
  793. OneofBool bool `protobuf:"varint,115,opt,name=oneof_bool,json=oneofBool,oneof"`
  794. }
  795. type TestAllTypes_OneofUint64 struct {
  796. OneofUint64 uint64 `protobuf:"varint,116,opt,name=oneof_uint64,json=oneofUint64,oneof"`
  797. }
  798. type TestAllTypes_OneofFloat struct {
  799. OneofFloat float32 `protobuf:"fixed32,117,opt,name=oneof_float,json=oneofFloat,oneof"`
  800. }
  801. type TestAllTypes_OneofDouble struct {
  802. OneofDouble float64 `protobuf:"fixed64,118,opt,name=oneof_double,json=oneofDouble,oneof"`
  803. }
  804. type TestAllTypes_OneofEnum struct {
  805. OneofEnum TestAllTypes_NestedEnum `protobuf:"varint,119,opt,name=oneof_enum,json=oneofEnum,enum=goproto.proto.test.TestAllTypes_NestedEnum,oneof"`
  806. }
  807. func (*TestAllTypes_OneofUint32) isTestAllTypes_OneofField() {}
  808. func (*TestAllTypes_OneofNestedMessage) isTestAllTypes_OneofField() {}
  809. func (*TestAllTypes_OneofString) isTestAllTypes_OneofField() {}
  810. func (*TestAllTypes_OneofBytes) isTestAllTypes_OneofField() {}
  811. func (*TestAllTypes_OneofBool) isTestAllTypes_OneofField() {}
  812. func (*TestAllTypes_OneofUint64) isTestAllTypes_OneofField() {}
  813. func (*TestAllTypes_OneofFloat) isTestAllTypes_OneofField() {}
  814. func (*TestAllTypes_OneofDouble) isTestAllTypes_OneofField() {}
  815. func (*TestAllTypes_OneofEnum) isTestAllTypes_OneofField() {}
  816. func (m *TestAllTypes) GetOneofField() isTestAllTypes_OneofField {
  817. if m != nil {
  818. return m.OneofField
  819. }
  820. return nil
  821. }
  822. func (m *TestAllTypes) GetOneofUint32() uint32 {
  823. if x, ok := m.GetOneofField().(*TestAllTypes_OneofUint32); ok {
  824. return x.OneofUint32
  825. }
  826. return 0
  827. }
  828. func (m *TestAllTypes) GetOneofNestedMessage() *TestAllTypes_NestedMessage {
  829. if x, ok := m.GetOneofField().(*TestAllTypes_OneofNestedMessage); ok {
  830. return x.OneofNestedMessage
  831. }
  832. return nil
  833. }
  834. func (m *TestAllTypes) GetOneofString() string {
  835. if x, ok := m.GetOneofField().(*TestAllTypes_OneofString); ok {
  836. return x.OneofString
  837. }
  838. return ""
  839. }
  840. func (m *TestAllTypes) GetOneofBytes() []byte {
  841. if x, ok := m.GetOneofField().(*TestAllTypes_OneofBytes); ok {
  842. return x.OneofBytes
  843. }
  844. return nil
  845. }
  846. func (m *TestAllTypes) GetOneofBool() bool {
  847. if x, ok := m.GetOneofField().(*TestAllTypes_OneofBool); ok {
  848. return x.OneofBool
  849. }
  850. return false
  851. }
  852. func (m *TestAllTypes) GetOneofUint64() uint64 {
  853. if x, ok := m.GetOneofField().(*TestAllTypes_OneofUint64); ok {
  854. return x.OneofUint64
  855. }
  856. return 0
  857. }
  858. func (m *TestAllTypes) GetOneofFloat() float32 {
  859. if x, ok := m.GetOneofField().(*TestAllTypes_OneofFloat); ok {
  860. return x.OneofFloat
  861. }
  862. return 0
  863. }
  864. func (m *TestAllTypes) GetOneofDouble() float64 {
  865. if x, ok := m.GetOneofField().(*TestAllTypes_OneofDouble); ok {
  866. return x.OneofDouble
  867. }
  868. return 0
  869. }
  870. func (m *TestAllTypes) GetOneofEnum() TestAllTypes_NestedEnum {
  871. if x, ok := m.GetOneofField().(*TestAllTypes_OneofEnum); ok {
  872. return x.OneofEnum
  873. }
  874. return TestAllTypes_FOO
  875. }
  876. // XXX_OneofWrappers is for the internal use of the proto package.
  877. func (*TestAllTypes) XXX_OneofWrappers() []interface{} {
  878. return []interface{}{
  879. (*TestAllTypes_OneofUint32)(nil),
  880. (*TestAllTypes_OneofNestedMessage)(nil),
  881. (*TestAllTypes_OneofString)(nil),
  882. (*TestAllTypes_OneofBytes)(nil),
  883. (*TestAllTypes_OneofBool)(nil),
  884. (*TestAllTypes_OneofUint64)(nil),
  885. (*TestAllTypes_OneofFloat)(nil),
  886. (*TestAllTypes_OneofDouble)(nil),
  887. (*TestAllTypes_OneofEnum)(nil),
  888. }
  889. }
  890. // Deprecated: Do not use.
  891. type TestDeprecatedMessage struct {
  892. DeprecatedInt32 *int32 `protobuf:"varint,1,opt,name=deprecated_int32,json=deprecatedInt32" json:"deprecated_int32,omitempty"` // Deprecated: Do not use.
  893. // Types that are valid to be assigned to DeprecatedOneof:
  894. // *TestDeprecatedMessage_DeprecatedOneofField
  895. DeprecatedOneof isTestDeprecatedMessage_DeprecatedOneof `protobuf_oneof:"deprecated_oneof"`
  896. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  897. XXX_unrecognized []byte `json:"-"`
  898. XXX_sizecache int32 `json:"-"`
  899. }
  900. func (m *TestDeprecatedMessage) ProtoReflect() protoreflect.Message {
  901. return xxx_Test_protoFile_messageTypes[1].MessageOf(m)
  902. }
  903. func (m *TestDeprecatedMessage) Reset() { *m = TestDeprecatedMessage{} }
  904. func (m *TestDeprecatedMessage) String() string { return proto.CompactTextString(m) }
  905. func (*TestDeprecatedMessage) ProtoMessage() {}
  906. func (*TestDeprecatedMessage) Descriptor() ([]byte, []int) {
  907. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{1}
  908. }
  909. func (m *TestDeprecatedMessage) XXX_Unmarshal(b []byte) error {
  910. return xxx_messageInfo_TestDeprecatedMessage.Unmarshal(m, b)
  911. }
  912. func (m *TestDeprecatedMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  913. return xxx_messageInfo_TestDeprecatedMessage.Marshal(b, m, deterministic)
  914. }
  915. func (m *TestDeprecatedMessage) XXX_Merge(src proto.Message) {
  916. xxx_messageInfo_TestDeprecatedMessage.Merge(m, src)
  917. }
  918. func (m *TestDeprecatedMessage) XXX_Size() int {
  919. return xxx_messageInfo_TestDeprecatedMessage.Size(m)
  920. }
  921. func (m *TestDeprecatedMessage) XXX_DiscardUnknown() {
  922. xxx_messageInfo_TestDeprecatedMessage.DiscardUnknown(m)
  923. }
  924. var xxx_messageInfo_TestDeprecatedMessage proto.InternalMessageInfo
  925. // Deprecated: Do not use.
  926. func (m *TestDeprecatedMessage) GetDeprecatedInt32() int32 {
  927. if m != nil && m.DeprecatedInt32 != nil {
  928. return *m.DeprecatedInt32
  929. }
  930. return 0
  931. }
  932. type isTestDeprecatedMessage_DeprecatedOneof interface {
  933. isTestDeprecatedMessage_DeprecatedOneof()
  934. }
  935. type TestDeprecatedMessage_DeprecatedOneofField struct {
  936. DeprecatedOneofField int32 `protobuf:"varint,2,opt,name=deprecated_oneof_field,json=deprecatedOneofField,oneof"`
  937. }
  938. func (*TestDeprecatedMessage_DeprecatedOneofField) isTestDeprecatedMessage_DeprecatedOneof() {}
  939. func (m *TestDeprecatedMessage) GetDeprecatedOneof() isTestDeprecatedMessage_DeprecatedOneof {
  940. if m != nil {
  941. return m.DeprecatedOneof
  942. }
  943. return nil
  944. }
  945. // Deprecated: Do not use.
  946. func (m *TestDeprecatedMessage) GetDeprecatedOneofField() int32 {
  947. if x, ok := m.GetDeprecatedOneof().(*TestDeprecatedMessage_DeprecatedOneofField); ok {
  948. return x.DeprecatedOneofField
  949. }
  950. return 0
  951. }
  952. // XXX_OneofWrappers is for the internal use of the proto package.
  953. func (*TestDeprecatedMessage) XXX_OneofWrappers() []interface{} {
  954. return []interface{}{
  955. (*TestDeprecatedMessage_DeprecatedOneofField)(nil),
  956. }
  957. }
  958. type ForeignMessage struct {
  959. C *int32 `protobuf:"varint,1,opt,name=c" json:"c,omitempty"`
  960. D *int32 `protobuf:"varint,2,opt,name=d" json:"d,omitempty"`
  961. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  962. XXX_unrecognized []byte `json:"-"`
  963. XXX_sizecache int32 `json:"-"`
  964. }
  965. func (m *ForeignMessage) ProtoReflect() protoreflect.Message {
  966. return xxx_Test_protoFile_messageTypes[2].MessageOf(m)
  967. }
  968. func (m *ForeignMessage) Reset() { *m = ForeignMessage{} }
  969. func (m *ForeignMessage) String() string { return proto.CompactTextString(m) }
  970. func (*ForeignMessage) ProtoMessage() {}
  971. func (*ForeignMessage) Descriptor() ([]byte, []int) {
  972. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{2}
  973. }
  974. func (m *ForeignMessage) XXX_Unmarshal(b []byte) error {
  975. return xxx_messageInfo_ForeignMessage.Unmarshal(m, b)
  976. }
  977. func (m *ForeignMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  978. return xxx_messageInfo_ForeignMessage.Marshal(b, m, deterministic)
  979. }
  980. func (m *ForeignMessage) XXX_Merge(src proto.Message) {
  981. xxx_messageInfo_ForeignMessage.Merge(m, src)
  982. }
  983. func (m *ForeignMessage) XXX_Size() int {
  984. return xxx_messageInfo_ForeignMessage.Size(m)
  985. }
  986. func (m *ForeignMessage) XXX_DiscardUnknown() {
  987. xxx_messageInfo_ForeignMessage.DiscardUnknown(m)
  988. }
  989. var xxx_messageInfo_ForeignMessage proto.InternalMessageInfo
  990. func (m *ForeignMessage) GetC() int32 {
  991. if m != nil && m.C != nil {
  992. return *m.C
  993. }
  994. return 0
  995. }
  996. func (m *ForeignMessage) GetD() int32 {
  997. if m != nil && m.D != nil {
  998. return *m.D
  999. }
  1000. return 0
  1001. }
  1002. type TestReservedFields struct {
  1003. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1004. XXX_unrecognized []byte `json:"-"`
  1005. XXX_sizecache int32 `json:"-"`
  1006. }
  1007. func (m *TestReservedFields) ProtoReflect() protoreflect.Message {
  1008. return xxx_Test_protoFile_messageTypes[3].MessageOf(m)
  1009. }
  1010. func (m *TestReservedFields) Reset() { *m = TestReservedFields{} }
  1011. func (m *TestReservedFields) String() string { return proto.CompactTextString(m) }
  1012. func (*TestReservedFields) ProtoMessage() {}
  1013. func (*TestReservedFields) Descriptor() ([]byte, []int) {
  1014. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{3}
  1015. }
  1016. func (m *TestReservedFields) XXX_Unmarshal(b []byte) error {
  1017. return xxx_messageInfo_TestReservedFields.Unmarshal(m, b)
  1018. }
  1019. func (m *TestReservedFields) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1020. return xxx_messageInfo_TestReservedFields.Marshal(b, m, deterministic)
  1021. }
  1022. func (m *TestReservedFields) XXX_Merge(src proto.Message) {
  1023. xxx_messageInfo_TestReservedFields.Merge(m, src)
  1024. }
  1025. func (m *TestReservedFields) XXX_Size() int {
  1026. return xxx_messageInfo_TestReservedFields.Size(m)
  1027. }
  1028. func (m *TestReservedFields) XXX_DiscardUnknown() {
  1029. xxx_messageInfo_TestReservedFields.DiscardUnknown(m)
  1030. }
  1031. var xxx_messageInfo_TestReservedFields proto.InternalMessageInfo
  1032. type TestAllExtensions struct {
  1033. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1034. proto.XXX_InternalExtensions `json:"-"`
  1035. XXX_unrecognized []byte `json:"-"`
  1036. XXX_sizecache int32 `json:"-"`
  1037. }
  1038. func (m *TestAllExtensions) ProtoReflect() protoreflect.Message {
  1039. return xxx_Test_protoFile_messageTypes[4].MessageOf(m)
  1040. }
  1041. func (m *TestAllExtensions) Reset() { *m = TestAllExtensions{} }
  1042. func (m *TestAllExtensions) String() string { return proto.CompactTextString(m) }
  1043. func (*TestAllExtensions) ProtoMessage() {}
  1044. func (*TestAllExtensions) Descriptor() ([]byte, []int) {
  1045. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{4}
  1046. }
  1047. var extRange_TestAllExtensions = []proto.ExtensionRange{
  1048. {Start: 1, End: 536870911},
  1049. }
  1050. func (*TestAllExtensions) ExtensionRangeArray() []proto.ExtensionRange {
  1051. return extRange_TestAllExtensions
  1052. }
  1053. func (m *TestAllExtensions) XXX_Unmarshal(b []byte) error {
  1054. return xxx_messageInfo_TestAllExtensions.Unmarshal(m, b)
  1055. }
  1056. func (m *TestAllExtensions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1057. return xxx_messageInfo_TestAllExtensions.Marshal(b, m, deterministic)
  1058. }
  1059. func (m *TestAllExtensions) XXX_Merge(src proto.Message) {
  1060. xxx_messageInfo_TestAllExtensions.Merge(m, src)
  1061. }
  1062. func (m *TestAllExtensions) XXX_Size() int {
  1063. return xxx_messageInfo_TestAllExtensions.Size(m)
  1064. }
  1065. func (m *TestAllExtensions) XXX_DiscardUnknown() {
  1066. xxx_messageInfo_TestAllExtensions.DiscardUnknown(m)
  1067. }
  1068. var xxx_messageInfo_TestAllExtensions proto.InternalMessageInfo
  1069. type OptionalGroupExtension struct {
  1070. A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"`
  1071. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1072. XXX_unrecognized []byte `json:"-"`
  1073. XXX_sizecache int32 `json:"-"`
  1074. }
  1075. func (m *OptionalGroupExtension) ProtoReflect() protoreflect.Message {
  1076. return xxx_Test_protoFile_messageTypes[5].MessageOf(m)
  1077. }
  1078. func (m *OptionalGroupExtension) Reset() { *m = OptionalGroupExtension{} }
  1079. func (m *OptionalGroupExtension) String() string { return proto.CompactTextString(m) }
  1080. func (*OptionalGroupExtension) ProtoMessage() {}
  1081. func (*OptionalGroupExtension) Descriptor() ([]byte, []int) {
  1082. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{5}
  1083. }
  1084. func (m *OptionalGroupExtension) XXX_Unmarshal(b []byte) error {
  1085. return xxx_messageInfo_OptionalGroupExtension.Unmarshal(m, b)
  1086. }
  1087. func (m *OptionalGroupExtension) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1088. return xxx_messageInfo_OptionalGroupExtension.Marshal(b, m, deterministic)
  1089. }
  1090. func (m *OptionalGroupExtension) XXX_Merge(src proto.Message) {
  1091. xxx_messageInfo_OptionalGroupExtension.Merge(m, src)
  1092. }
  1093. func (m *OptionalGroupExtension) XXX_Size() int {
  1094. return xxx_messageInfo_OptionalGroupExtension.Size(m)
  1095. }
  1096. func (m *OptionalGroupExtension) XXX_DiscardUnknown() {
  1097. xxx_messageInfo_OptionalGroupExtension.DiscardUnknown(m)
  1098. }
  1099. var xxx_messageInfo_OptionalGroupExtension proto.InternalMessageInfo
  1100. func (m *OptionalGroupExtension) GetA() int32 {
  1101. if m != nil && m.A != nil {
  1102. return *m.A
  1103. }
  1104. return 0
  1105. }
  1106. type RepeatedGroupExtension struct {
  1107. A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"`
  1108. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1109. XXX_unrecognized []byte `json:"-"`
  1110. XXX_sizecache int32 `json:"-"`
  1111. }
  1112. func (m *RepeatedGroupExtension) ProtoReflect() protoreflect.Message {
  1113. return xxx_Test_protoFile_messageTypes[6].MessageOf(m)
  1114. }
  1115. func (m *RepeatedGroupExtension) Reset() { *m = RepeatedGroupExtension{} }
  1116. func (m *RepeatedGroupExtension) String() string { return proto.CompactTextString(m) }
  1117. func (*RepeatedGroupExtension) ProtoMessage() {}
  1118. func (*RepeatedGroupExtension) Descriptor() ([]byte, []int) {
  1119. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{6}
  1120. }
  1121. func (m *RepeatedGroupExtension) XXX_Unmarshal(b []byte) error {
  1122. return xxx_messageInfo_RepeatedGroupExtension.Unmarshal(m, b)
  1123. }
  1124. func (m *RepeatedGroupExtension) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1125. return xxx_messageInfo_RepeatedGroupExtension.Marshal(b, m, deterministic)
  1126. }
  1127. func (m *RepeatedGroupExtension) XXX_Merge(src proto.Message) {
  1128. xxx_messageInfo_RepeatedGroupExtension.Merge(m, src)
  1129. }
  1130. func (m *RepeatedGroupExtension) XXX_Size() int {
  1131. return xxx_messageInfo_RepeatedGroupExtension.Size(m)
  1132. }
  1133. func (m *RepeatedGroupExtension) XXX_DiscardUnknown() {
  1134. xxx_messageInfo_RepeatedGroupExtension.DiscardUnknown(m)
  1135. }
  1136. var xxx_messageInfo_RepeatedGroupExtension proto.InternalMessageInfo
  1137. func (m *RepeatedGroupExtension) GetA() int32 {
  1138. if m != nil && m.A != nil {
  1139. return *m.A
  1140. }
  1141. return 0
  1142. }
  1143. type TestNestedExtension struct {
  1144. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1145. XXX_unrecognized []byte `json:"-"`
  1146. XXX_sizecache int32 `json:"-"`
  1147. }
  1148. func (m *TestNestedExtension) ProtoReflect() protoreflect.Message {
  1149. return xxx_Test_protoFile_messageTypes[7].MessageOf(m)
  1150. }
  1151. func (m *TestNestedExtension) Reset() { *m = TestNestedExtension{} }
  1152. func (m *TestNestedExtension) String() string { return proto.CompactTextString(m) }
  1153. func (*TestNestedExtension) ProtoMessage() {}
  1154. func (*TestNestedExtension) Descriptor() ([]byte, []int) {
  1155. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{7}
  1156. }
  1157. func (m *TestNestedExtension) XXX_Unmarshal(b []byte) error {
  1158. return xxx_messageInfo_TestNestedExtension.Unmarshal(m, b)
  1159. }
  1160. func (m *TestNestedExtension) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1161. return xxx_messageInfo_TestNestedExtension.Marshal(b, m, deterministic)
  1162. }
  1163. func (m *TestNestedExtension) XXX_Merge(src proto.Message) {
  1164. xxx_messageInfo_TestNestedExtension.Merge(m, src)
  1165. }
  1166. func (m *TestNestedExtension) XXX_Size() int {
  1167. return xxx_messageInfo_TestNestedExtension.Size(m)
  1168. }
  1169. func (m *TestNestedExtension) XXX_DiscardUnknown() {
  1170. xxx_messageInfo_TestNestedExtension.DiscardUnknown(m)
  1171. }
  1172. var xxx_messageInfo_TestNestedExtension proto.InternalMessageInfo
  1173. // Test that RPC services work.
  1174. type FooRequest struct {
  1175. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1176. XXX_unrecognized []byte `json:"-"`
  1177. XXX_sizecache int32 `json:"-"`
  1178. }
  1179. func (m *FooRequest) ProtoReflect() protoreflect.Message {
  1180. return xxx_Test_protoFile_messageTypes[8].MessageOf(m)
  1181. }
  1182. func (m *FooRequest) Reset() { *m = FooRequest{} }
  1183. func (m *FooRequest) String() string { return proto.CompactTextString(m) }
  1184. func (*FooRequest) ProtoMessage() {}
  1185. func (*FooRequest) Descriptor() ([]byte, []int) {
  1186. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{8}
  1187. }
  1188. func (m *FooRequest) XXX_Unmarshal(b []byte) error {
  1189. return xxx_messageInfo_FooRequest.Unmarshal(m, b)
  1190. }
  1191. func (m *FooRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1192. return xxx_messageInfo_FooRequest.Marshal(b, m, deterministic)
  1193. }
  1194. func (m *FooRequest) XXX_Merge(src proto.Message) {
  1195. xxx_messageInfo_FooRequest.Merge(m, src)
  1196. }
  1197. func (m *FooRequest) XXX_Size() int {
  1198. return xxx_messageInfo_FooRequest.Size(m)
  1199. }
  1200. func (m *FooRequest) XXX_DiscardUnknown() {
  1201. xxx_messageInfo_FooRequest.DiscardUnknown(m)
  1202. }
  1203. var xxx_messageInfo_FooRequest proto.InternalMessageInfo
  1204. type FooResponse struct {
  1205. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1206. XXX_unrecognized []byte `json:"-"`
  1207. XXX_sizecache int32 `json:"-"`
  1208. }
  1209. func (m *FooResponse) ProtoReflect() protoreflect.Message {
  1210. return xxx_Test_protoFile_messageTypes[9].MessageOf(m)
  1211. }
  1212. func (m *FooResponse) Reset() { *m = FooResponse{} }
  1213. func (m *FooResponse) String() string { return proto.CompactTextString(m) }
  1214. func (*FooResponse) ProtoMessage() {}
  1215. func (*FooResponse) Descriptor() ([]byte, []int) {
  1216. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{9}
  1217. }
  1218. func (m *FooResponse) XXX_Unmarshal(b []byte) error {
  1219. return xxx_messageInfo_FooResponse.Unmarshal(m, b)
  1220. }
  1221. func (m *FooResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1222. return xxx_messageInfo_FooResponse.Marshal(b, m, deterministic)
  1223. }
  1224. func (m *FooResponse) XXX_Merge(src proto.Message) {
  1225. xxx_messageInfo_FooResponse.Merge(m, src)
  1226. }
  1227. func (m *FooResponse) XXX_Size() int {
  1228. return xxx_messageInfo_FooResponse.Size(m)
  1229. }
  1230. func (m *FooResponse) XXX_DiscardUnknown() {
  1231. xxx_messageInfo_FooResponse.DiscardUnknown(m)
  1232. }
  1233. var xxx_messageInfo_FooResponse proto.InternalMessageInfo
  1234. type TestAllTypes_NestedMessage struct {
  1235. A *int32 `protobuf:"varint,1,opt,name=a" json:"a,omitempty"`
  1236. Corecursive *TestAllTypes `protobuf:"bytes,2,opt,name=corecursive" json:"corecursive,omitempty"`
  1237. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1238. XXX_unrecognized []byte `json:"-"`
  1239. XXX_sizecache int32 `json:"-"`
  1240. }
  1241. func (m *TestAllTypes_NestedMessage) ProtoReflect() protoreflect.Message {
  1242. return xxx_Test_protoFile_messageTypes[10].MessageOf(m)
  1243. }
  1244. func (m *TestAllTypes_NestedMessage) Reset() { *m = TestAllTypes_NestedMessage{} }
  1245. func (m *TestAllTypes_NestedMessage) String() string { return proto.CompactTextString(m) }
  1246. func (*TestAllTypes_NestedMessage) ProtoMessage() {}
  1247. func (*TestAllTypes_NestedMessage) Descriptor() ([]byte, []int) {
  1248. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{0, 0}
  1249. }
  1250. func (m *TestAllTypes_NestedMessage) XXX_Unmarshal(b []byte) error {
  1251. return xxx_messageInfo_TestAllTypes_NestedMessage.Unmarshal(m, b)
  1252. }
  1253. func (m *TestAllTypes_NestedMessage) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1254. return xxx_messageInfo_TestAllTypes_NestedMessage.Marshal(b, m, deterministic)
  1255. }
  1256. func (m *TestAllTypes_NestedMessage) XXX_Merge(src proto.Message) {
  1257. xxx_messageInfo_TestAllTypes_NestedMessage.Merge(m, src)
  1258. }
  1259. func (m *TestAllTypes_NestedMessage) XXX_Size() int {
  1260. return xxx_messageInfo_TestAllTypes_NestedMessage.Size(m)
  1261. }
  1262. func (m *TestAllTypes_NestedMessage) XXX_DiscardUnknown() {
  1263. xxx_messageInfo_TestAllTypes_NestedMessage.DiscardUnknown(m)
  1264. }
  1265. var xxx_messageInfo_TestAllTypes_NestedMessage proto.InternalMessageInfo
  1266. func (m *TestAllTypes_NestedMessage) GetA() int32 {
  1267. if m != nil && m.A != nil {
  1268. return *m.A
  1269. }
  1270. return 0
  1271. }
  1272. func (m *TestAllTypes_NestedMessage) GetCorecursive() *TestAllTypes {
  1273. if m != nil {
  1274. return m.Corecursive
  1275. }
  1276. return nil
  1277. }
  1278. type TestAllTypes_OptionalGroup struct {
  1279. A *int32 `protobuf:"varint,17,opt,name=a" json:"a,omitempty"`
  1280. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1281. XXX_unrecognized []byte `json:"-"`
  1282. XXX_sizecache int32 `json:"-"`
  1283. }
  1284. func (m *TestAllTypes_OptionalGroup) ProtoReflect() protoreflect.Message {
  1285. return xxx_Test_protoFile_messageTypes[11].MessageOf(m)
  1286. }
  1287. func (m *TestAllTypes_OptionalGroup) Reset() { *m = TestAllTypes_OptionalGroup{} }
  1288. func (m *TestAllTypes_OptionalGroup) String() string { return proto.CompactTextString(m) }
  1289. func (*TestAllTypes_OptionalGroup) ProtoMessage() {}
  1290. func (*TestAllTypes_OptionalGroup) Descriptor() ([]byte, []int) {
  1291. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{0, 1}
  1292. }
  1293. func (m *TestAllTypes_OptionalGroup) XXX_Unmarshal(b []byte) error {
  1294. return xxx_messageInfo_TestAllTypes_OptionalGroup.Unmarshal(m, b)
  1295. }
  1296. func (m *TestAllTypes_OptionalGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1297. return xxx_messageInfo_TestAllTypes_OptionalGroup.Marshal(b, m, deterministic)
  1298. }
  1299. func (m *TestAllTypes_OptionalGroup) XXX_Merge(src proto.Message) {
  1300. xxx_messageInfo_TestAllTypes_OptionalGroup.Merge(m, src)
  1301. }
  1302. func (m *TestAllTypes_OptionalGroup) XXX_Size() int {
  1303. return xxx_messageInfo_TestAllTypes_OptionalGroup.Size(m)
  1304. }
  1305. func (m *TestAllTypes_OptionalGroup) XXX_DiscardUnknown() {
  1306. xxx_messageInfo_TestAllTypes_OptionalGroup.DiscardUnknown(m)
  1307. }
  1308. var xxx_messageInfo_TestAllTypes_OptionalGroup proto.InternalMessageInfo
  1309. func (m *TestAllTypes_OptionalGroup) GetA() int32 {
  1310. if m != nil && m.A != nil {
  1311. return *m.A
  1312. }
  1313. return 0
  1314. }
  1315. type TestAllTypes_RepeatedGroup struct {
  1316. A *int32 `protobuf:"varint,47,opt,name=a" json:"a,omitempty"`
  1317. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  1318. XXX_unrecognized []byte `json:"-"`
  1319. XXX_sizecache int32 `json:"-"`
  1320. }
  1321. func (m *TestAllTypes_RepeatedGroup) ProtoReflect() protoreflect.Message {
  1322. return xxx_Test_protoFile_messageTypes[12].MessageOf(m)
  1323. }
  1324. func (m *TestAllTypes_RepeatedGroup) Reset() { *m = TestAllTypes_RepeatedGroup{} }
  1325. func (m *TestAllTypes_RepeatedGroup) String() string { return proto.CompactTextString(m) }
  1326. func (*TestAllTypes_RepeatedGroup) ProtoMessage() {}
  1327. func (*TestAllTypes_RepeatedGroup) Descriptor() ([]byte, []int) {
  1328. return fileDescriptor_c161fcfdc0c3ff1e_gzipped, []int{0, 2}
  1329. }
  1330. func (m *TestAllTypes_RepeatedGroup) XXX_Unmarshal(b []byte) error {
  1331. return xxx_messageInfo_TestAllTypes_RepeatedGroup.Unmarshal(m, b)
  1332. }
  1333. func (m *TestAllTypes_RepeatedGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  1334. return xxx_messageInfo_TestAllTypes_RepeatedGroup.Marshal(b, m, deterministic)
  1335. }
  1336. func (m *TestAllTypes_RepeatedGroup) XXX_Merge(src proto.Message) {
  1337. xxx_messageInfo_TestAllTypes_RepeatedGroup.Merge(m, src)
  1338. }
  1339. func (m *TestAllTypes_RepeatedGroup) XXX_Size() int {
  1340. return xxx_messageInfo_TestAllTypes_RepeatedGroup.Size(m)
  1341. }
  1342. func (m *TestAllTypes_RepeatedGroup) XXX_DiscardUnknown() {
  1343. xxx_messageInfo_TestAllTypes_RepeatedGroup.DiscardUnknown(m)
  1344. }
  1345. var xxx_messageInfo_TestAllTypes_RepeatedGroup proto.InternalMessageInfo
  1346. func (m *TestAllTypes_RepeatedGroup) GetA() int32 {
  1347. if m != nil && m.A != nil {
  1348. return *m.A
  1349. }
  1350. return 0
  1351. }
  1352. var E_OptionalInt32Extension = &proto.ExtensionDesc{
  1353. ExtendedType: (*TestAllExtensions)(nil),
  1354. ExtensionType: (*int32)(nil),
  1355. Field: 1,
  1356. Name: "goproto.proto.test.optional_int32_extension",
  1357. Tag: "varint,1,opt,name=optional_int32_extension",
  1358. Filename: "test.proto",
  1359. }
  1360. var E_OptionalInt64Extension = &proto.ExtensionDesc{
  1361. ExtendedType: (*TestAllExtensions)(nil),
  1362. ExtensionType: (*int64)(nil),
  1363. Field: 2,
  1364. Name: "goproto.proto.test.optional_int64_extension",
  1365. Tag: "varint,2,opt,name=optional_int64_extension",
  1366. Filename: "test.proto",
  1367. }
  1368. var E_OptionalUint32Extension = &proto.ExtensionDesc{
  1369. ExtendedType: (*TestAllExtensions)(nil),
  1370. ExtensionType: (*uint32)(nil),
  1371. Field: 3,
  1372. Name: "goproto.proto.test.optional_uint32_extension",
  1373. Tag: "varint,3,opt,name=optional_uint32_extension",
  1374. Filename: "test.proto",
  1375. }
  1376. var E_OptionalUint64Extension = &proto.ExtensionDesc{
  1377. ExtendedType: (*TestAllExtensions)(nil),
  1378. ExtensionType: (*uint64)(nil),
  1379. Field: 4,
  1380. Name: "goproto.proto.test.optional_uint64_extension",
  1381. Tag: "varint,4,opt,name=optional_uint64_extension",
  1382. Filename: "test.proto",
  1383. }
  1384. var E_OptionalSint32Extension = &proto.ExtensionDesc{
  1385. ExtendedType: (*TestAllExtensions)(nil),
  1386. ExtensionType: (*int32)(nil),
  1387. Field: 5,
  1388. Name: "goproto.proto.test.optional_sint32_extension",
  1389. Tag: "zigzag32,5,opt,name=optional_sint32_extension",
  1390. Filename: "test.proto",
  1391. }
  1392. var E_OptionalSint64Extension = &proto.ExtensionDesc{
  1393. ExtendedType: (*TestAllExtensions)(nil),
  1394. ExtensionType: (*int64)(nil),
  1395. Field: 6,
  1396. Name: "goproto.proto.test.optional_sint64_extension",
  1397. Tag: "zigzag64,6,opt,name=optional_sint64_extension",
  1398. Filename: "test.proto",
  1399. }
  1400. var E_OptionalFixed32Extension = &proto.ExtensionDesc{
  1401. ExtendedType: (*TestAllExtensions)(nil),
  1402. ExtensionType: (*uint32)(nil),
  1403. Field: 7,
  1404. Name: "goproto.proto.test.optional_fixed32_extension",
  1405. Tag: "fixed32,7,opt,name=optional_fixed32_extension",
  1406. Filename: "test.proto",
  1407. }
  1408. var E_OptionalFixed64Extension = &proto.ExtensionDesc{
  1409. ExtendedType: (*TestAllExtensions)(nil),
  1410. ExtensionType: (*uint64)(nil),
  1411. Field: 8,
  1412. Name: "goproto.proto.test.optional_fixed64_extension",
  1413. Tag: "fixed64,8,opt,name=optional_fixed64_extension",
  1414. Filename: "test.proto",
  1415. }
  1416. var E_OptionalSfixed32Extension = &proto.ExtensionDesc{
  1417. ExtendedType: (*TestAllExtensions)(nil),
  1418. ExtensionType: (*int32)(nil),
  1419. Field: 9,
  1420. Name: "goproto.proto.test.optional_sfixed32_extension",
  1421. Tag: "fixed32,9,opt,name=optional_sfixed32_extension",
  1422. Filename: "test.proto",
  1423. }
  1424. var E_OptionalSfixed64Extension = &proto.ExtensionDesc{
  1425. ExtendedType: (*TestAllExtensions)(nil),
  1426. ExtensionType: (*int64)(nil),
  1427. Field: 10,
  1428. Name: "goproto.proto.test.optional_sfixed64_extension",
  1429. Tag: "fixed64,10,opt,name=optional_sfixed64_extension",
  1430. Filename: "test.proto",
  1431. }
  1432. var E_OptionalFloatExtension = &proto.ExtensionDesc{
  1433. ExtendedType: (*TestAllExtensions)(nil),
  1434. ExtensionType: (*float32)(nil),
  1435. Field: 11,
  1436. Name: "goproto.proto.test.optional_float_extension",
  1437. Tag: "fixed32,11,opt,name=optional_float_extension",
  1438. Filename: "test.proto",
  1439. }
  1440. var E_OptionalDoubleExtension = &proto.ExtensionDesc{
  1441. ExtendedType: (*TestAllExtensions)(nil),
  1442. ExtensionType: (*float64)(nil),
  1443. Field: 12,
  1444. Name: "goproto.proto.test.optional_double_extension",
  1445. Tag: "fixed64,12,opt,name=optional_double_extension",
  1446. Filename: "test.proto",
  1447. }
  1448. var E_OptionalBoolExtension = &proto.ExtensionDesc{
  1449. ExtendedType: (*TestAllExtensions)(nil),
  1450. ExtensionType: (*bool)(nil),
  1451. Field: 13,
  1452. Name: "goproto.proto.test.optional_bool_extension",
  1453. Tag: "varint,13,opt,name=optional_bool_extension",
  1454. Filename: "test.proto",
  1455. }
  1456. var E_OptionalStringExtension = &proto.ExtensionDesc{
  1457. ExtendedType: (*TestAllExtensions)(nil),
  1458. ExtensionType: (*string)(nil),
  1459. Field: 14,
  1460. Name: "goproto.proto.test.optional_string_extension",
  1461. Tag: "bytes,14,opt,name=optional_string_extension",
  1462. Filename: "test.proto",
  1463. }
  1464. var E_OptionalBytesExtension = &proto.ExtensionDesc{
  1465. ExtendedType: (*TestAllExtensions)(nil),
  1466. ExtensionType: ([]byte)(nil),
  1467. Field: 15,
  1468. Name: "goproto.proto.test.optional_bytes_extension",
  1469. Tag: "bytes,15,opt,name=optional_bytes_extension",
  1470. Filename: "test.proto",
  1471. }
  1472. var E_OptionalgroupExtension = &proto.ExtensionDesc{
  1473. ExtendedType: (*TestAllExtensions)(nil),
  1474. ExtensionType: (*OptionalGroupExtension)(nil),
  1475. Field: 16,
  1476. Name: "goproto.proto.test.optionalgroup_extension",
  1477. Tag: "group,16,opt,name=OptionalGroup_extension",
  1478. Filename: "test.proto",
  1479. }
  1480. var E_OptionalNestedMessageExtension = &proto.ExtensionDesc{
  1481. ExtendedType: (*TestAllExtensions)(nil),
  1482. ExtensionType: (*TestAllTypes_NestedMessage)(nil),
  1483. Field: 18,
  1484. Name: "goproto.proto.test.optional_nested_message_extension",
  1485. Tag: "bytes,18,opt,name=optional_nested_message_extension",
  1486. Filename: "test.proto",
  1487. }
  1488. var E_OptionalNestedEnumExtension = &proto.ExtensionDesc{
  1489. ExtendedType: (*TestAllExtensions)(nil),
  1490. ExtensionType: (*TestAllTypes_NestedEnum)(nil),
  1491. Field: 21,
  1492. Name: "goproto.proto.test.optional_nested_enum_extension",
  1493. Tag: "varint,21,opt,name=optional_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum",
  1494. Filename: "test.proto",
  1495. }
  1496. var E_RepeatedInt32Extension = &proto.ExtensionDesc{
  1497. ExtendedType: (*TestAllExtensions)(nil),
  1498. ExtensionType: ([]int32)(nil),
  1499. Field: 31,
  1500. Name: "goproto.proto.test.repeated_int32_extension",
  1501. Tag: "varint,31,rep,name=repeated_int32_extension",
  1502. Filename: "test.proto",
  1503. }
  1504. var E_RepeatedInt64Extension = &proto.ExtensionDesc{
  1505. ExtendedType: (*TestAllExtensions)(nil),
  1506. ExtensionType: ([]int64)(nil),
  1507. Field: 32,
  1508. Name: "goproto.proto.test.repeated_int64_extension",
  1509. Tag: "varint,32,rep,name=repeated_int64_extension",
  1510. Filename: "test.proto",
  1511. }
  1512. var E_RepeatedUint32Extension = &proto.ExtensionDesc{
  1513. ExtendedType: (*TestAllExtensions)(nil),
  1514. ExtensionType: ([]uint32)(nil),
  1515. Field: 33,
  1516. Name: "goproto.proto.test.repeated_uint32_extension",
  1517. Tag: "varint,33,rep,name=repeated_uint32_extension",
  1518. Filename: "test.proto",
  1519. }
  1520. var E_RepeatedUint64Extension = &proto.ExtensionDesc{
  1521. ExtendedType: (*TestAllExtensions)(nil),
  1522. ExtensionType: ([]uint64)(nil),
  1523. Field: 34,
  1524. Name: "goproto.proto.test.repeated_uint64_extension",
  1525. Tag: "varint,34,rep,name=repeated_uint64_extension",
  1526. Filename: "test.proto",
  1527. }
  1528. var E_RepeatedSint32Extension = &proto.ExtensionDesc{
  1529. ExtendedType: (*TestAllExtensions)(nil),
  1530. ExtensionType: ([]int32)(nil),
  1531. Field: 35,
  1532. Name: "goproto.proto.test.repeated_sint32_extension",
  1533. Tag: "zigzag32,35,rep,name=repeated_sint32_extension",
  1534. Filename: "test.proto",
  1535. }
  1536. var E_RepeatedSint64Extension = &proto.ExtensionDesc{
  1537. ExtendedType: (*TestAllExtensions)(nil),
  1538. ExtensionType: ([]int64)(nil),
  1539. Field: 36,
  1540. Name: "goproto.proto.test.repeated_sint64_extension",
  1541. Tag: "zigzag64,36,rep,name=repeated_sint64_extension",
  1542. Filename: "test.proto",
  1543. }
  1544. var E_RepeatedFixed32Extension = &proto.ExtensionDesc{
  1545. ExtendedType: (*TestAllExtensions)(nil),
  1546. ExtensionType: ([]uint32)(nil),
  1547. Field: 37,
  1548. Name: "goproto.proto.test.repeated_fixed32_extension",
  1549. Tag: "fixed32,37,rep,name=repeated_fixed32_extension",
  1550. Filename: "test.proto",
  1551. }
  1552. var E_RepeatedFixed64Extension = &proto.ExtensionDesc{
  1553. ExtendedType: (*TestAllExtensions)(nil),
  1554. ExtensionType: ([]uint64)(nil),
  1555. Field: 38,
  1556. Name: "goproto.proto.test.repeated_fixed64_extension",
  1557. Tag: "fixed64,38,rep,name=repeated_fixed64_extension",
  1558. Filename: "test.proto",
  1559. }
  1560. var E_RepeatedSfixed32Extension = &proto.ExtensionDesc{
  1561. ExtendedType: (*TestAllExtensions)(nil),
  1562. ExtensionType: ([]int32)(nil),
  1563. Field: 39,
  1564. Name: "goproto.proto.test.repeated_sfixed32_extension",
  1565. Tag: "fixed32,39,rep,name=repeated_sfixed32_extension",
  1566. Filename: "test.proto",
  1567. }
  1568. var E_RepeatedSfixed64Extension = &proto.ExtensionDesc{
  1569. ExtendedType: (*TestAllExtensions)(nil),
  1570. ExtensionType: ([]int64)(nil),
  1571. Field: 40,
  1572. Name: "goproto.proto.test.repeated_sfixed64_extension",
  1573. Tag: "fixed64,40,rep,name=repeated_sfixed64_extension",
  1574. Filename: "test.proto",
  1575. }
  1576. var E_RepeatedFloatExtension = &proto.ExtensionDesc{
  1577. ExtendedType: (*TestAllExtensions)(nil),
  1578. ExtensionType: ([]float32)(nil),
  1579. Field: 41,
  1580. Name: "goproto.proto.test.repeated_float_extension",
  1581. Tag: "fixed32,41,rep,name=repeated_float_extension",
  1582. Filename: "test.proto",
  1583. }
  1584. var E_RepeatedDoubleExtension = &proto.ExtensionDesc{
  1585. ExtendedType: (*TestAllExtensions)(nil),
  1586. ExtensionType: ([]float64)(nil),
  1587. Field: 42,
  1588. Name: "goproto.proto.test.repeated_double_extension",
  1589. Tag: "fixed64,42,rep,name=repeated_double_extension",
  1590. Filename: "test.proto",
  1591. }
  1592. var E_RepeatedBoolExtension = &proto.ExtensionDesc{
  1593. ExtendedType: (*TestAllExtensions)(nil),
  1594. ExtensionType: ([]bool)(nil),
  1595. Field: 43,
  1596. Name: "goproto.proto.test.repeated_bool_extension",
  1597. Tag: "varint,43,rep,name=repeated_bool_extension",
  1598. Filename: "test.proto",
  1599. }
  1600. var E_RepeatedStringExtension = &proto.ExtensionDesc{
  1601. ExtendedType: (*TestAllExtensions)(nil),
  1602. ExtensionType: ([]string)(nil),
  1603. Field: 44,
  1604. Name: "goproto.proto.test.repeated_string_extension",
  1605. Tag: "bytes,44,rep,name=repeated_string_extension",
  1606. Filename: "test.proto",
  1607. }
  1608. var E_RepeatedBytesExtension = &proto.ExtensionDesc{
  1609. ExtendedType: (*TestAllExtensions)(nil),
  1610. ExtensionType: ([][]byte)(nil),
  1611. Field: 45,
  1612. Name: "goproto.proto.test.repeated_bytes_extension",
  1613. Tag: "bytes,45,rep,name=repeated_bytes_extension",
  1614. Filename: "test.proto",
  1615. }
  1616. var E_RepeatedgroupExtension = &proto.ExtensionDesc{
  1617. ExtendedType: (*TestAllExtensions)(nil),
  1618. ExtensionType: ([]*RepeatedGroupExtension)(nil),
  1619. Field: 46,
  1620. Name: "goproto.proto.test.repeatedgroup_extension",
  1621. Tag: "group,46,rep,name=RepeatedGroup_extension",
  1622. Filename: "test.proto",
  1623. }
  1624. var E_RepeatedNestedMessageExtension = &proto.ExtensionDesc{
  1625. ExtendedType: (*TestAllExtensions)(nil),
  1626. ExtensionType: ([]*TestAllTypes_NestedMessage)(nil),
  1627. Field: 48,
  1628. Name: "goproto.proto.test.repeated_nested_message_extension",
  1629. Tag: "bytes,48,rep,name=repeated_nested_message_extension",
  1630. Filename: "test.proto",
  1631. }
  1632. var E_RepeatedNestedEnumExtension = &proto.ExtensionDesc{
  1633. ExtendedType: (*TestAllExtensions)(nil),
  1634. ExtensionType: ([]TestAllTypes_NestedEnum)(nil),
  1635. Field: 51,
  1636. Name: "goproto.proto.test.repeated_nested_enum_extension",
  1637. Tag: "varint,51,rep,name=repeated_nested_enum_extension,enum=goproto.proto.test.TestAllTypes_NestedEnum",
  1638. Filename: "test.proto",
  1639. }
  1640. var E_TestNestedExtension_NestedStringExtension = &proto.ExtensionDesc{
  1641. ExtendedType: (*TestAllExtensions)(nil),
  1642. ExtensionType: (*string)(nil),
  1643. Field: 1003,
  1644. Name: "goproto.proto.test.TestNestedExtension.nested_string_extension",
  1645. Tag: "bytes,1003,opt,name=nested_string_extension",
  1646. Filename: "test.proto",
  1647. }
  1648. func init() {
  1649. proto.RegisterFile("test.proto", fileDescriptor_c161fcfdc0c3ff1e_gzipped)
  1650. proto.RegisterEnum("goproto.proto.test.ForeignEnum", ForeignEnum_name, ForeignEnum_value)
  1651. proto.RegisterEnum("goproto.proto.test.TestReservedEnumFields", TestReservedEnumFields_name, TestReservedEnumFields_value)
  1652. proto.RegisterEnum("goproto.proto.test.TestAllTypes_NestedEnum", TestAllTypes_NestedEnum_name, TestAllTypes_NestedEnum_value)
  1653. proto.RegisterEnum("goproto.proto.test.TestDeprecatedMessage_DeprecatedEnum", TestDeprecatedMessage_DeprecatedEnum_name, TestDeprecatedMessage_DeprecatedEnum_value)
  1654. proto.RegisterType((*TestAllTypes)(nil), "goproto.proto.test.TestAllTypes")
  1655. proto.RegisterMapType((map[bool]bool)(nil), "goproto.proto.test.TestAllTypes.MapBoolBoolEntry")
  1656. proto.RegisterMapType((map[uint32]uint32)(nil), "goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry")
  1657. proto.RegisterMapType((map[uint64]uint64)(nil), "goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry")
  1658. proto.RegisterMapType((map[int32]float64)(nil), "goproto.proto.test.TestAllTypes.MapInt32DoubleEntry")
  1659. proto.RegisterMapType((map[int32]float32)(nil), "goproto.proto.test.TestAllTypes.MapInt32FloatEntry")
  1660. proto.RegisterMapType((map[int32]int32)(nil), "goproto.proto.test.TestAllTypes.MapInt32Int32Entry")
  1661. proto.RegisterMapType((map[int64]int64)(nil), "goproto.proto.test.TestAllTypes.MapInt64Int64Entry")
  1662. proto.RegisterMapType((map[int32]int32)(nil), "goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry")
  1663. proto.RegisterMapType((map[int64]int64)(nil), "goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry")
  1664. proto.RegisterMapType((map[int32]int32)(nil), "goproto.proto.test.TestAllTypes.MapSint32Sint32Entry")
  1665. proto.RegisterMapType((map[int64]int64)(nil), "goproto.proto.test.TestAllTypes.MapSint64Sint64Entry")
  1666. proto.RegisterMapType((map[string][]byte)(nil), "goproto.proto.test.TestAllTypes.MapStringBytesEntry")
  1667. proto.RegisterMapType((map[string]TestAllTypes_NestedEnum)(nil), "goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry")
  1668. proto.RegisterMapType((map[string]*TestAllTypes_NestedMessage)(nil), "goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry")
  1669. proto.RegisterMapType((map[string]string)(nil), "goproto.proto.test.TestAllTypes.MapStringStringEntry")
  1670. proto.RegisterMapType((map[uint32]uint32)(nil), "goproto.proto.test.TestAllTypes.MapUint32Uint32Entry")
  1671. proto.RegisterMapType((map[uint64]uint64)(nil), "goproto.proto.test.TestAllTypes.MapUint64Uint64Entry")
  1672. proto.RegisterType((*TestDeprecatedMessage)(nil), "goproto.proto.test.TestDeprecatedMessage")
  1673. proto.RegisterType((*ForeignMessage)(nil), "goproto.proto.test.ForeignMessage")
  1674. proto.RegisterType((*TestReservedFields)(nil), "goproto.proto.test.TestReservedFields")
  1675. proto.RegisterType((*TestAllExtensions)(nil), "goproto.proto.test.TestAllExtensions")
  1676. proto.RegisterType((*OptionalGroupExtension)(nil), "goproto.proto.test.OptionalGroup_extension")
  1677. proto.RegisterType((*RepeatedGroupExtension)(nil), "goproto.proto.test.RepeatedGroup_extension")
  1678. proto.RegisterType((*TestNestedExtension)(nil), "goproto.proto.test.TestNestedExtension")
  1679. proto.RegisterType((*FooRequest)(nil), "goproto.proto.test.FooRequest")
  1680. proto.RegisterType((*FooResponse)(nil), "goproto.proto.test.FooResponse")
  1681. proto.RegisterType((*TestAllTypes_NestedMessage)(nil), "goproto.proto.test.TestAllTypes.NestedMessage")
  1682. proto.RegisterType((*TestAllTypes_OptionalGroup)(nil), "goproto.proto.test.TestAllTypes.OptionalGroup")
  1683. proto.RegisterType((*TestAllTypes_RepeatedGroup)(nil), "goproto.proto.test.TestAllTypes.RepeatedGroup")
  1684. proto.RegisterExtension(E_OptionalInt32Extension)
  1685. proto.RegisterExtension(E_OptionalInt64Extension)
  1686. proto.RegisterExtension(E_OptionalUint32Extension)
  1687. proto.RegisterExtension(E_OptionalUint64Extension)
  1688. proto.RegisterExtension(E_OptionalSint32Extension)
  1689. proto.RegisterExtension(E_OptionalSint64Extension)
  1690. proto.RegisterExtension(E_OptionalFixed32Extension)
  1691. proto.RegisterExtension(E_OptionalFixed64Extension)
  1692. proto.RegisterExtension(E_OptionalSfixed32Extension)
  1693. proto.RegisterExtension(E_OptionalSfixed64Extension)
  1694. proto.RegisterExtension(E_OptionalFloatExtension)
  1695. proto.RegisterExtension(E_OptionalDoubleExtension)
  1696. proto.RegisterExtension(E_OptionalBoolExtension)
  1697. proto.RegisterExtension(E_OptionalStringExtension)
  1698. proto.RegisterExtension(E_OptionalBytesExtension)
  1699. proto.RegisterExtension(E_OptionalgroupExtension)
  1700. proto.RegisterExtension(E_OptionalNestedMessageExtension)
  1701. proto.RegisterExtension(E_OptionalNestedEnumExtension)
  1702. proto.RegisterExtension(E_RepeatedInt32Extension)
  1703. proto.RegisterExtension(E_RepeatedInt64Extension)
  1704. proto.RegisterExtension(E_RepeatedUint32Extension)
  1705. proto.RegisterExtension(E_RepeatedUint64Extension)
  1706. proto.RegisterExtension(E_RepeatedSint32Extension)
  1707. proto.RegisterExtension(E_RepeatedSint64Extension)
  1708. proto.RegisterExtension(E_RepeatedFixed32Extension)
  1709. proto.RegisterExtension(E_RepeatedFixed64Extension)
  1710. proto.RegisterExtension(E_RepeatedSfixed32Extension)
  1711. proto.RegisterExtension(E_RepeatedSfixed64Extension)
  1712. proto.RegisterExtension(E_RepeatedFloatExtension)
  1713. proto.RegisterExtension(E_RepeatedDoubleExtension)
  1714. proto.RegisterExtension(E_RepeatedBoolExtension)
  1715. proto.RegisterExtension(E_RepeatedStringExtension)
  1716. proto.RegisterExtension(E_RepeatedBytesExtension)
  1717. proto.RegisterExtension(E_RepeatedgroupExtension)
  1718. proto.RegisterExtension(E_RepeatedNestedMessageExtension)
  1719. proto.RegisterExtension(E_RepeatedNestedEnumExtension)
  1720. proto.RegisterExtension(E_TestNestedExtension_NestedStringExtension)
  1721. }
  1722. var fileDescriptor_c161fcfdc0c3ff1e = []byte{
  1723. // 12054 bytes of the wire-encoded FileDescriptorProto
  1724. 0x0a, 0x0a, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x12, 0x67, 0x6f,
  1725. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  1726. 0x1a, 0x11, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x70, 0x72,
  1727. 0x6f, 0x74, 0x6f, 0x1a, 0x11, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63,
  1728. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x0f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x77, 0x65, 0x61,
  1729. 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xe4, 0x36, 0x0a, 0x0c, 0x54, 0x65, 0x73, 0x74,
  1730. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69,
  1731. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
  1732. 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12,
  1733. 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x36,
  1734. 0x34, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  1735. 0x6c, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  1736. 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52,
  1737. 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12,
  1738. 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74,
  1739. 0x36, 0x34, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  1740. 0x61, 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69,
  1741. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x05, 0x20, 0x01, 0x28,
  1742. 0x11, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x33,
  1743. 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69,
  1744. 0x6e, 0x74, 0x36, 0x34, 0x18, 0x06, 0x20, 0x01, 0x28, 0x12, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69,
  1745. 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x10, 0x6f, 0x70,
  1746. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x07,
  1747. 0x20, 0x01, 0x28, 0x07, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69,
  1748. 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  1749. 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x08, 0x20, 0x01, 0x28, 0x06, 0x52,
  1750. 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  1751. 0x12, 0x2b, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69,
  1752. 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x10, 0x6f, 0x70, 0x74,
  1753. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2b, 0x0a,
  1754. 0x11, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64,
  1755. 0x36, 0x34, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x10, 0x52, 0x10, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  1756. 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70,
  1757. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x0b, 0x20, 0x01,
  1758. 0x28, 0x02, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6c, 0x6f, 0x61,
  1759. 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f,
  1760. 0x75, 0x62, 0x6c, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69,
  1761. 0x6f, 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x70,
  1762. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x0d, 0x20, 0x01, 0x28,
  1763. 0x08, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x12,
  1764. 0x27, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x69,
  1765. 0x6e, 0x67, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  1766. 0x61, 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x25, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x69,
  1767. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0c,
  1768. 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12,
  1769. 0x54, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70,
  1770. 0x18, 0x10, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1771. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  1772. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  1773. 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  1774. 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x66, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  1775. 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
  1776. 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1777. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  1778. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d,
  1779. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  1780. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5c, 0x0a,
  1781. 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67,
  1782. 0x6e, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32,
  1783. 0x22, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  1784. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73,
  1785. 0x61, 0x67, 0x65, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x6f, 0x72,
  1786. 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x59, 0x0a, 0x17, 0x6f,
  1787. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x6d,
  1788. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67,
  1789. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  1790. 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52,
  1791. 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d,
  1792. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5d, 0x0a, 0x14, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  1793. 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x15,
  1794. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  1795. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  1796. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75,
  1797. 0x6d, 0x52, 0x12, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73, 0x74, 0x65,
  1798. 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x53, 0x0a, 0x15, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  1799. 0x6c, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x16,
  1800. 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  1801. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67,
  1802. 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x13, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46,
  1803. 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x50, 0x0a, 0x14, 0x6f, 0x70,
  1804. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x65, 0x6e,
  1805. 0x75, 0x6d, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  1806. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d,
  1807. 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  1808. 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x25, 0x0a, 0x0e,
  1809. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x1f,
  1810. 0x20, 0x03, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e,
  1811. 0x74, 0x33, 0x32, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  1812. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x20, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0d, 0x72, 0x65, 0x70,
  1813. 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65,
  1814. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x21, 0x20,
  1815. 0x03, 0x28, 0x0d, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e,
  1816. 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  1817. 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x22, 0x20, 0x03, 0x28, 0x04, 0x52, 0x0e, 0x72, 0x65,
  1818. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x27, 0x0a, 0x0f,
  1819. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18,
  1820. 0x23, 0x20, 0x03, 0x28, 0x11, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53,
  1821. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  1822. 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x24, 0x20, 0x03, 0x28, 0x12, 0x52, 0x0e,
  1823. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29,
  1824. 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64,
  1825. 0x33, 0x32, 0x18, 0x25, 0x20, 0x03, 0x28, 0x07, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  1826. 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x10, 0x72, 0x65, 0x70,
  1827. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x26, 0x20,
  1828. 0x03, 0x28, 0x06, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78,
  1829. 0x65, 0x64, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  1830. 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x27, 0x20, 0x03, 0x28, 0x0f, 0x52,
  1831. 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  1832. 0x32, 0x12, 0x2b, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66,
  1833. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x28, 0x20, 0x03, 0x28, 0x10, 0x52, 0x10, 0x72, 0x65,
  1834. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x25,
  1835. 0x0a, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74,
  1836. 0x18, 0x29, 0x20, 0x03, 0x28, 0x02, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64,
  1837. 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  1838. 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x2a, 0x20, 0x03, 0x28, 0x01, 0x52, 0x0e,
  1839. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x23,
  1840. 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18,
  1841. 0x2b, 0x20, 0x03, 0x28, 0x08, 0x52, 0x0c, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42,
  1842. 0x6f, 0x6f, 0x6c, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  1843. 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x2c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65,
  1844. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x25, 0x0a, 0x0e,
  1845. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x2d,
  1846. 0x20, 0x03, 0x28, 0x0c, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x79,
  1847. 0x74, 0x65, 0x73, 0x12, 0x54, 0x0a, 0x0d, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67,
  1848. 0x72, 0x6f, 0x75, 0x70, 0x18, 0x2e, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70,
  1849. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  1850. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x70,
  1851. 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x72, 0x65, 0x70, 0x65,
  1852. 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x66, 0x0a, 0x17, 0x72, 0x65, 0x70,
  1853. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73,
  1854. 0x73, 0x61, 0x67, 0x65, 0x18, 0x30, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70,
  1855. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  1856. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73,
  1857. 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x15, 0x72, 0x65, 0x70, 0x65,
  1858. 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
  1859. 0x65, 0x12, 0x5c, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6f,
  1860. 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x31, 0x20,
  1861. 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  1862. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e,
  1863. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  1864. 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12,
  1865. 0x58, 0x0a, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6d, 0x70, 0x6f,
  1866. 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x32, 0x20, 0x03, 0x28, 0x0b, 0x32,
  1867. 0x21, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  1868. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61,
  1869. 0x67, 0x65, 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x49, 0x6d, 0x70, 0x6f,
  1870. 0x72, 0x74, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x5d, 0x0a, 0x14, 0x72, 0x65, 0x70,
  1871. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75,
  1872. 0x6d, 0x18, 0x33, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  1873. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  1874. 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,
  1875. 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65,
  1876. 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x53, 0x0a, 0x15, 0x72, 0x65, 0x70, 0x65,
  1877. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x6e, 0x75,
  1878. 0x6d, 0x18, 0x34, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  1879. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f, 0x72,
  1880. 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x13, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  1881. 0x65, 0x64, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x4f, 0x0a,
  1882. 0x13, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6d, 0x70, 0x6f, 0x72, 0x74,
  1883. 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x35, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x1e, 0x2e, 0x67, 0x6f, 0x70,
  1884. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  1885. 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x12, 0x72, 0x65, 0x70, 0x65,
  1886. 0x61, 0x74, 0x65, 0x64, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x5b,
  1887. 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x69, 0x6e, 0x74, 0x33,
  1888. 0x32, 0x18, 0x38, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  1889. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  1890. 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74,
  1891. 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61,
  1892. 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x5b, 0x0a, 0x0f, 0x6d,
  1893. 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x39,
  1894. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  1895. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  1896. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49,
  1897. 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e,
  1898. 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f,
  1899. 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x3a, 0x20,
  1900. 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  1901. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  1902. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55,
  1903. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x55,
  1904. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x61, 0x0a, 0x11, 0x6d,
  1905. 0x61, 0x70, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34,
  1906. 0x18, 0x3b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  1907. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  1908. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74,
  1909. 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d,
  1910. 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x61,
  1911. 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x73, 0x69, 0x6e,
  1912. 0x74, 0x33, 0x32, 0x18, 0x3c, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  1913. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  1914. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53,
  1915. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79,
  1916. 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33,
  1917. 0x32, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f,
  1918. 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x3d, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67,
  1919. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  1920. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d,
  1921. 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e,
  1922. 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69,
  1923. 0x6e, 0x74, 0x36, 0x34, 0x12, 0x67, 0x0a, 0x13, 0x6d, 0x61, 0x70, 0x5f, 0x66, 0x69, 0x78, 0x65,
  1924. 0x64, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x3e, 0x20, 0x03, 0x28,
  1925. 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  1926. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79,
  1927. 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46, 0x69,
  1928. 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x11, 0x6d, 0x61, 0x70, 0x46,
  1929. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x67, 0x0a,
  1930. 0x13, 0x6d, 0x61, 0x70, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x66, 0x69, 0x78,
  1931. 0x65, 0x64, 0x36, 0x34, 0x18, 0x3f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x67, 0x6f, 0x70,
  1932. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  1933. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70,
  1934. 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e,
  1935. 0x74, 0x72, 0x79, 0x52, 0x11, 0x6d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x46,
  1936. 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x6d, 0x0a, 0x15, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x66,
  1937. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18,
  1938. 0x40, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  1939. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  1940. 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65,
  1941. 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79,
  1942. 0x52, 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x53, 0x66, 0x69,
  1943. 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x6d, 0x0a, 0x15, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x66, 0x69,
  1944. 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x18, 0x41,
  1945. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  1946. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  1947. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64,
  1948. 0x36, 0x34, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
  1949. 0x13, 0x6d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x53, 0x66, 0x69, 0x78,
  1950. 0x65, 0x64, 0x36, 0x34, 0x12, 0x5b, 0x0a, 0x0f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33,
  1951. 0x32, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x42, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x33, 0x2e,
  1952. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  1953. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  1954. 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x6e, 0x74,
  1955. 0x72, 0x79, 0x52, 0x0d, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c, 0x6f, 0x61,
  1956. 0x74, 0x12, 0x5e, 0x0a, 0x10, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x64,
  1957. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x43, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f,
  1958. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  1959. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61,
  1960. 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72,
  1961. 0x79, 0x52, 0x0e, 0x6d, 0x61, 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x75, 0x62, 0x6c,
  1962. 0x65, 0x12, 0x55, 0x0a, 0x0d, 0x6d, 0x61, 0x70, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x62, 0x6f,
  1963. 0x6f, 0x6c, 0x18, 0x44, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  1964. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  1965. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x42, 0x6f,
  1966. 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0b, 0x6d, 0x61, 0x70,
  1967. 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x61, 0x0a, 0x11, 0x6d, 0x61, 0x70, 0x5f,
  1968. 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x18, 0x45, 0x20,
  1969. 0x03, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  1970. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  1971. 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53,
  1972. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0f, 0x6d, 0x61, 0x70, 0x53,
  1973. 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x5e, 0x0a, 0x10, 0x6d,
  1974. 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18,
  1975. 0x46, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  1976. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  1977. 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e,
  1978. 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x0e, 0x6d, 0x61, 0x70,
  1979. 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x77, 0x0a, 0x19, 0x6d,
  1980. 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64,
  1981. 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x47, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3c,
  1982. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  1983. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73,
  1984. 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,
  1985. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x16, 0x6d, 0x61,
  1986. 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73,
  1987. 0x73, 0x61, 0x67, 0x65, 0x12, 0x6e, 0x0a, 0x16, 0x6d, 0x61, 0x70, 0x5f, 0x73, 0x74, 0x72, 0x69,
  1988. 0x6e, 0x67, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x49,
  1989. 0x20, 0x03, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  1990. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  1991. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  1992. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
  1993. 0x13, 0x6d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64,
  1994. 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x27, 0x0a, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f,
  1995. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x51, 0x20, 0x01, 0x28, 0x05, 0x3a, 0x02, 0x38, 0x31, 0x52,
  1996. 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x27, 0x0a,
  1997. 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x52,
  1998. 0x20, 0x01, 0x28, 0x03, 0x3a, 0x02, 0x38, 0x32, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  1999. 0x74, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
  2000. 0x74, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x53, 0x20, 0x01, 0x28, 0x0d, 0x3a, 0x02,
  2001. 0x38, 0x33, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x33,
  2002. 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x75, 0x69, 0x6e,
  2003. 0x74, 0x36, 0x34, 0x18, 0x54, 0x20, 0x01, 0x28, 0x04, 0x3a, 0x02, 0x38, 0x34, 0x52, 0x0d, 0x64,
  2004. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x12, 0x2a, 0x0a, 0x0e,
  2005. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x55,
  2006. 0x20, 0x01, 0x28, 0x11, 0x3a, 0x03, 0x2d, 0x38, 0x35, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75,
  2007. 0x6c, 0x74, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x29, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61,
  2008. 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x56, 0x20, 0x01, 0x28, 0x12,
  2009. 0x3a, 0x02, 0x38, 0x36, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x69, 0x6e,
  2010. 0x74, 0x36, 0x34, 0x12, 0x2b, 0x0a, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66,
  2011. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x18, 0x57, 0x20, 0x01, 0x28, 0x07, 0x3a, 0x02, 0x38, 0x37,
  2012. 0x52, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32,
  2013. 0x12, 0x2b, 0x0a, 0x0f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x69, 0x78, 0x65,
  2014. 0x64, 0x36, 0x34, 0x18, 0x58, 0x20, 0x01, 0x28, 0x06, 0x3a, 0x02, 0x38, 0x38, 0x52, 0x0e, 0x64,
  2015. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x2d, 0x0a,
  2016. 0x10, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33,
  2017. 0x32, 0x18, 0x59, 0x20, 0x01, 0x28, 0x0f, 0x3a, 0x02, 0x38, 0x39, 0x52, 0x0f, 0x64, 0x65, 0x66,
  2018. 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x12, 0x2e, 0x0a, 0x10,
  2019. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  2020. 0x18, 0x50, 0x20, 0x01, 0x28, 0x10, 0x3a, 0x03, 0x2d, 0x39, 0x30, 0x52, 0x0f, 0x64, 0x65, 0x66,
  2021. 0x61, 0x75, 0x6c, 0x74, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x12, 0x29, 0x0a, 0x0d,
  2022. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x18, 0x5b, 0x20,
  2023. 0x01, 0x28, 0x02, 0x3a, 0x04, 0x39, 0x31, 0x2e, 0x35, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75,
  2024. 0x6c, 0x74, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x2c, 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75,
  2025. 0x6c, 0x74, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x18, 0x5c, 0x20, 0x01, 0x28, 0x01, 0x3a,
  2026. 0x05, 0x39, 0x32, 0x30, 0x30, 0x30, 0x52, 0x0d, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x44,
  2027. 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x27, 0x0a, 0x0c, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  2028. 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x5d, 0x20, 0x01, 0x28, 0x08, 0x3a, 0x04, 0x74, 0x72, 0x75,
  2029. 0x65, 0x52, 0x0b, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x2c,
  2030. 0x0a, 0x0e, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67,
  2031. 0x18, 0x5e, 0x20, 0x01, 0x28, 0x09, 0x3a, 0x05, 0x68, 0x65, 0x6c, 0x6c, 0x6f, 0x52, 0x0d, 0x64,
  2032. 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x2a, 0x0a, 0x0d,
  2033. 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x5f, 0x20,
  2034. 0x01, 0x28, 0x0c, 0x3a, 0x05, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x52, 0x0c, 0x64, 0x65, 0x66, 0x61,
  2035. 0x75, 0x6c, 0x74, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x60, 0x0a, 0x13, 0x64, 0x65, 0x66, 0x61,
  2036. 0x75, 0x6c, 0x74, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18,
  2037. 0x60, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2038. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  2039. 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e,
  2040. 0x75, 0x6d, 0x3a, 0x03, 0x42, 0x41, 0x52, 0x52, 0x11, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
  2041. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x5e, 0x0a, 0x14, 0x64, 0x65,
  2042. 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x66, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x5f, 0x65, 0x6e,
  2043. 0x75, 0x6d, 0x18, 0x61, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2044. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x46, 0x6f,
  2045. 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x3a, 0x0b, 0x46, 0x4f, 0x52, 0x45, 0x49,
  2046. 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x52, 0x52, 0x12, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x46,
  2047. 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e,
  2048. 0x65, 0x6f, 0x66, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x6f, 0x20, 0x01, 0x28, 0x0d,
  2049. 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x12,
  2050. 0x62, 0x0a, 0x14, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f,
  2051. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x70, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e,
  2052. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2053. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2054. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52,
  2055. 0x12, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  2056. 0x61, 0x67, 0x65, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x73, 0x74, 0x72,
  2057. 0x69, 0x6e, 0x67, 0x18, 0x71, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65,
  2058. 0x6f, 0x66, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x12, 0x21, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f,
  2059. 0x66, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x18, 0x72, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52,
  2060. 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x42, 0x79, 0x74, 0x65, 0x73, 0x12, 0x1f, 0x0a, 0x0a, 0x6f,
  2061. 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x18, 0x73, 0x20, 0x01, 0x28, 0x08, 0x48,
  2062. 0x00, 0x52, 0x09, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x42, 0x6f, 0x6f, 0x6c, 0x12, 0x23, 0x0a, 0x0c,
  2063. 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x18, 0x74, 0x20, 0x01,
  2064. 0x28, 0x04, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x55, 0x69, 0x6e, 0x74, 0x36,
  2065. 0x34, 0x12, 0x21, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74,
  2066. 0x18, 0x75, 0x20, 0x01, 0x28, 0x02, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x46,
  2067. 0x6c, 0x6f, 0x61, 0x74, 0x12, 0x23, 0x0a, 0x0c, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x64, 0x6f,
  2068. 0x75, 0x62, 0x6c, 0x65, 0x18, 0x76, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, 0x0b, 0x6f, 0x6e,
  2069. 0x65, 0x6f, 0x66, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x12, 0x4c, 0x0a, 0x0a, 0x6f, 0x6e, 0x65,
  2070. 0x6f, 0x66, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x18, 0x77, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e,
  2071. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2072. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e,
  2073. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x48, 0x00, 0x52, 0x09, 0x6f, 0x6e,
  2074. 0x65, 0x6f, 0x66, 0x45, 0x6e, 0x75, 0x6d, 0x1a, 0x61, 0x0a, 0x0d, 0x4e, 0x65, 0x73, 0x74, 0x65,
  2075. 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x01, 0x20,
  2076. 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x12, 0x42, 0x0a, 0x0b, 0x63, 0x6f, 0x72, 0x65, 0x63, 0x75,
  2077. 0x72, 0x73, 0x69, 0x76, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f,
  2078. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  2079. 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x52, 0x0b, 0x63,
  2080. 0x6f, 0x72, 0x65, 0x63, 0x75, 0x72, 0x73, 0x69, 0x76, 0x65, 0x1a, 0x1d, 0x0a, 0x0d, 0x4f, 0x70,
  2081. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61,
  2082. 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a, 0x1d, 0x0a, 0x0d, 0x52, 0x65, 0x70,
  2083. 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18,
  2084. 0x2f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49,
  2085. 0x6e, 0x74, 0x33, 0x32, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  2086. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79,
  2087. 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
  2088. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61,
  2089. 0x70, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79,
  2090. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x6b,
  2091. 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2092. 0x03, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14,
  2093. 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45,
  2094. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  2095. 0x0d, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  2096. 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  2097. 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x55, 0x69, 0x6e,
  2098. 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
  2099. 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
  2100. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2101. 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53, 0x69, 0x6e, 0x74, 0x33,
  2102. 0x32, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
  2103. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x11, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14,
  2104. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x11, 0x52, 0x05, 0x76,
  2105. 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a, 0x14, 0x4d, 0x61, 0x70, 0x53,
  2106. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79,
  2107. 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x12, 0x52, 0x03, 0x6b,
  2108. 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
  2109. 0x12, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x44, 0x0a, 0x16,
  2110. 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33,
  2111. 0x32, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
  2112. 0x01, 0x28, 0x07, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
  2113. 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x07, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
  2114. 0x38, 0x01, 0x1a, 0x44, 0x0a, 0x16, 0x4d, 0x61, 0x70, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34,
  2115. 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
  2116. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x06, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14,
  2117. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x06, 0x52, 0x05, 0x76,
  2118. 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x46, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53,
  2119. 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45,
  2120. 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
  2121. 0x0f, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
  2122. 0x02, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
  2123. 0x1a, 0x46, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x53,
  2124. 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03,
  2125. 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x10, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14,
  2126. 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x10, 0x52, 0x05, 0x76,
  2127. 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x40, 0x0a, 0x12, 0x4d, 0x61, 0x70, 0x49,
  2128. 0x6e, 0x74, 0x33, 0x32, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10,
  2129. 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x6b, 0x65, 0x79,
  2130. 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x02, 0x52,
  2131. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x41, 0x0a, 0x13, 0x4d, 0x61,
  2132. 0x70, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x6e, 0x74, 0x72,
  2133. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03,
  2134. 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  2135. 0x28, 0x01, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x3e, 0x0a,
  2136. 0x10, 0x4d, 0x61, 0x70, 0x42, 0x6f, 0x6f, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x6e, 0x74, 0x72,
  2137. 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03,
  2138. 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01,
  2139. 0x28, 0x08, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x42, 0x0a,
  2140. 0x14, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67,
  2141. 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
  2142. 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2143. 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38,
  2144. 0x01, 0x1a, 0x41, 0x0a, 0x13, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x42, 0x79,
  2145. 0x74, 0x65, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
  2146. 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
  2147. 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2148. 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x79, 0x0a, 0x1b, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e,
  2149. 0x67, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x6e,
  2150. 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
  2151. 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02,
  2152. 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  2153. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  2154. 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73,
  2155. 0x73, 0x61, 0x67, 0x65, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a,
  2156. 0x73, 0x0a, 0x18, 0x4d, 0x61, 0x70, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x65, 0x73, 0x74,
  2157. 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b,
  2158. 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x41, 0x0a,
  2159. 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67,
  2160. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2161. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e,
  2162. 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
  2163. 0x3a, 0x02, 0x38, 0x01, 0x22, 0x39, 0x0a, 0x0a, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e,
  2164. 0x75, 0x6d, 0x12, 0x07, 0x0a, 0x03, 0x46, 0x4f, 0x4f, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, 0x42,
  2165. 0x41, 0x52, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x42, 0x41, 0x5a, 0x10, 0x02, 0x12, 0x10, 0x0a,
  2166. 0x03, 0x4e, 0x45, 0x47, 0x10, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x01, 0x42,
  2167. 0x0d, 0x0a, 0x0b, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x22, 0xc4,
  2168. 0x01, 0x0a, 0x15, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65,
  2169. 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x2d, 0x0a, 0x10, 0x64, 0x65, 0x70, 0x72,
  2170. 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x18, 0x01, 0x20, 0x01,
  2171. 0x28, 0x05, 0x42, 0x02, 0x18, 0x01, 0x52, 0x0f, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74,
  2172. 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x12, 0x3a, 0x0a, 0x16, 0x64, 0x65, 0x70, 0x72, 0x65,
  2173. 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x66, 0x69, 0x65, 0x6c,
  2174. 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x02, 0x18, 0x01, 0x48, 0x00, 0x52, 0x14, 0x64,
  2175. 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4f, 0x6e, 0x65, 0x6f, 0x66, 0x46, 0x69,
  2176. 0x65, 0x6c, 0x64, 0x22, 0x28, 0x0a, 0x0e, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65,
  2177. 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x12, 0x0a, 0x0a, 0x44, 0x45, 0x50, 0x52, 0x45, 0x43, 0x41,
  2178. 0x54, 0x45, 0x44, 0x10, 0x00, 0x1a, 0x02, 0x08, 0x01, 0x1a, 0x02, 0x18, 0x01, 0x3a, 0x02, 0x18,
  2179. 0x01, 0x42, 0x12, 0x0a, 0x10, 0x64, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2180. 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x22, 0x2c, 0x0a, 0x0e, 0x46, 0x6f, 0x72, 0x65, 0x69, 0x67, 0x6e,
  2181. 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0c, 0x0a, 0x01, 0x63, 0x18, 0x01, 0x20, 0x01,
  2182. 0x28, 0x05, 0x52, 0x01, 0x63, 0x12, 0x0c, 0x0a, 0x01, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05,
  2183. 0x52, 0x01, 0x64, 0x22, 0x30, 0x0a, 0x12, 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x73, 0x65, 0x72,
  2184. 0x76, 0x65, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x4a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x4a,
  2185. 0x04, 0x08, 0x0f, 0x10, 0x10, 0x4a, 0x04, 0x08, 0x09, 0x10, 0x0c, 0x52, 0x03, 0x62, 0x61, 0x72,
  2186. 0x52, 0x03, 0x62, 0x61, 0x7a, 0x22, 0x1d, 0x0a, 0x11, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c,
  2187. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x2a, 0x08, 0x08, 0x01, 0x10, 0x80,
  2188. 0x80, 0x80, 0x80, 0x02, 0x22, 0x27, 0x0a, 0x17, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2189. 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  2190. 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x11, 0x20, 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22, 0x27, 0x0a,
  2191. 0x17, 0x52, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65,
  2192. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0c, 0x0a, 0x01, 0x61, 0x18, 0x2f, 0x20,
  2193. 0x01, 0x28, 0x05, 0x52, 0x01, 0x61, 0x22, 0x75, 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74, 0x4e, 0x65,
  2194. 0x73, 0x74, 0x65, 0x64, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x32, 0x5e, 0x0a,
  2195. 0x17, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65,
  2196. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2197. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  2198. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  2199. 0xeb, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x53, 0x74,
  2200. 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x0c, 0x0a,
  2201. 0x0a, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x0d, 0x0a, 0x0b, 0x46,
  2202. 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2a, 0x40, 0x0a, 0x0b, 0x46, 0x6f,
  2203. 0x72, 0x65, 0x69, 0x67, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f, 0x52,
  2204. 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x46, 0x4f, 0x4f, 0x10, 0x04, 0x12, 0x0f, 0x0a, 0x0b, 0x46, 0x4f,
  2205. 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x52, 0x10, 0x05, 0x12, 0x0f, 0x0a, 0x0b, 0x46,
  2206. 0x4f, 0x52, 0x45, 0x49, 0x47, 0x4e, 0x5f, 0x42, 0x41, 0x5a, 0x10, 0x06, 0x2a, 0x47, 0x0a, 0x16,
  2207. 0x54, 0x65, 0x73, 0x74, 0x52, 0x65, 0x73, 0x65, 0x72, 0x76, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d,
  2208. 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x11, 0x0a, 0x0d, 0x52, 0x45, 0x53, 0x45, 0x52, 0x56,
  2209. 0x45, 0x44, 0x5f, 0x45, 0x4e, 0x55, 0x4d, 0x10, 0x00, 0x22, 0x04, 0x08, 0x02, 0x10, 0x02, 0x22,
  2210. 0x04, 0x08, 0x0f, 0x10, 0x0f, 0x22, 0x04, 0x08, 0x09, 0x10, 0x0b, 0x2a, 0x03, 0x42, 0x41, 0x52,
  2211. 0x2a, 0x03, 0x42, 0x41, 0x5a, 0x32, 0xa8, 0x01, 0x0a, 0x0b, 0x54, 0x65, 0x73, 0x74, 0x53, 0x65,
  2212. 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x46, 0x0a, 0x03, 0x46, 0x6f, 0x6f, 0x12, 0x1e, 0x2e, 0x67,
  2213. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2214. 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x67,
  2215. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2216. 0x74, 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x51, 0x0a,
  2217. 0x0a, 0x54, 0x65, 0x73, 0x74, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x1e, 0x2e, 0x67, 0x6f,
  2218. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  2219. 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f, 0x2e, 0x67, 0x6f,
  2220. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74,
  2221. 0x2e, 0x46, 0x6f, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x28, 0x01, 0x30, 0x01,
  2222. 0x32, 0x85, 0x01, 0x0a, 0x15, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61,
  2223. 0x74, 0x65, 0x64, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x67, 0x0a, 0x0a, 0x44, 0x65,
  2224. 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x29, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2225. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  2226. 0x73, 0x74, 0x44, 0x65, 0x70, 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73,
  2227. 0x61, 0x67, 0x65, 0x1a, 0x29, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72,
  2228. 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x44, 0x65, 0x70,
  2229. 0x72, 0x65, 0x63, 0x61, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x03,
  2230. 0x88, 0x02, 0x01, 0x1a, 0x03, 0x88, 0x02, 0x01, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69,
  2231. 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  2232. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  2233. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  2234. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28,
  2235. 0x05, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x33, 0x32,
  2236. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74,
  2237. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65,
  2238. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2239. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  2240. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01,
  2241. 0x28, 0x03, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x49, 0x6e, 0x74, 0x36,
  2242. 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70,
  2243. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78,
  2244. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  2245. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  2246. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03,
  2247. 0x20, 0x01, 0x28, 0x0d, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x55, 0x69,
  2248. 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a,
  2249. 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34,
  2250. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  2251. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2252. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2253. 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2254. 0x6c, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2255. 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x69, 0x6e,
  2256. 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  2257. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2258. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2259. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x11, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69,
  2260. 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2261. 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f,
  2262. 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2263. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2264. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  2265. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x12, 0x52, 0x17, 0x6f,
  2266. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74,
  2267. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2268. 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  2269. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  2270. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  2271. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28,
  2272. 0x07, 0x52, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x46, 0x69, 0x78, 0x65, 0x64,
  2273. 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x6f,
  2274. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f,
  2275. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2276. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  2277. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  2278. 0x18, 0x08, 0x20, 0x01, 0x28, 0x06, 0x52, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2279. 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2280. 0x3a, 0x65, 0x0a, 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69,
  2281. 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  2282. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2283. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  2284. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0f, 0x52, 0x19, 0x6f, 0x70,
  2285. 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78,
  2286. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2287. 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74,
  2288. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2289. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  2290. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0a, 0x20,
  2291. 0x01, 0x28, 0x10, 0x52, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x66, 0x69,
  2292. 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f,
  2293. 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74,
  2294. 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70,
  2295. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e,
  2296. 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2297. 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x02, 0x52, 0x16, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61,
  2298. 0x6c, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  2299. 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x64, 0x6f, 0x75, 0x62,
  2300. 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  2301. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2302. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2303. 0x6f, 0x6e, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2304. 0x6e, 0x61, 0x6c, 0x44, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2305. 0x6f, 0x6e, 0x3a, 0x5d, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x62,
  2306. 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  2307. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2308. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2309. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x15, 0x6f, 0x70, 0x74, 0x69,
  2310. 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x6f, 0x6f, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2311. 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x73, 0x74,
  2312. 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  2313. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2314. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  2315. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x6f, 0x70, 0x74,
  2316. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e,
  2317. 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2318. 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2319. 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2320. 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74,
  2321. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x16, 0x6f,
  2322. 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x42, 0x79, 0x74, 0x65, 0x73, 0x45, 0x78, 0x74, 0x65,
  2323. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x8b, 0x01, 0x0a, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e,
  2324. 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2325. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2326. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  2327. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0a, 0x32, 0x2b,
  2328. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2329. 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x47, 0x72, 0x6f, 0x75,
  2330. 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x16, 0x6f, 0x70, 0x74,
  2331. 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2332. 0x69, 0x6f, 0x6e, 0x3a, 0xa0, 0x01, 0x0a, 0x21, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2333. 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f,
  2334. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2335. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  2336. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  2337. 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2338. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  2339. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d,
  2340. 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x1e, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c,
  2341. 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x78, 0x74,
  2342. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x97, 0x01, 0x0a, 0x1e, 0x6f, 0x70, 0x74, 0x69, 0x6f,
  2343. 0x6e, 0x61, 0x6c, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f,
  2344. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2345. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  2346. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  2347. 0x18, 0x15, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2348. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  2349. 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73, 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45,
  2350. 0x6e, 0x75, 0x6d, 0x52, 0x1b, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x4e, 0x65, 0x73,
  2351. 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e,
  2352. 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e, 0x74,
  2353. 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  2354. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2355. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2356. 0x6f, 0x6e, 0x73, 0x18, 0x1f, 0x20, 0x03, 0x28, 0x05, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61,
  2357. 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2358. 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6e,
  2359. 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e,
  2360. 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65,
  2361. 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2362. 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x20, 0x20, 0x03, 0x28, 0x03, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65,
  2363. 0x61, 0x74, 0x65, 0x64, 0x49, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2364. 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x75,
  2365. 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12,
  2366. 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2367. 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65,
  2368. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x21, 0x20, 0x03, 0x28, 0x0d, 0x52, 0x17, 0x72, 0x65,
  2369. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65,
  2370. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65,
  2371. 0x64, 0x5f, 0x75, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2372. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2373. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  2374. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x22, 0x20, 0x03, 0x28, 0x04, 0x52,
  2375. 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x55, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45,
  2376. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65,
  2377. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65,
  2378. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2379. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  2380. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x23, 0x20, 0x03,
  2381. 0x28, 0x11, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x69, 0x6e, 0x74,
  2382. 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72,
  2383. 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x69, 0x6e, 0x74, 0x36, 0x34, 0x5f, 0x65,
  2384. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2385. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  2386. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  2387. 0x24, 0x20, 0x03, 0x28, 0x12, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53,
  2388. 0x69, 0x6e, 0x74, 0x36, 0x34, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x63,
  2389. 0x0a, 0x1a, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64,
  2390. 0x33, 0x32, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67,
  2391. 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73,
  2392. 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2393. 0x6f, 0x6e, 0x73, 0x18, 0x25, 0x20, 0x03, 0x28, 0x07, 0x52, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61,
  2394. 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2395. 0x69, 0x6f, 0x6e, 0x3a, 0x63, 0x0a, 0x1a, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
  2396. 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2397. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2398. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  2399. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x26, 0x20, 0x03, 0x28, 0x06, 0x52, 0x18,
  2400. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45,
  2401. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x65, 0x0a, 0x1b, 0x72, 0x65, 0x70, 0x65,
  2402. 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x5f, 0x65, 0x78,
  2403. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74,
  2404. 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73,
  2405. 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x27,
  2406. 0x20, 0x03, 0x28, 0x0f, 0x52, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66,
  2407. 0x69, 0x78, 0x65, 0x64, 0x33, 0x32, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a,
  2408. 0x65, 0x0a, 0x1b, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x66, 0x69, 0x78,
  2409. 0x65, 0x64, 0x36, 0x34, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25,
  2410. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2411. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e,
  2412. 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x28, 0x20, 0x03, 0x28, 0x10, 0x52, 0x19, 0x72, 0x65, 0x70,
  2413. 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x66, 0x69, 0x78, 0x65, 0x64, 0x36, 0x34, 0x45, 0x78, 0x74,
  2414. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74,
  2415. 0x65, 0x64, 0x5f, 0x66, 0x6c, 0x6f, 0x61, 0x74, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
  2416. 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f,
  2417. 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45,
  2418. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x29, 0x20, 0x03, 0x28, 0x02, 0x52,
  2419. 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x46, 0x6c, 0x6f, 0x61, 0x74, 0x45, 0x78,
  2420. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70, 0x65, 0x61,
  2421. 0x74, 0x65, 0x64, 0x5f, 0x64, 0x6f, 0x75, 0x62, 0x6c, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e,
  2422. 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70,
  2423. 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c,
  2424. 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2a, 0x20, 0x03, 0x28,
  2425. 0x01, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x44, 0x6f, 0x75, 0x62, 0x6c,
  2426. 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5d, 0x0a, 0x17, 0x72, 0x65,
  2427. 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x6f, 0x6f, 0x6c, 0x5f, 0x65, 0x78, 0x74, 0x65,
  2428. 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e,
  2429. 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41,
  2430. 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2b, 0x20, 0x03,
  2431. 0x28, 0x08, 0x52, 0x15, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42, 0x6f, 0x6f, 0x6c,
  2432. 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x61, 0x0a, 0x19, 0x72, 0x65, 0x70,
  2433. 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x74,
  2434. 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2435. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74,
  2436. 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x2c, 0x20,
  2437. 0x03, 0x28, 0x09, 0x52, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x72,
  2438. 0x69, 0x6e, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x5f, 0x0a, 0x18,
  2439. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x62, 0x79, 0x74, 0x65, 0x73, 0x5f, 0x65,
  2440. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f,
  2441. 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65,
  2442. 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18,
  2443. 0x2d, 0x20, 0x03, 0x28, 0x0c, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x42,
  2444. 0x79, 0x74, 0x65, 0x73, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x8b, 0x01,
  2445. 0x0a, 0x17, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f,
  2446. 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72,
  2447. 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54,
  2448. 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73,
  2449. 0x18, 0x2e, 0x20, 0x03, 0x28, 0x0a, 0x32, 0x2b, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f,
  2450. 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x52, 0x65, 0x70, 0x65,
  2451. 0x61, 0x74, 0x65, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73,
  2452. 0x69, 0x6f, 0x6e, 0x52, 0x16, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x67, 0x72, 0x6f,
  2453. 0x75, 0x70, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0xa0, 0x01, 0x0a, 0x21,
  2454. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x5f,
  2455. 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2456. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2457. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  2458. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x30, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e,
  2459. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2460. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73,
  2461. 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x1e,
  2462. 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x4d, 0x65,
  2463. 0x73, 0x73, 0x61, 0x67, 0x65, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x3a, 0x97,
  2464. 0x01, 0x0a, 0x1e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x6e, 0x65, 0x73, 0x74,
  2465. 0x65, 0x64, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f,
  2466. 0x6e, 0x12, 0x25, 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74,
  2467. 0x6f, 0x2e, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x45, 0x78,
  2468. 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x33, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2b,
  2469. 0x2e, 0x67, 0x6f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2e, 0x74,
  2470. 0x65, 0x73, 0x74, 0x2e, 0x54, 0x65, 0x73, 0x74, 0x41, 0x6c, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x73,
  2471. 0x2e, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x1b, 0x72, 0x65, 0x70,
  2472. 0x65, 0x61, 0x74, 0x65, 0x64, 0x4e, 0x65, 0x73, 0x74, 0x65, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x45,
  2473. 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x38, 0x5a, 0x36, 0x67, 0x69, 0x74, 0x68,
  2474. 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2f, 0x70, 0x72,
  2475. 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x76, 0x32, 0x2f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x6e,
  2476. 0x61, 0x6c, 0x2f, 0x74, 0x65, 0x73, 0x74, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x2f, 0x74, 0x65,
  2477. 0x73, 0x74, 0x50, 0x01, 0x58, 0x02,
  2478. }
  2479. var fileDescriptor_c161fcfdc0c3ff1e_gzipped = func() []byte {
  2480. bb := new(bytes.Buffer)
  2481. zw, _ := gzip.NewWriterLevel(bb, gzip.NoCompression)
  2482. zw.Write(fileDescriptor_c161fcfdc0c3ff1e)
  2483. zw.Close()
  2484. return bb.Bytes()
  2485. }()
  2486. const _ = protoimpl.EnforceVersion(protoimpl.Version - 0)
  2487. var Test_protoFile protoreflect.FileDescriptor
  2488. var xxx_Test_protoFile_enumTypes [4]protoreflect.EnumType
  2489. var xxx_Test_protoFile_messageTypes [30]protoimpl.MessageType
  2490. var xxx_Test_protoFile_goTypes = []interface{}{
  2491. (ForeignEnum)(0), // 0: goproto.proto.test.ForeignEnum
  2492. (TestReservedEnumFields)(0), // 1: goproto.proto.test.TestReservedEnumFields
  2493. (TestAllTypes_NestedEnum)(0), // 2: goproto.proto.test.TestAllTypes.NestedEnum
  2494. (TestDeprecatedMessage_DeprecatedEnum)(0), // 3: goproto.proto.test.TestDeprecatedMessage.DeprecatedEnum
  2495. (*TestAllTypes)(nil), // 4: goproto.proto.test.TestAllTypes
  2496. (*TestDeprecatedMessage)(nil), // 5: goproto.proto.test.TestDeprecatedMessage
  2497. (*ForeignMessage)(nil), // 6: goproto.proto.test.ForeignMessage
  2498. (*TestReservedFields)(nil), // 7: goproto.proto.test.TestReservedFields
  2499. (*TestAllExtensions)(nil), // 8: goproto.proto.test.TestAllExtensions
  2500. (*OptionalGroupExtension)(nil), // 9: goproto.proto.test.OptionalGroup_extension
  2501. (*RepeatedGroupExtension)(nil), // 10: goproto.proto.test.RepeatedGroup_extension
  2502. (*TestNestedExtension)(nil), // 11: goproto.proto.test.TestNestedExtension
  2503. (*FooRequest)(nil), // 12: goproto.proto.test.FooRequest
  2504. (*FooResponse)(nil), // 13: goproto.proto.test.FooResponse
  2505. (*TestAllTypes_NestedMessage)(nil), // 14: goproto.proto.test.TestAllTypes.NestedMessage
  2506. (*TestAllTypes_OptionalGroup)(nil), // 15: goproto.proto.test.TestAllTypes.OptionalGroup
  2507. (*TestAllTypes_RepeatedGroup)(nil), // 16: goproto.proto.test.TestAllTypes.RepeatedGroup
  2508. nil, // 17: goproto.proto.test.TestAllTypes.MapInt32Int32Entry
  2509. nil, // 18: goproto.proto.test.TestAllTypes.MapInt64Int64Entry
  2510. nil, // 19: goproto.proto.test.TestAllTypes.MapUint32Uint32Entry
  2511. nil, // 20: goproto.proto.test.TestAllTypes.MapUint64Uint64Entry
  2512. nil, // 21: goproto.proto.test.TestAllTypes.MapSint32Sint32Entry
  2513. nil, // 22: goproto.proto.test.TestAllTypes.MapSint64Sint64Entry
  2514. nil, // 23: goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry
  2515. nil, // 24: goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry
  2516. nil, // 25: goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry
  2517. nil, // 26: goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry
  2518. nil, // 27: goproto.proto.test.TestAllTypes.MapInt32FloatEntry
  2519. nil, // 28: goproto.proto.test.TestAllTypes.MapInt32DoubleEntry
  2520. nil, // 29: goproto.proto.test.TestAllTypes.MapBoolBoolEntry
  2521. nil, // 30: goproto.proto.test.TestAllTypes.MapStringStringEntry
  2522. nil, // 31: goproto.proto.test.TestAllTypes.MapStringBytesEntry
  2523. nil, // 32: goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry
  2524. nil, // 33: goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry
  2525. (*ImportMessage)(nil), // 34: goproto.proto.test.ImportMessage
  2526. (ImportEnum)(0), // 35: goproto.proto.test.ImportEnum
  2527. }
  2528. var xxx_Test_protoFile_depIdxs = []int32{
  2529. 8, // goproto.proto.test.optional_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2530. 8, // goproto.proto.test.optional_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2531. 8, // goproto.proto.test.optional_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2532. 8, // goproto.proto.test.optional_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2533. 8, // goproto.proto.test.optional_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2534. 8, // goproto.proto.test.optional_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2535. 8, // goproto.proto.test.optional_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2536. 8, // goproto.proto.test.optional_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2537. 8, // goproto.proto.test.optional_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2538. 8, // goproto.proto.test.optional_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2539. 8, // goproto.proto.test.optional_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  2540. 8, // goproto.proto.test.optional_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  2541. 8, // goproto.proto.test.optional_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  2542. 8, // goproto.proto.test.optional_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  2543. 8, // goproto.proto.test.optional_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  2544. 8, // goproto.proto.test.optionalgroup_extension:extendee -> goproto.proto.test.TestAllExtensions
  2545. 8, // goproto.proto.test.optional_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions
  2546. 8, // goproto.proto.test.optional_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions
  2547. 8, // goproto.proto.test.repeated_int32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2548. 8, // goproto.proto.test.repeated_int64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2549. 8, // goproto.proto.test.repeated_uint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2550. 8, // goproto.proto.test.repeated_uint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2551. 8, // goproto.proto.test.repeated_sint32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2552. 8, // goproto.proto.test.repeated_sint64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2553. 8, // goproto.proto.test.repeated_fixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2554. 8, // goproto.proto.test.repeated_fixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2555. 8, // goproto.proto.test.repeated_sfixed32_extension:extendee -> goproto.proto.test.TestAllExtensions
  2556. 8, // goproto.proto.test.repeated_sfixed64_extension:extendee -> goproto.proto.test.TestAllExtensions
  2557. 8, // goproto.proto.test.repeated_float_extension:extendee -> goproto.proto.test.TestAllExtensions
  2558. 8, // goproto.proto.test.repeated_double_extension:extendee -> goproto.proto.test.TestAllExtensions
  2559. 8, // goproto.proto.test.repeated_bool_extension:extendee -> goproto.proto.test.TestAllExtensions
  2560. 8, // goproto.proto.test.repeated_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  2561. 8, // goproto.proto.test.repeated_bytes_extension:extendee -> goproto.proto.test.TestAllExtensions
  2562. 8, // goproto.proto.test.repeatedgroup_extension:extendee -> goproto.proto.test.TestAllExtensions
  2563. 8, // goproto.proto.test.repeated_nested_message_extension:extendee -> goproto.proto.test.TestAllExtensions
  2564. 8, // goproto.proto.test.repeated_nested_enum_extension:extendee -> goproto.proto.test.TestAllExtensions
  2565. 8, // goproto.proto.test.TestNestedExtension.nested_string_extension:extendee -> goproto.proto.test.TestAllExtensions
  2566. 15, // goproto.proto.test.TestAllTypes.optionalgroup:type_name -> goproto.proto.test.TestAllTypes.OptionalGroup
  2567. 14, // goproto.proto.test.TestAllTypes.optional_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  2568. 6, // goproto.proto.test.TestAllTypes.optional_foreign_message:type_name -> goproto.proto.test.ForeignMessage
  2569. 34, // goproto.proto.test.TestAllTypes.optional_import_message:type_name -> goproto.proto.test.ImportMessage
  2570. 2, // goproto.proto.test.TestAllTypes.optional_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  2571. 0, // goproto.proto.test.TestAllTypes.optional_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  2572. 35, // goproto.proto.test.TestAllTypes.optional_import_enum:type_name -> goproto.proto.test.ImportEnum
  2573. 16, // goproto.proto.test.TestAllTypes.repeatedgroup:type_name -> goproto.proto.test.TestAllTypes.RepeatedGroup
  2574. 14, // goproto.proto.test.TestAllTypes.repeated_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  2575. 6, // goproto.proto.test.TestAllTypes.repeated_foreign_message:type_name -> goproto.proto.test.ForeignMessage
  2576. 34, // goproto.proto.test.TestAllTypes.repeated_importmessage:type_name -> goproto.proto.test.ImportMessage
  2577. 2, // goproto.proto.test.TestAllTypes.repeated_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  2578. 0, // goproto.proto.test.TestAllTypes.repeated_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  2579. 35, // goproto.proto.test.TestAllTypes.repeated_importenum:type_name -> goproto.proto.test.ImportEnum
  2580. 17, // goproto.proto.test.TestAllTypes.map_int32_int32:type_name -> goproto.proto.test.TestAllTypes.MapInt32Int32Entry
  2581. 18, // goproto.proto.test.TestAllTypes.map_int64_int64:type_name -> goproto.proto.test.TestAllTypes.MapInt64Int64Entry
  2582. 19, // goproto.proto.test.TestAllTypes.map_uint32_uint32:type_name -> goproto.proto.test.TestAllTypes.MapUint32Uint32Entry
  2583. 20, // goproto.proto.test.TestAllTypes.map_uint64_uint64:type_name -> goproto.proto.test.TestAllTypes.MapUint64Uint64Entry
  2584. 21, // goproto.proto.test.TestAllTypes.map_sint32_sint32:type_name -> goproto.proto.test.TestAllTypes.MapSint32Sint32Entry
  2585. 22, // goproto.proto.test.TestAllTypes.map_sint64_sint64:type_name -> goproto.proto.test.TestAllTypes.MapSint64Sint64Entry
  2586. 23, // goproto.proto.test.TestAllTypes.map_fixed32_fixed32:type_name -> goproto.proto.test.TestAllTypes.MapFixed32Fixed32Entry
  2587. 24, // goproto.proto.test.TestAllTypes.map_fixed64_fixed64:type_name -> goproto.proto.test.TestAllTypes.MapFixed64Fixed64Entry
  2588. 25, // goproto.proto.test.TestAllTypes.map_sfixed32_sfixed32:type_name -> goproto.proto.test.TestAllTypes.MapSfixed32Sfixed32Entry
  2589. 26, // goproto.proto.test.TestAllTypes.map_sfixed64_sfixed64:type_name -> goproto.proto.test.TestAllTypes.MapSfixed64Sfixed64Entry
  2590. 27, // goproto.proto.test.TestAllTypes.map_int32_float:type_name -> goproto.proto.test.TestAllTypes.MapInt32FloatEntry
  2591. 28, // goproto.proto.test.TestAllTypes.map_int32_double:type_name -> goproto.proto.test.TestAllTypes.MapInt32DoubleEntry
  2592. 29, // goproto.proto.test.TestAllTypes.map_bool_bool:type_name -> goproto.proto.test.TestAllTypes.MapBoolBoolEntry
  2593. 30, // goproto.proto.test.TestAllTypes.map_string_string:type_name -> goproto.proto.test.TestAllTypes.MapStringStringEntry
  2594. 31, // goproto.proto.test.TestAllTypes.map_string_bytes:type_name -> goproto.proto.test.TestAllTypes.MapStringBytesEntry
  2595. 32, // goproto.proto.test.TestAllTypes.map_string_nested_message:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry
  2596. 33, // goproto.proto.test.TestAllTypes.map_string_nested_enum:type_name -> goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry
  2597. 2, // goproto.proto.test.TestAllTypes.default_nested_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  2598. 0, // goproto.proto.test.TestAllTypes.default_foreign_enum:type_name -> goproto.proto.test.ForeignEnum
  2599. 14, // goproto.proto.test.TestAllTypes.oneof_nested_message:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  2600. 2, // goproto.proto.test.TestAllTypes.oneof_enum:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  2601. 4, // goproto.proto.test.TestAllTypes.NestedMessage.corecursive:type_name -> goproto.proto.test.TestAllTypes
  2602. 14, // goproto.proto.test.TestAllTypes.MapStringNestedMessageEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  2603. 2, // goproto.proto.test.TestAllTypes.MapStringNestedEnumEntry.value:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  2604. 9, // goproto.proto.test.optionalgroup_extension:type_name -> goproto.proto.test.OptionalGroup_extension
  2605. 14, // goproto.proto.test.optional_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  2606. 2, // goproto.proto.test.optional_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  2607. 10, // goproto.proto.test.repeatedgroup_extension:type_name -> goproto.proto.test.RepeatedGroup_extension
  2608. 14, // goproto.proto.test.repeated_nested_message_extension:type_name -> goproto.proto.test.TestAllTypes.NestedMessage
  2609. 2, // goproto.proto.test.repeated_nested_enum_extension:type_name -> goproto.proto.test.TestAllTypes.NestedEnum
  2610. 12, // goproto.proto.test.TestService.Foo:input_type -> goproto.proto.test.FooRequest
  2611. 13, // goproto.proto.test.TestService.Foo:output_type -> goproto.proto.test.FooResponse
  2612. 12, // goproto.proto.test.TestService.TestStream:input_type -> goproto.proto.test.FooRequest
  2613. 13, // goproto.proto.test.TestService.TestStream:output_type -> goproto.proto.test.FooResponse
  2614. 5, // goproto.proto.test.TestDeprecatedService.Deprecated:input_type -> goproto.proto.test.TestDeprecatedMessage
  2615. 5, // goproto.proto.test.TestDeprecatedService.Deprecated:output_type -> goproto.proto.test.TestDeprecatedMessage
  2616. }
  2617. func init() {
  2618. var messageTypes [30]protoreflect.MessageType
  2619. var extensionTypes [37]protoreflect.ExtensionType
  2620. Test_protoFile = protoimpl.FileBuilder{
  2621. RawDescriptor: fileDescriptor_c161fcfdc0c3ff1e,
  2622. GoTypes: xxx_Test_protoFile_goTypes,
  2623. DependencyIndexes: xxx_Test_protoFile_depIdxs,
  2624. EnumOutputTypes: xxx_Test_protoFile_enumTypes[:],
  2625. MessageOutputTypes: messageTypes[:],
  2626. ExtensionOutputTypes: extensionTypes[:],
  2627. }.Init()
  2628. messageGoTypes := xxx_Test_protoFile_goTypes[4:][:30]
  2629. for i, mt := range messageTypes[:] {
  2630. xxx_Test_protoFile_messageTypes[i].GoType = reflect.TypeOf(messageGoTypes[i])
  2631. xxx_Test_protoFile_messageTypes[i].PBType = mt
  2632. }
  2633. E_OptionalInt32Extension.Type = extensionTypes[0]
  2634. E_OptionalInt64Extension.Type = extensionTypes[1]
  2635. E_OptionalUint32Extension.Type = extensionTypes[2]
  2636. E_OptionalUint64Extension.Type = extensionTypes[3]
  2637. E_OptionalSint32Extension.Type = extensionTypes[4]
  2638. E_OptionalSint64Extension.Type = extensionTypes[5]
  2639. E_OptionalFixed32Extension.Type = extensionTypes[6]
  2640. E_OptionalFixed64Extension.Type = extensionTypes[7]
  2641. E_OptionalSfixed32Extension.Type = extensionTypes[8]
  2642. E_OptionalSfixed64Extension.Type = extensionTypes[9]
  2643. E_OptionalFloatExtension.Type = extensionTypes[10]
  2644. E_OptionalDoubleExtension.Type = extensionTypes[11]
  2645. E_OptionalBoolExtension.Type = extensionTypes[12]
  2646. E_OptionalStringExtension.Type = extensionTypes[13]
  2647. E_OptionalBytesExtension.Type = extensionTypes[14]
  2648. E_OptionalgroupExtension.Type = extensionTypes[15]
  2649. E_OptionalNestedMessageExtension.Type = extensionTypes[16]
  2650. E_OptionalNestedEnumExtension.Type = extensionTypes[17]
  2651. E_RepeatedInt32Extension.Type = extensionTypes[18]
  2652. E_RepeatedInt64Extension.Type = extensionTypes[19]
  2653. E_RepeatedUint32Extension.Type = extensionTypes[20]
  2654. E_RepeatedUint64Extension.Type = extensionTypes[21]
  2655. E_RepeatedSint32Extension.Type = extensionTypes[22]
  2656. E_RepeatedSint64Extension.Type = extensionTypes[23]
  2657. E_RepeatedFixed32Extension.Type = extensionTypes[24]
  2658. E_RepeatedFixed64Extension.Type = extensionTypes[25]
  2659. E_RepeatedSfixed32Extension.Type = extensionTypes[26]
  2660. E_RepeatedSfixed64Extension.Type = extensionTypes[27]
  2661. E_RepeatedFloatExtension.Type = extensionTypes[28]
  2662. E_RepeatedDoubleExtension.Type = extensionTypes[29]
  2663. E_RepeatedBoolExtension.Type = extensionTypes[30]
  2664. E_RepeatedStringExtension.Type = extensionTypes[31]
  2665. E_RepeatedBytesExtension.Type = extensionTypes[32]
  2666. E_RepeatedgroupExtension.Type = extensionTypes[33]
  2667. E_RepeatedNestedMessageExtension.Type = extensionTypes[34]
  2668. E_RepeatedNestedEnumExtension.Type = extensionTypes[35]
  2669. E_TestNestedExtension_NestedStringExtension.Type = extensionTypes[36]
  2670. xxx_Test_protoFile_goTypes = nil
  2671. xxx_Test_protoFile_depIdxs = nil
  2672. }