base.pbjson.dart 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431
  1. //
  2. // Generated code. Do not modify.
  3. // source: base.proto
  4. //
  5. // @dart = 2.12
  6. // ignore_for_file: annotate_overrides, camel_case_types, comment_references
  7. // ignore_for_file: constant_identifier_names, library_prefixes
  8. // ignore_for_file: non_constant_identifier_names, prefer_final_fields
  9. // ignore_for_file: unnecessary_import, unnecessary_this, unused_import
  10. import 'dart:convert' as $convert;
  11. import 'dart:core' as $core;
  12. import 'dart:typed_data' as $typed_data;
  13. @$core.Deprecated('Use errorCodeDescriptor instead')
  14. const ErrorCode$json = {
  15. '1': 'ErrorCode',
  16. '2': [
  17. {'1': 'OK', '2': 0},
  18. {'1': 'TokenExpire', '2': 1000},
  19. {'1': 'UserBan', '2': 1001},
  20. {'1': 'VfCodeExpire', '2': 1002},
  21. {'1': 'SmsSendFail', '2': 1003},
  22. {'1': 'UserStatusErr', '2': 1008},
  23. {'1': 'StatusErr', '2': 1009},
  24. {'1': 'PhoneNotExist', '2': 2001},
  25. {'1': 'UnknownErr', '2': 2002},
  26. {'1': 'ParamErr', '2': 5000},
  27. {'1': 'HeadSourceErr', '2': 5001},
  28. {'1': 'DATABASE', '2': 9000},
  29. {'1': 'NoRecord', '2': 9001},
  30. ],
  31. };
  32. /// Descriptor for `ErrorCode`. Decode as a `google.protobuf.EnumDescriptorProto`.
  33. final $typed_data.Uint8List errorCodeDescriptor = $convert.base64Decode(
  34. 'CglFcnJvckNvZGUSBgoCT0sQABIQCgtUb2tlbkV4cGlyZRDoBxIMCgdVc2VyQmFuEOkHEhEKDF'
  35. 'ZmQ29kZUV4cGlyZRDqBxIQCgtTbXNTZW5kRmFpbBDrBxISCg1Vc2VyU3RhdHVzRXJyEPAHEg4K'
  36. 'CVN0YXR1c0VychDxBxISCg1QaG9uZU5vdEV4aXN0ENEPEg8KClVua25vd25FcnIQ0g8SDQoIUG'
  37. 'FyYW1FcnIQiCcSEgoNSGVhZFNvdXJjZUVychCJJxINCghEQVRBQkFTRRCoRhINCghOb1JlY29y'
  38. 'ZBCpRg==');
  39. @$core.Deprecated('Use shopTypeDescriptor instead')
  40. const ShopType$json = {
  41. '1': 'ShopType',
  42. '2': [
  43. {'1': 'UnKnowShop', '2': 0},
  44. {'1': 'ParkShop', '2': 1},
  45. {'1': 'IPShop', '2': 2},
  46. {'1': 'AdminShop', '2': 3},
  47. ],
  48. };
  49. /// Descriptor for `ShopType`. Decode as a `google.protobuf.EnumDescriptorProto`.
  50. final $typed_data.Uint8List shopTypeDescriptor = $convert.base64Decode(
  51. 'CghTaG9wVHlwZRIOCgpVbktub3dTaG9wEAASDAoIUGFya1Nob3AQARIKCgZJUFNob3AQAhINCg'
  52. 'lBZG1pblNob3AQAw==');
  53. @$core.Deprecated('Use userTypeDescriptor instead')
  54. const UserType$json = {
  55. '1': 'UserType',
  56. '2': [
  57. {'1': 'UnDefine', '2': 0},
  58. {'1': 'AppUser', '2': 1},
  59. {'1': 'ParkAdmin', '2': 2},
  60. {'1': 'IPAdmin', '2': 3},
  61. {'1': 'SysAdmin', '2': 4},
  62. {'1': 'ToAdmin', '2': 5},
  63. ],
  64. };
  65. /// Descriptor for `UserType`. Decode as a `google.protobuf.EnumDescriptorProto`.
  66. final $typed_data.Uint8List userTypeDescriptor = $convert.base64Decode(
  67. 'CghVc2VyVHlwZRIMCghVbkRlZmluZRAAEgsKB0FwcFVzZXIQARINCglQYXJrQWRtaW4QAhILCg'
  68. 'dJUEFkbWluEAMSDAoIU3lzQWRtaW4QBBILCgdUb0FkbWluEAU=');
  69. @$core.Deprecated('Use loginSourceDescriptor instead')
  70. const LoginSource$json = {
  71. '1': 'LoginSource',
  72. '2': [
  73. {'1': 'UnDef', '2': 0},
  74. {'1': 'UserApp', '2': 1},
  75. {'1': 'WebAdmin', '2': 2},
  76. {'1': 'ShopApp', '2': 3},
  77. {'1': 'ToApp', '2': 4},
  78. ],
  79. };
  80. /// Descriptor for `LoginSource`. Decode as a `google.protobuf.EnumDescriptorProto`.
  81. final $typed_data.Uint8List loginSourceDescriptor = $convert.base64Decode(
  82. 'CgtMb2dpblNvdXJjZRIJCgVVbkRlZhAAEgsKB1VzZXJBcHAQARIMCghXZWJBZG1pbhACEgsKB1'
  83. 'Nob3BBcHAQAxIJCgVUb0FwcBAE');
  84. @$core.Deprecated('Use smsTypeDescriptor instead')
  85. const SmsType$json = {
  86. '1': 'SmsType',
  87. '2': [
  88. {'1': 'UnKnow', '2': 0},
  89. {'1': 'Login', '2': 1},
  90. {'1': 'SignUp', '2': 2},
  91. ],
  92. };
  93. /// Descriptor for `SmsType`. Decode as a `google.protobuf.EnumDescriptorProto`.
  94. final $typed_data.Uint8List smsTypeDescriptor = $convert.base64Decode(
  95. 'CgdTbXNUeXBlEgoKBlVuS25vdxAAEgkKBUxvZ2luEAESCgoGU2lnblVwEAI=');
  96. @$core.Deprecated('Use projectContentTypeDescriptor instead')
  97. const ProjectContentType$json = {
  98. '1': 'ProjectContentType',
  99. '2': [
  100. {'1': 'Text', '2': 0},
  101. {'1': 'Html', '2': 1},
  102. ],
  103. };
  104. /// Descriptor for `ProjectContentType`. Decode as a `google.protobuf.EnumDescriptorProto`.
  105. final $typed_data.Uint8List projectContentTypeDescriptor = $convert.base64Decode(
  106. 'ChJQcm9qZWN0Q29udGVudFR5cGUSCAoEVGV4dBAAEggKBEh0bWwQAQ==');
  107. @$core.Deprecated('Use criterionTypeDescriptor instead')
  108. const CriterionType$json = {
  109. '1': 'CriterionType',
  110. '2': [
  111. {'1': 'CrUnKnow', '2': 0},
  112. {'1': 'CrOrder', '2': 1},
  113. {'1': 'CrNum', '2': 2},
  114. ],
  115. };
  116. /// Descriptor for `CriterionType`. Decode as a `google.protobuf.EnumDescriptorProto`.
  117. final $typed_data.Uint8List criterionTypeDescriptor = $convert.base64Decode(
  118. 'Cg1Dcml0ZXJpb25UeXBlEgwKCENyVW5Lbm93EAASCwoHQ3JPcmRlchABEgkKBUNyTnVtEAI=');
  119. @$core.Deprecated('Use cTypeDescriptor instead')
  120. const CType$json = {
  121. '1': 'CType',
  122. '2': [
  123. {'1': 'UnKnowType', '2': 0},
  124. {'1': 'BeginType', '2': 1},
  125. {'1': 'MiddleType', '2': 2},
  126. {'1': 'EndType', '2': 3},
  127. ],
  128. };
  129. /// Descriptor for `CType`. Decode as a `google.protobuf.EnumDescriptorProto`.
  130. final $typed_data.Uint8List cTypeDescriptor = $convert.base64Decode(
  131. 'CgVDVHlwZRIOCgpVbktub3dUeXBlEAASDQoJQmVnaW5UeXBlEAESDgoKTWlkZGxlVHlwZRACEg'
  132. 'sKB0VuZFR5cGUQAw==');
  133. @$core.Deprecated('Use statusTypeDescriptor instead')
  134. const StatusType$json = {
  135. '1': 'StatusType',
  136. '2': [
  137. {'1': 'UnKnowStatus', '2': 0},
  138. {'1': 'NormalStatus', '2': 1},
  139. {'1': 'DisabledStatus', '2': 8},
  140. {'1': 'DeleteStatus', '2': 9},
  141. ],
  142. };
  143. /// Descriptor for `StatusType`. Decode as a `google.protobuf.EnumDescriptorProto`.
  144. final $typed_data.Uint8List statusTypeDescriptor = $convert.base64Decode(
  145. 'CgpTdGF0dXNUeXBlEhAKDFVuS25vd1N0YXR1cxAAEhAKDE5vcm1hbFN0YXR1cxABEhIKDkRpc2'
  146. 'FibGVkU3RhdHVzEAgSEAoMRGVsZXRlU3RhdHVzEAk=');
  147. @$core.Deprecated('Use hrBandTypeDescriptor instead')
  148. const HrBandType$json = {
  149. '1': 'HrBandType',
  150. '2': [
  151. {'1': 'UnKnowHrBand', '2': 0},
  152. {'1': 'UseHrBand', '2': 1},
  153. {'1': 'NotUseHrBand', '2': 2},
  154. ],
  155. };
  156. /// Descriptor for `HrBandType`. Decode as a `google.protobuf.EnumDescriptorProto`.
  157. final $typed_data.Uint8List hrBandTypeDescriptor = $convert.base64Decode(
  158. 'CgpIckJhbmRUeXBlEhAKDFVuS25vd0hyQmFuZBAAEg0KCVVzZUhyQmFuZBABEhAKDE5vdFVzZU'
  159. 'hyQmFuZBAC');
  160. @$core.Deprecated('Use gameStateDescriptor instead')
  161. const GameState$json = {
  162. '1': 'GameState',
  163. '2': [
  164. {'1': 'AllGameState', '2': 0},
  165. {'1': 'NormalGameState', '2': 1},
  166. {'1': 'abnormalGameState', '2': 2},
  167. ],
  168. };
  169. /// Descriptor for `GameState`. Decode as a `google.protobuf.EnumDescriptorProto`.
  170. final $typed_data.Uint8List gameStateDescriptor = $convert.base64Decode(
  171. 'CglHYW1lU3RhdGUSEAoMQWxsR2FtZVN0YXRlEAASEwoPTm9ybWFsR2FtZVN0YXRlEAESFQoRYW'
  172. 'Jub3JtYWxHYW1lU3RhdGUQAg==');
  173. @$core.Deprecated('Use gameHistorySourceDescriptor instead')
  174. const GameHistorySource$json = {
  175. '1': 'GameHistorySource',
  176. '2': [
  177. {'1': 'GameHistorySourcAll', '2': 0},
  178. {'1': 'GameHistorySourceOrienteer', '2': 1},
  179. {'1': 'GameHistorySourceAss', '2': 2},
  180. ],
  181. };
  182. /// Descriptor for `GameHistorySource`. Decode as a `google.protobuf.EnumDescriptorProto`.
  183. final $typed_data.Uint8List gameHistorySourceDescriptor = $convert.base64Decode(
  184. 'ChFHYW1lSGlzdG9yeVNvdXJjZRIXChNHYW1lSGlzdG9yeVNvdXJjQWxsEAASHgoaR2FtZUhpc3'
  185. 'RvcnlTb3VyY2VPcmllbnRlZXIQARIYChRHYW1lSGlzdG9yeVNvdXJjZUFzcxAC');
  186. @$core.Deprecated('Use backGroundColorDescriptor instead')
  187. const BackGroundColor$json = {
  188. '1': 'BackGroundColor',
  189. '2': [
  190. {'1': 'UnKnowColor', '2': 0},
  191. {'1': 'BlueColor', '2': 1},
  192. {'1': 'GreenColor', '2': 2},
  193. {'1': 'BrownColor', '2': 3},
  194. ],
  195. };
  196. /// Descriptor for `BackGroundColor`. Decode as a `google.protobuf.EnumDescriptorProto`.
  197. final $typed_data.Uint8List backGroundColorDescriptor = $convert.base64Decode(
  198. 'Cg9CYWNrR3JvdW5kQ29sb3ISDwoLVW5Lbm93Q29sb3IQABINCglCbHVlQ29sb3IQARIOCgpHcm'
  199. 'VlbkNvbG9yEAISDgoKQnJvd25Db2xvchAD');
  200. @$core.Deprecated('Use netImageDescriptor instead')
  201. const NetImage$json = {
  202. '1': 'NetImage',
  203. '2': [
  204. {'1': 'url', '3': 1, '4': 1, '5': 9, '10': 'url'},
  205. {'1': 'md5', '3': 2, '4': 1, '5': 12, '10': 'md5'},
  206. ],
  207. };
  208. /// Descriptor for `NetImage`. Decode as a `google.protobuf.DescriptorProto`.
  209. final $typed_data.Uint8List netImageDescriptor = $convert.base64Decode(
  210. 'CghOZXRJbWFnZRIQCgN1cmwYASABKAlSA3VybBIQCgNtZDUYAiABKAxSA21kNQ==');
  211. @$core.Deprecated('Use userDescriptor instead')
  212. const User$json = {
  213. '1': 'User',
  214. '4': [User_Sex$json],
  215. };
  216. @$core.Deprecated('Use userDescriptor instead')
  217. const User_Sex$json = {
  218. '1': 'Sex',
  219. '2': [
  220. {'1': 'UnDefine', '2': 0},
  221. {'1': 'Male', '2': 1},
  222. {'1': 'Female', '2': 2},
  223. ],
  224. };
  225. /// Descriptor for `User`. Decode as a `google.protobuf.DescriptorProto`.
  226. final $typed_data.Uint8List userDescriptor = $convert.base64Decode(
  227. 'CgRVc2VyIikKA1NleBIMCghVbkRlZmluZRAAEggKBE1hbGUQARIKCgZGZW1hbGUQAg==');
  228. @$core.Deprecated('Use gameGpsInfoDescriptor instead')
  229. const GameGpsInfo$json = {
  230. '1': 'GameGpsInfo',
  231. '2': [
  232. {'1': 'gpsTime', '3': 1, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '10': 'gpsTime'},
  233. {'1': 'longitude', '3': 2, '4': 1, '5': 1, '10': 'longitude'},
  234. {'1': 'latitude', '3': 3, '4': 1, '5': 1, '10': 'latitude'},
  235. {'1': 'directionRadian', '3': 4, '4': 1, '5': 1, '10': 'directionRadian'},
  236. {'1': 'altitude', '3': 5, '4': 1, '5': 1, '10': 'altitude'},
  237. ],
  238. };
  239. /// Descriptor for `GameGpsInfo`. Decode as a `google.protobuf.DescriptorProto`.
  240. final $typed_data.Uint8List gameGpsInfoDescriptor = $convert.base64Decode(
  241. 'CgtHYW1lR3BzSW5mbxI0CgdncHNUaW1lGAEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdG'
  242. 'FtcFIHZ3BzVGltZRIcCglsb25naXR1ZGUYAiABKAFSCWxvbmdpdHVkZRIaCghsYXRpdHVkZRgD'
  243. 'IAEoAVIIbGF0aXR1ZGUSKAoPZGlyZWN0aW9uUmFkaWFuGAQgASgBUg9kaXJlY3Rpb25SYWRpYW'
  244. '4SGgoIYWx0aXR1ZGUYBSABKAFSCGFsdGl0dWRl');
  245. @$core.Deprecated('Use heartRateDescriptor instead')
  246. const HeartRate$json = {
  247. '1': 'HeartRate',
  248. '2': [
  249. {'1': 'timeStampMs', '3': 1, '4': 1, '5': 3, '10': 'timeStampMs'},
  250. {'1': 'hr', '3': 2, '4': 1, '5': 5, '10': 'hr'},
  251. ],
  252. };
  253. /// Descriptor for `HeartRate`. Decode as a `google.protobuf.DescriptorProto`.
  254. final $typed_data.Uint8List heartRateDescriptor = $convert.base64Decode(
  255. 'CglIZWFydFJhdGUSIAoLdGltZVN0YW1wTXMYASABKANSC3RpbWVTdGFtcE1zEg4KAmhyGAIgAS'
  256. 'gFUgJocg==');
  257. @$core.Deprecated('Use signInReplyDescriptor instead')
  258. const SignInReply$json = {
  259. '1': 'SignInReply',
  260. '2': [
  261. {'1': 'token', '3': 1, '4': 1, '5': 9, '10': 'token'},
  262. ],
  263. };
  264. /// Descriptor for `SignInReply`. Decode as a `google.protobuf.DescriptorProto`.
  265. final $typed_data.Uint8List signInReplyDescriptor = $convert.base64Decode(
  266. 'CgtTaWduSW5SZXBseRIUCgV0b2tlbhgBIAEoCVIFdG9rZW4=');
  267. @$core.Deprecated('Use gameArriveControlPointDescriptor instead')
  268. const GameArriveControlPoint$json = {
  269. '1': 'GameArriveControlPoint',
  270. '2': [
  271. {'1': 'id', '3': 1, '4': 1, '5': 3, '10': 'id'},
  272. {'1': 'sn', '3': 2, '4': 1, '5': 9, '10': 'sn'},
  273. {'1': 'orderNo', '3': 3, '4': 1, '5': 5, '10': 'orderNo'},
  274. {'1': 'totalNo', '3': 4, '4': 1, '5': 5, '10': 'totalNo'},
  275. ],
  276. };
  277. /// Descriptor for `GameArriveControlPoint`. Decode as a `google.protobuf.DescriptorProto`.
  278. final $typed_data.Uint8List gameArriveControlPointDescriptor = $convert.base64Decode(
  279. 'ChZHYW1lQXJyaXZlQ29udHJvbFBvaW50Eg4KAmlkGAEgASgDUgJpZBIOCgJzbhgCIAEoCVICc2'
  280. '4SGAoHb3JkZXJObxgDIAEoBVIHb3JkZXJObxIYCgd0b3RhbE5vGAQgASgFUgd0b3RhbE5v');
  281. @$core.Deprecated('Use mapRouteDescriptor instead')
  282. const MapRoute$json = {
  283. '1': 'MapRoute',
  284. '2': [
  285. {'1': 'id', '3': 1, '4': 1, '5': 3, '10': 'id'},
  286. {'1': 'name', '3': 2, '4': 1, '5': 9, '10': 'name'},
  287. {'1': 'image', '3': 3, '4': 1, '5': 11, '6': '.base.v1.NetImage', '10': 'image'},
  288. {'1': 'isNfc', '3': 4, '4': 1, '5': 8, '10': 'isNfc'},
  289. {'1': 'distanceMeter', '3': 5, '4': 1, '5': 5, '10': 'distanceMeter'},
  290. {'1': 'altitudeDiffMeter', '3': 6, '4': 1, '5': 5, '10': 'altitudeDiffMeter'},
  291. {'1': 'useCount', '3': 7, '4': 1, '5': 5, '10': 'useCount'},
  292. ],
  293. };
  294. /// Descriptor for `MapRoute`. Decode as a `google.protobuf.DescriptorProto`.
  295. final $typed_data.Uint8List mapRouteDescriptor = $convert.base64Decode(
  296. 'CghNYXBSb3V0ZRIOCgJpZBgBIAEoA1ICaWQSEgoEbmFtZRgCIAEoCVIEbmFtZRInCgVpbWFnZR'
  297. 'gDIAEoCzIRLmJhc2UudjEuTmV0SW1hZ2VSBWltYWdlEhQKBWlzTmZjGAQgASgIUgVpc05mYxIk'
  298. 'Cg1kaXN0YW5jZU1ldGVyGAUgASgFUg1kaXN0YW5jZU1ldGVyEiwKEWFsdGl0dWRlRGlmZk1ldG'
  299. 'VyGAYgASgFUhFhbHRpdHVkZURpZmZNZXRlchIaCgh1c2VDb3VudBgHIAEoBVIIdXNlQ291bnQ=');
  300. @$core.Deprecated('Use idArrRequestDescriptor instead')
  301. const IdArrRequest$json = {
  302. '1': 'IdArrRequest',
  303. '2': [
  304. {'1': 'IdArr', '3': 2, '4': 3, '5': 5, '10': 'IdArr'},
  305. ],
  306. };
  307. /// Descriptor for `IdArrRequest`. Decode as a `google.protobuf.DescriptorProto`.
  308. final $typed_data.Uint8List idArrRequestDescriptor = $convert.base64Decode(
  309. 'CgxJZEFyclJlcXVlc3QSFAoFSWRBcnIYAiADKAVSBUlkQXJy');
  310. @$core.Deprecated('Use baseMapInfoDescriptor instead')
  311. const BaseMapInfo$json = {
  312. '1': 'BaseMapInfo',
  313. '2': [
  314. {'1': 'shopId', '3': 1, '4': 1, '5': 5, '10': 'shopId'},
  315. {'1': 'mapName', '3': 2, '4': 1, '5': 9, '10': 'mapName'},
  316. {'1': 'zipImage', '3': 3, '4': 1, '5': 11, '6': '.base.v1.NetImage', '10': 'zipImage'},
  317. ],
  318. };
  319. /// Descriptor for `BaseMapInfo`. Decode as a `google.protobuf.DescriptorProto`.
  320. final $typed_data.Uint8List baseMapInfoDescriptor = $convert.base64Decode(
  321. 'CgtCYXNlTWFwSW5mbxIWCgZzaG9wSWQYASABKAVSBnNob3BJZBIYCgdtYXBOYW1lGAIgASgJUg'
  322. 'dtYXBOYW1lEi0KCHppcEltYWdlGAMgASgLMhEuYmFzZS52MS5OZXRJbWFnZVIIemlwSW1hZ2U=');
  323. @$core.Deprecated('Use regionDescriptor instead')
  324. const Region$json = {
  325. '1': 'Region',
  326. '2': [
  327. {'1': 'code', '3': 1, '4': 1, '5': 9, '10': 'code'},
  328. {'1': 'name', '3': 2, '4': 1, '5': 9, '10': 'name'},
  329. ],
  330. };
  331. /// Descriptor for `Region`. Decode as a `google.protobuf.DescriptorProto`.
  332. final $typed_data.Uint8List regionDescriptor = $convert.base64Decode(
  333. 'CgZSZWdpb24SEgoEY29kZRgBIAEoCVIEY29kZRISCgRuYW1lGAIgASgJUgRuYW1l');
  334. @$core.Deprecated('Use shopListDescriptor instead')
  335. const ShopList$json = {
  336. '1': 'ShopList',
  337. '2': [
  338. {'1': 'shopId', '3': 1, '4': 1, '5': 5, '10': 'shopId'},
  339. {'1': 'name', '3': 2, '4': 1, '5': 9, '10': 'name'},
  340. ],
  341. };
  342. /// Descriptor for `ShopList`. Decode as a `google.protobuf.DescriptorProto`.
  343. final $typed_data.Uint8List shopListDescriptor = $convert.base64Decode(
  344. 'CghTaG9wTGlzdBIWCgZzaG9wSWQYASABKAVSBnNob3BJZBISCgRuYW1lGAIgASgJUgRuYW1l');
  345. @$core.Deprecated('Use getSmsSendLeftTimeRequestDescriptor instead')
  346. const GetSmsSendLeftTimeRequest$json = {
  347. '1': 'GetSmsSendLeftTimeRequest',
  348. '2': [
  349. {'1': 'phone', '3': 1, '4': 1, '5': 9, '10': 'phone'},
  350. ],
  351. };
  352. /// Descriptor for `GetSmsSendLeftTimeRequest`. Decode as a `google.protobuf.DescriptorProto`.
  353. final $typed_data.Uint8List getSmsSendLeftTimeRequestDescriptor = $convert.base64Decode(
  354. 'ChlHZXRTbXNTZW5kTGVmdFRpbWVSZXF1ZXN0EhQKBXBob25lGAEgASgJUgVwaG9uZQ==');
  355. @$core.Deprecated('Use getSmsSendLeftTimeReplyDescriptor instead')
  356. const GetSmsSendLeftTimeReply$json = {
  357. '1': 'GetSmsSendLeftTimeReply',
  358. '2': [
  359. {'1': 'second', '3': 1, '4': 1, '5': 5, '10': 'second'},
  360. ],
  361. };
  362. /// Descriptor for `GetSmsSendLeftTimeReply`. Decode as a `google.protobuf.DescriptorProto`.
  363. final $typed_data.Uint8List getSmsSendLeftTimeReplyDescriptor = $convert.base64Decode(
  364. 'ChdHZXRTbXNTZW5kTGVmdFRpbWVSZXBseRIWCgZzZWNvbmQYASABKAVSBnNlY29uZA==');
  365. @$core.Deprecated('Use controlInfoListDescriptor instead')
  366. const ControlInfoList$json = {
  367. '1': 'ControlInfoList',
  368. '2': [
  369. {'1': 'ciId', '3': 1, '4': 1, '5': 5, '10': 'ciId'},
  370. {'1': 'ciCode', '3': 2, '4': 1, '5': 9, '10': 'ciCode'},
  371. ],
  372. };
  373. /// Descriptor for `ControlInfoList`. Decode as a `google.protobuf.DescriptorProto`.
  374. final $typed_data.Uint8List controlInfoListDescriptor = $convert.base64Decode(
  375. 'Cg9Db250cm9sSW5mb0xpc3QSEgoEY2lJZBgBIAEoBVIEY2lJZBIWCgZjaUNvZGUYAiABKAlSBm'
  376. 'NpQ29kZQ==');
  377. @$core.Deprecated('Use defaultReplyDescriptor instead')
  378. const DefaultReply$json = {
  379. '1': 'DefaultReply',
  380. };
  381. /// Descriptor for `DefaultReply`. Decode as a `google.protobuf.DescriptorProto`.
  382. final $typed_data.Uint8List defaultReplyDescriptor = $convert.base64Decode(
  383. 'CgxEZWZhdWx0UmVwbHk=');
  384. @$core.Deprecated('Use idRequestDescriptor instead')
  385. const IdRequest$json = {
  386. '1': 'IdRequest',
  387. '2': [
  388. {'1': 'id', '3': 1, '4': 1, '5': 3, '10': 'id'},
  389. ],
  390. };
  391. /// Descriptor for `IdRequest`. Decode as a `google.protobuf.DescriptorProto`.
  392. final $typed_data.Uint8List idRequestDescriptor = $convert.base64Decode(
  393. 'CglJZFJlcXVlc3QSDgoCaWQYASABKANSAmlk');
  394. @$core.Deprecated('Use defaultRequestDescriptor instead')
  395. const DefaultRequest$json = {
  396. '1': 'DefaultRequest',
  397. };
  398. /// Descriptor for `DefaultRequest`. Decode as a `google.protobuf.DescriptorProto`.
  399. final $typed_data.Uint8List defaultRequestDescriptor = $convert.base64Decode(
  400. 'Cg5EZWZhdWx0UmVxdWVzdA==');
  401. @$core.Deprecated('Use positionDescriptor instead')
  402. const Position$json = {
  403. '1': 'Position',
  404. '2': [
  405. {'1': 'longitude', '3': 1, '4': 1, '5': 1, '10': 'longitude'},
  406. {'1': 'latitude', '3': 2, '4': 1, '5': 1, '10': 'latitude'},
  407. {'1': 'altitude', '3': 3, '4': 1, '5': 1, '10': 'altitude'},
  408. ],
  409. };
  410. /// Descriptor for `Position`. Decode as a `google.protobuf.DescriptorProto`.
  411. final $typed_data.Uint8List positionDescriptor = $convert.base64Decode(
  412. 'CghQb3NpdGlvbhIcCglsb25naXR1ZGUYASABKAFSCWxvbmdpdHVkZRIaCghsYXRpdHVkZRgCIA'
  413. 'EoAVIIbGF0aXR1ZGUSGgoIYWx0aXR1ZGUYAyABKAFSCGFsdGl0dWRl');
  414. @$core.Deprecated('Use controlPointInfoDescriptor instead')
  415. const ControlPointInfo$json = {
  416. '1': 'ControlPointInfo',
  417. '2': [
  418. {'1': 'displayInfo', '3': 1, '4': 1, '5': 11, '6': '.google.protobuf.Any', '10': 'displayInfo'},
  419. ],
  420. };
  421. /// Descriptor for `ControlPointInfo`. Decode as a `google.protobuf.DescriptorProto`.
  422. final $typed_data.Uint8List controlPointInfoDescriptor = $convert.base64Decode(
  423. 'ChBDb250cm9sUG9pbnRJbmZvEjYKC2Rpc3BsYXlJbmZvGAEgASgLMhQuZ29vZ2xlLnByb3RvYn'
  424. 'VmLkFueVILZGlzcGxheUluZm8=');
  425. @$core.Deprecated('Use controlPointDisplayInfoSingleChoiceDescriptor instead')
  426. const ControlPointDisplayInfoSingleChoice$json = {
  427. '1': 'ControlPointDisplayInfoSingleChoice',
  428. '2': [
  429. {'1': 'question', '3': 1, '4': 1, '5': 9, '10': 'question'},
  430. {'1': 'image', '3': 2, '4': 1, '5': 11, '6': '.base.v1.NetImage', '10': 'image'},
  431. {'1': 'answer', '3': 3, '4': 3, '5': 9, '10': 'answer'},
  432. {'1': 'rightAnswerIndex', '3': 4, '4': 1, '5': 5, '10': 'rightAnswerIndex'},
  433. {'1': 'qbId', '3': 5, '4': 1, '5': 5, '10': 'qbId'},
  434. ],
  435. };
  436. /// Descriptor for `ControlPointDisplayInfoSingleChoice`. Decode as a `google.protobuf.DescriptorProto`.
  437. final $typed_data.Uint8List controlPointDisplayInfoSingleChoiceDescriptor = $convert.base64Decode(
  438. 'CiNDb250cm9sUG9pbnREaXNwbGF5SW5mb1NpbmdsZUNob2ljZRIaCghxdWVzdGlvbhgBIAEoCV'
  439. 'IIcXVlc3Rpb24SJwoFaW1hZ2UYAiABKAsyES5iYXNlLnYxLk5ldEltYWdlUgVpbWFnZRIWCgZh'
  440. 'bnN3ZXIYAyADKAlSBmFuc3dlchIqChByaWdodEFuc3dlckluZGV4GAQgASgFUhByaWdodEFuc3'
  441. 'dlckluZGV4EhIKBHFiSWQYBSABKAVSBHFiSWQ=');
  442. @$core.Deprecated('Use binaryPartDescriptor instead')
  443. const BinaryPart$json = {
  444. '1': 'BinaryPart',
  445. '2': [
  446. {'1': 'ext', '3': 1, '4': 1, '5': 9, '10': 'ext'},
  447. {'1': 'data', '3': 2, '4': 1, '5': 12, '10': 'data'},
  448. {'1': 'allCount', '3': 3, '4': 1, '5': 5, '10': 'allCount'},
  449. {'1': 'nonce', '3': 4, '4': 1, '5': 12, '10': 'nonce'},
  450. ],
  451. };
  452. /// Descriptor for `BinaryPart`. Decode as a `google.protobuf.DescriptorProto`.
  453. final $typed_data.Uint8List binaryPartDescriptor = $convert.base64Decode(
  454. 'CgpCaW5hcnlQYXJ0EhAKA2V4dBgBIAEoCVIDZXh0EhIKBGRhdGEYAiABKAxSBGRhdGESGgoIYW'
  455. 'xsQ291bnQYAyABKAVSCGFsbENvdW50EhQKBW5vbmNlGAQgASgMUgVub25jZQ==');
  456. @$core.Deprecated('Use binaryPartV2Descriptor instead')
  457. const BinaryPartV2$json = {
  458. '1': 'BinaryPartV2',
  459. '2': [
  460. {'1': 'data', '3': 1, '4': 1, '5': 12, '10': 'data'},
  461. ],
  462. };
  463. /// Descriptor for `BinaryPartV2`. Decode as a `google.protobuf.DescriptorProto`.
  464. final $typed_data.Uint8List binaryPartV2Descriptor = $convert.base64Decode(
  465. 'CgxCaW5hcnlQYXJ0VjISEgoEZGF0YRgBIAEoDFIEZGF0YQ==');
  466. @$core.Deprecated('Use imageDescriptor instead')
  467. const Image$json = {
  468. '1': 'Image',
  469. '2': [
  470. {'1': 'ext', '3': 1, '4': 1, '5': 9, '10': 'ext'},
  471. {'1': 'data', '3': 2, '4': 1, '5': 12, '10': 'data'},
  472. ],
  473. };
  474. /// Descriptor for `Image`. Decode as a `google.protobuf.DescriptorProto`.
  475. final $typed_data.Uint8List imageDescriptor = $convert.base64Decode(
  476. 'CgVJbWFnZRIQCgNleHQYASABKAlSA2V4dBISCgRkYXRhGAIgASgMUgRkYXRh');
  477. @$core.Deprecated('Use statusEditRequestDescriptor instead')
  478. const StatusEditRequest$json = {
  479. '1': 'StatusEditRequest',
  480. '2': [
  481. {'1': 'id', '3': 1, '4': 1, '5': 3, '10': 'id'},
  482. {'1': 'status', '3': 2, '4': 1, '5': 14, '6': '.base.v1.StatusType', '10': 'status'},
  483. ],
  484. };
  485. /// Descriptor for `StatusEditRequest`. Decode as a `google.protobuf.DescriptorProto`.
  486. final $typed_data.Uint8List statusEditRequestDescriptor = $convert.base64Decode(
  487. 'ChFTdGF0dXNFZGl0UmVxdWVzdBIOCgJpZBgBIAEoA1ICaWQSKwoGc3RhdHVzGAIgASgOMhMuYm'
  488. 'FzZS52MS5TdGF0dXNUeXBlUgZzdGF0dXM=');
  489. @$core.Deprecated('Use courseInfoDescriptor instead')
  490. const CourseInfo$json = {
  491. '1': 'CourseInfo',
  492. '2': [
  493. {'1': 'id', '3': 1, '4': 1, '5': 5, '10': 'id'},
  494. {'1': 'name', '3': 2, '4': 1, '5': 9, '10': 'name'},
  495. {'1': 'totalControlNum', '3': 3, '4': 1, '5': 5, '10': 'totalControlNum'},
  496. {'1': 'maxRange', '3': 4, '4': 1, '5': 5, '10': 'maxRange'},
  497. {'1': 'control_point_sorted_list', '3': 5, '4': 3, '5': 11, '6': '.base.v1.ControlPoint', '10': 'controlPointSortedList'},
  498. ],
  499. };
  500. /// Descriptor for `CourseInfo`. Decode as a `google.protobuf.DescriptorProto`.
  501. final $typed_data.Uint8List courseInfoDescriptor = $convert.base64Decode(
  502. 'CgpDb3Vyc2VJbmZvEg4KAmlkGAEgASgFUgJpZBISCgRuYW1lGAIgASgJUgRuYW1lEigKD3RvdG'
  503. 'FsQ29udHJvbE51bRgDIAEoBVIPdG90YWxDb250cm9sTnVtEhoKCG1heFJhbmdlGAQgASgFUght'
  504. 'YXhSYW5nZRJQChljb250cm9sX3BvaW50X3NvcnRlZF9saXN0GAUgAygLMhUuYmFzZS52MS5Db2'
  505. '50cm9sUG9pbnRSFmNvbnRyb2xQb2ludFNvcnRlZExpc3Q=');
  506. @$core.Deprecated('Use controlPointDescriptor instead')
  507. const ControlPoint$json = {
  508. '1': 'ControlPoint',
  509. '2': [
  510. {'1': 'id', '3': 1, '4': 1, '5': 3, '10': 'id'},
  511. {'1': 'info', '3': 2, '4': 1, '5': 11, '6': '.base.v1.ControlPointInfo', '10': 'info'},
  512. {'1': 'nfc_id_list', '3': 3, '4': 3, '5': 9, '10': 'nfcIdList'},
  513. {'1': 'on_map_x', '3': 4, '4': 1, '5': 3, '10': 'onMapX'},
  514. {'1': 'on_map_y', '3': 5, '4': 1, '5': 3, '10': 'onMapY'},
  515. {'1': 'sn', '3': 6, '4': 1, '5': 9, '10': 'sn'},
  516. {'1': 'ciPosition', '3': 7, '4': 1, '5': 11, '6': '.base.v1.Position', '10': 'ciPosition'},
  517. {'1': 'mapPosition', '3': 8, '4': 1, '5': 11, '6': '.base.v1.Position', '10': 'mapPosition'},
  518. {'1': 'category', '3': 9, '4': 1, '5': 5, '10': 'category'},
  519. ],
  520. };
  521. /// Descriptor for `ControlPoint`. Decode as a `google.protobuf.DescriptorProto`.
  522. final $typed_data.Uint8List controlPointDescriptor = $convert.base64Decode(
  523. 'CgxDb250cm9sUG9pbnQSDgoCaWQYASABKANSAmlkEi0KBGluZm8YAiABKAsyGS5iYXNlLnYxLk'
  524. 'NvbnRyb2xQb2ludEluZm9SBGluZm8SHgoLbmZjX2lkX2xpc3QYAyADKAlSCW5mY0lkTGlzdBIY'
  525. 'Cghvbl9tYXBfeBgEIAEoA1IGb25NYXBYEhgKCG9uX21hcF95GAUgASgDUgZvbk1hcFkSDgoCc2'
  526. '4YBiABKAlSAnNuEjEKCmNpUG9zaXRpb24YByABKAsyES5iYXNlLnYxLlBvc2l0aW9uUgpjaVBv'
  527. 'c2l0aW9uEjMKC21hcFBvc2l0aW9uGAggASgLMhEuYmFzZS52MS5Qb3NpdGlvblILbWFwUG9zaX'
  528. 'Rpb24SGgoIY2F0ZWdvcnkYCSABKAVSCGNhdGVnb3J5');
  529. @$core.Deprecated('Use controlPointSimpleDescriptor instead')
  530. const ControlPointSimple$json = {
  531. '1': 'ControlPointSimple',
  532. '2': [
  533. {'1': 'id', '3': 1, '4': 1, '5': 3, '10': 'id'},
  534. {'1': 'nfc_id_list', '3': 2, '4': 3, '5': 9, '10': 'nfcIdList'},
  535. {'1': 'sn', '3': 3, '4': 1, '5': 9, '10': 'sn'},
  536. ],
  537. };
  538. /// Descriptor for `ControlPointSimple`. Decode as a `google.protobuf.DescriptorProto`.
  539. final $typed_data.Uint8List controlPointSimpleDescriptor = $convert.base64Decode(
  540. 'ChJDb250cm9sUG9pbnRTaW1wbGUSDgoCaWQYASABKANSAmlkEh4KC25mY19pZF9saXN0GAIgAy'
  541. 'gJUgluZmNJZExpc3QSDgoCc24YAyABKAlSAnNu');
  542. @$core.Deprecated('Use gameDetailV2ReplyDescriptor instead')
  543. const GameDetailV2Reply$json = {
  544. '1': 'GameDetailV2Reply',
  545. '2': [
  546. {'1': 'game_id', '3': 1, '4': 1, '5': 5, '10': 'gameId'},
  547. {'1': 'isComplete', '3': 2, '4': 1, '5': 8, '10': 'isComplete'},
  548. {'1': 'start_at', '3': 3, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '10': 'startAt'},
  549. {'1': 'checked_sorted_list', '3': 4, '4': 3, '5': 11, '6': '.base.v1.ControlPointGameInfo', '10': 'checkedSortedList'},
  550. {'1': 'duration', '3': 5, '4': 1, '5': 11, '6': '.google.protobuf.Duration', '10': 'duration'},
  551. {'1': 'stop_at', '3': 6, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '10': 'stopAt'},
  552. {'1': 'qrJsonCode', '3': 7, '4': 1, '5': 9, '10': 'qrJsonCode'},
  553. {'1': 'isSuccess', '3': 8, '4': 1, '5': 8, '10': 'isSuccess'},
  554. {'1': 'sysPoint', '3': 9, '4': 1, '5': 5, '10': 'sysPoint'},
  555. {'1': 'totalPointNum', '3': 10, '4': 1, '5': 5, '10': 'totalPointNum'},
  556. {'1': 'actName', '3': 13, '4': 1, '5': 9, '10': 'actName'},
  557. {'1': 'distance', '3': 14, '4': 1, '5': 5, '10': 'distance'},
  558. {'1': 'pace', '3': 15, '4': 1, '5': 5, '10': 'pace'},
  559. {'1': 'avgHr', '3': 16, '4': 1, '5': 5, '10': 'avgHr'},
  560. {'1': 'Calorie', '3': 17, '4': 1, '5': 5, '10': 'Calorie'},
  561. {'1': 'Ck', '3': 18, '4': 1, '5': 5, '10': 'Ck'},
  562. {'1': 'Ei', '3': 19, '4': 1, '5': 2, '10': 'Ei'},
  563. {'1': 'stepNum', '3': 20, '4': 1, '5': 5, '10': 'stepNum'},
  564. {'1': 'gameGpsInfo', '3': 21, '4': 3, '5': 11, '6': '.base.v1.GameGpsInfo', '10': 'gameGpsInfo'},
  565. {'1': 'map_zip', '3': 22, '4': 1, '5': 11, '6': '.base.v1.NetImage', '10': 'mapZip'},
  566. {'1': 'answerHistory', '3': 23, '4': 1, '5': 11, '6': '.base.v1.AnswerHistoryInfo', '10': 'answerHistory'},
  567. {'1': 'gameHrInfos', '3': 24, '4': 3, '5': 11, '6': '.base.v1.HeartRate', '10': 'gameHrInfos'},
  568. {'1': 'source', '3': 25, '4': 1, '5': 14, '6': '.base.v1.GameHistorySource', '10': 'source'},
  569. {'1': 'actId', '3': 26, '4': 1, '5': 5, '10': 'actId'},
  570. {'1': 'body', '3': 27, '4': 1, '5': 11, '6': '.base.v1.OrienteerBodyInfo', '10': 'body'},
  571. ],
  572. };
  573. /// Descriptor for `GameDetailV2Reply`. Decode as a `google.protobuf.DescriptorProto`.
  574. final $typed_data.Uint8List gameDetailV2ReplyDescriptor = $convert.base64Decode(
  575. 'ChFHYW1lRGV0YWlsVjJSZXBseRIXCgdnYW1lX2lkGAEgASgFUgZnYW1lSWQSHgoKaXNDb21wbG'
  576. 'V0ZRgCIAEoCFIKaXNDb21wbGV0ZRI1CghzdGFydF9hdBgDIAEoCzIaLmdvb2dsZS5wcm90b2J1'
  577. 'Zi5UaW1lc3RhbXBSB3N0YXJ0QXQSTQoTY2hlY2tlZF9zb3J0ZWRfbGlzdBgEIAMoCzIdLmJhc2'
  578. 'UudjEuQ29udHJvbFBvaW50R2FtZUluZm9SEWNoZWNrZWRTb3J0ZWRMaXN0EjUKCGR1cmF0aW9u'
  579. 'GAUgASgLMhkuZ29vZ2xlLnByb3RvYnVmLkR1cmF0aW9uUghkdXJhdGlvbhIzCgdzdG9wX2F0GA'
  580. 'YgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcFIGc3RvcEF0Eh4KCnFySnNvbkNvZGUY'
  581. 'ByABKAlSCnFySnNvbkNvZGUSHAoJaXNTdWNjZXNzGAggASgIUglpc1N1Y2Nlc3MSGgoIc3lzUG'
  582. '9pbnQYCSABKAVSCHN5c1BvaW50EiQKDXRvdGFsUG9pbnROdW0YCiABKAVSDXRvdGFsUG9pbnRO'
  583. 'dW0SGAoHYWN0TmFtZRgNIAEoCVIHYWN0TmFtZRIaCghkaXN0YW5jZRgOIAEoBVIIZGlzdGFuY2'
  584. 'USEgoEcGFjZRgPIAEoBVIEcGFjZRIUCgVhdmdIchgQIAEoBVIFYXZnSHISGAoHQ2Fsb3JpZRgR'
  585. 'IAEoBVIHQ2Fsb3JpZRIOCgJDaxgSIAEoBVICQ2sSDgoCRWkYEyABKAJSAkVpEhgKB3N0ZXBOdW'
  586. '0YFCABKAVSB3N0ZXBOdW0SNgoLZ2FtZUdwc0luZm8YFSADKAsyFC5iYXNlLnYxLkdhbWVHcHNJ'
  587. 'bmZvUgtnYW1lR3BzSW5mbxIqCgdtYXBfemlwGBYgASgLMhEuYmFzZS52MS5OZXRJbWFnZVIGbW'
  588. 'FwWmlwEkAKDWFuc3dlckhpc3RvcnkYFyABKAsyGi5iYXNlLnYxLkFuc3dlckhpc3RvcnlJbmZv'
  589. 'Ug1hbnN3ZXJIaXN0b3J5EjQKC2dhbWVIckluZm9zGBggAygLMhIuYmFzZS52MS5IZWFydFJhdG'
  590. 'VSC2dhbWVIckluZm9zEjIKBnNvdXJjZRgZIAEoDjIaLmJhc2UudjEuR2FtZUhpc3RvcnlTb3Vy'
  591. 'Y2VSBnNvdXJjZRIUCgVhY3RJZBgaIAEoBVIFYWN0SWQSLgoEYm9keRgbIAEoCzIaLmJhc2Uudj'
  592. 'EuT3JpZW50ZWVyQm9keUluZm9SBGJvZHk=');
  593. @$core.Deprecated('Use orienteerBodyInfoDescriptor instead')
  594. const OrienteerBodyInfo$json = {
  595. '1': 'OrienteerBodyInfo',
  596. '2': [
  597. {'1': 'oId', '3': 1, '4': 1, '5': 5, '10': 'oId'},
  598. {'1': 'sex', '3': 2, '4': 1, '5': 14, '6': '.base.v1.User.Sex', '10': 'sex'},
  599. {'1': 'birthdayYear', '3': 3, '4': 1, '5': 5, '10': 'birthdayYear'},
  600. {'1': 'heightMillimeter', '3': 4, '4': 1, '5': 5, '10': 'heightMillimeter'},
  601. {'1': 'weightGram', '3': 5, '4': 1, '5': 5, '10': 'weightGram'},
  602. {'1': 'staticHr', '3': 6, '4': 1, '5': 5, '10': 'staticHr'},
  603. ],
  604. };
  605. /// Descriptor for `OrienteerBodyInfo`. Decode as a `google.protobuf.DescriptorProto`.
  606. final $typed_data.Uint8List orienteerBodyInfoDescriptor = $convert.base64Decode(
  607. 'ChFPcmllbnRlZXJCb2R5SW5mbxIQCgNvSWQYASABKAVSA29JZBIjCgNzZXgYAiABKA4yES5iYX'
  608. 'NlLnYxLlVzZXIuU2V4UgNzZXgSIgoMYmlydGhkYXlZZWFyGAMgASgFUgxiaXJ0aGRheVllYXIS'
  609. 'KgoQaGVpZ2h0TWlsbGltZXRlchgEIAEoBVIQaGVpZ2h0TWlsbGltZXRlchIeCgp3ZWlnaHRHcm'
  610. 'FtGAUgASgFUgp3ZWlnaHRHcmFtEhoKCHN0YXRpY0hyGAYgASgFUghzdGF0aWNIcg==');
  611. @$core.Deprecated('Use controlPointGameInfoDescriptor instead')
  612. const ControlPointGameInfo$json = {
  613. '1': 'ControlPointGameInfo',
  614. '2': [
  615. {'1': 'id', '3': 1, '4': 1, '5': 3, '10': 'id'},
  616. {'1': 'sn', '3': 2, '4': 1, '5': 9, '10': 'sn'},
  617. {'1': 'cType', '3': 3, '4': 1, '5': 14, '6': '.base.v1.CType', '10': 'cType'},
  618. {'1': 'orderNo', '3': 4, '4': 1, '5': 5, '10': 'orderNo'},
  619. {'1': 'is_check_success', '3': 5, '4': 1, '5': 8, '10': 'isCheckSuccess'},
  620. {'1': 'check_after_last', '3': 6, '4': 1, '5': 11, '6': '.google.protobuf.Duration', '10': 'checkAfterLast'},
  621. {'1': 'punchTime', '3': 7, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '10': 'punchTime'},
  622. {'1': 'position', '3': 8, '4': 1, '5': 11, '6': '.base.v1.Position', '10': 'position'},
  623. {'1': 'disAfterLast', '3': 9, '4': 1, '5': 5, '10': 'disAfterLast'},
  624. {'1': 'disStraightAfterLast', '3': 10, '4': 1, '5': 5, '10': 'disStraightAfterLast'},
  625. {'1': 'paceAfterLast', '3': 11, '4': 1, '5': 5, '10': 'paceAfterLast'},
  626. {'1': 'paceAfterStart', '3': 12, '4': 1, '5': 5, '10': 'paceAfterStart'},
  627. {'1': 'check_after_start', '3': 13, '4': 1, '5': 11, '6': '.google.protobuf.Duration', '10': 'checkAfterStart'},
  628. ],
  629. };
  630. /// Descriptor for `ControlPointGameInfo`. Decode as a `google.protobuf.DescriptorProto`.
  631. final $typed_data.Uint8List controlPointGameInfoDescriptor = $convert.base64Decode(
  632. 'ChRDb250cm9sUG9pbnRHYW1lSW5mbxIOCgJpZBgBIAEoA1ICaWQSDgoCc24YAiABKAlSAnNuEi'
  633. 'QKBWNUeXBlGAMgASgOMg4uYmFzZS52MS5DVHlwZVIFY1R5cGUSGAoHb3JkZXJObxgEIAEoBVIH'
  634. 'b3JkZXJObxIoChBpc19jaGVja19zdWNjZXNzGAUgASgIUg5pc0NoZWNrU3VjY2VzcxJDChBjaG'
  635. 'Vja19hZnRlcl9sYXN0GAYgASgLMhkuZ29vZ2xlLnByb3RvYnVmLkR1cmF0aW9uUg5jaGVja0Fm'
  636. 'dGVyTGFzdBI4CglwdW5jaFRpbWUYByABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wUg'
  637. 'lwdW5jaFRpbWUSLQoIcG9zaXRpb24YCCABKAsyES5iYXNlLnYxLlBvc2l0aW9uUghwb3NpdGlv'
  638. 'bhIiCgxkaXNBZnRlckxhc3QYCSABKAVSDGRpc0FmdGVyTGFzdBIyChRkaXNTdHJhaWdodEFmdG'
  639. 'VyTGFzdBgKIAEoBVIUZGlzU3RyYWlnaHRBZnRlckxhc3QSJAoNcGFjZUFmdGVyTGFzdBgLIAEo'
  640. 'BVINcGFjZUFmdGVyTGFzdBImCg5wYWNlQWZ0ZXJTdGFydBgMIAEoBVIOcGFjZUFmdGVyU3Rhcn'
  641. 'QSRQoRY2hlY2tfYWZ0ZXJfc3RhcnQYDSABKAsyGS5nb29nbGUucHJvdG9idWYuRHVyYXRpb25S'
  642. 'D2NoZWNrQWZ0ZXJTdGFydA==');
  643. @$core.Deprecated('Use answerHistoryInfoDescriptor instead')
  644. const AnswerHistoryInfo$json = {
  645. '1': 'AnswerHistoryInfo',
  646. '2': [
  647. {'1': 'accuracy', '3': 1, '4': 1, '5': 5, '10': 'accuracy'},
  648. {'1': 'totalAnswerNum', '3': 2, '4': 1, '5': 5, '10': 'totalAnswerNum'},
  649. {'1': 'correctAnswerNum', '3': 3, '4': 1, '5': 5, '10': 'correctAnswerNum'},
  650. {'1': 'ranking', '3': 4, '4': 1, '5': 5, '10': 'ranking'},
  651. {'1': 'rankingDay', '3': 5, '4': 1, '5': 5, '10': 'rankingDay'},
  652. {'1': 'list', '3': 6, '4': 3, '5': 11, '6': '.base.v1.AnswerDetailInfo', '10': 'list'},
  653. {'1': 'rankingSurpass', '3': 7, '4': 1, '5': 5, '10': 'rankingSurpass'},
  654. ],
  655. };
  656. /// Descriptor for `AnswerHistoryInfo`. Decode as a `google.protobuf.DescriptorProto`.
  657. final $typed_data.Uint8List answerHistoryInfoDescriptor = $convert.base64Decode(
  658. 'ChFBbnN3ZXJIaXN0b3J5SW5mbxIaCghhY2N1cmFjeRgBIAEoBVIIYWNjdXJhY3kSJgoOdG90YW'
  659. 'xBbnN3ZXJOdW0YAiABKAVSDnRvdGFsQW5zd2VyTnVtEioKEGNvcnJlY3RBbnN3ZXJOdW0YAyAB'
  660. 'KAVSEGNvcnJlY3RBbnN3ZXJOdW0SGAoHcmFua2luZxgEIAEoBVIHcmFua2luZxIeCgpyYW5raW'
  661. '5nRGF5GAUgASgFUgpyYW5raW5nRGF5Ei0KBGxpc3QYBiADKAsyGS5iYXNlLnYxLkFuc3dlckRl'
  662. 'dGFpbEluZm9SBGxpc3QSJgoOcmFua2luZ1N1cnBhc3MYByABKAVSDnJhbmtpbmdTdXJwYXNz');
  663. @$core.Deprecated('Use answerDetailInfoDescriptor instead')
  664. const AnswerDetailInfo$json = {
  665. '1': 'AnswerDetailInfo',
  666. '2': [
  667. {'1': 'qbId', '3': 1, '4': 1, '5': 5, '10': 'qbId'},
  668. {'1': 'question', '3': 2, '4': 1, '5': 9, '10': 'question'},
  669. {'1': 'image', '3': 3, '4': 1, '5': 11, '6': '.base.v1.NetImage', '10': 'image'},
  670. {'1': 'answer', '3': 4, '4': 3, '5': 9, '10': 'answer'},
  671. {'1': 'rightAnswerIndex', '3': 5, '4': 1, '5': 5, '10': 'rightAnswerIndex'},
  672. {'1': 'userAnswerIndex', '3': 6, '4': 1, '5': 5, '10': 'userAnswerIndex'},
  673. {'1': 'answerCorrect', '3': 7, '4': 1, '5': 8, '10': 'answerCorrect'},
  674. {'1': 'isAnswer', '3': 8, '4': 1, '5': 8, '10': 'isAnswer'},
  675. ],
  676. };
  677. /// Descriptor for `AnswerDetailInfo`. Decode as a `google.protobuf.DescriptorProto`.
  678. final $typed_data.Uint8List answerDetailInfoDescriptor = $convert.base64Decode(
  679. 'ChBBbnN3ZXJEZXRhaWxJbmZvEhIKBHFiSWQYASABKAVSBHFiSWQSGgoIcXVlc3Rpb24YAiABKA'
  680. 'lSCHF1ZXN0aW9uEicKBWltYWdlGAMgASgLMhEuYmFzZS52MS5OZXRJbWFnZVIFaW1hZ2USFgoG'
  681. 'YW5zd2VyGAQgAygJUgZhbnN3ZXISKgoQcmlnaHRBbnN3ZXJJbmRleBgFIAEoBVIQcmlnaHRBbn'
  682. 'N3ZXJJbmRleBIoCg91c2VyQW5zd2VySW5kZXgYBiABKAVSD3VzZXJBbnN3ZXJJbmRleBIkCg1h'
  683. 'bnN3ZXJDb3JyZWN0GAcgASgIUg1hbnN3ZXJDb3JyZWN0EhoKCGlzQW5zd2VyGAggASgIUghpc0'
  684. 'Fuc3dlcg==');
  685. @$core.Deprecated('Use toActivityRegusterAddRequestDescriptor instead')
  686. const ToActivityRegusterAddRequest$json = {
  687. '1': 'ToActivityRegusterAddRequest',
  688. '2': [
  689. {'1': 'regName', '3': 1, '4': 1, '5': 9, '10': 'regName'},
  690. {'1': 'startSecond', '3': 2, '4': 1, '5': 3, '10': 'startSecond'},
  691. {'1': 'endSecond', '3': 3, '4': 1, '5': 3, '10': 'endSecond'},
  692. {'1': 'organizer', '3': 4, '4': 1, '5': 9, '10': 'organizer'},
  693. ],
  694. };
  695. /// Descriptor for `ToActivityRegusterAddRequest`. Decode as a `google.protobuf.DescriptorProto`.
  696. final $typed_data.Uint8List toActivityRegusterAddRequestDescriptor = $convert.base64Decode(
  697. 'ChxUb0FjdGl2aXR5UmVndXN0ZXJBZGRSZXF1ZXN0EhgKB3JlZ05hbWUYASABKAlSB3JlZ05hbW'
  698. 'USIAoLc3RhcnRTZWNvbmQYAiABKANSC3N0YXJ0U2Vjb25kEhwKCWVuZFNlY29uZBgDIAEoA1IJ'
  699. 'ZW5kU2Vjb25kEhwKCW9yZ2FuaXplchgEIAEoCVIJb3JnYW5pemVy');
  700. @$core.Deprecated('Use toActivityRegusterEditRequestDescriptor instead')
  701. const ToActivityRegusterEditRequest$json = {
  702. '1': 'ToActivityRegusterEditRequest',
  703. '2': [
  704. {'1': 'regId', '3': 1, '4': 1, '5': 5, '10': 'regId'},
  705. {'1': 'regName', '3': 2, '4': 1, '5': 9, '10': 'regName'},
  706. {'1': 'startSecond', '3': 3, '4': 1, '5': 3, '10': 'startSecond'},
  707. {'1': 'endSecond', '3': 4, '4': 1, '5': 3, '10': 'endSecond'},
  708. {'1': 'organizer', '3': 5, '4': 1, '5': 9, '10': 'organizer'},
  709. ],
  710. };
  711. /// Descriptor for `ToActivityRegusterEditRequest`. Decode as a `google.protobuf.DescriptorProto`.
  712. final $typed_data.Uint8List toActivityRegusterEditRequestDescriptor = $convert.base64Decode(
  713. 'Ch1Ub0FjdGl2aXR5UmVndXN0ZXJFZGl0UmVxdWVzdBIUCgVyZWdJZBgBIAEoBVIFcmVnSWQSGA'
  714. 'oHcmVnTmFtZRgCIAEoCVIHcmVnTmFtZRIgCgtzdGFydFNlY29uZBgDIAEoA1ILc3RhcnRTZWNv'
  715. 'bmQSHAoJZW5kU2Vjb25kGAQgASgDUgllbmRTZWNvbmQSHAoJb3JnYW5pemVyGAUgASgJUglvcm'
  716. 'dhbml6ZXI=');
  717. @$core.Deprecated('Use toActivityRegusterListRequestDescriptor instead')
  718. const ToActivityRegusterListRequest$json = {
  719. '1': 'ToActivityRegusterListRequest',
  720. '2': [
  721. {'1': 'offset', '3': 1, '4': 1, '5': 5, '10': 'offset'},
  722. {'1': 'limit', '3': 2, '4': 1, '5': 5, '10': 'limit'},
  723. ],
  724. };
  725. /// Descriptor for `ToActivityRegusterListRequest`. Decode as a `google.protobuf.DescriptorProto`.
  726. final $typed_data.Uint8List toActivityRegusterListRequestDescriptor = $convert.base64Decode(
  727. 'Ch1Ub0FjdGl2aXR5UmVndXN0ZXJMaXN0UmVxdWVzdBIWCgZvZmZzZXQYASABKAVSBm9mZnNldB'
  728. 'IUCgVsaW1pdBgCIAEoBVIFbGltaXQ=');
  729. @$core.Deprecated('Use toActivityRegusterListReplyDescriptor instead')
  730. const ToActivityRegusterListReply$json = {
  731. '1': 'ToActivityRegusterListReply',
  732. '2': [
  733. {'1': 'list', '3': 1, '4': 3, '5': 11, '6': '.base.v1.ToActivityRegusterInfo', '10': 'list'},
  734. ],
  735. };
  736. /// Descriptor for `ToActivityRegusterListReply`. Decode as a `google.protobuf.DescriptorProto`.
  737. final $typed_data.Uint8List toActivityRegusterListReplyDescriptor = $convert.base64Decode(
  738. 'ChtUb0FjdGl2aXR5UmVndXN0ZXJMaXN0UmVwbHkSMwoEbGlzdBgBIAMoCzIfLmJhc2UudjEuVG'
  739. '9BY3Rpdml0eVJlZ3VzdGVySW5mb1IEbGlzdA==');
  740. @$core.Deprecated('Use toActivityRegusterInfoDescriptor instead')
  741. const ToActivityRegusterInfo$json = {
  742. '1': 'ToActivityRegusterInfo',
  743. '2': [
  744. {'1': 'regId', '3': 1, '4': 1, '5': 5, '10': 'regId'},
  745. {'1': 'regName', '3': 2, '4': 1, '5': 9, '10': 'regName'},
  746. {'1': 'startSecond', '3': 3, '4': 1, '5': 3, '10': 'startSecond'},
  747. {'1': 'endSecond', '3': 4, '4': 1, '5': 3, '10': 'endSecond'},
  748. {'1': 'organizer', '3': 5, '4': 1, '5': 9, '10': 'organizer'},
  749. {'1': 'key', '3': 6, '4': 1, '5': 9, '10': 'key'},
  750. ],
  751. };
  752. /// Descriptor for `ToActivityRegusterInfo`. Decode as a `google.protobuf.DescriptorProto`.
  753. final $typed_data.Uint8List toActivityRegusterInfoDescriptor = $convert.base64Decode(
  754. 'ChZUb0FjdGl2aXR5UmVndXN0ZXJJbmZvEhQKBXJlZ0lkGAEgASgFUgVyZWdJZBIYCgdyZWdOYW'
  755. '1lGAIgASgJUgdyZWdOYW1lEiAKC3N0YXJ0U2Vjb25kGAMgASgDUgtzdGFydFNlY29uZBIcCgll'
  756. 'bmRTZWNvbmQYBCABKANSCWVuZFNlY29uZBIcCglvcmdhbml6ZXIYBSABKAlSCW9yZ2FuaXplch'
  757. 'IQCgNrZXkYBiABKAlSA2tleQ==');
  758. @$core.Deprecated('Use toGameRankingRequestDescriptor instead')
  759. const ToGameRankingRequest$json = {
  760. '1': 'ToGameRankingRequest',
  761. '2': [
  762. {'1': 'mapId', '3': 1, '4': 1, '5': 5, '10': 'mapId'},
  763. {'1': 'startSecond', '3': 2, '4': 1, '5': 3, '10': 'startSecond'},
  764. ],
  765. };
  766. /// Descriptor for `ToGameRankingRequest`. Decode as a `google.protobuf.DescriptorProto`.
  767. final $typed_data.Uint8List toGameRankingRequestDescriptor = $convert.base64Decode(
  768. 'ChRUb0dhbWVSYW5raW5nUmVxdWVzdBIUCgVtYXBJZBgBIAEoBVIFbWFwSWQSIAoLc3RhcnRTZW'
  769. 'NvbmQYAiABKANSC3N0YXJ0U2Vjb25k');
  770. @$core.Deprecated('Use toGameRankingReplyDescriptor instead')
  771. const ToGameRankingReply$json = {
  772. '1': 'ToGameRankingReply',
  773. '2': [
  774. {'1': 'list', '3': 1, '4': 3, '5': 11, '6': '.base.v1.ToActionRankInfo', '10': 'list'},
  775. ],
  776. };
  777. /// Descriptor for `ToGameRankingReply`. Decode as a `google.protobuf.DescriptorProto`.
  778. final $typed_data.Uint8List toGameRankingReplyDescriptor = $convert.base64Decode(
  779. 'ChJUb0dhbWVSYW5raW5nUmVwbHkSLQoEbGlzdBgBIAMoCzIZLmJhc2UudjEuVG9BY3Rpb25SYW'
  780. '5rSW5mb1IEbGlzdA==');
  781. @$core.Deprecated('Use toActionRankInfoDescriptor instead')
  782. const ToActionRankInfo$json = {
  783. '1': 'ToActionRankInfo',
  784. '2': [
  785. {'1': 'actId', '3': 1, '4': 1, '5': 5, '10': 'actId'},
  786. {'1': 'actName', '3': 2, '4': 1, '5': 9, '10': 'actName'},
  787. {'1': 'totalUserNum', '3': 3, '4': 1, '5': 5, '10': 'totalUserNum'},
  788. {'1': 'rankList', '3': 4, '4': 3, '5': 11, '6': '.base.v1.ToOrienteerRankInfo', '10': 'rankList'},
  789. ],
  790. };
  791. /// Descriptor for `ToActionRankInfo`. Decode as a `google.protobuf.DescriptorProto`.
  792. final $typed_data.Uint8List toActionRankInfoDescriptor = $convert.base64Decode(
  793. 'ChBUb0FjdGlvblJhbmtJbmZvEhQKBWFjdElkGAEgASgFUgVhY3RJZBIYCgdhY3ROYW1lGAIgAS'
  794. 'gJUgdhY3ROYW1lEiIKDHRvdGFsVXNlck51bRgDIAEoBVIMdG90YWxVc2VyTnVtEjgKCHJhbmtM'
  795. 'aXN0GAQgAygLMhwuYmFzZS52MS5Ub09yaWVudGVlclJhbmtJbmZvUghyYW5rTGlzdA==');
  796. @$core.Deprecated('Use toOrienteerRankInfoDescriptor instead')
  797. const ToOrienteerRankInfo$json = {
  798. '1': 'ToOrienteerRankInfo',
  799. '2': [
  800. {'1': 'gameId', '3': 1, '4': 1, '5': 5, '10': 'gameId'},
  801. {'1': 'oName', '3': 2, '4': 1, '5': 9, '10': 'oName'},
  802. {'1': 'phone', '3': 3, '4': 1, '5': 9, '10': 'phone'},
  803. {'1': 'courseName', '3': 4, '4': 1, '5': 9, '10': 'courseName'},
  804. {'1': 'state', '3': 5, '4': 1, '5': 5, '10': 'state'},
  805. {'1': 'start_at', '3': 6, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '10': 'startAt'},
  806. {'1': 'duration', '3': 7, '4': 1, '5': 11, '6': '.google.protobuf.Duration', '10': 'duration'},
  807. {'1': 'distance', '3': 8, '4': 1, '5': 5, '10': 'distance'},
  808. {'1': 'totalControlNum', '3': 9, '4': 1, '5': 5, '10': 'totalControlNum'},
  809. {'1': 'oId', '3': 10, '4': 1, '5': 5, '10': 'oId'},
  810. ],
  811. };
  812. /// Descriptor for `ToOrienteerRankInfo`. Decode as a `google.protobuf.DescriptorProto`.
  813. final $typed_data.Uint8List toOrienteerRankInfoDescriptor = $convert.base64Decode(
  814. 'ChNUb09yaWVudGVlclJhbmtJbmZvEhYKBmdhbWVJZBgBIAEoBVIGZ2FtZUlkEhQKBW9OYW1lGA'
  815. 'IgASgJUgVvTmFtZRIUCgVwaG9uZRgDIAEoCVIFcGhvbmUSHgoKY291cnNlTmFtZRgEIAEoCVIK'
  816. 'Y291cnNlTmFtZRIUCgVzdGF0ZRgFIAEoBVIFc3RhdGUSNQoIc3RhcnRfYXQYBiABKAsyGi5nb2'
  817. '9nbGUucHJvdG9idWYuVGltZXN0YW1wUgdzdGFydEF0EjUKCGR1cmF0aW9uGAcgASgLMhkuZ29v'
  818. 'Z2xlLnByb3RvYnVmLkR1cmF0aW9uUghkdXJhdGlvbhIaCghkaXN0YW5jZRgIIAEoBVIIZGlzdG'
  819. 'FuY2USKAoPdG90YWxDb250cm9sTnVtGAkgASgFUg90b3RhbENvbnRyb2xOdW0SEAoDb0lkGAog'
  820. 'ASgFUgNvSWQ=');
  821. @$core.Deprecated('Use toGetUpdateVersionRequestDescriptor instead')
  822. const ToGetUpdateVersionRequest$json = {
  823. '1': 'ToGetUpdateVersionRequest',
  824. '2': [
  825. {'1': 'vCode', '3': 1, '4': 1, '5': 9, '10': 'vCode'},
  826. {'1': 'vShop', '3': 2, '4': 1, '5': 5, '10': 'vShop'},
  827. ],
  828. };
  829. /// Descriptor for `ToGetUpdateVersionRequest`. Decode as a `google.protobuf.DescriptorProto`.
  830. final $typed_data.Uint8List toGetUpdateVersionRequestDescriptor = $convert.base64Decode(
  831. 'ChlUb0dldFVwZGF0ZVZlcnNpb25SZXF1ZXN0EhQKBXZDb2RlGAEgASgJUgV2Q29kZRIUCgV2U2'
  832. 'hvcBgCIAEoBVIFdlNob3A=');
  833. @$core.Deprecated('Use toGetUpdateVersionReplyDescriptor instead')
  834. const ToGetUpdateVersionReply$json = {
  835. '1': 'ToGetUpdateVersionReply',
  836. '2': [
  837. {'1': 'needUpdate', '3': 1, '4': 1, '5': 8, '10': 'needUpdate'},
  838. {'1': 'vCode', '3': 2, '4': 1, '5': 9, '10': 'vCode'},
  839. {'1': 'vMemo', '3': 3, '4': 1, '5': 9, '10': 'vMemo'},
  840. {'1': 'vUrl', '3': 4, '4': 1, '5': 9, '10': 'vUrl'},
  841. ],
  842. };
  843. /// Descriptor for `ToGetUpdateVersionReply`. Decode as a `google.protobuf.DescriptorProto`.
  844. final $typed_data.Uint8List toGetUpdateVersionReplyDescriptor = $convert.base64Decode(
  845. 'ChdUb0dldFVwZGF0ZVZlcnNpb25SZXBseRIeCgpuZWVkVXBkYXRlGAEgASgIUgpuZWVkVXBkYX'
  846. 'RlEhQKBXZDb2RlGAIgASgJUgV2Q29kZRIUCgV2TWVtbxgDIAEoCVIFdk1lbW8SEgoEdlVybBgE'
  847. 'IAEoCVIEdlVybA==');
  848. @$core.Deprecated('Use toGameDetailReplyDescriptor instead')
  849. const ToGameDetailReply$json = {
  850. '1': 'ToGameDetailReply',
  851. '2': [
  852. {'1': 'game_id', '3': 1, '4': 1, '5': 5, '10': 'gameId'},
  853. {'1': 'isComplete', '3': 2, '4': 1, '5': 8, '10': 'isComplete'},
  854. {'1': 'start_at', '3': 3, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '10': 'startAt'},
  855. {'1': 'checked_sorted_list', '3': 4, '4': 3, '5': 11, '6': '.base.v1.ToControlPoint', '10': 'checkedSortedList'},
  856. {'1': 'duration', '3': 5, '4': 1, '5': 11, '6': '.google.protobuf.Duration', '10': 'duration'},
  857. {'1': 'stop_at', '3': 6, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '10': 'stopAt'},
  858. {'1': 'isSuccess', '3': 8, '4': 1, '5': 8, '10': 'isSuccess'},
  859. {'1': 'sysPoint', '3': 9, '4': 1, '5': 5, '10': 'sysPoint'},
  860. {'1': 'totalPointNum', '3': 10, '4': 1, '5': 5, '10': 'totalPointNum'},
  861. {'1': 'actName', '3': 13, '4': 1, '5': 9, '10': 'actName'},
  862. {'1': 'distance', '3': 14, '4': 1, '5': 5, '10': 'distance'},
  863. {'1': 'pace', '3': 15, '4': 1, '5': 5, '10': 'pace'},
  864. {'1': 'avgHr', '3': 16, '4': 1, '5': 5, '10': 'avgHr'},
  865. {'1': 'Calorie', '3': 17, '4': 1, '5': 5, '10': 'Calorie'},
  866. {'1': 'Ck', '3': 18, '4': 1, '5': 5, '10': 'Ck'},
  867. {'1': 'Ei', '3': 19, '4': 1, '5': 2, '10': 'Ei'},
  868. {'1': 'stepNum', '3': 20, '4': 1, '5': 5, '10': 'stepNum'},
  869. {'1': 'gameGpsInfo', '3': 21, '4': 3, '5': 11, '6': '.base.v1.GameGpsInfo', '10': 'gameGpsInfo'},
  870. {'1': 'gameHrInfos', '3': 24, '4': 3, '5': 11, '6': '.base.v1.HeartRate', '10': 'gameHrInfos'},
  871. {'1': 'source', '3': 25, '4': 1, '5': 14, '6': '.base.v1.GameHistorySource', '10': 'source'},
  872. {'1': 'actId', '3': 26, '4': 1, '5': 5, '10': 'actId'},
  873. ],
  874. };
  875. /// Descriptor for `ToGameDetailReply`. Decode as a `google.protobuf.DescriptorProto`.
  876. final $typed_data.Uint8List toGameDetailReplyDescriptor = $convert.base64Decode(
  877. 'ChFUb0dhbWVEZXRhaWxSZXBseRIXCgdnYW1lX2lkGAEgASgFUgZnYW1lSWQSHgoKaXNDb21wbG'
  878. 'V0ZRgCIAEoCFIKaXNDb21wbGV0ZRI1CghzdGFydF9hdBgDIAEoCzIaLmdvb2dsZS5wcm90b2J1'
  879. 'Zi5UaW1lc3RhbXBSB3N0YXJ0QXQSRwoTY2hlY2tlZF9zb3J0ZWRfbGlzdBgEIAMoCzIXLmJhc2'
  880. 'UudjEuVG9Db250cm9sUG9pbnRSEWNoZWNrZWRTb3J0ZWRMaXN0EjUKCGR1cmF0aW9uGAUgASgL'
  881. 'MhkuZ29vZ2xlLnByb3RvYnVmLkR1cmF0aW9uUghkdXJhdGlvbhIzCgdzdG9wX2F0GAYgASgLMh'
  882. 'ouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcFIGc3RvcEF0EhwKCWlzU3VjY2VzcxgIIAEoCFIJ'
  883. 'aXNTdWNjZXNzEhoKCHN5c1BvaW50GAkgASgFUghzeXNQb2ludBIkCg10b3RhbFBvaW50TnVtGA'
  884. 'ogASgFUg10b3RhbFBvaW50TnVtEhgKB2FjdE5hbWUYDSABKAlSB2FjdE5hbWUSGgoIZGlzdGFu'
  885. 'Y2UYDiABKAVSCGRpc3RhbmNlEhIKBHBhY2UYDyABKAVSBHBhY2USFAoFYXZnSHIYECABKAVSBW'
  886. 'F2Z0hyEhgKB0NhbG9yaWUYESABKAVSB0NhbG9yaWUSDgoCQ2sYEiABKAVSAkNrEg4KAkVpGBMg'
  887. 'ASgCUgJFaRIYCgdzdGVwTnVtGBQgASgFUgdzdGVwTnVtEjYKC2dhbWVHcHNJbmZvGBUgAygLMh'
  888. 'QuYmFzZS52MS5HYW1lR3BzSW5mb1ILZ2FtZUdwc0luZm8SNAoLZ2FtZUhySW5mb3MYGCADKAsy'
  889. 'Ei5iYXNlLnYxLkhlYXJ0UmF0ZVILZ2FtZUhySW5mb3MSMgoGc291cmNlGBkgASgOMhouYmFzZS'
  890. '52MS5HYW1lSGlzdG9yeVNvdXJjZVIGc291cmNlEhQKBWFjdElkGBogASgFUgVhY3RJZA==');
  891. @$core.Deprecated('Use toHisUserListQueryReplyDescriptor instead')
  892. const ToHisUserListQueryReply$json = {
  893. '1': 'ToHisUserListQueryReply',
  894. '2': [
  895. {'1': 'list', '3': 1, '4': 3, '5': 11, '6': '.base.v1.ToHisUserBasic', '10': 'list'},
  896. ],
  897. };
  898. /// Descriptor for `ToHisUserListQueryReply`. Decode as a `google.protobuf.DescriptorProto`.
  899. final $typed_data.Uint8List toHisUserListQueryReplyDescriptor = $convert.base64Decode(
  900. 'ChdUb0hpc1VzZXJMaXN0UXVlcnlSZXBseRIrCgRsaXN0GAEgAygLMhcuYmFzZS52MS5Ub0hpc1'
  901. 'VzZXJCYXNpY1IEbGlzdA==');
  902. @$core.Deprecated('Use toHisUserBasicDescriptor instead')
  903. const ToHisUserBasic$json = {
  904. '1': 'ToHisUserBasic',
  905. '2': [
  906. {'1': 'OId', '3': 1, '4': 1, '5': 5, '10': 'OId'},
  907. {'1': 'OName', '3': 2, '4': 1, '5': 9, '10': 'OName'},
  908. {'1': 'list', '3': 3, '4': 3, '5': 11, '6': '.base.v1.ToHisUserInfo', '10': 'list'},
  909. ],
  910. };
  911. /// Descriptor for `ToHisUserBasic`. Decode as a `google.protobuf.DescriptorProto`.
  912. final $typed_data.Uint8List toHisUserBasicDescriptor = $convert.base64Decode(
  913. 'Cg5Ub0hpc1VzZXJCYXNpYxIQCgNPSWQYASABKAVSA09JZBIUCgVPTmFtZRgCIAEoCVIFT05hbW'
  914. 'USKgoEbGlzdBgDIAMoCzIWLmJhc2UudjEuVG9IaXNVc2VySW5mb1IEbGlzdA==');
  915. @$core.Deprecated('Use toHisUserInfoDescriptor instead')
  916. const ToHisUserInfo$json = {
  917. '1': 'ToHisUserInfo',
  918. '2': [
  919. {'1': 'GameId', '3': 1, '4': 1, '5': 5, '10': 'GameId'},
  920. {'1': 'CourseName', '3': 2, '4': 1, '5': 9, '10': 'CourseName'},
  921. {'1': 'ActName', '3': 3, '4': 1, '5': 9, '10': 'ActName'},
  922. {'1': 'isComplete', '3': 4, '4': 1, '5': 8, '10': 'isComplete'},
  923. {'1': 'start_at', '3': 5, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '10': 'startAt'},
  924. {'1': 'duration', '3': 6, '4': 1, '5': 11, '6': '.google.protobuf.Duration', '10': 'duration'},
  925. ],
  926. };
  927. /// Descriptor for `ToHisUserInfo`. Decode as a `google.protobuf.DescriptorProto`.
  928. final $typed_data.Uint8List toHisUserInfoDescriptor = $convert.base64Decode(
  929. 'Cg1Ub0hpc1VzZXJJbmZvEhYKBkdhbWVJZBgBIAEoBVIGR2FtZUlkEh4KCkNvdXJzZU5hbWUYAi'
  930. 'ABKAlSCkNvdXJzZU5hbWUSGAoHQWN0TmFtZRgDIAEoCVIHQWN0TmFtZRIeCgppc0NvbXBsZXRl'
  931. 'GAQgASgIUgppc0NvbXBsZXRlEjUKCHN0YXJ0X2F0GAUgASgLMhouZ29vZ2xlLnByb3RvYnVmLl'
  932. 'RpbWVzdGFtcFIHc3RhcnRBdBI1CghkdXJhdGlvbhgGIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5E'
  933. 'dXJhdGlvblIIZHVyYXRpb24=');
  934. @$core.Deprecated('Use toUserInActionBasicQueryRequestDescriptor instead')
  935. const ToUserInActionBasicQueryRequest$json = {
  936. '1': 'ToUserInActionBasicQueryRequest',
  937. '2': [
  938. {'1': 'ActId', '3': 1, '4': 1, '5': 5, '10': 'ActId'},
  939. {'1': 'UserId', '3': 2, '4': 1, '5': 5, '10': 'UserId'},
  940. ],
  941. };
  942. /// Descriptor for `ToUserInActionBasicQueryRequest`. Decode as a `google.protobuf.DescriptorProto`.
  943. final $typed_data.Uint8List toUserInActionBasicQueryRequestDescriptor = $convert.base64Decode(
  944. 'Ch9Ub1VzZXJJbkFjdGlvbkJhc2ljUXVlcnlSZXF1ZXN0EhQKBUFjdElkGAEgASgFUgVBY3RJZB'
  945. 'IWCgZVc2VySWQYAiABKAVSBlVzZXJJZA==');
  946. @$core.Deprecated('Use toGetBinaryByMd5RequestDescriptor instead')
  947. const ToGetBinaryByMd5Request$json = {
  948. '1': 'ToGetBinaryByMd5Request',
  949. '2': [
  950. {'1': 'md5', '3': 1, '4': 1, '5': 12, '10': 'md5'},
  951. ],
  952. };
  953. /// Descriptor for `ToGetBinaryByMd5Request`. Decode as a `google.protobuf.DescriptorProto`.
  954. final $typed_data.Uint8List toGetBinaryByMd5RequestDescriptor = $convert.base64Decode(
  955. 'ChdUb0dldEJpbmFyeUJ5TWQ1UmVxdWVzdBIQCgNtZDUYASABKAxSA21kNQ==');
  956. @$core.Deprecated('Use getServerTimeRpDescriptor instead')
  957. const GetServerTimeRp$json = {
  958. '1': 'GetServerTimeRp',
  959. '2': [
  960. {'1': 'millisecondStamp', '3': 1, '4': 1, '5': 3, '10': 'millisecondStamp'},
  961. ],
  962. };
  963. /// Descriptor for `GetServerTimeRp`. Decode as a `google.protobuf.DescriptorProto`.
  964. final $typed_data.Uint8List getServerTimeRpDescriptor = $convert.base64Decode(
  965. 'Cg9HZXRTZXJ2ZXJUaW1lUnASKgoQbWlsbGlzZWNvbmRTdGFtcBgBIAEoA1IQbWlsbGlzZWNvbm'
  966. 'RTdGFtcA==');
  967. @$core.Deprecated('Use toSendCodeToPhoneRequestV2Descriptor instead')
  968. const ToSendCodeToPhoneRequestV2$json = {
  969. '1': 'ToSendCodeToPhoneRequestV2',
  970. '2': [
  971. {'1': 'phone', '3': 1, '4': 1, '5': 9, '10': 'phone'},
  972. {'1': 'smsType', '3': 2, '4': 1, '5': 14, '6': '.base.v1.SmsType', '10': 'smsType'},
  973. ],
  974. };
  975. /// Descriptor for `ToSendCodeToPhoneRequestV2`. Decode as a `google.protobuf.DescriptorProto`.
  976. final $typed_data.Uint8List toSendCodeToPhoneRequestV2Descriptor = $convert.base64Decode(
  977. 'ChpUb1NlbmRDb2RlVG9QaG9uZVJlcXVlc3RWMhIUCgVwaG9uZRgBIAEoCVIFcGhvbmUSKgoHc2'
  978. '1zVHlwZRgCIAEoDjIQLmJhc2UudjEuU21zVHlwZVIHc21zVHlwZQ==');
  979. @$core.Deprecated('Use toSignInRequestV2Descriptor instead')
  980. const ToSignInRequestV2$json = {
  981. '1': 'ToSignInRequestV2',
  982. '2': [
  983. {'1': 'userCode', '3': 1, '4': 1, '5': 9, '10': 'userCode'},
  984. {'1': 'password', '3': 2, '4': 1, '5': 9, '10': 'password'},
  985. {'1': 'ip', '3': 3, '4': 1, '5': 9, '10': 'ip'},
  986. ],
  987. };
  988. /// Descriptor for `ToSignInRequestV2`. Decode as a `google.protobuf.DescriptorProto`.
  989. final $typed_data.Uint8List toSignInRequestV2Descriptor = $convert.base64Decode(
  990. 'ChFUb1NpZ25JblJlcXVlc3RWMhIaCgh1c2VyQ29kZRgBIAEoCVIIdXNlckNvZGUSGgoIcGFzc3'
  991. 'dvcmQYAiABKAlSCHBhc3N3b3JkEg4KAmlwGAMgASgJUgJpcA==');
  992. @$core.Deprecated('Use mapListRequestV2Descriptor instead')
  993. const MapListRequestV2$json = {
  994. '1': 'MapListRequestV2',
  995. '2': [
  996. {'1': 'position', '3': 1, '4': 1, '5': 11, '6': '.base.v1.Position', '10': 'position'},
  997. {'1': 'offset', '3': 2, '4': 1, '5': 5, '10': 'offset'},
  998. {'1': 'limit', '3': 3, '4': 1, '5': 5, '10': 'limit'},
  999. ],
  1000. };
  1001. /// Descriptor for `MapListRequestV2`. Decode as a `google.protobuf.DescriptorProto`.
  1002. final $typed_data.Uint8List mapListRequestV2Descriptor = $convert.base64Decode(
  1003. 'ChBNYXBMaXN0UmVxdWVzdFYyEi0KCHBvc2l0aW9uGAEgASgLMhEuYmFzZS52MS5Qb3NpdGlvbl'
  1004. 'IIcG9zaXRpb24SFgoGb2Zmc2V0GAIgASgFUgZvZmZzZXQSFAoFbGltaXQYAyABKAVSBWxpbWl0');
  1005. @$core.Deprecated('Use toMapListReplyV2Descriptor instead')
  1006. const ToMapListReplyV2$json = {
  1007. '1': 'ToMapListReplyV2',
  1008. '2': [
  1009. {'1': 'list', '3': 1, '4': 3, '5': 11, '6': '.base.v1.ToMapSimpleV2', '10': 'list'},
  1010. ],
  1011. };
  1012. /// Descriptor for `ToMapListReplyV2`. Decode as a `google.protobuf.DescriptorProto`.
  1013. final $typed_data.Uint8List toMapListReplyV2Descriptor = $convert.base64Decode(
  1014. 'ChBUb01hcExpc3RSZXBseVYyEioKBGxpc3QYASADKAsyFi5iYXNlLnYxLlRvTWFwU2ltcGxlVj'
  1015. 'JSBGxpc3Q=');
  1016. @$core.Deprecated('Use toMapSimpleV2Descriptor instead')
  1017. const ToMapSimpleV2$json = {
  1018. '1': 'ToMapSimpleV2',
  1019. '2': [
  1020. {'1': 'mapId', '3': 1, '4': 1, '5': 5, '10': 'mapId'},
  1021. {'1': 'name', '3': 2, '4': 1, '5': 9, '10': 'name'},
  1022. {'1': 'mapScaleNumber', '3': 3, '4': 1, '5': 5, '10': 'mapScaleNumber'},
  1023. {'1': 'description', '3': 4, '4': 1, '5': 9, '10': 'description'},
  1024. {'1': 'distance', '3': 5, '4': 1, '5': 1, '10': 'distance'},
  1025. {'1': 'image', '3': 6, '4': 1, '5': 11, '6': '.base.v1.NetImage', '10': 'image'},
  1026. ],
  1027. };
  1028. /// Descriptor for `ToMapSimpleV2`. Decode as a `google.protobuf.DescriptorProto`.
  1029. final $typed_data.Uint8List toMapSimpleV2Descriptor = $convert.base64Decode(
  1030. 'Cg1Ub01hcFNpbXBsZVYyEhQKBW1hcElkGAEgASgFUgVtYXBJZBISCgRuYW1lGAIgASgJUgRuYW'
  1031. '1lEiYKDm1hcFNjYWxlTnVtYmVyGAMgASgFUg5tYXBTY2FsZU51bWJlchIgCgtkZXNjcmlwdGlv'
  1032. 'bhgEIAEoCVILZGVzY3JpcHRpb24SGgoIZGlzdGFuY2UYBSABKAFSCGRpc3RhbmNlEicKBWltYW'
  1033. 'dlGAYgASgLMhEuYmFzZS52MS5OZXRJbWFnZVIFaW1hZ2U=');
  1034. @$core.Deprecated('Use toMapInfoV2Descriptor instead')
  1035. const ToMapInfoV2$json = {
  1036. '1': 'ToMapInfoV2',
  1037. '2': [
  1038. {'1': 'mapId', '3': 1, '4': 1, '5': 5, '10': 'mapId'},
  1039. {'1': 'mapName', '3': 2, '4': 1, '5': 9, '10': 'mapName'},
  1040. {'1': 'zipImage', '3': 3, '4': 1, '5': 11, '6': '.base.v1.NetImage', '10': 'zipImage'},
  1041. ],
  1042. };
  1043. /// Descriptor for `ToMapInfoV2`. Decode as a `google.protobuf.DescriptorProto`.
  1044. final $typed_data.Uint8List toMapInfoV2Descriptor = $convert.base64Decode(
  1045. 'CgtUb01hcEluZm9WMhIUCgVtYXBJZBgBIAEoBVIFbWFwSWQSGAoHbWFwTmFtZRgCIAEoCVIHbW'
  1046. 'FwTmFtZRItCgh6aXBJbWFnZRgDIAEoCzIRLmJhc2UudjEuTmV0SW1hZ2VSCHppcEltYWdl');
  1047. @$core.Deprecated('Use toUserDetailQueryRequestV2Descriptor instead')
  1048. const ToUserDetailQueryRequestV2$json = {
  1049. '1': 'ToUserDetailQueryRequestV2',
  1050. '2': [
  1051. {'1': 'mapId', '3': 1, '4': 1, '5': 5, '10': 'mapId'},
  1052. ],
  1053. };
  1054. /// Descriptor for `ToUserDetailQueryRequestV2`. Decode as a `google.protobuf.DescriptorProto`.
  1055. final $typed_data.Uint8List toUserDetailQueryRequestV2Descriptor = $convert.base64Decode(
  1056. 'ChpUb1VzZXJEZXRhaWxRdWVyeVJlcXVlc3RWMhIUCgVtYXBJZBgBIAEoBVIFbWFwSWQ=');
  1057. @$core.Deprecated('Use toUserDetailQueryReplyV2Descriptor instead')
  1058. const ToUserDetailQueryReplyV2$json = {
  1059. '1': 'ToUserDetailQueryReplyV2',
  1060. '2': [
  1061. {'1': 'list', '3': 1, '4': 3, '5': 11, '6': '.base.v1.ToActionInfo', '10': 'list'},
  1062. ],
  1063. };
  1064. /// Descriptor for `ToUserDetailQueryReplyV2`. Decode as a `google.protobuf.DescriptorProto`.
  1065. final $typed_data.Uint8List toUserDetailQueryReplyV2Descriptor = $convert.base64Decode(
  1066. 'ChhUb1VzZXJEZXRhaWxRdWVyeVJlcGx5VjISKQoEbGlzdBgBIAMoCzIVLmJhc2UudjEuVG9BY3'
  1067. 'Rpb25JbmZvUgRsaXN0');
  1068. @$core.Deprecated('Use toActionInfoDescriptor instead')
  1069. const ToActionInfo$json = {
  1070. '1': 'ToActionInfo',
  1071. '2': [
  1072. {'1': 'actId', '3': 1, '4': 1, '5': 5, '10': 'actId'},
  1073. {'1': 'userList', '3': 4, '4': 3, '5': 11, '6': '.base.v1.ToOrienteerInGameInfo', '10': 'userList'},
  1074. ],
  1075. };
  1076. /// Descriptor for `ToActionInfo`. Decode as a `google.protobuf.DescriptorProto`.
  1077. final $typed_data.Uint8List toActionInfoDescriptor = $convert.base64Decode(
  1078. 'CgxUb0FjdGlvbkluZm8SFAoFYWN0SWQYASABKAVSBWFjdElkEjoKCHVzZXJMaXN0GAQgAygLMh'
  1079. '4uYmFzZS52MS5Ub09yaWVudGVlckluR2FtZUluZm9SCHVzZXJMaXN0');
  1080. @$core.Deprecated('Use toActionBasicInfoDescriptor instead')
  1081. const ToActionBasicInfo$json = {
  1082. '1': 'ToActionBasicInfo',
  1083. '2': [
  1084. {'1': 'actId', '3': 1, '4': 1, '5': 5, '10': 'actId'},
  1085. {'1': 'actName', '3': 2, '4': 1, '5': 9, '10': 'actName'},
  1086. {'1': 'totalControlNum', '3': 3, '4': 1, '5': 5, '10': 'totalControlNum'},
  1087. ],
  1088. };
  1089. /// Descriptor for `ToActionBasicInfo`. Decode as a `google.protobuf.DescriptorProto`.
  1090. final $typed_data.Uint8List toActionBasicInfoDescriptor = $convert.base64Decode(
  1091. 'ChFUb0FjdGlvbkJhc2ljSW5mbxIUCgVhY3RJZBgBIAEoBVIFYWN0SWQSGAoHYWN0TmFtZRgCIA'
  1092. 'EoCVIHYWN0TmFtZRIoCg90b3RhbENvbnRyb2xOdW0YAyABKAVSD3RvdGFsQ29udHJvbE51bQ==');
  1093. @$core.Deprecated('Use toOrienteerInGameInfoDescriptor instead')
  1094. const ToOrienteerInGameInfo$json = {
  1095. '1': 'ToOrienteerInGameInfo',
  1096. '2': [
  1097. {'1': 'UserId', '3': 1, '4': 1, '5': 5, '10': 'UserId'},
  1098. {'1': 'gpsInfo', '3': 3, '4': 1, '5': 11, '6': '.base.v1.OrienteerGpsInfo', '10': 'gpsInfo'},
  1099. {'1': 'hrInfo', '3': 4, '4': 1, '5': 11, '6': '.base.v1.OrienteerHrInfo', '10': 'hrInfo'},
  1100. {'1': 'gameSaveInfo', '3': 5, '4': 1, '5': 11, '6': '.base.v1.OrienteerGameSaveInfo', '10': 'gameSaveInfo'},
  1101. {'1': 'otherInfo', '3': 7, '4': 1, '5': 11, '6': '.base.v1.OrienteerOtherInfo', '10': 'otherInfo'},
  1102. ],
  1103. };
  1104. /// Descriptor for `ToOrienteerInGameInfo`. Decode as a `google.protobuf.DescriptorProto`.
  1105. final $typed_data.Uint8List toOrienteerInGameInfoDescriptor = $convert.base64Decode(
  1106. 'ChVUb09yaWVudGVlckluR2FtZUluZm8SFgoGVXNlcklkGAEgASgFUgZVc2VySWQSMwoHZ3BzSW'
  1107. '5mbxgDIAEoCzIZLmJhc2UudjEuT3JpZW50ZWVyR3BzSW5mb1IHZ3BzSW5mbxIwCgZockluZm8Y'
  1108. 'BCABKAsyGC5iYXNlLnYxLk9yaWVudGVlckhySW5mb1IGaHJJbmZvEkIKDGdhbWVTYXZlSW5mbx'
  1109. 'gFIAEoCzIeLmJhc2UudjEuT3JpZW50ZWVyR2FtZVNhdmVJbmZvUgxnYW1lU2F2ZUluZm8SOQoJ'
  1110. 'b3RoZXJJbmZvGAcgASgLMhsuYmFzZS52MS5PcmllbnRlZXJPdGhlckluZm9SCW90aGVySW5mbw'
  1111. '==');
  1112. @$core.Deprecated('Use toUserInActionBasicInfoDescriptor instead')
  1113. const ToUserInActionBasicInfo$json = {
  1114. '1': 'ToUserInActionBasicInfo',
  1115. '2': [
  1116. {'1': 'UserId', '3': 1, '4': 1, '5': 5, '10': 'UserId'},
  1117. {'1': 'baseInfo', '3': 2, '4': 1, '5': 11, '6': '.base.v1.OrienteerBaseInfo', '10': 'baseInfo'},
  1118. {'1': 'courseBaseInfo', '3': 6, '4': 1, '5': 11, '6': '.base.v1.CourseBaseInfo', '10': 'courseBaseInfo'},
  1119. ],
  1120. };
  1121. /// Descriptor for `ToUserInActionBasicInfo`. Decode as a `google.protobuf.DescriptorProto`.
  1122. final $typed_data.Uint8List toUserInActionBasicInfoDescriptor = $convert.base64Decode(
  1123. 'ChdUb1VzZXJJbkFjdGlvbkJhc2ljSW5mbxIWCgZVc2VySWQYASABKAVSBlVzZXJJZBI2CghiYX'
  1124. 'NlSW5mbxgCIAEoCzIaLmJhc2UudjEuT3JpZW50ZWVyQmFzZUluZm9SCGJhc2VJbmZvEj8KDmNv'
  1125. 'dXJzZUJhc2VJbmZvGAYgASgLMhcuYmFzZS52MS5Db3Vyc2VCYXNlSW5mb1IOY291cnNlQmFzZU'
  1126. 'luZm8=');
  1127. @$core.Deprecated('Use orienteerBaseInfoDescriptor instead')
  1128. const OrienteerBaseInfo$json = {
  1129. '1': 'OrienteerBaseInfo',
  1130. '2': [
  1131. {'1': 'Name', '3': 1, '4': 1, '5': 9, '10': 'Name'},
  1132. {'1': 'Phone', '3': 2, '4': 1, '5': 9, '10': 'Phone'},
  1133. {'1': 'HeadUrl', '3': 3, '4': 1, '5': 9, '10': 'HeadUrl'},
  1134. ],
  1135. };
  1136. /// Descriptor for `OrienteerBaseInfo`. Decode as a `google.protobuf.DescriptorProto`.
  1137. final $typed_data.Uint8List orienteerBaseInfoDescriptor = $convert.base64Decode(
  1138. 'ChFPcmllbnRlZXJCYXNlSW5mbxISCgROYW1lGAEgASgJUgROYW1lEhQKBVBob25lGAIgASgJUg'
  1139. 'VQaG9uZRIYCgdIZWFkVXJsGAMgASgJUgdIZWFkVXJs');
  1140. @$core.Deprecated('Use orienteerGpsInfoDescriptor instead')
  1141. const OrienteerGpsInfo$json = {
  1142. '1': 'OrienteerGpsInfo',
  1143. '2': [
  1144. {'1': 'gameGpsInfos', '3': 1, '4': 3, '5': 11, '6': '.base.v1.GameGpsInfo', '10': 'gameGpsInfos'},
  1145. {'1': 'Distance', '3': 2, '4': 1, '5': 5, '10': 'Distance'},
  1146. {'1': 'Pace', '3': 3, '4': 1, '5': 5, '10': 'Pace'},
  1147. ],
  1148. };
  1149. /// Descriptor for `OrienteerGpsInfo`. Decode as a `google.protobuf.DescriptorProto`.
  1150. final $typed_data.Uint8List orienteerGpsInfoDescriptor = $convert.base64Decode(
  1151. 'ChBPcmllbnRlZXJHcHNJbmZvEjgKDGdhbWVHcHNJbmZvcxgBIAMoCzIULmJhc2UudjEuR2FtZU'
  1152. 'dwc0luZm9SDGdhbWVHcHNJbmZvcxIaCghEaXN0YW5jZRgCIAEoBVIIRGlzdGFuY2USEgoEUGFj'
  1153. 'ZRgDIAEoBVIEUGFjZQ==');
  1154. @$core.Deprecated('Use orienteerHrInfoDescriptor instead')
  1155. const OrienteerHrInfo$json = {
  1156. '1': 'OrienteerHrInfo',
  1157. '2': [
  1158. {'1': 'hrInfo', '3': 1, '4': 3, '5': 11, '6': '.base.v1.HeartRate', '10': 'hrInfo'},
  1159. ],
  1160. };
  1161. /// Descriptor for `OrienteerHrInfo`. Decode as a `google.protobuf.DescriptorProto`.
  1162. final $typed_data.Uint8List orienteerHrInfoDescriptor = $convert.base64Decode(
  1163. 'Cg9PcmllbnRlZXJIckluZm8SKgoGaHJJbmZvGAEgAygLMhIuYmFzZS52MS5IZWFydFJhdGVSBm'
  1164. 'hySW5mbw==');
  1165. @$core.Deprecated('Use orienteerOtherInfoDescriptor instead')
  1166. const OrienteerOtherInfo$json = {
  1167. '1': 'OrienteerOtherInfo',
  1168. '2': [
  1169. {'1': 'StepNum', '3': 1, '4': 1, '5': 5, '10': 'StepNum'},
  1170. {'1': 'HeartRatePercent', '3': 2, '4': 1, '5': 5, '10': 'HeartRatePercent'},
  1171. ],
  1172. };
  1173. /// Descriptor for `OrienteerOtherInfo`. Decode as a `google.protobuf.DescriptorProto`.
  1174. final $typed_data.Uint8List orienteerOtherInfoDescriptor = $convert.base64Decode(
  1175. 'ChJPcmllbnRlZXJPdGhlckluZm8SGAoHU3RlcE51bRgBIAEoBVIHU3RlcE51bRIqChBIZWFydF'
  1176. 'JhdGVQZXJjZW50GAIgASgFUhBIZWFydFJhdGVQZXJjZW50');
  1177. @$core.Deprecated('Use courseBaseInfoDescriptor instead')
  1178. const CourseBaseInfo$json = {
  1179. '1': 'CourseBaseInfo',
  1180. '2': [
  1181. {'1': 'CourseId', '3': 1, '4': 1, '5': 5, '10': 'CourseId'},
  1182. {'1': 'CourseName', '3': 2, '4': 1, '5': 9, '10': 'CourseName'},
  1183. {'1': 'controlPointSortedList', '3': 3, '4': 3, '5': 11, '6': '.base.v1.ToControlPoint', '10': 'controlPointSortedList'},
  1184. ],
  1185. };
  1186. /// Descriptor for `CourseBaseInfo`. Decode as a `google.protobuf.DescriptorProto`.
  1187. final $typed_data.Uint8List courseBaseInfoDescriptor = $convert.base64Decode(
  1188. 'Cg5Db3Vyc2VCYXNlSW5mbxIaCghDb3Vyc2VJZBgBIAEoBVIIQ291cnNlSWQSHgoKQ291cnNlTm'
  1189. 'FtZRgCIAEoCVIKQ291cnNlTmFtZRJPChZjb250cm9sUG9pbnRTb3J0ZWRMaXN0GAMgAygLMhcu'
  1190. 'YmFzZS52MS5Ub0NvbnRyb2xQb2ludFIWY29udHJvbFBvaW50U29ydGVkTGlzdA==');
  1191. @$core.Deprecated('Use toControlPointDescriptor instead')
  1192. const ToControlPoint$json = {
  1193. '1': 'ToControlPoint',
  1194. '2': [
  1195. {'1': 'id', '3': 1, '4': 1, '5': 3, '10': 'id'},
  1196. {'1': 'sn', '3': 2, '4': 1, '5': 9, '10': 'sn'},
  1197. {'1': 'ciPosition', '3': 3, '4': 1, '5': 11, '6': '.base.v1.Position', '10': 'ciPosition'},
  1198. {'1': 'cType', '3': 4, '4': 1, '5': 14, '6': '.base.v1.CType', '10': 'cType'},
  1199. {'1': 'orderNo', '3': 5, '4': 1, '5': 5, '10': 'orderNo'},
  1200. {'1': 'is_check_success', '3': 6, '4': 1, '5': 8, '10': 'isCheckSuccess'},
  1201. {'1': 'check_after_last', '3': 7, '4': 1, '5': 11, '6': '.google.protobuf.Duration', '10': 'checkAfterLast'},
  1202. {'1': 'punchTime', '3': 8, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '10': 'punchTime'},
  1203. {'1': 'disAfterLast', '3': 9, '4': 1, '5': 5, '10': 'disAfterLast'},
  1204. {'1': 'disStraightAfterLast', '3': 10, '4': 1, '5': 5, '10': 'disStraightAfterLast'},
  1205. {'1': 'paceAfterLast', '3': 11, '4': 1, '5': 5, '10': 'paceAfterLast'},
  1206. {'1': 'paceAfterStart', '3': 12, '4': 1, '5': 5, '10': 'paceAfterStart'},
  1207. {'1': 'check_after_start', '3': 13, '4': 1, '5': 11, '6': '.google.protobuf.Duration', '10': 'checkAfterStart'},
  1208. ],
  1209. };
  1210. /// Descriptor for `ToControlPoint`. Decode as a `google.protobuf.DescriptorProto`.
  1211. final $typed_data.Uint8List toControlPointDescriptor = $convert.base64Decode(
  1212. 'Cg5Ub0NvbnRyb2xQb2ludBIOCgJpZBgBIAEoA1ICaWQSDgoCc24YAiABKAlSAnNuEjEKCmNpUG'
  1213. '9zaXRpb24YAyABKAsyES5iYXNlLnYxLlBvc2l0aW9uUgpjaVBvc2l0aW9uEiQKBWNUeXBlGAQg'
  1214. 'ASgOMg4uYmFzZS52MS5DVHlwZVIFY1R5cGUSGAoHb3JkZXJObxgFIAEoBVIHb3JkZXJObxIoCh'
  1215. 'Bpc19jaGVja19zdWNjZXNzGAYgASgIUg5pc0NoZWNrU3VjY2VzcxJDChBjaGVja19hZnRlcl9s'
  1216. 'YXN0GAcgASgLMhkuZ29vZ2xlLnByb3RvYnVmLkR1cmF0aW9uUg5jaGVja0FmdGVyTGFzdBI4Cg'
  1217. 'lwdW5jaFRpbWUYCCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wUglwdW5jaFRpbWUS'
  1218. 'IgoMZGlzQWZ0ZXJMYXN0GAkgASgFUgxkaXNBZnRlckxhc3QSMgoUZGlzU3RyYWlnaHRBZnRlck'
  1219. 'xhc3QYCiABKAVSFGRpc1N0cmFpZ2h0QWZ0ZXJMYXN0EiQKDXBhY2VBZnRlckxhc3QYCyABKAVS'
  1220. 'DXBhY2VBZnRlckxhc3QSJgoOcGFjZUFmdGVyU3RhcnQYDCABKAVSDnBhY2VBZnRlclN0YXJ0Ek'
  1221. 'UKEWNoZWNrX2FmdGVyX3N0YXJ0GA0gASgLMhkuZ29vZ2xlLnByb3RvYnVmLkR1cmF0aW9uUg9j'
  1222. 'aGVja0FmdGVyU3RhcnQ=');
  1223. @$core.Deprecated('Use orienteerGameSaveInfoDescriptor instead')
  1224. const OrienteerGameSaveInfo$json = {
  1225. '1': 'OrienteerGameSaveInfo',
  1226. '2': [
  1227. {'1': 'start_at', '3': 1, '4': 1, '5': 11, '6': '.google.protobuf.Timestamp', '10': 'startAt'},
  1228. {'1': 'duration', '3': 2, '4': 1, '5': 11, '6': '.google.protobuf.Duration', '10': 'duration'},
  1229. {'1': 'nextControlPoint', '3': 3, '4': 1, '5': 11, '6': '.base.v1.GameArriveControlPoint', '10': 'nextControlPoint'},
  1230. {'1': 'checked_sorted_list', '3': 4, '4': 3, '5': 11, '6': '.base.v1.OrienteerGameSaveControlPoint', '10': 'checkedSortedList'},
  1231. ],
  1232. };
  1233. /// Descriptor for `OrienteerGameSaveInfo`. Decode as a `google.protobuf.DescriptorProto`.
  1234. final $typed_data.Uint8List orienteerGameSaveInfoDescriptor = $convert.base64Decode(
  1235. 'ChVPcmllbnRlZXJHYW1lU2F2ZUluZm8SNQoIc3RhcnRfYXQYASABKAsyGi5nb29nbGUucHJvdG'
  1236. '9idWYuVGltZXN0YW1wUgdzdGFydEF0EjUKCGR1cmF0aW9uGAIgASgLMhkuZ29vZ2xlLnByb3Rv'
  1237. 'YnVmLkR1cmF0aW9uUghkdXJhdGlvbhJLChBuZXh0Q29udHJvbFBvaW50GAMgASgLMh8uYmFzZS'
  1238. '52MS5HYW1lQXJyaXZlQ29udHJvbFBvaW50UhBuZXh0Q29udHJvbFBvaW50ElYKE2NoZWNrZWRf'
  1239. 'c29ydGVkX2xpc3QYBCADKAsyJi5iYXNlLnYxLk9yaWVudGVlckdhbWVTYXZlQ29udHJvbFBvaW'
  1240. '50UhFjaGVja2VkU29ydGVkTGlzdA==');
  1241. @$core.Deprecated('Use orienteerGameSaveControlPointDescriptor instead')
  1242. const OrienteerGameSaveControlPoint$json = {
  1243. '1': 'OrienteerGameSaveControlPoint',
  1244. '2': [
  1245. {'1': 'control_point_id', '3': 1, '4': 1, '5': 3, '10': 'controlPointId'},
  1246. {'1': 'is_check_success', '3': 2, '4': 1, '5': 8, '10': 'isCheckSuccess'},
  1247. {'1': 'check_after_start', '3': 3, '4': 1, '5': 11, '6': '.google.protobuf.Duration', '10': 'checkAfterStart'},
  1248. {'1': 'distinct_after_start', '3': 4, '4': 1, '5': 1, '10': 'distinctAfterStart'},
  1249. {'1': 'longitude', '3': 5, '4': 1, '5': 1, '10': 'longitude'},
  1250. {'1': 'latitude', '3': 6, '4': 1, '5': 1, '10': 'latitude'},
  1251. {'1': 'altitude', '3': 7, '4': 1, '5': 1, '10': 'altitude'},
  1252. ],
  1253. };
  1254. /// Descriptor for `OrienteerGameSaveControlPoint`. Decode as a `google.protobuf.DescriptorProto`.
  1255. final $typed_data.Uint8List orienteerGameSaveControlPointDescriptor = $convert.base64Decode(
  1256. 'Ch1PcmllbnRlZXJHYW1lU2F2ZUNvbnRyb2xQb2ludBIoChBjb250cm9sX3BvaW50X2lkGAEgAS'
  1257. 'gDUg5jb250cm9sUG9pbnRJZBIoChBpc19jaGVja19zdWNjZXNzGAIgASgIUg5pc0NoZWNrU3Vj'
  1258. 'Y2VzcxJFChFjaGVja19hZnRlcl9zdGFydBgDIAEoCzIZLmdvb2dsZS5wcm90b2J1Zi5EdXJhdG'
  1259. 'lvblIPY2hlY2tBZnRlclN0YXJ0EjAKFGRpc3RpbmN0X2FmdGVyX3N0YXJ0GAQgASgBUhJkaXN0'
  1260. 'aW5jdEFmdGVyU3RhcnQSHAoJbG9uZ2l0dWRlGAUgASgBUglsb25naXR1ZGUSGgoIbGF0aXR1ZG'
  1261. 'UYBiABKAFSCGxhdGl0dWRlEhoKCGFsdGl0dWRlGAcgASgBUghhbHRpdHVkZQ==');