1// Protocol Buffers - Google's data interchange format 2// Copyright 2008 Google Inc. All rights reserved. 3// https://developers.google.com/protocol-buffers/ 4// 5// Redistribution and use in source and binary forms, with or without 6// modification, are permitted provided that the following conditions are 7// met: 8// 9// * Redistributions of source code must retain the above copyright 10// notice, this list of conditions and the following disclaimer. 11// * Redistributions in binary form must reproduce the above 12// copyright notice, this list of conditions and the following disclaimer 13// in the documentation and/or other materials provided with the 14// distribution. 15// * Neither the name of Google Inc. nor the names of its 16// contributors may be used to endorse or promote products derived from 17// this software without specific prior written permission. 18// 19// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 20// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 21// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 22// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 23// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 24// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 25// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 31// LINT: ALLOW_GROUPS 32syntax = "proto2"; 33 34package protobuf.experimental.lite; 35 36option java_package = "com.google.protobuf.testing"; 37option java_outer_classname = "Proto2TestingLite"; 38 39 40message Proto2MessageLite { 41 42 enum TestEnum { 43 ZERO = 0; 44 ONE = 1; 45 TWO = 2; 46 } 47 48 optional double field_double_1 = 1; 49 optional float field_float_2 = 2; 50 optional int64 field_int64_3 = 3; 51 optional uint64 field_uint64_4 = 4; 52 optional int32 field_int32_5 = 5; 53 optional fixed64 field_fixed64_6 = 6; 54 optional fixed32 field_fixed32_7 = 7; 55 optional bool field_bool_8 = 8; 56 optional string field_string_9 = 9; 57 optional Proto2MessageLite field_message_10 = 10; 58 optional bytes field_bytes_11 = 11; 59 optional uint32 field_uint32_12 = 12; 60 optional TestEnum field_enum_13 = 13; 61 optional sfixed32 field_sfixed32_14 = 14; 62 optional sfixed64 field_sfixed64_15 = 15; 63 optional sint32 field_sint32_16 = 16; 64 optional sint64 field_sint64_17 = 17; 65 repeated double field_double_list_18 = 18 [packed = false]; 66 repeated float field_float_list_19 = 19 [packed = false]; 67 repeated int64 field_int64_list_20 = 20 [packed = false]; 68 repeated uint64 field_uint64_list_21 = 21 [packed = false]; 69 repeated int32 field_int32_list_22 = 22 [packed = false]; 70 repeated fixed64 field_fixed64_list_23 = 23 [packed = false]; 71 repeated fixed32 field_fixed32_list_24 = 24 [packed = false]; 72 repeated bool field_bool_list_25 = 25 [packed = false]; 73 repeated string field_string_list_26 = 26 [packed = false]; 74 repeated Proto2MessageLite field_message_list_27 = 27 [packed = false]; 75 repeated bytes field_bytes_list_28 = 28 [packed = false]; 76 repeated uint32 field_uint32_list_29 = 29 [packed = false]; 77 repeated TestEnum field_enum_list_30 = 30 [packed = false]; 78 repeated sfixed32 field_sfixed32_list_31 = 31 [packed = false]; 79 repeated sfixed64 field_sfixed64_list_32 = 32 [packed = false]; 80 repeated sint32 field_sint32_list_33 = 33 [packed = false]; 81 repeated sint64 field_sint64_list_34 = 34 [packed = false]; 82 repeated double field_double_list_packed_35 = 35 [packed = true]; 83 repeated float field_float_list_packed_36 = 36 [packed = true]; 84 repeated int64 field_int64_list_packed_37 = 37 [packed = true]; 85 repeated uint64 field_uint64_list_packed_38 = 38 [packed = true]; 86 repeated int32 field_int32_list_packed_39 = 39 [packed = true]; 87 repeated fixed64 field_fixed64_list_packed_40 = 40 [packed = true]; 88 repeated fixed32 field_fixed32_list_packed_41 = 41 [packed = true]; 89 repeated bool field_bool_list_packed_42 = 42 [packed = true]; 90 repeated uint32 field_uint32_list_packed_43 = 43 [packed = true]; 91 repeated TestEnum field_enum_list_packed_44 = 44 [packed = true]; 92 repeated sfixed32 field_sfixed32_list_packed_45 = 45 [packed = true]; 93 repeated sfixed64 field_sfixed64_list_packed_46 = 46 [packed = true]; 94 repeated sint32 field_sint32_list_packed_47 = 47 [packed = true]; 95 repeated sint64 field_sint64_list_packed_48 = 48 [packed = true]; 96 optional group FieldGroup49 = 49 { 97 optional int32 field_int32_50 = 50; 98 } 99 repeated group FieldGroupList51 = 51 { 100 optional int32 field_int32_52 = 52; 101 } 102 oneof test_oneof { 103 double field_double_53 = 53; 104 float field_float_54 = 54; 105 int64 field_int64_55 = 55; 106 uint64 field_uint64_56 = 56; 107 int32 field_int32_57 = 57; 108 fixed64 field_fixed64_58 = 58; 109 fixed32 field_fixed32_59 = 59; 110 bool field_bool_60 = 60; 111 string field_string_61 = 61; 112 Proto2MessageLite field_message_62 = 62; 113 bytes field_bytes_63 = 63; 114 uint32 field_uint32_64 = 64; 115 sfixed32 field_sfixed32_65 = 65; 116 sfixed64 field_sfixed64_66 = 66; 117 sint32 field_sint32_67 = 67; 118 sint64 field_sint64_68 = 68; 119 group FieldGroup69 = 69 { 120 optional int32 field_int32_70 = 70; 121 } 122 } 123 124 message RequiredNestedMessage { 125 optional int32 value = 1; 126 } 127 128 required double field_required_double_71 = 71; 129 required float field_required_float_72 = 72; 130 required int64 field_required_int64_73 = 73; 131 required uint64 field_required_uint64_74 = 74; 132 required int32 field_required_int32_75 = 75; 133 required fixed64 field_required_fixed64_76 = 76; 134 required fixed32 field_required_fixed32_77 = 77; 135 required bool field_required_bool_78 = 78; 136 required string field_required_string_79 = 79; 137 required RequiredNestedMessage field_required_message_80 = 80; 138 required bytes field_required_bytes_81 = 81; 139 required uint32 field_required_uint32_82 = 82; 140 required TestEnum field_required_enum_83 = 83; 141 required sfixed32 field_required_sfixed32_84 = 84; 142 required sfixed64 field_required_sfixed64_85 = 85; 143 required sint32 field_required_sint32_86 = 86; 144 required sint64 field_required_sint64_87 = 87; 145 required group FieldRequiredGroup88 = 88 { 146 optional int32 field_int32_89 = 89; 147 } 148} 149 150message Proto2EmptyLite {} 151 152message Proto2MessageLiteWithExtensions { 153 extensions 1 to max; 154} 155 156extend Proto2MessageLiteWithExtensions { 157 optional double field_double_1 = 1; 158 optional float field_float_2 = 2; 159 optional int64 field_int64_3 = 3; 160 optional uint64 field_uint64_4 = 4; 161 optional int32 field_int32_5 = 5; 162 optional fixed64 field_fixed64_6 = 6; 163 optional fixed32 field_fixed32_7 = 7; 164 optional bool field_bool_8 = 8; 165 optional string field_string_9 = 9; 166 optional Proto2MessageLite field_message_10 = 10; 167 optional bytes field_bytes_11 = 11; 168 optional uint32 field_uint32_12 = 12; 169 optional Proto2MessageLite.TestEnum field_enum_13 = 13; 170 optional sfixed32 field_sfixed32_14 = 14; 171 optional sfixed64 field_sfixed64_15 = 15; 172 optional sint32 field_sint32_16 = 16; 173 optional sint64 field_sint64_17 = 17; 174 175 repeated double field_double_list_18 = 18 [packed = false]; 176 repeated float field_float_list_19 = 19 [packed = false]; 177 repeated int64 field_int64_list_20 = 20 [packed = false]; 178 repeated uint64 field_uint64_list_21 = 21 [packed = false]; 179 repeated int32 field_int32_list_22 = 22 [packed = false]; 180 repeated fixed64 field_fixed64_list_23 = 23 [packed = false]; 181 repeated fixed32 field_fixed32_list_24 = 24 [packed = false]; 182 repeated bool field_bool_list_25 = 25 [packed = false]; 183 repeated string field_string_list_26 = 26 [packed = false]; 184 repeated Proto2MessageLite field_message_list_27 = 27 [packed = false]; 185 repeated bytes field_bytes_list_28 = 28 [packed = false]; 186 repeated uint32 field_uint32_list_29 = 29 [packed = false]; 187 repeated Proto2MessageLite.TestEnum field_enum_list_30 = 30 [packed = false]; 188 repeated sfixed32 field_sfixed32_list_31 = 31 [packed = false]; 189 repeated sfixed64 field_sfixed64_list_32 = 32 [packed = false]; 190 repeated sint32 field_sint32_list_33 = 33 [packed = false]; 191 repeated sint64 field_sint64_list_34 = 34 [packed = false]; 192 193 repeated double field_double_list_packed_35 = 35 [packed = true]; 194 repeated float field_float_list_packed_36 = 36 [packed = true]; 195 repeated int64 field_int64_list_packed_37 = 37 [packed = true]; 196 repeated uint64 field_uint64_list_packed_38 = 38 [packed = true]; 197 repeated int32 field_int32_list_packed_39 = 39 [packed = true]; 198 repeated fixed64 field_fixed64_list_packed_40 = 40 [packed = true]; 199 repeated fixed32 field_fixed32_list_packed_41 = 41 [packed = true]; 200 repeated bool field_bool_list_packed_42 = 42 [packed = true]; 201 repeated uint32 field_uint32_list_packed_43 = 43 [packed = true]; 202 repeated Proto2MessageLite.TestEnum field_enum_list_packed_44 = 44 203 [packed = true]; 204 repeated sfixed32 field_sfixed32_list_packed_45 = 45 [packed = true]; 205 repeated sfixed64 field_sfixed64_list_packed_46 = 46 [packed = true]; 206 repeated sint32 field_sint32_list_packed_47 = 47 [packed = true]; 207 repeated sint64 field_sint64_list_packed_48 = 48 [packed = true]; 208 209 optional group FieldGroup49 = 49 { 210 optional int32 field_int32_50 = 50; 211 } 212 213 repeated group FieldGroupList51 = 51 { 214 optional int32 field_int32_52 = 52; 215 } 216} 217 218message Proto2MessageLiteWithMaps { 219 map<bool, bool> field_map_bool_bool_1 = 1; 220 map<bool, bytes> field_map_bool_bytes_2 = 2; 221 map<bool, double> field_map_bool_double_3 = 3; 222 map<bool, Proto2MessageLite.TestEnum> field_map_bool_enum_4 = 4; 223 map<bool, fixed32> field_map_bool_fixed32_5 = 5; 224 map<bool, fixed64> field_map_bool_fixed64_6 = 6; 225 map<bool, float> field_map_bool_float_7 = 7; 226 map<bool, int32> field_map_bool_int32_8 = 8; 227 map<bool, int64> field_map_bool_int64_9 = 9; 228 map<bool, Proto2MessageLite> field_map_bool_message_10 = 10; 229 map<bool, sfixed32> field_map_bool_sfixed32_11 = 11; 230 map<bool, sfixed64> field_map_bool_sfixed64_12 = 12; 231 map<bool, sint32> field_map_bool_sint32_13 = 13; 232 map<bool, sint64> field_map_bool_sint64_14 = 14; 233 map<bool, string> field_map_bool_string_15 = 15; 234 map<bool, uint32> field_map_bool_uint32_16 = 16; 235 map<bool, uint64> field_map_bool_uint64_17 = 17; 236 map<fixed32, bool> field_map_fixed32_bool_18 = 18; 237 map<fixed32, bytes> field_map_fixed32_bytes_19 = 19; 238 map<fixed32, double> field_map_fixed32_double_20 = 20; 239 map<fixed32, Proto2MessageLite.TestEnum> field_map_fixed32_enum_21 = 21; 240 map<fixed32, fixed32> field_map_fixed32_fixed32_22 = 22; 241 map<fixed32, fixed64> field_map_fixed32_fixed64_23 = 23; 242 map<fixed32, float> field_map_fixed32_float_24 = 24; 243 map<fixed32, int32> field_map_fixed32_int32_25 = 25; 244 map<fixed32, int64> field_map_fixed32_int64_26 = 26; 245 map<fixed32, Proto2MessageLite> field_map_fixed32_message_27 = 27; 246 map<fixed32, sfixed32> field_map_fixed32_sfixed32_28 = 28; 247 map<fixed32, sfixed64> field_map_fixed32_sfixed64_29 = 29; 248 map<fixed32, sint32> field_map_fixed32_sint32_30 = 30; 249 map<fixed32, sint64> field_map_fixed32_sint64_31 = 31; 250 map<fixed32, string> field_map_fixed32_string_32 = 32; 251 map<fixed32, uint32> field_map_fixed32_uint32_33 = 33; 252 map<fixed32, uint64> field_map_fixed32_uint64_34 = 34; 253 map<fixed64, bool> field_map_fixed64_bool_35 = 35; 254 map<fixed64, bytes> field_map_fixed64_bytes_36 = 36; 255 map<fixed64, double> field_map_fixed64_double_37 = 37; 256 map<fixed64, Proto2MessageLite.TestEnum> field_map_fixed64_enum_38 = 38; 257 map<fixed64, fixed32> field_map_fixed64_fixed32_39 = 39; 258 map<fixed64, fixed64> field_map_fixed64_fixed64_40 = 40; 259 map<fixed64, float> field_map_fixed64_float_41 = 41; 260 map<fixed64, int32> field_map_fixed64_int32_42 = 42; 261 map<fixed64, int64> field_map_fixed64_int64_43 = 43; 262 map<fixed64, Proto2MessageLite> field_map_fixed64_message_44 = 44; 263 map<fixed64, sfixed32> field_map_fixed64_sfixed32_45 = 45; 264 map<fixed64, sfixed64> field_map_fixed64_sfixed64_46 = 46; 265 map<fixed64, sint32> field_map_fixed64_sint32_47 = 47; 266 map<fixed64, sint64> field_map_fixed64_sint64_48 = 48; 267 map<fixed64, string> field_map_fixed64_string_49 = 49; 268 map<fixed64, uint32> field_map_fixed64_uint32_50 = 50; 269 map<fixed64, uint64> field_map_fixed64_uint64_51 = 51; 270 map<int32, bool> field_map_int32_bool_52 = 52; 271 map<int32, bytes> field_map_int32_bytes_53 = 53; 272 map<int32, double> field_map_int32_double_54 = 54; 273 map<int32, Proto2MessageLite.TestEnum> field_map_int32_enum_55 = 55; 274 map<int32, fixed32> field_map_int32_fixed32_56 = 56; 275 map<int32, fixed64> field_map_int32_fixed64_57 = 57; 276 map<int32, float> field_map_int32_float_58 = 58; 277 map<int32, int32> field_map_int32_int32_59 = 59; 278 map<int32, int64> field_map_int32_int64_60 = 60; 279 map<int32, Proto2MessageLite> field_map_int32_message_61 = 61; 280 map<int32, sfixed32> field_map_int32_sfixed32_62 = 62; 281 map<int32, sfixed64> field_map_int32_sfixed64_63 = 63; 282 map<int32, sint32> field_map_int32_sint32_64 = 64; 283 map<int32, sint64> field_map_int32_sint64_65 = 65; 284 map<int32, string> field_map_int32_string_66 = 66; 285 map<int32, uint32> field_map_int32_uint32_67 = 67; 286 map<int32, uint64> field_map_int32_uint64_68 = 68; 287 map<int64, bool> field_map_int64_bool_69 = 69; 288 map<int64, bytes> field_map_int64_bytes_70 = 70; 289 map<int64, double> field_map_int64_double_71 = 71; 290 map<int64, Proto2MessageLite.TestEnum> field_map_int64_enum_72 = 72; 291 map<int64, fixed32> field_map_int64_fixed32_73 = 73; 292 map<int64, fixed64> field_map_int64_fixed64_74 = 74; 293 map<int64, float> field_map_int64_float_75 = 75; 294 map<int64, int32> field_map_int64_int32_76 = 76; 295 map<int64, int64> field_map_int64_int64_77 = 77; 296 map<int64, Proto2MessageLite> field_map_int64_message_78 = 78; 297 map<int64, sfixed32> field_map_int64_sfixed32_79 = 79; 298 map<int64, sfixed64> field_map_int64_sfixed64_80 = 80; 299 map<int64, sint32> field_map_int64_sint32_81 = 81; 300 map<int64, sint64> field_map_int64_sint64_82 = 82; 301 map<int64, string> field_map_int64_string_83 = 83; 302 map<int64, uint32> field_map_int64_uint32_84 = 84; 303 map<int64, uint64> field_map_int64_uint64_85 = 85; 304 map<sfixed32, bool> field_map_sfixed32_bool_86 = 86; 305 map<sfixed32, bytes> field_map_sfixed32_bytes_87 = 87; 306 map<sfixed32, double> field_map_sfixed32_double_88 = 88; 307 map<sfixed32, Proto2MessageLite.TestEnum> field_map_sfixed32_enum_89 = 89; 308 map<sfixed32, fixed32> field_map_sfixed32_fixed32_90 = 90; 309 map<sfixed32, fixed64> field_map_sfixed32_fixed64_91 = 91; 310 map<sfixed32, float> field_map_sfixed32_float_92 = 92; 311 map<sfixed32, int32> field_map_sfixed32_int32_93 = 93; 312 map<sfixed32, int64> field_map_sfixed32_int64_94 = 94; 313 map<sfixed32, Proto2MessageLite> field_map_sfixed32_message_95 = 95; 314 map<sfixed32, sfixed32> field_map_sfixed32_sfixed32_96 = 96; 315 map<sfixed32, sfixed64> field_map_sfixed32_sfixed64_97 = 97; 316 map<sfixed32, sint32> field_map_sfixed32_sint32_98 = 98; 317 map<sfixed32, sint64> field_map_sfixed32_sint64_99 = 99; 318 map<sfixed32, string> field_map_sfixed32_string_100 = 100; 319 map<sfixed32, uint32> field_map_sfixed32_uint32_101 = 101; 320 map<sfixed32, uint64> field_map_sfixed32_uint64_102 = 102; 321 map<sfixed64, bool> field_map_sfixed64_bool_103 = 103; 322 map<sfixed64, bytes> field_map_sfixed64_bytes_104 = 104; 323 map<sfixed64, double> field_map_sfixed64_double_105 = 105; 324 map<sfixed64, Proto2MessageLite.TestEnum> field_map_sfixed64_enum_106 = 106; 325 map<sfixed64, fixed32> field_map_sfixed64_fixed32_107 = 107; 326 map<sfixed64, fixed64> field_map_sfixed64_fixed64_108 = 108; 327 map<sfixed64, float> field_map_sfixed64_float_109 = 109; 328 map<sfixed64, int32> field_map_sfixed64_int32_110 = 110; 329 map<sfixed64, int64> field_map_sfixed64_int64_111 = 111; 330 map<sfixed64, Proto2MessageLite> field_map_sfixed64_message_112 = 112; 331 map<sfixed64, sfixed32> field_map_sfixed64_sfixed32_113 = 113; 332 map<sfixed64, sfixed64> field_map_sfixed64_sfixed64_114 = 114; 333 map<sfixed64, sint32> field_map_sfixed64_sint32_115 = 115; 334 map<sfixed64, sint64> field_map_sfixed64_sint64_116 = 116; 335 map<sfixed64, string> field_map_sfixed64_string_117 = 117; 336 map<sfixed64, uint32> field_map_sfixed64_uint32_118 = 118; 337 map<sfixed64, uint64> field_map_sfixed64_uint64_119 = 119; 338 map<sint32, bool> field_map_sint32_bool_120 = 120; 339 map<sint32, bytes> field_map_sint32_bytes_121 = 121; 340 map<sint32, double> field_map_sint32_double_122 = 122; 341 map<sint32, Proto2MessageLite.TestEnum> field_map_sint32_enum_123 = 123; 342 map<sint32, fixed32> field_map_sint32_fixed32_124 = 124; 343 map<sint32, fixed64> field_map_sint32_fixed64_125 = 125; 344 map<sint32, float> field_map_sint32_float_126 = 126; 345 map<sint32, int32> field_map_sint32_int32_127 = 127; 346 map<sint32, int64> field_map_sint32_int64_128 = 128; 347 map<sint32, Proto2MessageLite> field_map_sint32_message_129 = 129; 348 map<sint32, sfixed32> field_map_sint32_sfixed32_130 = 130; 349 map<sint32, sfixed64> field_map_sint32_sfixed64_131 = 131; 350 map<sint32, sint32> field_map_sint32_sint32_132 = 132; 351 map<sint32, sint64> field_map_sint32_sint64_133 = 133; 352 map<sint32, string> field_map_sint32_string_134 = 134; 353 map<sint32, uint32> field_map_sint32_uint32_135 = 135; 354 map<sint32, uint64> field_map_sint32_uint64_136 = 136; 355 map<sint64, bool> field_map_sint64_bool_137 = 137; 356 map<sint64, bytes> field_map_sint64_bytes_138 = 138; 357 map<sint64, double> field_map_sint64_double_139 = 139; 358 map<sint64, Proto2MessageLite.TestEnum> field_map_sint64_enum_140 = 140; 359 map<sint64, fixed32> field_map_sint64_fixed32_141 = 141; 360 map<sint64, fixed64> field_map_sint64_fixed64_142 = 142; 361 map<sint64, float> field_map_sint64_float_143 = 143; 362 map<sint64, int32> field_map_sint64_int32_144 = 144; 363 map<sint64, int64> field_map_sint64_int64_145 = 145; 364 map<sint64, Proto2MessageLite> field_map_sint64_message_146 = 146; 365 map<sint64, sfixed32> field_map_sint64_sfixed32_147 = 147; 366 map<sint64, sfixed64> field_map_sint64_sfixed64_148 = 148; 367 map<sint64, sint32> field_map_sint64_sint32_149 = 149; 368 map<sint64, sint64> field_map_sint64_sint64_150 = 150; 369 map<sint64, string> field_map_sint64_string_151 = 151; 370 map<sint64, uint32> field_map_sint64_uint32_152 = 152; 371 map<sint64, uint64> field_map_sint64_uint64_153 = 153; 372 map<string, bool> field_map_string_bool_154 = 154; 373 map<string, bytes> field_map_string_bytes_155 = 155; 374 map<string, double> field_map_string_double_156 = 156; 375 map<string, Proto2MessageLite.TestEnum> field_map_string_enum_157 = 157; 376 map<string, fixed32> field_map_string_fixed32_158 = 158; 377 map<string, fixed64> field_map_string_fixed64_159 = 159; 378 map<string, float> field_map_string_float_160 = 160; 379 map<string, int32> field_map_string_int32_161 = 161; 380 map<string, int64> field_map_string_int64_162 = 162; 381 map<string, Proto2MessageLite> field_map_string_message_163 = 163; 382 map<string, sfixed32> field_map_string_sfixed32_164 = 164; 383 map<string, sfixed64> field_map_string_sfixed64_165 = 165; 384 map<string, sint32> field_map_string_sint32_166 = 166; 385 map<string, sint64> field_map_string_sint64_167 = 167; 386 map<string, string> field_map_string_string_168 = 168; 387 map<string, uint32> field_map_string_uint32_169 = 169; 388 map<string, uint64> field_map_string_uint64_170 = 170; 389 map<uint32, bool> field_map_uint32_bool_171 = 171; 390 map<uint32, bytes> field_map_uint32_bytes_172 = 172; 391 map<uint32, double> field_map_uint32_double_173 = 173; 392 map<uint32, Proto2MessageLite.TestEnum> field_map_uint32_enum_174 = 174; 393 map<uint32, fixed32> field_map_uint32_fixed32_175 = 175; 394 map<uint32, fixed64> field_map_uint32_fixed64_176 = 176; 395 map<uint32, float> field_map_uint32_float_177 = 177; 396 map<uint32, int32> field_map_uint32_int32_178 = 178; 397 map<uint32, int64> field_map_uint32_int64_179 = 179; 398 map<uint32, Proto2MessageLite> field_map_uint32_message_180 = 180; 399 map<uint32, sfixed32> field_map_uint32_sfixed32_181 = 181; 400 map<uint32, sfixed64> field_map_uint32_sfixed64_182 = 182; 401 map<uint32, sint32> field_map_uint32_sint32_183 = 183; 402 map<uint32, sint64> field_map_uint32_sint64_184 = 184; 403 map<uint32, string> field_map_uint32_string_185 = 185; 404 map<uint32, uint32> field_map_uint32_uint32_186 = 186; 405 map<uint32, uint64> field_map_uint32_uint64_187 = 187; 406 map<uint64, bool> field_map_uint64_bool_188 = 188; 407 map<uint64, bytes> field_map_uint64_bytes_189 = 189; 408 map<uint64, double> field_map_uint64_double_190 = 190; 409 map<uint64, Proto2MessageLite.TestEnum> field_map_uint64_enum_191 = 191; 410 map<uint64, fixed32> field_map_uint64_fixed32_192 = 192; 411 map<uint64, fixed64> field_map_uint64_fixed64_193 = 193; 412 map<uint64, float> field_map_uint64_float_194 = 194; 413 map<uint64, int32> field_map_uint64_int32_195 = 195; 414 map<uint64, int64> field_map_uint64_int64_196 = 196; 415 map<uint64, Proto2MessageLite> field_map_uint64_message_197 = 197; 416 map<uint64, sfixed32> field_map_uint64_sfixed32_198 = 198; 417 map<uint64, sfixed64> field_map_uint64_sfixed64_199 = 199; 418 map<uint64, sint32> field_map_uint64_sint32_200 = 200; 419 map<uint64, sint64> field_map_uint64_sint64_201 = 201; 420 map<uint64, string> field_map_uint64_string_202 = 202; 421 map<uint64, uint32> field_map_uint64_uint32_203 = 203; 422 map<uint64, uint64> field_map_uint64_uint64_204 = 204; 423} 424