diff --git a/Reference/Conformance/google/protobuf/test_messages_proto2.pb.swift b/Reference/Conformance/google/protobuf/test_messages_proto2.pb.swift index ca1dfd606..1a45abaf5 100644 --- a/Reference/Conformance/google/protobuf/test_messages_proto2.pb.swift +++ b/Reference/Conformance/google/protobuf/test_messages_proto2.pb.swift @@ -711,6 +711,15 @@ struct ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.ExtensibleM /// Clears the value of `data`. Subsequent reads from it will return its default value. mutating func clearData() {_uniqueStorage()._data = nil} + var multiWordGroupField: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField { + get {return _storage._multiWordGroupField ?? ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField()} + set {_uniqueStorage()._multiWordGroupField = newValue} + } + /// Returns true if `multiWordGroupField` has been explicitly set. + var hasMultiWordGroupField: Bool {return _storage._multiWordGroupField != nil} + /// Clears the value of `multiWordGroupField`. Subsequent reads from it will return its default value. + mutating func clearMultiWordGroupField() {_uniqueStorage()._multiWordGroupField = nil} + /// default values var defaultInt32: Int32 { get {return _storage._defaultInt32 ?? -123456789} @@ -1173,6 +1182,37 @@ struct ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.ExtensibleM fileprivate var _groupUint32: UInt32? = nil } + struct MultiWordGroupField { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var groupInt32: Int32 { + get {return _groupInt32 ?? 0} + set {_groupInt32 = newValue} + } + /// Returns true if `groupInt32` has been explicitly set. + var hasGroupInt32: Bool {return self._groupInt32 != nil} + /// Clears the value of `groupInt32`. Subsequent reads from it will return its default value. + mutating func clearGroupInt32() {self._groupInt32 = nil} + + var groupUint32: UInt32 { + get {return _groupUint32 ?? 0} + set {_groupUint32 = newValue} + } + /// Returns true if `groupUint32` has been explicitly set. + var hasGroupUint32: Bool {return self._groupUint32 != nil} + /// Clears the value of `groupUint32`. Subsequent reads from it will return its default value. + mutating func clearGroupUint32() {self._groupUint32 = nil} + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + + fileprivate var _groupInt32: Int32? = nil + fileprivate var _groupUint32: UInt32? = nil + } + /// message_set test case. struct MessageSetCorrect: SwiftProtobuf.ExtensibleMessage { // SwiftProtobuf.Message conformance is added in an extension below. See the @@ -1263,6 +1303,37 @@ struct ProtobufTestMessages_Proto2_ForeignMessageProto2 { fileprivate var _c: Int32? = nil } +struct ProtobufTestMessages_Proto2_GroupField { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var groupInt32: Int32 { + get {return _groupInt32 ?? 0} + set {_groupInt32 = newValue} + } + /// Returns true if `groupInt32` has been explicitly set. + var hasGroupInt32: Bool {return self._groupInt32 != nil} + /// Clears the value of `groupInt32`. Subsequent reads from it will return its default value. + mutating func clearGroupInt32() {self._groupInt32 = nil} + + var groupUint32: UInt32 { + get {return _groupUint32 ?? 0} + set {_groupUint32 = newValue} + } + /// Returns true if `groupUint32` has been explicitly set. + var hasGroupUint32: Bool {return self._groupUint32 != nil} + /// Clears the value of `groupUint32`. Subsequent reads from it will return its default value. + mutating func clearGroupUint32() {self._groupUint32 = nil} + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + + fileprivate var _groupInt32: Int32? = nil + fileprivate var _groupUint32: UInt32? = nil +} + struct ProtobufTestMessages_Proto2_UnknownToTestAllTypes { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -1996,10 +2067,12 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2.OneOf_OneofField: @unch extension ProtobufTestMessages_Proto2_TestAllTypesProto2.NestedEnum: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.NestedMessage: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.DataMessage: @unchecked Sendable {} +extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension1: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension2: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_ForeignMessageProto2: @unchecked Sendable {} +extension ProtobufTestMessages_Proto2_GroupField: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_UnknownToTestAllTypes: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_UnknownToTestAllTypes.OptionalGroup: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_NullHypothesisProto2: @unchecked Sendable {} @@ -2074,6 +2147,21 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2 { mutating func clearProtobufTestMessages_Proto2_extensionInt32() { clearExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_extension_int32) } + + var ProtobufTestMessages_Proto2_groupField: ProtobufTestMessages_Proto2_GroupField { + get {return getExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField) ?? ProtobufTestMessages_Proto2_GroupField()} + set {setExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField, value: newValue)} + } + /// Returns true if extension `ProtobufTestMessages_Proto2_Extensions_GroupField` + /// has been explicitly set. + var hasProtobufTestMessages_Proto2_groupField: Bool { + return hasExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField) + } + /// Clears the value of extension `ProtobufTestMessages_Proto2_Extensions_GroupField`. + /// Subsequent reads from it will return its default value. + mutating func clearProtobufTestMessages_Proto2_groupField() { + clearExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField) + } } extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect { @@ -2118,6 +2206,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect { /// a larger `SwiftProtobuf.SimpleExtensionMap`. let ProtobufTestMessages_Proto2_TestMessagesProto2_Extensions: SwiftProtobuf.SimpleExtensionMap = [ ProtobufTestMessages_Proto2_Extensions_extension_int32, + ProtobufTestMessages_Proto2_Extensions_GroupField, ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension1.Extensions.message_set_extension, ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension2.Extensions.message_set_extension, ProtobufTestMessages_Proto2_TestAllRequiredTypesProto2.MessageSetCorrectExtension1.Extensions.message_set_extension, @@ -2133,6 +2222,11 @@ let ProtobufTestMessages_Proto2_Extensions_extension_int32 = SwiftProtobuf.Messa fieldName: "protobuf_test_messages.proto2.extension_int32" ) +let ProtobufTestMessages_Proto2_Extensions_GroupField = SwiftProtobuf.MessageExtension, ProtobufTestMessages_Proto2_TestAllTypesProto2>( + _protobuf_fieldNumber: 121, + fieldName: "protobuf_test_messages.proto2.groupfield" +) + extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension1 { enum Extensions { static let message_set_extension = SwiftProtobuf.MessageExtension, ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect>( @@ -2284,6 +2378,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, 118: .standard(proto: "oneof_double"), 119: .standard(proto: "oneof_enum"), 201: .unique(proto: "Data", json: "data"), + 204: .unique(proto: "MultiWordGroupField", json: "multiwordgroupfield"), 241: .standard(proto: "default_int32"), 242: .standard(proto: "default_int64"), 243: .standard(proto: "default_uint32"), @@ -2412,6 +2507,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, var _mapStringForeignEnum: Dictionary = [:] var _oneofField: ProtobufTestMessages_Proto2_TestAllTypesProto2.OneOf_OneofField? var _data: ProtobufTestMessages_Proto2_TestAllTypesProto2.DataMessage? = nil + var _multiWordGroupField: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField? = nil var _defaultInt32: Int32? = nil var _defaultInt64: Int64? = nil var _defaultUint32: UInt32? = nil @@ -2551,6 +2647,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, _mapStringForeignEnum = source._mapStringForeignEnum _oneofField = source._oneofField _data = source._data + _multiWordGroupField = source._multiWordGroupField _defaultInt32 = source._defaultInt32 _defaultInt64 = source._defaultInt64 _defaultUint32 = source._defaultUint32 @@ -2782,6 +2879,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, } }() case 201: try { try decoder.decodeSingularGroupField(value: &_storage._data) }() + case 204: try { try decoder.decodeSingularGroupField(value: &_storage._multiWordGroupField) }() case 241: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultInt32) }() case 242: try { try decoder.decodeSingularInt64Field(value: &_storage._defaultInt64) }() case 243: try { try decoder.decodeSingularUInt32Field(value: &_storage._defaultUint32) }() @@ -3142,6 +3240,9 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, try { if let v = _storage._data { try visitor.visitSingularGroupField(value: v, fieldNumber: 201) } }() + try { if let v = _storage._multiWordGroupField { + try visitor.visitSingularGroupField(value: v, fieldNumber: 204) + } }() try { if let v = _storage._defaultInt32 { try visitor.visitSingularInt32Field(value: v, fieldNumber: 241) } }() @@ -3342,6 +3443,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, if _storage._mapStringForeignEnum != rhs_storage._mapStringForeignEnum {return false} if _storage._oneofField != rhs_storage._oneofField {return false} if _storage._data != rhs_storage._data {return false} + if _storage._multiWordGroupField != rhs_storage._multiWordGroupField {return false} if _storage._defaultInt32 != rhs_storage._defaultInt32 {return false} if _storage._defaultInt64 != rhs_storage._defaultInt64 {return false} if _storage._defaultUint32 != rhs_storage._defaultUint32 {return false} @@ -3527,6 +3629,48 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2.DataMessage: SwiftProto } } +extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = ProtobufTestMessages_Proto2_TestAllTypesProto2.protoMessageName + ".MultiWordGroupField" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 205: .standard(proto: "group_int32"), + 206: .standard(proto: "group_uint32"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 205: try { try decoder.decodeSingularInt32Field(value: &self._groupInt32) }() + case 206: try { try decoder.decodeSingularUInt32Field(value: &self._groupUint32) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every if/case branch local when no optimizations + // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and + // https://github.com/apple/swift-protobuf/issues/1182 + try { if let v = self._groupInt32 { + try visitor.visitSingularInt32Field(value: v, fieldNumber: 205) + } }() + try { if let v = self._groupUint32 { + try visitor.visitSingularUInt32Field(value: v, fieldNumber: 206) + } }() + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField, rhs: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField) -> Bool { + if lhs._groupInt32 != rhs._groupInt32 {return false} + if lhs._groupUint32 != rhs._groupUint32 {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = ProtobufTestMessages_Proto2_TestAllTypesProto2.protoMessageName + ".MessageSetCorrect" static let _protobuf_nameMap = SwiftProtobuf._NameMap() @@ -3660,6 +3804,48 @@ extension ProtobufTestMessages_Proto2_ForeignMessageProto2: SwiftProtobuf.Messag } } +extension ProtobufTestMessages_Proto2_GroupField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = _protobuf_package + ".GroupField" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 122: .standard(proto: "group_int32"), + 123: .standard(proto: "group_uint32"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 122: try { try decoder.decodeSingularInt32Field(value: &self._groupInt32) }() + case 123: try { try decoder.decodeSingularUInt32Field(value: &self._groupUint32) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every if/case branch local when no optimizations + // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and + // https://github.com/apple/swift-protobuf/issues/1182 + try { if let v = self._groupInt32 { + try visitor.visitSingularInt32Field(value: v, fieldNumber: 122) + } }() + try { if let v = self._groupUint32 { + try visitor.visitSingularUInt32Field(value: v, fieldNumber: 123) + } }() + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: ProtobufTestMessages_Proto2_GroupField, rhs: ProtobufTestMessages_Proto2_GroupField) -> Bool { + if lhs._groupInt32 != rhs._groupInt32 {return false} + if lhs._groupUint32 != rhs._groupUint32 {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension ProtobufTestMessages_Proto2_UnknownToTestAllTypes: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UnknownToTestAllTypes" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ diff --git a/Reference/SwiftProtobuf/google/protobuf/descriptor.pb.swift b/Reference/SwiftProtobuf/google/protobuf/descriptor.pb.swift index 7c8b09661..eee9b4c14 100644 --- a/Reference/SwiftProtobuf/google/protobuf/descriptor.pb.swift +++ b/Reference/SwiftProtobuf/google/protobuf/descriptor.pb.swift @@ -5167,7 +5167,7 @@ extension Google_Protobuf_FeatureSet: SwiftProtobuf.Message, SwiftProtobuf._Mess case 4: try { try decoder.decodeSingularEnumField(value: &self._utf8Validation) }() case 5: try { try decoder.decodeSingularEnumField(value: &self._messageEncoding) }() case 6: try { try decoder.decodeSingularEnumField(value: &self._jsonFormat) }() - case 1000..<1003, 9995..<10001: + case 1000..<1003, 9990, 9995..<10001: try { try decoder.decodeExtensionField(values: &_protobuf_extensionFieldValues, messageType: Google_Protobuf_FeatureSet.self, fieldNumber: fieldNumber) }() default: break } diff --git a/Reference/upstream/google/protobuf/descriptor.pb.swift b/Reference/upstream/google/protobuf/descriptor.pb.swift index 7c8b09661..eee9b4c14 100644 --- a/Reference/upstream/google/protobuf/descriptor.pb.swift +++ b/Reference/upstream/google/protobuf/descriptor.pb.swift @@ -5167,7 +5167,7 @@ extension Google_Protobuf_FeatureSet: SwiftProtobuf.Message, SwiftProtobuf._Mess case 4: try { try decoder.decodeSingularEnumField(value: &self._utf8Validation) }() case 5: try { try decoder.decodeSingularEnumField(value: &self._messageEncoding) }() case 6: try { try decoder.decodeSingularEnumField(value: &self._jsonFormat) }() - case 1000..<1003, 9995..<10001: + case 1000..<1003, 9990, 9995..<10001: try { try decoder.decodeExtensionField(values: &_protobuf_extensionFieldValues, messageType: Google_Protobuf_FeatureSet.self, fieldNumber: fieldNumber) }() default: break } diff --git a/Reference/upstream/google/protobuf/test_messages_proto2.pb.swift b/Reference/upstream/google/protobuf/test_messages_proto2.pb.swift index ca1dfd606..1a45abaf5 100644 --- a/Reference/upstream/google/protobuf/test_messages_proto2.pb.swift +++ b/Reference/upstream/google/protobuf/test_messages_proto2.pb.swift @@ -711,6 +711,15 @@ struct ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.ExtensibleM /// Clears the value of `data`. Subsequent reads from it will return its default value. mutating func clearData() {_uniqueStorage()._data = nil} + var multiWordGroupField: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField { + get {return _storage._multiWordGroupField ?? ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField()} + set {_uniqueStorage()._multiWordGroupField = newValue} + } + /// Returns true if `multiWordGroupField` has been explicitly set. + var hasMultiWordGroupField: Bool {return _storage._multiWordGroupField != nil} + /// Clears the value of `multiWordGroupField`. Subsequent reads from it will return its default value. + mutating func clearMultiWordGroupField() {_uniqueStorage()._multiWordGroupField = nil} + /// default values var defaultInt32: Int32 { get {return _storage._defaultInt32 ?? -123456789} @@ -1173,6 +1182,37 @@ struct ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.ExtensibleM fileprivate var _groupUint32: UInt32? = nil } + struct MultiWordGroupField { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var groupInt32: Int32 { + get {return _groupInt32 ?? 0} + set {_groupInt32 = newValue} + } + /// Returns true if `groupInt32` has been explicitly set. + var hasGroupInt32: Bool {return self._groupInt32 != nil} + /// Clears the value of `groupInt32`. Subsequent reads from it will return its default value. + mutating func clearGroupInt32() {self._groupInt32 = nil} + + var groupUint32: UInt32 { + get {return _groupUint32 ?? 0} + set {_groupUint32 = newValue} + } + /// Returns true if `groupUint32` has been explicitly set. + var hasGroupUint32: Bool {return self._groupUint32 != nil} + /// Clears the value of `groupUint32`. Subsequent reads from it will return its default value. + mutating func clearGroupUint32() {self._groupUint32 = nil} + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + + fileprivate var _groupInt32: Int32? = nil + fileprivate var _groupUint32: UInt32? = nil + } + /// message_set test case. struct MessageSetCorrect: SwiftProtobuf.ExtensibleMessage { // SwiftProtobuf.Message conformance is added in an extension below. See the @@ -1263,6 +1303,37 @@ struct ProtobufTestMessages_Proto2_ForeignMessageProto2 { fileprivate var _c: Int32? = nil } +struct ProtobufTestMessages_Proto2_GroupField { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var groupInt32: Int32 { + get {return _groupInt32 ?? 0} + set {_groupInt32 = newValue} + } + /// Returns true if `groupInt32` has been explicitly set. + var hasGroupInt32: Bool {return self._groupInt32 != nil} + /// Clears the value of `groupInt32`. Subsequent reads from it will return its default value. + mutating func clearGroupInt32() {self._groupInt32 = nil} + + var groupUint32: UInt32 { + get {return _groupUint32 ?? 0} + set {_groupUint32 = newValue} + } + /// Returns true if `groupUint32` has been explicitly set. + var hasGroupUint32: Bool {return self._groupUint32 != nil} + /// Clears the value of `groupUint32`. Subsequent reads from it will return its default value. + mutating func clearGroupUint32() {self._groupUint32 = nil} + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + + fileprivate var _groupInt32: Int32? = nil + fileprivate var _groupUint32: UInt32? = nil +} + struct ProtobufTestMessages_Proto2_UnknownToTestAllTypes { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -1996,10 +2067,12 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2.OneOf_OneofField: @unch extension ProtobufTestMessages_Proto2_TestAllTypesProto2.NestedEnum: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.NestedMessage: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.DataMessage: @unchecked Sendable {} +extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension1: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension2: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_ForeignMessageProto2: @unchecked Sendable {} +extension ProtobufTestMessages_Proto2_GroupField: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_UnknownToTestAllTypes: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_UnknownToTestAllTypes.OptionalGroup: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_NullHypothesisProto2: @unchecked Sendable {} @@ -2074,6 +2147,21 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2 { mutating func clearProtobufTestMessages_Proto2_extensionInt32() { clearExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_extension_int32) } + + var ProtobufTestMessages_Proto2_groupField: ProtobufTestMessages_Proto2_GroupField { + get {return getExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField) ?? ProtobufTestMessages_Proto2_GroupField()} + set {setExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField, value: newValue)} + } + /// Returns true if extension `ProtobufTestMessages_Proto2_Extensions_GroupField` + /// has been explicitly set. + var hasProtobufTestMessages_Proto2_groupField: Bool { + return hasExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField) + } + /// Clears the value of extension `ProtobufTestMessages_Proto2_Extensions_GroupField`. + /// Subsequent reads from it will return its default value. + mutating func clearProtobufTestMessages_Proto2_groupField() { + clearExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField) + } } extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect { @@ -2118,6 +2206,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect { /// a larger `SwiftProtobuf.SimpleExtensionMap`. let ProtobufTestMessages_Proto2_TestMessagesProto2_Extensions: SwiftProtobuf.SimpleExtensionMap = [ ProtobufTestMessages_Proto2_Extensions_extension_int32, + ProtobufTestMessages_Proto2_Extensions_GroupField, ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension1.Extensions.message_set_extension, ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension2.Extensions.message_set_extension, ProtobufTestMessages_Proto2_TestAllRequiredTypesProto2.MessageSetCorrectExtension1.Extensions.message_set_extension, @@ -2133,6 +2222,11 @@ let ProtobufTestMessages_Proto2_Extensions_extension_int32 = SwiftProtobuf.Messa fieldName: "protobuf_test_messages.proto2.extension_int32" ) +let ProtobufTestMessages_Proto2_Extensions_GroupField = SwiftProtobuf.MessageExtension, ProtobufTestMessages_Proto2_TestAllTypesProto2>( + _protobuf_fieldNumber: 121, + fieldName: "protobuf_test_messages.proto2.groupfield" +) + extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension1 { enum Extensions { static let message_set_extension = SwiftProtobuf.MessageExtension, ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect>( @@ -2284,6 +2378,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, 118: .standard(proto: "oneof_double"), 119: .standard(proto: "oneof_enum"), 201: .unique(proto: "Data", json: "data"), + 204: .unique(proto: "MultiWordGroupField", json: "multiwordgroupfield"), 241: .standard(proto: "default_int32"), 242: .standard(proto: "default_int64"), 243: .standard(proto: "default_uint32"), @@ -2412,6 +2507,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, var _mapStringForeignEnum: Dictionary = [:] var _oneofField: ProtobufTestMessages_Proto2_TestAllTypesProto2.OneOf_OneofField? var _data: ProtobufTestMessages_Proto2_TestAllTypesProto2.DataMessage? = nil + var _multiWordGroupField: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField? = nil var _defaultInt32: Int32? = nil var _defaultInt64: Int64? = nil var _defaultUint32: UInt32? = nil @@ -2551,6 +2647,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, _mapStringForeignEnum = source._mapStringForeignEnum _oneofField = source._oneofField _data = source._data + _multiWordGroupField = source._multiWordGroupField _defaultInt32 = source._defaultInt32 _defaultInt64 = source._defaultInt64 _defaultUint32 = source._defaultUint32 @@ -2782,6 +2879,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, } }() case 201: try { try decoder.decodeSingularGroupField(value: &_storage._data) }() + case 204: try { try decoder.decodeSingularGroupField(value: &_storage._multiWordGroupField) }() case 241: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultInt32) }() case 242: try { try decoder.decodeSingularInt64Field(value: &_storage._defaultInt64) }() case 243: try { try decoder.decodeSingularUInt32Field(value: &_storage._defaultUint32) }() @@ -3142,6 +3240,9 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, try { if let v = _storage._data { try visitor.visitSingularGroupField(value: v, fieldNumber: 201) } }() + try { if let v = _storage._multiWordGroupField { + try visitor.visitSingularGroupField(value: v, fieldNumber: 204) + } }() try { if let v = _storage._defaultInt32 { try visitor.visitSingularInt32Field(value: v, fieldNumber: 241) } }() @@ -3342,6 +3443,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, if _storage._mapStringForeignEnum != rhs_storage._mapStringForeignEnum {return false} if _storage._oneofField != rhs_storage._oneofField {return false} if _storage._data != rhs_storage._data {return false} + if _storage._multiWordGroupField != rhs_storage._multiWordGroupField {return false} if _storage._defaultInt32 != rhs_storage._defaultInt32 {return false} if _storage._defaultInt64 != rhs_storage._defaultInt64 {return false} if _storage._defaultUint32 != rhs_storage._defaultUint32 {return false} @@ -3527,6 +3629,48 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2.DataMessage: SwiftProto } } +extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = ProtobufTestMessages_Proto2_TestAllTypesProto2.protoMessageName + ".MultiWordGroupField" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 205: .standard(proto: "group_int32"), + 206: .standard(proto: "group_uint32"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 205: try { try decoder.decodeSingularInt32Field(value: &self._groupInt32) }() + case 206: try { try decoder.decodeSingularUInt32Field(value: &self._groupUint32) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every if/case branch local when no optimizations + // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and + // https://github.com/apple/swift-protobuf/issues/1182 + try { if let v = self._groupInt32 { + try visitor.visitSingularInt32Field(value: v, fieldNumber: 205) + } }() + try { if let v = self._groupUint32 { + try visitor.visitSingularUInt32Field(value: v, fieldNumber: 206) + } }() + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField, rhs: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField) -> Bool { + if lhs._groupInt32 != rhs._groupInt32 {return false} + if lhs._groupUint32 != rhs._groupUint32 {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = ProtobufTestMessages_Proto2_TestAllTypesProto2.protoMessageName + ".MessageSetCorrect" static let _protobuf_nameMap = SwiftProtobuf._NameMap() @@ -3660,6 +3804,48 @@ extension ProtobufTestMessages_Proto2_ForeignMessageProto2: SwiftProtobuf.Messag } } +extension ProtobufTestMessages_Proto2_GroupField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = _protobuf_package + ".GroupField" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 122: .standard(proto: "group_int32"), + 123: .standard(proto: "group_uint32"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 122: try { try decoder.decodeSingularInt32Field(value: &self._groupInt32) }() + case 123: try { try decoder.decodeSingularUInt32Field(value: &self._groupUint32) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every if/case branch local when no optimizations + // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and + // https://github.com/apple/swift-protobuf/issues/1182 + try { if let v = self._groupInt32 { + try visitor.visitSingularInt32Field(value: v, fieldNumber: 122) + } }() + try { if let v = self._groupUint32 { + try visitor.visitSingularUInt32Field(value: v, fieldNumber: 123) + } }() + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: ProtobufTestMessages_Proto2_GroupField, rhs: ProtobufTestMessages_Proto2_GroupField) -> Bool { + if lhs._groupInt32 != rhs._groupInt32 {return false} + if lhs._groupUint32 != rhs._groupUint32 {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension ProtobufTestMessages_Proto2_UnknownToTestAllTypes: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UnknownToTestAllTypes" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ diff --git a/Reference/upstream/google/protobuf/unittest_features.pb.swift b/Reference/upstream/google/protobuf/unittest_features.pb.swift index 9c938e78c..6fc33e9ba 100644 --- a/Reference/upstream/google/protobuf/unittest_features.pb.swift +++ b/Reference/upstream/google/protobuf/unittest_features.pb.swift @@ -27,6 +27,82 @@ fileprivate struct _GeneratedWithProtocGenSwiftVersion: SwiftProtobuf.ProtobufAP typealias Version = _2 } +enum Pb_EnumFeature: SwiftProtobuf.Enum { + typealias RawValue = Int + case testEnumFeatureUnknown // = 0 + case value1 // = 1 + case value2 // = 2 + case value3 // = 3 + case value4 // = 4 + case value5 // = 5 + case value6 // = 6 + case value7 // = 7 + case value8 // = 8 + case value9 // = 9 + case value10 // = 10 + case value11 // = 11 + case value12 // = 12 + case value13 // = 13 + case value14 // = 14 + case value15 // = 15 + + init() { + self = .testEnumFeatureUnknown + } + + init?(rawValue: Int) { + switch rawValue { + case 0: self = .testEnumFeatureUnknown + case 1: self = .value1 + case 2: self = .value2 + case 3: self = .value3 + case 4: self = .value4 + case 5: self = .value5 + case 6: self = .value6 + case 7: self = .value7 + case 8: self = .value8 + case 9: self = .value9 + case 10: self = .value10 + case 11: self = .value11 + case 12: self = .value12 + case 13: self = .value13 + case 14: self = .value14 + case 15: self = .value15 + default: return nil + } + } + + var rawValue: Int { + switch self { + case .testEnumFeatureUnknown: return 0 + case .value1: return 1 + case .value2: return 2 + case .value3: return 3 + case .value4: return 4 + case .value5: return 5 + case .value6: return 6 + case .value7: return 7 + case .value8: return 8 + case .value9: return 9 + case .value10: return 10 + case .value11: return 11 + case .value12: return 12 + case .value13: return 13 + case .value14: return 14 + case .value15: return 15 + } + } + +} + +#if swift(>=4.2) + +extension Pb_EnumFeature: CaseIterable { + // Support synthesized by the compiler. +} + +#endif // swift(>=4.2) + struct Pb_TestMessage { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -52,260 +128,147 @@ struct Pb_TestFeatures { // `Message` and `Message+*Additions` files in the SwiftProtobuf library for // methods supported on all messages. - var intFileFeature: Int32 { - get {return _storage._intFileFeature ?? 0} - set {_uniqueStorage()._intFileFeature = newValue} - } - /// Returns true if `intFileFeature` has been explicitly set. - var hasIntFileFeature: Bool {return _storage._intFileFeature != nil} - /// Clears the value of `intFileFeature`. Subsequent reads from it will return its default value. - mutating func clearIntFileFeature() {_uniqueStorage()._intFileFeature = nil} - - var intExtensionRangeFeature: Int32 { - get {return _storage._intExtensionRangeFeature ?? 0} - set {_uniqueStorage()._intExtensionRangeFeature = newValue} - } - /// Returns true if `intExtensionRangeFeature` has been explicitly set. - var hasIntExtensionRangeFeature: Bool {return _storage._intExtensionRangeFeature != nil} - /// Clears the value of `intExtensionRangeFeature`. Subsequent reads from it will return its default value. - mutating func clearIntExtensionRangeFeature() {_uniqueStorage()._intExtensionRangeFeature = nil} - - var intMessageFeature: Int32 { - get {return _storage._intMessageFeature ?? 0} - set {_uniqueStorage()._intMessageFeature = newValue} - } - /// Returns true if `intMessageFeature` has been explicitly set. - var hasIntMessageFeature: Bool {return _storage._intMessageFeature != nil} - /// Clears the value of `intMessageFeature`. Subsequent reads from it will return its default value. - mutating func clearIntMessageFeature() {_uniqueStorage()._intMessageFeature = nil} - - var intFieldFeature: Int32 { - get {return _storage._intFieldFeature ?? 0} - set {_uniqueStorage()._intFieldFeature = newValue} - } - /// Returns true if `intFieldFeature` has been explicitly set. - var hasIntFieldFeature: Bool {return _storage._intFieldFeature != nil} - /// Clears the value of `intFieldFeature`. Subsequent reads from it will return its default value. - mutating func clearIntFieldFeature() {_uniqueStorage()._intFieldFeature = nil} - - var intOneofFeature: Int32 { - get {return _storage._intOneofFeature ?? 0} - set {_uniqueStorage()._intOneofFeature = newValue} - } - /// Returns true if `intOneofFeature` has been explicitly set. - var hasIntOneofFeature: Bool {return _storage._intOneofFeature != nil} - /// Clears the value of `intOneofFeature`. Subsequent reads from it will return its default value. - mutating func clearIntOneofFeature() {_uniqueStorage()._intOneofFeature = nil} - - var intEnumFeature: Int32 { - get {return _storage._intEnumFeature ?? 0} - set {_uniqueStorage()._intEnumFeature = newValue} - } - /// Returns true if `intEnumFeature` has been explicitly set. - var hasIntEnumFeature: Bool {return _storage._intEnumFeature != nil} - /// Clears the value of `intEnumFeature`. Subsequent reads from it will return its default value. - mutating func clearIntEnumFeature() {_uniqueStorage()._intEnumFeature = nil} - - var intEnumEntryFeature: Int32 { - get {return _storage._intEnumEntryFeature ?? 0} - set {_uniqueStorage()._intEnumEntryFeature = newValue} - } - /// Returns true if `intEnumEntryFeature` has been explicitly set. - var hasIntEnumEntryFeature: Bool {return _storage._intEnumEntryFeature != nil} - /// Clears the value of `intEnumEntryFeature`. Subsequent reads from it will return its default value. - mutating func clearIntEnumEntryFeature() {_uniqueStorage()._intEnumEntryFeature = nil} - - var intServiceFeature: Int32 { - get {return _storage._intServiceFeature ?? 0} - set {_uniqueStorage()._intServiceFeature = newValue} - } - /// Returns true if `intServiceFeature` has been explicitly set. - var hasIntServiceFeature: Bool {return _storage._intServiceFeature != nil} - /// Clears the value of `intServiceFeature`. Subsequent reads from it will return its default value. - mutating func clearIntServiceFeature() {_uniqueStorage()._intServiceFeature = nil} - - var intMethodFeature: Int32 { - get {return _storage._intMethodFeature ?? 0} - set {_uniqueStorage()._intMethodFeature = newValue} - } - /// Returns true if `intMethodFeature` has been explicitly set. - var hasIntMethodFeature: Bool {return _storage._intMethodFeature != nil} - /// Clears the value of `intMethodFeature`. Subsequent reads from it will return its default value. - mutating func clearIntMethodFeature() {_uniqueStorage()._intMethodFeature = nil} - - var intMultipleFeature: Int32 { - get {return _storage._intMultipleFeature ?? 0} - set {_uniqueStorage()._intMultipleFeature = newValue} - } - /// Returns true if `intMultipleFeature` has been explicitly set. - var hasIntMultipleFeature: Bool {return _storage._intMultipleFeature != nil} - /// Clears the value of `intMultipleFeature`. Subsequent reads from it will return its default value. - mutating func clearIntMultipleFeature() {_uniqueStorage()._intMultipleFeature = nil} + var fileFeature: Pb_EnumFeature { + get {return _fileFeature ?? .testEnumFeatureUnknown} + set {_fileFeature = newValue} + } + /// Returns true if `fileFeature` has been explicitly set. + var hasFileFeature: Bool {return self._fileFeature != nil} + /// Clears the value of `fileFeature`. Subsequent reads from it will return its default value. + mutating func clearFileFeature() {self._fileFeature = nil} + + var extensionRangeFeature: Pb_EnumFeature { + get {return _extensionRangeFeature ?? .testEnumFeatureUnknown} + set {_extensionRangeFeature = newValue} + } + /// Returns true if `extensionRangeFeature` has been explicitly set. + var hasExtensionRangeFeature: Bool {return self._extensionRangeFeature != nil} + /// Clears the value of `extensionRangeFeature`. Subsequent reads from it will return its default value. + mutating func clearExtensionRangeFeature() {self._extensionRangeFeature = nil} + + var messageFeature: Pb_EnumFeature { + get {return _messageFeature ?? .testEnumFeatureUnknown} + set {_messageFeature = newValue} + } + /// Returns true if `messageFeature` has been explicitly set. + var hasMessageFeature: Bool {return self._messageFeature != nil} + /// Clears the value of `messageFeature`. Subsequent reads from it will return its default value. + mutating func clearMessageFeature() {self._messageFeature = nil} + + var fieldFeature: Pb_EnumFeature { + get {return _fieldFeature ?? .testEnumFeatureUnknown} + set {_fieldFeature = newValue} + } + /// Returns true if `fieldFeature` has been explicitly set. + var hasFieldFeature: Bool {return self._fieldFeature != nil} + /// Clears the value of `fieldFeature`. Subsequent reads from it will return its default value. + mutating func clearFieldFeature() {self._fieldFeature = nil} + + var oneofFeature: Pb_EnumFeature { + get {return _oneofFeature ?? .testEnumFeatureUnknown} + set {_oneofFeature = newValue} + } + /// Returns true if `oneofFeature` has been explicitly set. + var hasOneofFeature: Bool {return self._oneofFeature != nil} + /// Clears the value of `oneofFeature`. Subsequent reads from it will return its default value. + mutating func clearOneofFeature() {self._oneofFeature = nil} + + var enumFeature: Pb_EnumFeature { + get {return _enumFeature ?? .testEnumFeatureUnknown} + set {_enumFeature = newValue} + } + /// Returns true if `enumFeature` has been explicitly set. + var hasEnumFeature: Bool {return self._enumFeature != nil} + /// Clears the value of `enumFeature`. Subsequent reads from it will return its default value. + mutating func clearEnumFeature() {self._enumFeature = nil} + + var enumEntryFeature: Pb_EnumFeature { + get {return _enumEntryFeature ?? .testEnumFeatureUnknown} + set {_enumEntryFeature = newValue} + } + /// Returns true if `enumEntryFeature` has been explicitly set. + var hasEnumEntryFeature: Bool {return self._enumEntryFeature != nil} + /// Clears the value of `enumEntryFeature`. Subsequent reads from it will return its default value. + mutating func clearEnumEntryFeature() {self._enumEntryFeature = nil} + + var serviceFeature: Pb_EnumFeature { + get {return _serviceFeature ?? .testEnumFeatureUnknown} + set {_serviceFeature = newValue} + } + /// Returns true if `serviceFeature` has been explicitly set. + var hasServiceFeature: Bool {return self._serviceFeature != nil} + /// Clears the value of `serviceFeature`. Subsequent reads from it will return its default value. + mutating func clearServiceFeature() {self._serviceFeature = nil} + + var methodFeature: Pb_EnumFeature { + get {return _methodFeature ?? .testEnumFeatureUnknown} + set {_methodFeature = newValue} + } + /// Returns true if `methodFeature` has been explicitly set. + var hasMethodFeature: Bool {return self._methodFeature != nil} + /// Clears the value of `methodFeature`. Subsequent reads from it will return its default value. + mutating func clearMethodFeature() {self._methodFeature = nil} + + var multipleFeature: Pb_EnumFeature { + get {return _multipleFeature ?? .testEnumFeatureUnknown} + set {_multipleFeature = newValue} + } + /// Returns true if `multipleFeature` has been explicitly set. + var hasMultipleFeature: Bool {return self._multipleFeature != nil} + /// Clears the value of `multipleFeature`. Subsequent reads from it will return its default value. + mutating func clearMultipleFeature() {self._multipleFeature = nil} var boolFieldFeature: Bool { - get {return _storage._boolFieldFeature ?? false} - set {_uniqueStorage()._boolFieldFeature = newValue} + get {return _boolFieldFeature ?? false} + set {_boolFieldFeature = newValue} } /// Returns true if `boolFieldFeature` has been explicitly set. - var hasBoolFieldFeature: Bool {return _storage._boolFieldFeature != nil} + var hasBoolFieldFeature: Bool {return self._boolFieldFeature != nil} /// Clears the value of `boolFieldFeature`. Subsequent reads from it will return its default value. - mutating func clearBoolFieldFeature() {_uniqueStorage()._boolFieldFeature = nil} - - var floatFieldFeature: Float { - get {return _storage._floatFieldFeature ?? 0} - set {_uniqueStorage()._floatFieldFeature = newValue} - } - /// Returns true if `floatFieldFeature` has been explicitly set. - var hasFloatFieldFeature: Bool {return _storage._floatFieldFeature != nil} - /// Clears the value of `floatFieldFeature`. Subsequent reads from it will return its default value. - mutating func clearFloatFieldFeature() {_uniqueStorage()._floatFieldFeature = nil} + mutating func clearBoolFieldFeature() {self._boolFieldFeature = nil} - var messageFieldFeature: Pb_TestFeatures.MessageFeature { - get {return _storage._messageFieldFeature ?? Pb_TestFeatures.MessageFeature()} - set {_uniqueStorage()._messageFieldFeature = newValue} + var sourceFeature: Pb_EnumFeature { + get {return _sourceFeature ?? .testEnumFeatureUnknown} + set {_sourceFeature = newValue} } - /// Returns true if `messageFieldFeature` has been explicitly set. - var hasMessageFieldFeature: Bool {return _storage._messageFieldFeature != nil} - /// Clears the value of `messageFieldFeature`. Subsequent reads from it will return its default value. - mutating func clearMessageFieldFeature() {_uniqueStorage()._messageFieldFeature = nil} + /// Returns true if `sourceFeature` has been explicitly set. + var hasSourceFeature: Bool {return self._sourceFeature != nil} + /// Clears the value of `sourceFeature`. Subsequent reads from it will return its default value. + mutating func clearSourceFeature() {self._sourceFeature = nil} - var enumFieldFeature: Pb_TestFeatures.EnumFeature { - get {return _storage._enumFieldFeature ?? .testEnumFeatureUnknown} - set {_uniqueStorage()._enumFieldFeature = newValue} + var sourceFeature2: Pb_EnumFeature { + get {return _sourceFeature2 ?? .testEnumFeatureUnknown} + set {_sourceFeature2 = newValue} } - /// Returns true if `enumFieldFeature` has been explicitly set. - var hasEnumFieldFeature: Bool {return _storage._enumFieldFeature != nil} - /// Clears the value of `enumFieldFeature`. Subsequent reads from it will return its default value. - mutating func clearEnumFieldFeature() {_uniqueStorage()._enumFieldFeature = nil} - - var intSourceFeature: Int32 { - get {return _storage._intSourceFeature ?? 0} - set {_uniqueStorage()._intSourceFeature = newValue} - } - /// Returns true if `intSourceFeature` has been explicitly set. - var hasIntSourceFeature: Bool {return _storage._intSourceFeature != nil} - /// Clears the value of `intSourceFeature`. Subsequent reads from it will return its default value. - mutating func clearIntSourceFeature() {_uniqueStorage()._intSourceFeature = nil} - - var stringSourceFeature: String { - get {return _storage._stringSourceFeature ?? String()} - set {_uniqueStorage()._stringSourceFeature = newValue} - } - /// Returns true if `stringSourceFeature` has been explicitly set. - var hasStringSourceFeature: Bool {return _storage._stringSourceFeature != nil} - /// Clears the value of `stringSourceFeature`. Subsequent reads from it will return its default value. - mutating func clearStringSourceFeature() {_uniqueStorage()._stringSourceFeature = nil} + /// Returns true if `sourceFeature2` has been explicitly set. + var hasSourceFeature2: Bool {return self._sourceFeature2 != nil} + /// Clears the value of `sourceFeature2`. Subsequent reads from it will return its default value. + mutating func clearSourceFeature2() {self._sourceFeature2 = nil} var unknownFields = SwiftProtobuf.UnknownStorage() - enum EnumFeature: SwiftProtobuf.Enum { - typealias RawValue = Int - case testEnumFeatureUnknown // = 0 - case enumValue1 // = 1 - case enumValue2 // = 2 - case enumValue3 // = 3 - case enumValue4 // = 4 - case enumValue5 // = 5 - - init() { - self = .testEnumFeatureUnknown - } - - init?(rawValue: Int) { - switch rawValue { - case 0: self = .testEnumFeatureUnknown - case 1: self = .enumValue1 - case 2: self = .enumValue2 - case 3: self = .enumValue3 - case 4: self = .enumValue4 - case 5: self = .enumValue5 - default: return nil - } - } - - var rawValue: Int { - switch self { - case .testEnumFeatureUnknown: return 0 - case .enumValue1: return 1 - case .enumValue2: return 2 - case .enumValue3: return 3 - case .enumValue4: return 4 - case .enumValue5: return 5 - } - } - - } - - struct MessageFeature { - // SwiftProtobuf.Message conformance is added in an extension below. See the - // `Message` and `Message+*Additions` files in the SwiftProtobuf library for - // methods supported on all messages. - - var boolField: Bool { - get {return _boolField ?? false} - set {_boolField = newValue} - } - /// Returns true if `boolField` has been explicitly set. - var hasBoolField: Bool {return self._boolField != nil} - /// Clears the value of `boolField`. Subsequent reads from it will return its default value. - mutating func clearBoolField() {self._boolField = nil} - - var intField: Int32 { - get {return _intField ?? 0} - set {_intField = newValue} - } - /// Returns true if `intField` has been explicitly set. - var hasIntField: Bool {return self._intField != nil} - /// Clears the value of `intField`. Subsequent reads from it will return its default value. - mutating func clearIntField() {self._intField = nil} - - var floatField: Float { - get {return _floatField ?? 0} - set {_floatField = newValue} - } - /// Returns true if `floatField` has been explicitly set. - var hasFloatField: Bool {return self._floatField != nil} - /// Clears the value of `floatField`. Subsequent reads from it will return its default value. - mutating func clearFloatField() {self._floatField = nil} - - var stringField: String { - get {return _stringField ?? String()} - set {_stringField = newValue} - } - /// Returns true if `stringField` has been explicitly set. - var hasStringField: Bool {return self._stringField != nil} - /// Clears the value of `stringField`. Subsequent reads from it will return its default value. - mutating func clearStringField() {self._stringField = nil} - - var unknownFields = SwiftProtobuf.UnknownStorage() - - init() {} - - fileprivate var _boolField: Bool? = nil - fileprivate var _intField: Int32? = nil - fileprivate var _floatField: Float? = nil - fileprivate var _stringField: String? = nil - } - init() {} - fileprivate var _storage = _StorageClass.defaultInstance -} - -#if swift(>=4.2) - -extension Pb_TestFeatures.EnumFeature: CaseIterable { - // Support synthesized by the compiler. + fileprivate var _fileFeature: Pb_EnumFeature? = nil + fileprivate var _extensionRangeFeature: Pb_EnumFeature? = nil + fileprivate var _messageFeature: Pb_EnumFeature? = nil + fileprivate var _fieldFeature: Pb_EnumFeature? = nil + fileprivate var _oneofFeature: Pb_EnumFeature? = nil + fileprivate var _enumFeature: Pb_EnumFeature? = nil + fileprivate var _enumEntryFeature: Pb_EnumFeature? = nil + fileprivate var _serviceFeature: Pb_EnumFeature? = nil + fileprivate var _methodFeature: Pb_EnumFeature? = nil + fileprivate var _multipleFeature: Pb_EnumFeature? = nil + fileprivate var _boolFieldFeature: Bool? = nil + fileprivate var _sourceFeature: Pb_EnumFeature? = nil + fileprivate var _sourceFeature2: Pb_EnumFeature? = nil } -#endif // swift(>=4.2) - #if swift(>=5.5) && canImport(_Concurrency) +extension Pb_EnumFeature: @unchecked Sendable {} extension Pb_TestMessage: @unchecked Sendable {} extension Pb_TestMessage.Nested: @unchecked Sendable {} extension Pb_TestFeatures: @unchecked Sendable {} -extension Pb_TestFeatures.EnumFeature: @unchecked Sendable {} -extension Pb_TestFeatures.MessageFeature: @unchecked Sendable {} #endif // swift(>=5.5) && canImport(_Concurrency) // MARK: - Extension support defined in unittest_features.proto. @@ -409,6 +372,27 @@ extension Pb_TestMessage.Nested { fileprivate let _protobuf_package = "pb" +extension Pb_EnumFeature: SwiftProtobuf._ProtoNameProviding { + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 0: .same(proto: "TEST_ENUM_FEATURE_UNKNOWN"), + 1: .same(proto: "VALUE1"), + 2: .same(proto: "VALUE2"), + 3: .same(proto: "VALUE3"), + 4: .same(proto: "VALUE4"), + 5: .same(proto: "VALUE5"), + 6: .same(proto: "VALUE6"), + 7: .same(proto: "VALUE7"), + 8: .same(proto: "VALUE8"), + 9: .same(proto: "VALUE9"), + 10: .same(proto: "VALUE10"), + 11: .same(proto: "VALUE11"), + 12: .same(proto: "VALUE12"), + 13: .same(proto: "VALUE13"), + 14: .same(proto: "VALUE14"), + 15: .same(proto: "VALUE15"), + ] +} + extension Pb_TestMessage: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TestMessage" static let _protobuf_nameMap = SwiftProtobuf._NameMap() @@ -450,217 +434,19 @@ extension Pb_TestMessage.Nested: SwiftProtobuf.Message, SwiftProtobuf._MessageIm extension Pb_TestFeatures: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".TestFeatures" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .standard(proto: "int_file_feature"), - 2: .standard(proto: "int_extension_range_feature"), - 3: .standard(proto: "int_message_feature"), - 4: .standard(proto: "int_field_feature"), - 5: .standard(proto: "int_oneof_feature"), - 6: .standard(proto: "int_enum_feature"), - 7: .standard(proto: "int_enum_entry_feature"), - 8: .standard(proto: "int_service_feature"), - 9: .standard(proto: "int_method_feature"), - 10: .standard(proto: "int_multiple_feature"), + 1: .standard(proto: "file_feature"), + 2: .standard(proto: "extension_range_feature"), + 3: .standard(proto: "message_feature"), + 4: .standard(proto: "field_feature"), + 5: .standard(proto: "oneof_feature"), + 6: .standard(proto: "enum_feature"), + 7: .standard(proto: "enum_entry_feature"), + 8: .standard(proto: "service_feature"), + 9: .standard(proto: "method_feature"), + 10: .standard(proto: "multiple_feature"), 11: .standard(proto: "bool_field_feature"), - 12: .standard(proto: "float_field_feature"), - 13: .standard(proto: "message_field_feature"), - 14: .standard(proto: "enum_field_feature"), - 15: .standard(proto: "int_source_feature"), - 16: .standard(proto: "string_source_feature"), - ] - - fileprivate class _StorageClass { - var _intFileFeature: Int32? = nil - var _intExtensionRangeFeature: Int32? = nil - var _intMessageFeature: Int32? = nil - var _intFieldFeature: Int32? = nil - var _intOneofFeature: Int32? = nil - var _intEnumFeature: Int32? = nil - var _intEnumEntryFeature: Int32? = nil - var _intServiceFeature: Int32? = nil - var _intMethodFeature: Int32? = nil - var _intMultipleFeature: Int32? = nil - var _boolFieldFeature: Bool? = nil - var _floatFieldFeature: Float? = nil - var _messageFieldFeature: Pb_TestFeatures.MessageFeature? = nil - var _enumFieldFeature: Pb_TestFeatures.EnumFeature? = nil - var _intSourceFeature: Int32? = nil - var _stringSourceFeature: String? = nil - - #if swift(>=5.10) - // This property is used as the initial default value for new instances of the type. - // The type itself is protecting the reference to its storage via CoW semantics. - // This will force a copy to be made of this reference when the first mutation occurs; - // hence, it is safe to mark this as `nonisolated(unsafe)`. - static nonisolated(unsafe) let defaultInstance = _StorageClass() - #else - static let defaultInstance = _StorageClass() - #endif - - private init() {} - - init(copying source: _StorageClass) { - _intFileFeature = source._intFileFeature - _intExtensionRangeFeature = source._intExtensionRangeFeature - _intMessageFeature = source._intMessageFeature - _intFieldFeature = source._intFieldFeature - _intOneofFeature = source._intOneofFeature - _intEnumFeature = source._intEnumFeature - _intEnumEntryFeature = source._intEnumEntryFeature - _intServiceFeature = source._intServiceFeature - _intMethodFeature = source._intMethodFeature - _intMultipleFeature = source._intMultipleFeature - _boolFieldFeature = source._boolFieldFeature - _floatFieldFeature = source._floatFieldFeature - _messageFieldFeature = source._messageFieldFeature - _enumFieldFeature = source._enumFieldFeature - _intSourceFeature = source._intSourceFeature - _stringSourceFeature = source._stringSourceFeature - } - } - - fileprivate mutating func _uniqueStorage() -> _StorageClass { - if !isKnownUniquelyReferenced(&_storage) { - _storage = _StorageClass(copying: _storage) - } - return _storage - } - - mutating func decodeMessage(decoder: inout D) throws { - _ = _uniqueStorage() - try withExtendedLifetime(_storage) { (_storage: _StorageClass) in - while let fieldNumber = try decoder.nextFieldNumber() { - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every case branch when no optimizations are - // enabled. https://github.com/apple/swift-protobuf/issues/1034 - switch fieldNumber { - case 1: try { try decoder.decodeSingularInt32Field(value: &_storage._intFileFeature) }() - case 2: try { try decoder.decodeSingularInt32Field(value: &_storage._intExtensionRangeFeature) }() - case 3: try { try decoder.decodeSingularInt32Field(value: &_storage._intMessageFeature) }() - case 4: try { try decoder.decodeSingularInt32Field(value: &_storage._intFieldFeature) }() - case 5: try { try decoder.decodeSingularInt32Field(value: &_storage._intOneofFeature) }() - case 6: try { try decoder.decodeSingularInt32Field(value: &_storage._intEnumFeature) }() - case 7: try { try decoder.decodeSingularInt32Field(value: &_storage._intEnumEntryFeature) }() - case 8: try { try decoder.decodeSingularInt32Field(value: &_storage._intServiceFeature) }() - case 9: try { try decoder.decodeSingularInt32Field(value: &_storage._intMethodFeature) }() - case 10: try { try decoder.decodeSingularInt32Field(value: &_storage._intMultipleFeature) }() - case 11: try { try decoder.decodeSingularBoolField(value: &_storage._boolFieldFeature) }() - case 12: try { try decoder.decodeSingularFloatField(value: &_storage._floatFieldFeature) }() - case 13: try { try decoder.decodeSingularMessageField(value: &_storage._messageFieldFeature) }() - case 14: try { try decoder.decodeSingularEnumField(value: &_storage._enumFieldFeature) }() - case 15: try { try decoder.decodeSingularInt32Field(value: &_storage._intSourceFeature) }() - case 16: try { try decoder.decodeSingularStringField(value: &_storage._stringSourceFeature) }() - default: break - } - } - } - } - - func traverse(visitor: inout V) throws { - try withExtendedLifetime(_storage) { (_storage: _StorageClass) in - // The use of inline closures is to circumvent an issue where the compiler - // allocates stack space for every if/case branch local when no optimizations - // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and - // https://github.com/apple/swift-protobuf/issues/1182 - try { if let v = _storage._intFileFeature { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 1) - } }() - try { if let v = _storage._intExtensionRangeFeature { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 2) - } }() - try { if let v = _storage._intMessageFeature { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 3) - } }() - try { if let v = _storage._intFieldFeature { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 4) - } }() - try { if let v = _storage._intOneofFeature { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 5) - } }() - try { if let v = _storage._intEnumFeature { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 6) - } }() - try { if let v = _storage._intEnumEntryFeature { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 7) - } }() - try { if let v = _storage._intServiceFeature { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 8) - } }() - try { if let v = _storage._intMethodFeature { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 9) - } }() - try { if let v = _storage._intMultipleFeature { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 10) - } }() - try { if let v = _storage._boolFieldFeature { - try visitor.visitSingularBoolField(value: v, fieldNumber: 11) - } }() - try { if let v = _storage._floatFieldFeature { - try visitor.visitSingularFloatField(value: v, fieldNumber: 12) - } }() - try { if let v = _storage._messageFieldFeature { - try visitor.visitSingularMessageField(value: v, fieldNumber: 13) - } }() - try { if let v = _storage._enumFieldFeature { - try visitor.visitSingularEnumField(value: v, fieldNumber: 14) - } }() - try { if let v = _storage._intSourceFeature { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 15) - } }() - try { if let v = _storage._stringSourceFeature { - try visitor.visitSingularStringField(value: v, fieldNumber: 16) - } }() - } - try unknownFields.traverse(visitor: &visitor) - } - - static func ==(lhs: Pb_TestFeatures, rhs: Pb_TestFeatures) -> Bool { - if lhs._storage !== rhs._storage { - let storagesAreEqual: Bool = withExtendedLifetime((lhs._storage, rhs._storage)) { (_args: (_StorageClass, _StorageClass)) in - let _storage = _args.0 - let rhs_storage = _args.1 - if _storage._intFileFeature != rhs_storage._intFileFeature {return false} - if _storage._intExtensionRangeFeature != rhs_storage._intExtensionRangeFeature {return false} - if _storage._intMessageFeature != rhs_storage._intMessageFeature {return false} - if _storage._intFieldFeature != rhs_storage._intFieldFeature {return false} - if _storage._intOneofFeature != rhs_storage._intOneofFeature {return false} - if _storage._intEnumFeature != rhs_storage._intEnumFeature {return false} - if _storage._intEnumEntryFeature != rhs_storage._intEnumEntryFeature {return false} - if _storage._intServiceFeature != rhs_storage._intServiceFeature {return false} - if _storage._intMethodFeature != rhs_storage._intMethodFeature {return false} - if _storage._intMultipleFeature != rhs_storage._intMultipleFeature {return false} - if _storage._boolFieldFeature != rhs_storage._boolFieldFeature {return false} - if _storage._floatFieldFeature != rhs_storage._floatFieldFeature {return false} - if _storage._messageFieldFeature != rhs_storage._messageFieldFeature {return false} - if _storage._enumFieldFeature != rhs_storage._enumFieldFeature {return false} - if _storage._intSourceFeature != rhs_storage._intSourceFeature {return false} - if _storage._stringSourceFeature != rhs_storage._stringSourceFeature {return false} - return true - } - if !storagesAreEqual {return false} - } - if lhs.unknownFields != rhs.unknownFields {return false} - return true - } -} - -extension Pb_TestFeatures.EnumFeature: SwiftProtobuf._ProtoNameProviding { - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 0: .same(proto: "TEST_ENUM_FEATURE_UNKNOWN"), - 1: .same(proto: "ENUM_VALUE1"), - 2: .same(proto: "ENUM_VALUE2"), - 3: .same(proto: "ENUM_VALUE3"), - 4: .same(proto: "ENUM_VALUE4"), - 5: .same(proto: "ENUM_VALUE5"), - ] -} - -extension Pb_TestFeatures.MessageFeature: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { - static let protoMessageName: String = Pb_TestFeatures.protoMessageName + ".MessageFeature" - static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ - 1: .standard(proto: "bool_field"), - 2: .standard(proto: "int_field"), - 3: .standard(proto: "float_field"), - 4: .standard(proto: "string_field"), + 15: .standard(proto: "source_feature"), + 16: .standard(proto: "source_feature2"), ] mutating func decodeMessage(decoder: inout D) throws { @@ -669,10 +455,19 @@ extension Pb_TestFeatures.MessageFeature: SwiftProtobuf.Message, SwiftProtobuf._ // allocates stack space for every case branch when no optimizations are // enabled. https://github.com/apple/swift-protobuf/issues/1034 switch fieldNumber { - case 1: try { try decoder.decodeSingularBoolField(value: &self._boolField) }() - case 2: try { try decoder.decodeSingularInt32Field(value: &self._intField) }() - case 3: try { try decoder.decodeSingularFloatField(value: &self._floatField) }() - case 4: try { try decoder.decodeSingularStringField(value: &self._stringField) }() + case 1: try { try decoder.decodeSingularEnumField(value: &self._fileFeature) }() + case 2: try { try decoder.decodeSingularEnumField(value: &self._extensionRangeFeature) }() + case 3: try { try decoder.decodeSingularEnumField(value: &self._messageFeature) }() + case 4: try { try decoder.decodeSingularEnumField(value: &self._fieldFeature) }() + case 5: try { try decoder.decodeSingularEnumField(value: &self._oneofFeature) }() + case 6: try { try decoder.decodeSingularEnumField(value: &self._enumFeature) }() + case 7: try { try decoder.decodeSingularEnumField(value: &self._enumEntryFeature) }() + case 8: try { try decoder.decodeSingularEnumField(value: &self._serviceFeature) }() + case 9: try { try decoder.decodeSingularEnumField(value: &self._methodFeature) }() + case 10: try { try decoder.decodeSingularEnumField(value: &self._multipleFeature) }() + case 11: try { try decoder.decodeSingularBoolField(value: &self._boolFieldFeature) }() + case 15: try { try decoder.decodeSingularEnumField(value: &self._sourceFeature) }() + case 16: try { try decoder.decodeSingularEnumField(value: &self._sourceFeature2) }() default: break } } @@ -683,26 +478,62 @@ extension Pb_TestFeatures.MessageFeature: SwiftProtobuf.Message, SwiftProtobuf._ // allocates stack space for every if/case branch local when no optimizations // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and // https://github.com/apple/swift-protobuf/issues/1182 - try { if let v = self._boolField { - try visitor.visitSingularBoolField(value: v, fieldNumber: 1) + try { if let v = self._fileFeature { + try visitor.visitSingularEnumField(value: v, fieldNumber: 1) + } }() + try { if let v = self._extensionRangeFeature { + try visitor.visitSingularEnumField(value: v, fieldNumber: 2) + } }() + try { if let v = self._messageFeature { + try visitor.visitSingularEnumField(value: v, fieldNumber: 3) + } }() + try { if let v = self._fieldFeature { + try visitor.visitSingularEnumField(value: v, fieldNumber: 4) + } }() + try { if let v = self._oneofFeature { + try visitor.visitSingularEnumField(value: v, fieldNumber: 5) } }() - try { if let v = self._intField { - try visitor.visitSingularInt32Field(value: v, fieldNumber: 2) + try { if let v = self._enumFeature { + try visitor.visitSingularEnumField(value: v, fieldNumber: 6) } }() - try { if let v = self._floatField { - try visitor.visitSingularFloatField(value: v, fieldNumber: 3) + try { if let v = self._enumEntryFeature { + try visitor.visitSingularEnumField(value: v, fieldNumber: 7) } }() - try { if let v = self._stringField { - try visitor.visitSingularStringField(value: v, fieldNumber: 4) + try { if let v = self._serviceFeature { + try visitor.visitSingularEnumField(value: v, fieldNumber: 8) + } }() + try { if let v = self._methodFeature { + try visitor.visitSingularEnumField(value: v, fieldNumber: 9) + } }() + try { if let v = self._multipleFeature { + try visitor.visitSingularEnumField(value: v, fieldNumber: 10) + } }() + try { if let v = self._boolFieldFeature { + try visitor.visitSingularBoolField(value: v, fieldNumber: 11) + } }() + try { if let v = self._sourceFeature { + try visitor.visitSingularEnumField(value: v, fieldNumber: 15) + } }() + try { if let v = self._sourceFeature2 { + try visitor.visitSingularEnumField(value: v, fieldNumber: 16) } }() try unknownFields.traverse(visitor: &visitor) } - static func ==(lhs: Pb_TestFeatures.MessageFeature, rhs: Pb_TestFeatures.MessageFeature) -> Bool { - if lhs._boolField != rhs._boolField {return false} - if lhs._intField != rhs._intField {return false} - if lhs._floatField != rhs._floatField {return false} - if lhs._stringField != rhs._stringField {return false} + static func ==(lhs: Pb_TestFeatures, rhs: Pb_TestFeatures) -> Bool { + if lhs._fileFeature != rhs._fileFeature {return false} + if lhs._extensionRangeFeature != rhs._extensionRangeFeature {return false} + if lhs._messageFeature != rhs._messageFeature {return false} + if lhs._fieldFeature != rhs._fieldFeature {return false} + if lhs._oneofFeature != rhs._oneofFeature {return false} + if lhs._enumFeature != rhs._enumFeature {return false} + if lhs._enumEntryFeature != rhs._enumEntryFeature {return false} + if lhs._serviceFeature != rhs._serviceFeature {return false} + if lhs._methodFeature != rhs._methodFeature {return false} + if lhs._multipleFeature != rhs._multipleFeature {return false} + if lhs._boolFieldFeature != rhs._boolFieldFeature {return false} + if lhs._sourceFeature != rhs._sourceFeature {return false} + if lhs._sourceFeature2 != rhs._sourceFeature2 {return false} if lhs.unknownFields != rhs.unknownFields {return false} return true } diff --git a/Sources/Conformance/test_messages_proto2.pb.swift b/Sources/Conformance/test_messages_proto2.pb.swift index ca1dfd606..1a45abaf5 100644 --- a/Sources/Conformance/test_messages_proto2.pb.swift +++ b/Sources/Conformance/test_messages_proto2.pb.swift @@ -711,6 +711,15 @@ struct ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.ExtensibleM /// Clears the value of `data`. Subsequent reads from it will return its default value. mutating func clearData() {_uniqueStorage()._data = nil} + var multiWordGroupField: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField { + get {return _storage._multiWordGroupField ?? ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField()} + set {_uniqueStorage()._multiWordGroupField = newValue} + } + /// Returns true if `multiWordGroupField` has been explicitly set. + var hasMultiWordGroupField: Bool {return _storage._multiWordGroupField != nil} + /// Clears the value of `multiWordGroupField`. Subsequent reads from it will return its default value. + mutating func clearMultiWordGroupField() {_uniqueStorage()._multiWordGroupField = nil} + /// default values var defaultInt32: Int32 { get {return _storage._defaultInt32 ?? -123456789} @@ -1173,6 +1182,37 @@ struct ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.ExtensibleM fileprivate var _groupUint32: UInt32? = nil } + struct MultiWordGroupField { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var groupInt32: Int32 { + get {return _groupInt32 ?? 0} + set {_groupInt32 = newValue} + } + /// Returns true if `groupInt32` has been explicitly set. + var hasGroupInt32: Bool {return self._groupInt32 != nil} + /// Clears the value of `groupInt32`. Subsequent reads from it will return its default value. + mutating func clearGroupInt32() {self._groupInt32 = nil} + + var groupUint32: UInt32 { + get {return _groupUint32 ?? 0} + set {_groupUint32 = newValue} + } + /// Returns true if `groupUint32` has been explicitly set. + var hasGroupUint32: Bool {return self._groupUint32 != nil} + /// Clears the value of `groupUint32`. Subsequent reads from it will return its default value. + mutating func clearGroupUint32() {self._groupUint32 = nil} + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + + fileprivate var _groupInt32: Int32? = nil + fileprivate var _groupUint32: UInt32? = nil + } + /// message_set test case. struct MessageSetCorrect: SwiftProtobuf.ExtensibleMessage { // SwiftProtobuf.Message conformance is added in an extension below. See the @@ -1263,6 +1303,37 @@ struct ProtobufTestMessages_Proto2_ForeignMessageProto2 { fileprivate var _c: Int32? = nil } +struct ProtobufTestMessages_Proto2_GroupField { + // SwiftProtobuf.Message conformance is added in an extension below. See the + // `Message` and `Message+*Additions` files in the SwiftProtobuf library for + // methods supported on all messages. + + var groupInt32: Int32 { + get {return _groupInt32 ?? 0} + set {_groupInt32 = newValue} + } + /// Returns true if `groupInt32` has been explicitly set. + var hasGroupInt32: Bool {return self._groupInt32 != nil} + /// Clears the value of `groupInt32`. Subsequent reads from it will return its default value. + mutating func clearGroupInt32() {self._groupInt32 = nil} + + var groupUint32: UInt32 { + get {return _groupUint32 ?? 0} + set {_groupUint32 = newValue} + } + /// Returns true if `groupUint32` has been explicitly set. + var hasGroupUint32: Bool {return self._groupUint32 != nil} + /// Clears the value of `groupUint32`. Subsequent reads from it will return its default value. + mutating func clearGroupUint32() {self._groupUint32 = nil} + + var unknownFields = SwiftProtobuf.UnknownStorage() + + init() {} + + fileprivate var _groupInt32: Int32? = nil + fileprivate var _groupUint32: UInt32? = nil +} + struct ProtobufTestMessages_Proto2_UnknownToTestAllTypes { // SwiftProtobuf.Message conformance is added in an extension below. See the // `Message` and `Message+*Additions` files in the SwiftProtobuf library for @@ -1996,10 +2067,12 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2.OneOf_OneofField: @unch extension ProtobufTestMessages_Proto2_TestAllTypesProto2.NestedEnum: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.NestedMessage: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.DataMessage: @unchecked Sendable {} +extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension1: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension2: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_ForeignMessageProto2: @unchecked Sendable {} +extension ProtobufTestMessages_Proto2_GroupField: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_UnknownToTestAllTypes: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_UnknownToTestAllTypes.OptionalGroup: @unchecked Sendable {} extension ProtobufTestMessages_Proto2_NullHypothesisProto2: @unchecked Sendable {} @@ -2074,6 +2147,21 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2 { mutating func clearProtobufTestMessages_Proto2_extensionInt32() { clearExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_extension_int32) } + + var ProtobufTestMessages_Proto2_groupField: ProtobufTestMessages_Proto2_GroupField { + get {return getExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField) ?? ProtobufTestMessages_Proto2_GroupField()} + set {setExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField, value: newValue)} + } + /// Returns true if extension `ProtobufTestMessages_Proto2_Extensions_GroupField` + /// has been explicitly set. + var hasProtobufTestMessages_Proto2_groupField: Bool { + return hasExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField) + } + /// Clears the value of extension `ProtobufTestMessages_Proto2_Extensions_GroupField`. + /// Subsequent reads from it will return its default value. + mutating func clearProtobufTestMessages_Proto2_groupField() { + clearExtensionValue(ext: ProtobufTestMessages_Proto2_Extensions_GroupField) + } } extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect { @@ -2118,6 +2206,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect { /// a larger `SwiftProtobuf.SimpleExtensionMap`. let ProtobufTestMessages_Proto2_TestMessagesProto2_Extensions: SwiftProtobuf.SimpleExtensionMap = [ ProtobufTestMessages_Proto2_Extensions_extension_int32, + ProtobufTestMessages_Proto2_Extensions_GroupField, ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension1.Extensions.message_set_extension, ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension2.Extensions.message_set_extension, ProtobufTestMessages_Proto2_TestAllRequiredTypesProto2.MessageSetCorrectExtension1.Extensions.message_set_extension, @@ -2133,6 +2222,11 @@ let ProtobufTestMessages_Proto2_Extensions_extension_int32 = SwiftProtobuf.Messa fieldName: "protobuf_test_messages.proto2.extension_int32" ) +let ProtobufTestMessages_Proto2_Extensions_GroupField = SwiftProtobuf.MessageExtension, ProtobufTestMessages_Proto2_TestAllTypesProto2>( + _protobuf_fieldNumber: 121, + fieldName: "protobuf_test_messages.proto2.groupfield" +) + extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrectExtension1 { enum Extensions { static let message_set_extension = SwiftProtobuf.MessageExtension, ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect>( @@ -2284,6 +2378,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, 118: .standard(proto: "oneof_double"), 119: .standard(proto: "oneof_enum"), 201: .unique(proto: "Data", json: "data"), + 204: .unique(proto: "MultiWordGroupField", json: "multiwordgroupfield"), 241: .standard(proto: "default_int32"), 242: .standard(proto: "default_int64"), 243: .standard(proto: "default_uint32"), @@ -2412,6 +2507,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, var _mapStringForeignEnum: Dictionary = [:] var _oneofField: ProtobufTestMessages_Proto2_TestAllTypesProto2.OneOf_OneofField? var _data: ProtobufTestMessages_Proto2_TestAllTypesProto2.DataMessage? = nil + var _multiWordGroupField: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField? = nil var _defaultInt32: Int32? = nil var _defaultInt64: Int64? = nil var _defaultUint32: UInt32? = nil @@ -2551,6 +2647,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, _mapStringForeignEnum = source._mapStringForeignEnum _oneofField = source._oneofField _data = source._data + _multiWordGroupField = source._multiWordGroupField _defaultInt32 = source._defaultInt32 _defaultInt64 = source._defaultInt64 _defaultUint32 = source._defaultUint32 @@ -2782,6 +2879,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, } }() case 201: try { try decoder.decodeSingularGroupField(value: &_storage._data) }() + case 204: try { try decoder.decodeSingularGroupField(value: &_storage._multiWordGroupField) }() case 241: try { try decoder.decodeSingularInt32Field(value: &_storage._defaultInt32) }() case 242: try { try decoder.decodeSingularInt64Field(value: &_storage._defaultInt64) }() case 243: try { try decoder.decodeSingularUInt32Field(value: &_storage._defaultUint32) }() @@ -3142,6 +3240,9 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, try { if let v = _storage._data { try visitor.visitSingularGroupField(value: v, fieldNumber: 201) } }() + try { if let v = _storage._multiWordGroupField { + try visitor.visitSingularGroupField(value: v, fieldNumber: 204) + } }() try { if let v = _storage._defaultInt32 { try visitor.visitSingularInt32Field(value: v, fieldNumber: 241) } }() @@ -3342,6 +3443,7 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2: SwiftProtobuf.Message, if _storage._mapStringForeignEnum != rhs_storage._mapStringForeignEnum {return false} if _storage._oneofField != rhs_storage._oneofField {return false} if _storage._data != rhs_storage._data {return false} + if _storage._multiWordGroupField != rhs_storage._multiWordGroupField {return false} if _storage._defaultInt32 != rhs_storage._defaultInt32 {return false} if _storage._defaultInt64 != rhs_storage._defaultInt64 {return false} if _storage._defaultUint32 != rhs_storage._defaultUint32 {return false} @@ -3527,6 +3629,48 @@ extension ProtobufTestMessages_Proto2_TestAllTypesProto2.DataMessage: SwiftProto } } +extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = ProtobufTestMessages_Proto2_TestAllTypesProto2.protoMessageName + ".MultiWordGroupField" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 205: .standard(proto: "group_int32"), + 206: .standard(proto: "group_uint32"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 205: try { try decoder.decodeSingularInt32Field(value: &self._groupInt32) }() + case 206: try { try decoder.decodeSingularUInt32Field(value: &self._groupUint32) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every if/case branch local when no optimizations + // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and + // https://github.com/apple/swift-protobuf/issues/1182 + try { if let v = self._groupInt32 { + try visitor.visitSingularInt32Field(value: v, fieldNumber: 205) + } }() + try { if let v = self._groupUint32 { + try visitor.visitSingularUInt32Field(value: v, fieldNumber: 206) + } }() + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField, rhs: ProtobufTestMessages_Proto2_TestAllTypesProto2.MultiWordGroupField) -> Bool { + if lhs._groupInt32 != rhs._groupInt32 {return false} + if lhs._groupUint32 != rhs._groupUint32 {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension ProtobufTestMessages_Proto2_TestAllTypesProto2.MessageSetCorrect: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = ProtobufTestMessages_Proto2_TestAllTypesProto2.protoMessageName + ".MessageSetCorrect" static let _protobuf_nameMap = SwiftProtobuf._NameMap() @@ -3660,6 +3804,48 @@ extension ProtobufTestMessages_Proto2_ForeignMessageProto2: SwiftProtobuf.Messag } } +extension ProtobufTestMessages_Proto2_GroupField: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { + static let protoMessageName: String = _protobuf_package + ".GroupField" + static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ + 122: .standard(proto: "group_int32"), + 123: .standard(proto: "group_uint32"), + ] + + mutating func decodeMessage(decoder: inout D) throws { + while let fieldNumber = try decoder.nextFieldNumber() { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every case branch when no optimizations are + // enabled. https://github.com/apple/swift-protobuf/issues/1034 + switch fieldNumber { + case 122: try { try decoder.decodeSingularInt32Field(value: &self._groupInt32) }() + case 123: try { try decoder.decodeSingularUInt32Field(value: &self._groupUint32) }() + default: break + } + } + } + + func traverse(visitor: inout V) throws { + // The use of inline closures is to circumvent an issue where the compiler + // allocates stack space for every if/case branch local when no optimizations + // are enabled. https://github.com/apple/swift-protobuf/issues/1034 and + // https://github.com/apple/swift-protobuf/issues/1182 + try { if let v = self._groupInt32 { + try visitor.visitSingularInt32Field(value: v, fieldNumber: 122) + } }() + try { if let v = self._groupUint32 { + try visitor.visitSingularUInt32Field(value: v, fieldNumber: 123) + } }() + try unknownFields.traverse(visitor: &visitor) + } + + static func ==(lhs: ProtobufTestMessages_Proto2_GroupField, rhs: ProtobufTestMessages_Proto2_GroupField) -> Bool { + if lhs._groupInt32 != rhs._groupInt32 {return false} + if lhs._groupUint32 != rhs._groupUint32 {return false} + if lhs.unknownFields != rhs.unknownFields {return false} + return true + } +} + extension ProtobufTestMessages_Proto2_UnknownToTestAllTypes: SwiftProtobuf.Message, SwiftProtobuf._MessageImplementationBase, SwiftProtobuf._ProtoNameProviding { static let protoMessageName: String = _protobuf_package + ".UnknownToTestAllTypes" static let _protobuf_nameMap: SwiftProtobuf._NameMap = [ diff --git a/Sources/SwiftProtobuf/descriptor.pb.swift b/Sources/SwiftProtobuf/descriptor.pb.swift index fa94dc25a..2ac947d40 100644 --- a/Sources/SwiftProtobuf/descriptor.pb.swift +++ b/Sources/SwiftProtobuf/descriptor.pb.swift @@ -5167,7 +5167,7 @@ extension Google_Protobuf_FeatureSet: SwiftProtobuf.Message, SwiftProtobuf._Mess case 4: try { try decoder.decodeSingularEnumField(value: &self._utf8Validation) }() case 5: try { try decoder.decodeSingularEnumField(value: &self._messageEncoding) }() case 6: try { try decoder.decodeSingularEnumField(value: &self._jsonFormat) }() - case 1000..<1003, 9995..<10001: + case 1000..<1003, 9990, 9995..<10001: try { try decoder.decodeExtensionField(values: &_protobuf_extensionFieldValues, messageType: Google_Protobuf_FeatureSet.self, fieldNumber: fieldNumber) }() default: break } diff --git a/Tests/SwiftProtobufPluginLibraryTests/DescriptorTestData.swift b/Tests/SwiftProtobufPluginLibraryTests/DescriptorTestData.swift index aea1de938..37f754bd0 100644 --- a/Tests/SwiftProtobufPluginLibraryTests/DescriptorTestData.swift +++ b/Tests/SwiftProtobufPluginLibraryTests/DescriptorTestData.swift @@ -2,7 +2,7 @@ // swift-format-ignore-file import Foundation let fileDescriptorSetBytes: [UInt8] = [ - 0x0a, 0xee, 0x5a, 0x0a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, + 0x0a, 0xf6, 0x5a, 0x0a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, @@ -744,7 +744,7 @@ let fileDescriptorSetBytes: [UInt8] = [ 0x6e, 0x61, 0x6d, 0x65, 0x50, 0x61, 0x72, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x69, 0x73, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x02, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x45, 0x78, - 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x8c, 0x0a, 0x0a, 0x0a, + 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x94, 0x0a, 0x0a, 0x0a, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x53, 0x65, 0x74, 0x12, 0x8b, 0x01, 0x0a, 0x0e, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x70, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, @@ -850,547 +850,385 @@ let fileDescriptorSetBytes: [UInt8] = [ 0x47, 0x41, 0x43, 0x59, 0x5f, 0x42, 0x45, 0x53, 0x54, 0x5f, 0x45, 0x46, 0x46, 0x4f, 0x52, 0x54, 0x10, 0x02, 0x2a, 0x06, 0x08, 0xe8, 0x07, 0x10, 0xe9, 0x07, 0x2a, 0x06, 0x08, 0xe9, 0x07, 0x10, 0xea, 0x07, 0x2a, 0x06, - 0x08, 0xea, 0x07, 0x10, 0xeb, 0x07, 0x2a, 0x06, 0x08, 0x8b, 0x4e, 0x10, - 0x90, 0x4e, 0x2a, 0x06, 0x08, 0x90, 0x4e, 0x10, 0x91, 0x4e, 0x4a, 0x06, - 0x08, 0xe7, 0x07, 0x10, 0xe8, 0x07, 0x22, 0xfe, 0x02, 0x0a, 0x12, 0x46, - 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x53, 0x65, 0x74, 0x44, 0x65, 0x66, - 0x61, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x58, 0x0a, 0x08, 0x64, 0x65, 0x66, - 0x61, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, - 0x65, 0x53, 0x65, 0x74, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x73, - 0x2e, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x53, 0x65, 0x74, 0x45, - 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, - 0x74, 0x52, 0x08, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x73, 0x12, - 0x41, 0x0a, 0x0f, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x5f, 0x65, - 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, - 0x32, 0x18, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x69, - 0x6f, 0x6e, 0x52, 0x0e, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x45, - 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x0f, 0x6d, 0x61, - 0x78, 0x69, 0x6d, 0x75, 0x6d, 0x5f, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x67, 0x6f, + 0x08, 0xea, 0x07, 0x10, 0xeb, 0x07, 0x2a, 0x06, 0x08, 0x86, 0x4e, 0x10, + 0x87, 0x4e, 0x2a, 0x06, 0x08, 0x8b, 0x4e, 0x10, 0x90, 0x4e, 0x2a, 0x06, + 0x08, 0x90, 0x4e, 0x10, 0x91, 0x4e, 0x4a, 0x06, 0x08, 0xe7, 0x07, 0x10, + 0xe8, 0x07, 0x22, 0xfe, 0x02, 0x0a, 0x12, 0x46, 0x65, 0x61, 0x74, 0x75, + 0x72, 0x65, 0x53, 0x65, 0x74, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, + 0x73, 0x12, 0x58, 0x0a, 0x08, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, + 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3c, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x6d, - 0x61, 0x78, 0x69, 0x6d, 0x75, 0x6d, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x1a, 0x87, 0x01, 0x0a, 0x18, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, - 0x65, 0x53, 0x65, 0x74, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x44, - 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x12, 0x32, 0x0a, 0x07, 0x65, 0x64, - 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, - 0x18, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, - 0x6e, 0x52, 0x07, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x37, - 0x0a, 0x08, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, - 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x53, 0x65, 0x74, 0x52, 0x08, 0x66, - 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x22, 0xa7, 0x02, 0x0a, 0x0e, - 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x49, 0x6e, - 0x66, 0x6f, 0x12, 0x44, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x67, + 0x66, 0x2e, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x53, 0x65, 0x74, + 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x73, 0x2e, 0x46, 0x65, 0x61, + 0x74, 0x75, 0x72, 0x65, 0x53, 0x65, 0x74, 0x45, 0x64, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x08, 0x64, + 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x41, 0x0a, 0x0f, 0x6d, + 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x5f, 0x65, 0x64, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x64, - 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x1a, 0xce, 0x01, 0x0a, 0x08, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x16, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, - 0x03, 0x28, 0x05, 0x42, 0x02, 0x10, 0x01, 0x52, 0x04, 0x70, 0x61, 0x74, - 0x68, 0x12, 0x16, 0x0a, 0x04, 0x73, 0x70, 0x61, 0x6e, 0x18, 0x02, 0x20, - 0x03, 0x28, 0x05, 0x42, 0x02, 0x10, 0x01, 0x52, 0x04, 0x73, 0x70, 0x61, - 0x6e, 0x12, 0x29, 0x0a, 0x10, 0x6c, 0x65, 0x61, 0x64, 0x69, 0x6e, 0x67, - 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x0f, 0x6c, 0x65, 0x61, 0x64, 0x69, 0x6e, 0x67, - 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x2b, 0x0a, 0x11, - 0x74, 0x72, 0x61, 0x69, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6d, - 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x10, 0x74, 0x72, 0x61, 0x69, 0x6c, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6d, - 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x3a, 0x0a, 0x19, 0x6c, 0x65, 0x61, - 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x63, 0x68, 0x65, - 0x64, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, - 0x20, 0x03, 0x28, 0x09, 0x52, 0x17, 0x6c, 0x65, 0x61, 0x64, 0x69, 0x6e, - 0x67, 0x44, 0x65, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64, 0x43, 0x6f, 0x6d, - 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x22, 0xd0, 0x02, 0x0a, 0x11, 0x47, 0x65, - 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x49, - 0x6e, 0x66, 0x6f, 0x12, 0x4d, 0x0a, 0x0a, 0x61, 0x6e, 0x6e, 0x6f, 0x74, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, - 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x2e, - 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0a, - 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0xeb, - 0x01, 0x0a, 0x0a, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x16, 0x0a, 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, - 0x03, 0x28, 0x05, 0x42, 0x02, 0x10, 0x01, 0x52, 0x04, 0x70, 0x61, 0x74, - 0x68, 0x12, 0x1f, 0x0a, 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, - 0x66, 0x69, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x14, - 0x0a, 0x05, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x05, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x12, 0x10, 0x0a, 0x03, - 0x65, 0x6e, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x65, - 0x6e, 0x64, 0x12, 0x52, 0x0a, 0x08, 0x73, 0x65, 0x6d, 0x61, 0x6e, 0x74, - 0x69, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x36, 0x2e, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, - 0x43, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x41, 0x6e, 0x6e, - 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6d, 0x61, - 0x6e, 0x74, 0x69, 0x63, 0x52, 0x08, 0x73, 0x65, 0x6d, 0x61, 0x6e, 0x74, - 0x69, 0x63, 0x22, 0x28, 0x0a, 0x08, 0x53, 0x65, 0x6d, 0x61, 0x6e, 0x74, - 0x69, 0x63, 0x12, 0x08, 0x0a, 0x04, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, - 0x12, 0x07, 0x0a, 0x03, 0x53, 0x45, 0x54, 0x10, 0x01, 0x12, 0x09, 0x0a, - 0x05, 0x41, 0x4c, 0x49, 0x41, 0x53, 0x10, 0x02, 0x2a, 0x92, 0x02, 0x0a, - 0x07, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x13, 0x0a, 0x0f, - 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, - 0x4f, 0x57, 0x4e, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0e, 0x45, 0x44, 0x49, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x50, 0x52, 0x4f, 0x54, 0x4f, 0x32, 0x10, - 0xe6, 0x07, 0x12, 0x13, 0x0a, 0x0e, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, - 0x4e, 0x5f, 0x50, 0x52, 0x4f, 0x54, 0x4f, 0x33, 0x10, 0xe7, 0x07, 0x12, - 0x11, 0x0a, 0x0c, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x32, - 0x30, 0x32, 0x33, 0x10, 0xe8, 0x07, 0x12, 0x11, 0x0a, 0x0c, 0x45, 0x44, - 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x32, 0x30, 0x32, 0x34, 0x10, 0xe9, - 0x07, 0x12, 0x17, 0x0a, 0x13, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, - 0x5f, 0x31, 0x5f, 0x54, 0x45, 0x53, 0x54, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, - 0x10, 0x01, 0x12, 0x17, 0x0a, 0x13, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, - 0x4e, 0x5f, 0x32, 0x5f, 0x54, 0x45, 0x53, 0x54, 0x5f, 0x4f, 0x4e, 0x4c, - 0x59, 0x10, 0x02, 0x12, 0x1d, 0x0a, 0x17, 0x45, 0x44, 0x49, 0x54, 0x49, - 0x4f, 0x4e, 0x5f, 0x39, 0x39, 0x39, 0x39, 0x37, 0x5f, 0x54, 0x45, 0x53, - 0x54, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x9d, 0x8d, 0x06, 0x12, 0x1d, - 0x0a, 0x17, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x39, 0x39, - 0x39, 0x39, 0x38, 0x5f, 0x54, 0x45, 0x53, 0x54, 0x5f, 0x4f, 0x4e, 0x4c, - 0x59, 0x10, 0x9e, 0x8d, 0x06, 0x12, 0x1d, 0x0a, 0x17, 0x45, 0x44, 0x49, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x39, 0x39, 0x39, 0x39, 0x39, 0x5f, 0x54, - 0x45, 0x53, 0x54, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x9f, 0x8d, 0x06, - 0x12, 0x13, 0x0a, 0x0b, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, - 0x4d, 0x41, 0x58, 0x10, 0xff, 0xff, 0xff, 0xff, 0x07, 0x42, 0x7e, 0x0a, - 0x13, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x42, 0x10, 0x44, 0x65, - 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, - 0x6f, 0x73, 0x48, 0x01, 0x5a, 0x2d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x75, 0x66, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, + 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x45, 0x64, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x12, 0x41, 0x0a, 0x0f, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x75, + 0x6d, 0x5f, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, + 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x64, + 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0e, 0x6d, 0x61, 0x78, 0x69, 0x6d, + 0x75, 0x6d, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x87, 0x01, + 0x0a, 0x18, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x53, 0x65, 0x74, + 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x65, 0x66, 0x61, 0x75, + 0x6c, 0x74, 0x12, 0x32, 0x0a, 0x07, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, + 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x18, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, + 0x66, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x65, + 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x37, 0x0a, 0x08, 0x66, 0x65, + 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1b, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x65, 0x61, 0x74, 0x75, + 0x72, 0x65, 0x53, 0x65, 0x74, 0x52, 0x08, 0x66, 0x65, 0x61, 0x74, 0x75, + 0x72, 0x65, 0x73, 0x22, 0xa7, 0x02, 0x0a, 0x0e, 0x53, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x44, + 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, + 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, + 0x6f, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x08, + 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0xce, 0x01, 0x0a, + 0x08, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, + 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x42, + 0x02, 0x10, 0x01, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x16, 0x0a, + 0x04, 0x73, 0x70, 0x61, 0x6e, 0x18, 0x02, 0x20, 0x03, 0x28, 0x05, 0x42, + 0x02, 0x10, 0x01, 0x52, 0x04, 0x73, 0x70, 0x61, 0x6e, 0x12, 0x29, 0x0a, + 0x10, 0x6c, 0x65, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6d, + 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0f, 0x6c, 0x65, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6d, 0x6d, + 0x65, 0x6e, 0x74, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x74, 0x72, 0x61, 0x69, + 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, + 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x74, 0x72, 0x61, + 0x69, 0x6c, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, + 0x73, 0x12, 0x3a, 0x0a, 0x19, 0x6c, 0x65, 0x61, 0x64, 0x69, 0x6e, 0x67, + 0x5f, 0x64, 0x65, 0x74, 0x61, 0x63, 0x68, 0x65, 0x64, 0x5f, 0x63, 0x6f, + 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, + 0x52, 0x17, 0x6c, 0x65, 0x61, 0x64, 0x69, 0x6e, 0x67, 0x44, 0x65, 0x74, + 0x61, 0x63, 0x68, 0x65, 0x64, 0x43, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, + 0x73, 0x22, 0xd0, 0x02, 0x0a, 0x11, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, + 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, + 0x4d, 0x0a, 0x0a, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, + 0x66, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x43, + 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x41, 0x6e, 0x6e, 0x6f, + 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0a, 0x61, 0x6e, 0x6e, 0x6f, + 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0xeb, 0x01, 0x0a, 0x0a, 0x41, + 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, + 0x04, 0x70, 0x61, 0x74, 0x68, 0x18, 0x01, 0x20, 0x03, 0x28, 0x05, 0x42, + 0x02, 0x10, 0x01, 0x52, 0x04, 0x70, 0x61, 0x74, 0x68, 0x12, 0x1f, 0x0a, + 0x0b, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x66, 0x69, 0x6c, 0x65, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x65, + 0x67, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x62, + 0x65, 0x67, 0x69, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x6e, 0x64, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x65, 0x6e, 0x64, 0x12, 0x52, + 0x0a, 0x08, 0x73, 0x65, 0x6d, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x18, 0x05, + 0x20, 0x01, 0x28, 0x0e, 0x32, 0x36, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x47, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, + 0x49, 0x6e, 0x66, 0x6f, 0x2e, 0x41, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x2e, 0x53, 0x65, 0x6d, 0x61, 0x6e, 0x74, 0x69, 0x63, + 0x52, 0x08, 0x73, 0x65, 0x6d, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x22, 0x28, + 0x0a, 0x08, 0x53, 0x65, 0x6d, 0x61, 0x6e, 0x74, 0x69, 0x63, 0x12, 0x08, + 0x0a, 0x04, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x07, 0x0a, 0x03, + 0x53, 0x45, 0x54, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x4c, 0x49, + 0x41, 0x53, 0x10, 0x02, 0x2a, 0x92, 0x02, 0x0a, 0x07, 0x45, 0x64, 0x69, + 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x13, 0x0a, 0x0f, 0x45, 0x44, 0x49, 0x54, + 0x49, 0x4f, 0x4e, 0x5f, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, + 0x00, 0x12, 0x13, 0x0a, 0x0e, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, + 0x5f, 0x50, 0x52, 0x4f, 0x54, 0x4f, 0x32, 0x10, 0xe6, 0x07, 0x12, 0x13, + 0x0a, 0x0e, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x50, 0x52, + 0x4f, 0x54, 0x4f, 0x33, 0x10, 0xe7, 0x07, 0x12, 0x11, 0x0a, 0x0c, 0x45, + 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x32, 0x30, 0x32, 0x33, 0x10, + 0xe8, 0x07, 0x12, 0x11, 0x0a, 0x0c, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, + 0x4e, 0x5f, 0x32, 0x30, 0x32, 0x34, 0x10, 0xe9, 0x07, 0x12, 0x17, 0x0a, + 0x13, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x31, 0x5f, 0x54, + 0x45, 0x53, 0x54, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x01, 0x12, 0x17, + 0x0a, 0x13, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x32, 0x5f, + 0x54, 0x45, 0x53, 0x54, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x02, 0x12, + 0x1d, 0x0a, 0x17, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x39, + 0x39, 0x39, 0x39, 0x37, 0x5f, 0x54, 0x45, 0x53, 0x54, 0x5f, 0x4f, 0x4e, + 0x4c, 0x59, 0x10, 0x9d, 0x8d, 0x06, 0x12, 0x1d, 0x0a, 0x17, 0x45, 0x44, + 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x39, 0x39, 0x39, 0x39, 0x38, 0x5f, + 0x54, 0x45, 0x53, 0x54, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x9e, 0x8d, + 0x06, 0x12, 0x1d, 0x0a, 0x17, 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, + 0x5f, 0x39, 0x39, 0x39, 0x39, 0x39, 0x5f, 0x54, 0x45, 0x53, 0x54, 0x5f, + 0x4f, 0x4e, 0x4c, 0x59, 0x10, 0x9f, 0x8d, 0x06, 0x12, 0x13, 0x0a, 0x0b, + 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4d, 0x41, 0x58, 0x10, + 0xff, 0xff, 0xff, 0xff, 0x07, 0x42, 0x7e, 0x0a, 0x13, 0x63, 0x6f, 0x6d, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x62, 0x75, 0x66, 0x42, 0x10, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x70, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x48, 0x01, + 0x5a, 0x2d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, + 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2f, 0x64, + 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x70, 0x62, 0xf8, + 0x01, 0x01, 0xa2, 0x02, 0x03, 0x47, 0x50, 0x42, 0xaa, 0x02, 0x1a, 0x47, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x62, + 0x75, 0x66, 0x2e, 0x52, 0x65, 0x66, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x0a, 0x96, 0x09, 0x0a, 0x25, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x63, 0x6f, + 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, + 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x18, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, + 0x2e, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x1a, 0x20, 0x67, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, + 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, + 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x63, 0x0a, 0x07, 0x56, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x61, + 0x6a, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6d, + 0x61, 0x6a, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x69, 0x6e, 0x6f, + 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6d, 0x69, 0x6e, + 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x61, 0x74, 0x63, 0x68, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x70, 0x61, 0x74, 0x63, 0x68, + 0x12, 0x16, 0x0a, 0x06, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, + 0x22, 0xcf, 0x02, 0x0a, 0x14, 0x43, 0x6f, 0x64, 0x65, 0x47, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 0x74, 0x12, 0x28, 0x0a, 0x10, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x74, 0x6f, + 0x5f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x18, 0x01, 0x20, + 0x03, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6c, 0x65, 0x54, 0x6f, 0x47, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x70, + 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, + 0x72, 0x12, 0x43, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x66, + 0x69, 0x6c, 0x65, 0x18, 0x0f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x52, + 0x09, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x5c, + 0x0a, 0x17, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x66, 0x69, 0x6c, + 0x65, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, + 0x73, 0x18, 0x11, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, + 0x66, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x70, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x52, 0x15, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x73, 0x12, 0x4c, 0x0a, 0x10, + 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x5f, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, + 0x72, 0x2e, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x0f, 0x63, + 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x56, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x22, 0x85, 0x04, 0x0a, 0x15, 0x43, 0x6f, 0x64, 0x65, 0x47, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, + 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, + 0x6f, 0x72, 0x12, 0x2d, 0x0a, 0x12, 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, + 0x74, 0x65, 0x64, 0x5f, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x73, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x73, 0x75, 0x70, 0x70, + 0x6f, 0x72, 0x74, 0x65, 0x64, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, + 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, + 0x5f, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x05, 0x52, 0x0e, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x45, + 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27, 0x0a, 0x0f, 0x6d, 0x61, + 0x78, 0x69, 0x6d, 0x75, 0x6d, 0x5f, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, + 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x6d, 0x61, 0x78, + 0x69, 0x6d, 0x75, 0x6d, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x48, 0x0a, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x0f, 0x20, 0x03, 0x28, + 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x63, 0x6f, 0x6d, 0x70, + 0x69, 0x6c, 0x65, 0x72, 0x2e, 0x43, 0x6f, 0x64, 0x65, 0x47, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, 0x04, 0x66, 0x69, 0x6c, + 0x65, 0x1a, 0xb1, 0x01, 0x0a, 0x04, 0x46, 0x69, 0x6c, 0x65, 0x12, 0x12, + 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, + 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x6f, 0x69, 0x6e, + 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x73, + 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x12, + 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18, 0x0f, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, + 0x74, 0x12, 0x52, 0x0a, 0x13, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, + 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, + 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, + 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x43, 0x6f, + 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x11, 0x67, 0x65, 0x6e, 0x65, + 0x72, 0x61, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, + 0x6f, 0x22, 0x57, 0x0a, 0x07, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, + 0x12, 0x10, 0x0a, 0x0c, 0x46, 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, + 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x1b, 0x0a, 0x17, 0x46, 0x45, + 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x50, 0x52, 0x4f, 0x54, 0x4f, 0x33, + 0x5f, 0x4f, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x41, 0x4c, 0x10, 0x01, 0x12, + 0x1d, 0x0a, 0x19, 0x46, 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x53, + 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x53, 0x5f, 0x45, 0x44, 0x49, 0x54, + 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x02, 0x42, 0x72, 0x0a, 0x1c, 0x63, 0x6f, + 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, + 0x65, 0x72, 0x42, 0x0c, 0x50, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x50, 0x72, + 0x6f, 0x74, 0x6f, 0x73, 0x5a, 0x29, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x79, 0x70, - 0x65, 0x73, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, - 0x72, 0x70, 0x62, 0xf8, 0x01, 0x01, 0xa2, 0x02, 0x03, 0x47, 0x50, 0x42, - 0xaa, 0x02, 0x1a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x50, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x52, 0x65, 0x66, 0x6c, 0x65, - 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x0a, 0x96, 0x09, 0x0a, 0x25, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x2f, 0x70, - 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, - 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, - 0x72, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, + 0x65, 0x73, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x70, 0x62, 0xaa, + 0x02, 0x18, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x50, 0x72, 0x6f, + 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x43, 0x6f, 0x6d, 0x70, 0x69, 0x6c, + 0x65, 0x72, 0x0a, 0xc8, 0x17, 0x0a, 0x1f, 0x70, 0x6c, 0x75, 0x67, 0x69, + 0x6e, 0x6c, 0x69, 0x62, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x12, 0x15, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, + 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, + 0x74, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, 0x65, 0x73, 0x63, 0x72, - 0x69, 0x70, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, - 0x63, 0x0a, 0x07, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x14, - 0x0a, 0x05, 0x6d, 0x61, 0x6a, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x05, 0x6d, 0x61, 0x6a, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, - 0x6d, 0x69, 0x6e, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x05, 0x6d, 0x69, 0x6e, 0x6f, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x61, - 0x74, 0x63, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x70, - 0x61, 0x74, 0x63, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x75, 0x66, 0x66, - 0x69, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x75, - 0x66, 0x66, 0x69, 0x78, 0x22, 0xcf, 0x02, 0x0a, 0x14, 0x43, 0x6f, 0x64, - 0x65, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x66, 0x69, 0x6c, - 0x65, 0x5f, 0x74, 0x6f, 0x5f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, - 0x65, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x69, 0x6c, - 0x65, 0x54, 0x6f, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x12, - 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x61, - 0x6d, 0x65, 0x74, 0x65, 0x72, 0x12, 0x43, 0x0a, 0x0a, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x18, 0x0f, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x24, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x6c, 0x65, - 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x50, 0x72, - 0x6f, 0x74, 0x6f, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x46, 0x69, - 0x6c, 0x65, 0x12, 0x5c, 0x0a, 0x17, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x6f, 0x72, 0x73, 0x18, 0x11, 0x20, 0x03, 0x28, 0x0b, 0x32, - 0x24, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x44, 0x65, - 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, - 0x6f, 0x52, 0x15, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x46, 0x69, 0x6c, - 0x65, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x73, - 0x12, 0x4c, 0x0a, 0x10, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, - 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x63, 0x6f, 0x6d, - 0x70, 0x69, 0x6c, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, - 0x6e, 0x52, 0x0f, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0x85, 0x04, 0x0a, 0x15, 0x43, - 0x6f, 0x64, 0x65, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, - 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, - 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x2d, 0x0a, 0x12, 0x73, 0x75, - 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x66, 0x65, 0x61, 0x74, - 0x75, 0x72, 0x65, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, - 0x73, 0x75, 0x70, 0x70, 0x6f, 0x72, 0x74, 0x65, 0x64, 0x46, 0x65, 0x61, - 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x27, 0x0a, 0x0f, 0x6d, 0x69, 0x6e, - 0x69, 0x6d, 0x75, 0x6d, 0x5f, 0x65, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x6d, 0x69, 0x6e, 0x69, - 0x6d, 0x75, 0x6d, 0x45, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x27, - 0x0a, 0x0f, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x75, 0x6d, 0x5f, 0x65, 0x64, - 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, - 0x0e, 0x6d, 0x61, 0x78, 0x69, 0x6d, 0x75, 0x6d, 0x45, 0x64, 0x69, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x48, 0x0a, 0x04, 0x66, 0x69, 0x6c, 0x65, 0x18, - 0x0f, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x2e, 0x43, 0x6f, 0x64, - 0x65, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2e, 0x46, 0x69, 0x6c, 0x65, 0x52, - 0x04, 0x66, 0x69, 0x6c, 0x65, 0x1a, 0xb1, 0x01, 0x0a, 0x04, 0x46, 0x69, - 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x27, - 0x0a, 0x0f, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x5f, - 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0e, 0x69, 0x6e, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x6f, - 0x69, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, - 0x6e, 0x74, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, - 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x52, 0x0a, 0x13, 0x67, 0x65, 0x6e, - 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, - 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, - 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, - 0x65, 0x64, 0x43, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x11, - 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x43, 0x6f, 0x64, - 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x57, 0x0a, 0x07, 0x46, 0x65, 0x61, - 0x74, 0x75, 0x72, 0x65, 0x12, 0x10, 0x0a, 0x0c, 0x46, 0x45, 0x41, 0x54, - 0x55, 0x52, 0x45, 0x5f, 0x4e, 0x4f, 0x4e, 0x45, 0x10, 0x00, 0x12, 0x1b, - 0x0a, 0x17, 0x46, 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x50, 0x52, - 0x4f, 0x54, 0x4f, 0x33, 0x5f, 0x4f, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x41, - 0x4c, 0x10, 0x01, 0x12, 0x1d, 0x0a, 0x19, 0x46, 0x45, 0x41, 0x54, 0x55, - 0x52, 0x45, 0x5f, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x53, 0x5f, - 0x45, 0x44, 0x49, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x02, 0x42, 0x72, - 0x0a, 0x1c, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x63, 0x6f, - 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x42, 0x0c, 0x50, 0x6c, 0x75, 0x67, - 0x69, 0x6e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x73, 0x5a, 0x29, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, - 0x6f, 0x72, 0x67, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, - 0x6e, 0x70, 0x62, 0xaa, 0x02, 0x18, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x43, 0x6f, - 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x0a, 0xc8, 0x17, 0x0a, 0x1f, 0x70, - 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x6c, 0x69, 0x62, 0x5f, 0x64, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x15, 0x73, 0x77, 0x69, 0x66, - 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, - 0x5f, 0x74, 0x65, 0x73, 0x74, 0x1a, 0x20, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x64, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x1a, 0x25, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x63, 0x6f, 0x6d, - 0x70, 0x69, 0x6c, 0x65, 0x72, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, - 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xa7, 0x04, 0x0a, 0x0f, 0x54, - 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, - 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, - 0x64, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x32, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, - 0x64, 0x32, 0x12, 0x3d, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x33, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x73, 0x77, 0x69, - 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, - 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, - 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x48, 0x00, 0x52, 0x06, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x33, 0x12, 0x48, 0x0a, 0x06, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x34, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, - 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, - 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, - 0x65, 0x2e, 0x53, 0x75, 0x62, 0x45, 0x6e, 0x75, 0x6d, 0x48, 0x00, 0x52, - 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x34, 0x12, 0x4b, 0x0a, 0x06, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x35, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x31, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, - 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, - 0x61, 0x67, 0x65, 0x2e, 0x53, 0x75, 0x62, 0x4d, 0x65, 0x73, 0x73, 0x61, - 0x67, 0x65, 0x48, 0x00, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x35, - 0x12, 0x41, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x36, 0x18, 0x06, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, - 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, - 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, - 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x32, 0x48, 0x00, 0x52, - 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x36, 0x1a, 0x87, 0x01, 0x0a, 0x0a, - 0x53, 0x75, 0x62, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, + 0x69, 0x70, 0x74, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, + 0x25, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, + 0x72, 0x2f, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x2e, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x22, 0xa7, 0x04, 0x0a, 0x0f, 0x54, 0x6f, 0x70, 0x4c, 0x65, + 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x12, 0x16, + 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x12, 0x49, + 0x28, 0x05, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x12, 0x3d, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x33, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, + 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, - 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, - 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x53, 0x75, 0x62, 0x4d, 0x65, - 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, - 0x33, 0x22, 0x3c, 0x0a, 0x07, 0x53, 0x75, 0x62, 0x45, 0x6e, 0x75, 0x6d, - 0x12, 0x0f, 0x0a, 0x0b, 0x53, 0x55, 0x42, 0x5f, 0x56, 0x41, 0x4c, 0x55, - 0x45, 0x5f, 0x30, 0x10, 0x00, 0x12, 0x0f, 0x0a, 0x0b, 0x53, 0x55, 0x42, - 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x31, 0x10, 0x01, 0x12, 0x0f, - 0x0a, 0x0b, 0x53, 0x55, 0x42, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, - 0x32, 0x10, 0x02, 0x42, 0x03, 0x0a, 0x01, 0x6f, 0x22, 0x8d, 0x01, 0x0a, - 0x10, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, - 0x73, 0x61, 0x67, 0x65, 0x32, 0x12, 0x3a, 0x0a, 0x04, 0x6c, 0x65, 0x66, - 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x73, 0x77, + 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, + 0x6e, 0x75, 0x6d, 0x48, 0x00, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x33, 0x12, 0x48, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x34, 0x18, + 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x73, 0x77, 0x69, 0x66, + 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, + 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, + 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x53, 0x75, + 0x62, 0x45, 0x6e, 0x75, 0x6d, 0x48, 0x00, 0x52, 0x06, 0x66, 0x69, 0x65, + 0x6c, 0x64, 0x34, 0x12, 0x4b, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x35, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, - 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, - 0x04, 0x6c, 0x65, 0x66, 0x74, 0x12, 0x3d, 0x0a, 0x05, 0x72, 0x69, 0x67, - 0x68, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x73, - 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, - 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, + 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, + 0x53, 0x75, 0x62, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, + 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x35, 0x12, 0x41, 0x0a, 0x06, + 0x66, 0x69, 0x65, 0x6c, 0x64, 0x36, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x27, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, + 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, + 0x73, 0x61, 0x67, 0x65, 0x32, 0x48, 0x00, 0x52, 0x06, 0x66, 0x69, 0x65, + 0x6c, 0x64, 0x36, 0x1a, 0x87, 0x01, 0x0a, 0x0a, 0x53, 0x75, 0x62, 0x4d, + 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, + 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, + 0x66, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x12, 0x49, 0x0a, 0x06, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x33, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, + 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, + 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, + 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x2e, 0x53, 0x75, 0x62, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, + 0x65, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x33, 0x22, 0x3c, 0x0a, + 0x07, 0x53, 0x75, 0x62, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x0a, 0x0b, + 0x53, 0x55, 0x42, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x30, 0x10, + 0x00, 0x12, 0x0f, 0x0a, 0x0b, 0x53, 0x55, 0x42, 0x5f, 0x56, 0x41, 0x4c, + 0x55, 0x45, 0x5f, 0x31, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x53, 0x55, + 0x42, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x32, 0x10, 0x02, 0x42, + 0x03, 0x0a, 0x01, 0x6f, 0x22, 0x8d, 0x01, 0x0a, 0x10, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, - 0x32, 0x52, 0x05, 0x72, 0x69, 0x67, 0x68, 0x74, 0x22, 0x79, 0x0a, 0x0c, - 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x66, 0x73, - 0x12, 0x34, 0x0a, 0x04, 0x64, 0x65, 0x73, 0x63, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, - 0x52, 0x04, 0x64, 0x65, 0x73, 0x63, 0x12, 0x33, 0x0a, 0x03, 0x76, 0x65, - 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x63, 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x2e, 0x56, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x03, 0x76, 0x65, 0x72, 0x22, - 0xd6, 0x01, 0x0a, 0x0c, 0x53, 0x63, 0x6f, 0x70, 0x65, 0x72, 0x46, 0x6f, - 0x72, 0x45, 0x78, 0x74, 0x32, 0x61, 0x0a, 0x08, 0x65, 0x78, 0x74, 0x5f, - 0x65, 0x6e, 0x75, 0x6d, 0x12, 0x1f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4d, - 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x18, 0xb9, 0x85, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, - 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, - 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x07, - 0x65, 0x78, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x32, 0x63, 0x0a, 0x07, 0x65, - 0x78, 0x74, 0x5f, 0x6d, 0x73, 0x67, 0x12, 0x1f, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x4f, 0x70, 0x74, 0x69, - 0x6f, 0x6e, 0x73, 0x18, 0xba, 0x85, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x27, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, - 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, - 0x61, 0x67, 0x65, 0x32, 0x52, 0x06, 0x65, 0x78, 0x74, 0x4d, 0x73, 0x67, - 0x22, 0xfb, 0x07, 0x0a, 0x18, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x4d, - 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, 0x65, - 0x73, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x72, 0x65, 0x71, - 0x5f, 0x73, 0x74, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, - 0x20, 0x02, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x71, 0x53, 0x74, 0x72, - 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x26, 0x0a, 0x0f, 0x72, 0x65, 0x71, - 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, - 0x18, 0x02, 0x20, 0x02, 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x49, - 0x6e, 0x74, 0x33, 0x32, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x49, 0x0a, - 0x0e, 0x72, 0x65, 0x71, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x66, 0x69, - 0x65, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x02, 0x28, 0x0e, 0x32, 0x23, 0x2e, - 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, - 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0c, - 0x72, 0x65, 0x71, 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, - 0x12, 0x52, 0x0a, 0x11, 0x72, 0x65, 0x71, 0x5f, 0x6d, 0x65, 0x73, 0x73, - 0x61, 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x04, 0x20, - 0x02, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, + 0x32, 0x12, 0x3a, 0x0a, 0x04, 0x6c, 0x65, 0x66, 0x74, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, - 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x0f, 0x72, 0x65, 0x71, - 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, - 0x12, 0x22, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x5f, - 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0b, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, - 0x12, 0x26, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, - 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, - 0x05, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, - 0x69, 0x65, 0x6c, 0x64, 0x12, 0x49, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x5f, - 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0d, - 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, + 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x04, 0x6c, 0x65, 0x66, + 0x74, 0x12, 0x3d, 0x0a, 0x05, 0x72, 0x69, 0x67, 0x68, 0x74, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, - 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x45, 0x6e, - 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x52, 0x0a, 0x11, 0x6f, - 0x70, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, + 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x32, 0x52, 0x05, 0x72, + 0x69, 0x67, 0x68, 0x74, 0x22, 0x79, 0x0a, 0x0c, 0x45, 0x78, 0x74, 0x65, + 0x72, 0x6e, 0x61, 0x6c, 0x52, 0x65, 0x66, 0x73, 0x12, 0x34, 0x0a, 0x04, + 0x64, 0x65, 0x73, 0x63, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x52, 0x04, 0x64, 0x65, + 0x73, 0x63, 0x12, 0x33, 0x0a, 0x03, 0x76, 0x65, 0x72, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x63, 0x6f, + 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x52, 0x03, 0x76, 0x65, 0x72, 0x22, 0xd6, 0x01, 0x0a, 0x0c, + 0x53, 0x63, 0x6f, 0x70, 0x65, 0x72, 0x46, 0x6f, 0x72, 0x45, 0x78, 0x74, + 0x32, 0x61, 0x0a, 0x08, 0x65, 0x78, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, + 0x12, 0x1f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xb9, 0x85, + 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, + 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, + 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, + 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x07, 0x65, 0x78, 0x74, 0x45, + 0x6e, 0x75, 0x6d, 0x32, 0x63, 0x0a, 0x07, 0x65, 0x78, 0x74, 0x5f, 0x6d, + 0x73, 0x67, 0x12, 0x1f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4d, 0x65, 0x73, + 0x73, 0x61, 0x67, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, + 0xba, 0x85, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x73, 0x77, + 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, + 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, + 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x32, + 0x52, 0x06, 0x65, 0x78, 0x74, 0x4d, 0x73, 0x67, 0x22, 0xfb, 0x07, 0x0a, + 0x18, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x32, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x63, + 0x65, 0x12, 0x22, 0x0a, 0x0d, 0x72, 0x65, 0x71, 0x5f, 0x73, 0x74, 0x72, + 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x02, 0x28, 0x09, + 0x52, 0x0b, 0x72, 0x65, 0x71, 0x53, 0x74, 0x72, 0x46, 0x69, 0x65, 0x6c, + 0x64, 0x12, 0x26, 0x0a, 0x0f, 0x72, 0x65, 0x71, 0x5f, 0x69, 0x6e, 0x74, + 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, 0x20, 0x02, + 0x28, 0x05, 0x52, 0x0d, 0x72, 0x65, 0x71, 0x49, 0x6e, 0x74, 0x33, 0x32, + 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x49, 0x0a, 0x0e, 0x72, 0x65, 0x71, + 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, + 0x03, 0x20, 0x02, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, + 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, + 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, + 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0c, 0x72, 0x65, 0x71, 0x45, + 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x52, 0x0a, 0x11, + 0x72, 0x65, 0x71, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, + 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x04, 0x20, 0x02, 0x28, 0x0b, 0x32, + 0x26, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, + 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, + 0x61, 0x67, 0x65, 0x52, 0x0f, 0x72, 0x65, 0x71, 0x4d, 0x65, 0x73, 0x73, + 0x61, 0x67, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x22, 0x0a, 0x0d, + 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, + 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6f, 0x70, 0x74, + 0x53, 0x74, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x26, 0x0a, 0x0f, + 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x6f, + 0x70, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x69, 0x65, 0x6c, 0x64, + 0x12, 0x49, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, + 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0e, + 0x32, 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, + 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, + 0x6d, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, + 0x65, 0x6c, 0x64, 0x12, 0x52, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x5f, 0x6d, + 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x73, 0x77, 0x69, + 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, + 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, + 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x0f, + 0x6f, 0x70, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x69, + 0x65, 0x6c, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, + 0x74, 0x5f, 0x73, 0x74, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, + 0x15, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, + 0x74, 0x53, 0x74, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x2c, 0x0a, + 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, + 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x16, 0x20, 0x03, 0x28, + 0x05, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x49, 0x6e, 0x74, + 0x33, 0x32, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x4f, 0x0a, 0x11, 0x72, + 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x66, + 0x69, 0x65, 0x6c, 0x64, 0x18, 0x17, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, - 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, - 0x67, 0x65, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, - 0x67, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x72, - 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x5f, 0x66, 0x69, - 0x65, 0x6c, 0x64, 0x18, 0x15, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x72, - 0x65, 0x70, 0x65, 0x61, 0x74, 0x53, 0x74, 0x72, 0x46, 0x69, 0x65, 0x6c, - 0x64, 0x12, 0x2c, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, - 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, - 0x16, 0x20, 0x03, 0x28, 0x05, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, - 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, - 0x4f, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, 0x65, 0x6e, - 0x75, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x17, 0x20, 0x03, - 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, - 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, - 0x6e, 0x75, 0x6d, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x45, - 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x58, 0x0a, 0x14, - 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, - 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x18, 0x20, 0x03, - 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, - 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, - 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x12, 0x72, 0x65, 0x70, 0x65, - 0x61, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x69, 0x65, - 0x6c, 0x64, 0x12, 0x28, 0x0a, 0x0f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, - 0x73, 0x74, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x1f, 0x20, - 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0d, 0x6f, 0x6e, 0x65, 0x6f, 0x66, - 0x53, 0x74, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x2c, 0x0a, 0x11, - 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, - 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x20, 0x20, 0x01, 0x28, 0x05, 0x48, - 0x00, 0x52, 0x0f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x49, 0x6e, 0x74, 0x33, - 0x32, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x4f, 0x0a, 0x10, 0x6f, 0x6e, - 0x65, 0x6f, 0x66, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x18, 0x21, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x73, - 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, - 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, - 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x48, 0x00, 0x52, - 0x0e, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, - 0x65, 0x6c, 0x64, 0x12, 0x58, 0x0a, 0x13, 0x6f, 0x6e, 0x65, 0x6f, 0x66, - 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x18, 0x22, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x73, - 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, - 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, - 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, - 0x48, 0x00, 0x52, 0x11, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4d, 0x65, 0x73, - 0x73, 0x61, 0x67, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x03, 0x0a, - 0x01, 0x6f, 0x22, 0x5e, 0x0a, 0x19, 0x4d, 0x73, 0x67, 0x45, 0x78, 0x74, - 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x4f, - 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x2a, 0x04, 0x08, 0x01, 0x10, - 0x02, 0x2a, 0x04, 0x08, 0x03, 0x10, 0x04, 0x2a, 0x04, 0x08, 0x02, 0x10, - 0x03, 0x2a, 0x04, 0x08, 0x04, 0x10, 0x05, 0x2a, 0x04, 0x08, 0x07, 0x10, - 0x08, 0x2a, 0x04, 0x08, 0x09, 0x10, 0x0a, 0x2a, 0x04, 0x08, 0x64, 0x10, - 0x6f, 0x2a, 0x05, 0x08, 0x7e, 0x10, 0x83, 0x01, 0x2a, 0x04, 0x08, 0x6f, - 0x10, 0x79, 0x4a, 0x04, 0x08, 0x08, 0x10, 0x09, 0x4a, 0x04, 0x08, 0x79, - 0x10, 0x7e, 0x22, 0xd5, 0x01, 0x0a, 0x23, 0x4d, 0x73, 0x67, 0x45, 0x78, - 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x6e, 0x67, 0x65, - 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x57, 0x69, 0x74, 0x68, - 0x46, 0x69, 0x65, 0x6c, 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, - 0x65, 0x6c, 0x64, 0x36, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, - 0x66, 0x69, 0x65, 0x6c, 0x64, 0x36, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, - 0x65, 0x6c, 0x64, 0x31, 0x32, 0x34, 0x18, 0x7c, 0x20, 0x01, 0x28, 0x05, - 0x52, 0x08, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x32, 0x34, 0x12, 0x1a, - 0x0a, 0x08, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x32, 0x35, 0x18, 0x7d, - 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, - 0x32, 0x35, 0x12, 0x1b, 0x0a, 0x08, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x32, - 0x30, 0x30, 0x18, 0xc8, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x32, 0x30, 0x30, 0x2a, 0x04, 0x08, 0x01, 0x10, - 0x02, 0x2a, 0x04, 0x08, 0x03, 0x10, 0x04, 0x2a, 0x04, 0x08, 0x02, 0x10, - 0x03, 0x2a, 0x04, 0x08, 0x04, 0x10, 0x05, 0x2a, 0x04, 0x08, 0x07, 0x10, - 0x08, 0x2a, 0x04, 0x08, 0x09, 0x10, 0x0a, 0x2a, 0x04, 0x08, 0x64, 0x10, - 0x6f, 0x2a, 0x05, 0x08, 0x7e, 0x10, 0x83, 0x01, 0x2a, 0x04, 0x08, 0x6f, - 0x10, 0x79, 0x4a, 0x04, 0x08, 0x08, 0x10, 0x09, 0x4a, 0x04, 0x08, 0x79, - 0x10, 0x7c, 0x22, 0xcc, 0x01, 0x0a, 0x22, 0x4d, 0x73, 0x67, 0x45, 0x78, - 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x6e, 0x67, 0x65, - 0x4f, 0x72, 0x64, 0x65, 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x6f, 0x4d, 0x65, - 0x72, 0x67, 0x69, 0x6e, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x31, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x32, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x36, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x36, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x31, 0x33, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, - 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x33, 0x12, 0x18, 0x0a, 0x07, 0x66, - 0x69, 0x65, 0x6c, 0x64, 0x31, 0x35, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, - 0x52, 0x07, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x35, 0x12, 0x18, 0x0a, - 0x07, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x31, 0x18, 0x15, 0x20, 0x01, - 0x28, 0x05, 0x52, 0x07, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x31, 0x2a, - 0x04, 0x08, 0x03, 0x10, 0x06, 0x2a, 0x04, 0x08, 0x07, 0x10, 0x0d, 0x2a, - 0x04, 0x08, 0x10, 0x10, 0x15, 0x2a, 0x3c, 0x0a, 0x0c, 0x54, 0x6f, 0x70, - 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x0e, 0x0a, - 0x0a, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x5a, 0x45, 0x52, 0x4f, 0x10, - 0x00, 0x12, 0x0d, 0x0a, 0x09, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x4f, - 0x4e, 0x45, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x56, 0x41, 0x4c, 0x55, - 0x45, 0x5f, 0x54, 0x57, 0x4f, 0x10, 0x02, 0x32, 0xb1, 0x01, 0x0a, 0x0b, - 0x53, 0x6f, 0x6d, 0x65, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, - 0x4a, 0x0a, 0x03, 0x46, 0x6f, 0x6f, 0x12, 0x20, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x50, - 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x21, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x63, - 0x6f, 0x6d, 0x70, 0x69, 0x6c, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x12, 0x56, 0x0a, 0x03, 0x42, 0x61, 0x72, 0x12, 0x26, + 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x52, + 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x46, + 0x69, 0x65, 0x6c, 0x64, 0x12, 0x58, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x65, + 0x61, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, + 0x69, 0x65, 0x6c, 0x64, 0x18, 0x18, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, - 0x67, 0x65, 0x1a, 0x27, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, - 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, - 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, - 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x32, 0x3a, 0x38, 0x0a, 0x07, 0x65, - 0x78, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x12, 0x1d, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, - 0x73, 0x18, 0x90, 0xbf, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, - 0x78, 0x74, 0x53, 0x74, 0x72, 0x42, 0x06, 0xba, 0x02, 0x03, 0x53, 0x44, - 0x54, 0x0a, 0xae, 0x0a, 0x0a, 0x20, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, - 0x6c, 0x69, 0x62, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, - 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x32, 0x2e, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x12, 0x15, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, - 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, - 0x74, 0x22, 0xc4, 0x09, 0x0a, 0x18, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x33, - 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, - 0x65, 0x73, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x74, - 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x08, 0x73, 0x74, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, - 0x1f, 0x0a, 0x0b, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x69, 0x6e, - 0x74, 0x33, 0x32, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x56, 0x0a, 0x0a, - 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, - 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, - 0x74, 0x65, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x4d, - 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, 0x65, - 0x73, 0x65, 0x6e, 0x63, 0x65, 0x2e, 0x53, 0x75, 0x62, 0x45, 0x6e, 0x75, - 0x6d, 0x52, 0x09, 0x65, 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, - 0x12, 0x48, 0x0a, 0x0d, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, - 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, - 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, - 0x52, 0x0c, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x69, 0x65, - 0x6c, 0x64, 0x12, 0x27, 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, - 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, - 0x09, 0x48, 0x01, 0x52, 0x0b, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x46, - 0x69, 0x65, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0f, 0x6f, - 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x05, 0x48, 0x02, 0x52, 0x0d, - 0x6f, 0x70, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x69, 0x65, 0x6c, - 0x64, 0x88, 0x01, 0x01, 0x12, 0x62, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x5f, - 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0d, - 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, - 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, - 0x74, 0x65, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x4d, - 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, 0x65, - 0x73, 0x65, 0x6e, 0x63, 0x65, 0x2e, 0x53, 0x75, 0x62, 0x45, 0x6e, 0x75, - 0x6d, 0x48, 0x03, 0x52, 0x0c, 0x6f, 0x70, 0x74, 0x45, 0x6e, 0x75, 0x6d, - 0x46, 0x69, 0x65, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x54, 0x0a, 0x11, - 0x6f, 0x70, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, - 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, - 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, - 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, - 0x48, 0x04, 0x52, 0x0f, 0x6f, 0x70, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, - 0x67, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x28, - 0x0a, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, 0x73, 0x74, 0x72, - 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x15, 0x20, 0x03, 0x28, 0x09, - 0x52, 0x0e, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x53, 0x74, 0x72, 0x46, - 0x69, 0x65, 0x6c, 0x64, 0x12, 0x2c, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x65, - 0x61, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x18, 0x16, 0x20, 0x03, 0x28, 0x05, 0x52, 0x10, 0x72, 0x65, - 0x70, 0x65, 0x61, 0x74, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x69, 0x65, - 0x6c, 0x64, 0x12, 0x63, 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, - 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, - 0x17, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x73, 0x77, 0x69, 0x66, - 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, - 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x33, - 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, - 0x65, 0x73, 0x65, 0x6e, 0x63, 0x65, 0x2e, 0x53, 0x75, 0x62, 0x45, 0x6e, - 0x75, 0x6d, 0x52, 0x0f, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x45, 0x6e, - 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x55, 0x0a, 0x14, 0x72, - 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, - 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x18, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, - 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, - 0x74, 0x2e, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x28, 0x0a, 0x0f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x73, 0x74, 0x72, 0x5f, @@ -1400,58 +1238,221 @@ let fileDescriptorSetBytes: [UInt8] = [ 0x66, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x20, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x0f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x69, 0x65, - 0x6c, 0x64, 0x12, 0x63, 0x0a, 0x10, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, + 0x6c, 0x64, 0x12, 0x4f, 0x0a, 0x10, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x21, - 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, + 0x20, 0x01, 0x28, 0x0e, 0x32, 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, - 0x74, 0x65, 0x73, 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x4d, - 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, 0x65, - 0x73, 0x65, 0x6e, 0x63, 0x65, 0x2e, 0x53, 0x75, 0x62, 0x45, 0x6e, 0x75, - 0x6d, 0x48, 0x00, 0x52, 0x0e, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x45, 0x6e, - 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x55, 0x0a, 0x13, 0x6f, - 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, - 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x22, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x23, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, + 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, + 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x48, 0x00, 0x52, 0x0e, 0x6f, 0x6e, 0x65, + 0x6f, 0x66, 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, + 0x58, 0x0a, 0x13, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x6d, 0x65, 0x73, + 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x22, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, + 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, + 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, + 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x11, + 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, + 0x46, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x03, 0x0a, 0x01, 0x6f, 0x22, 0x5e, + 0x0a, 0x19, 0x4d, 0x73, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, + 0x6f, 0x6e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x4f, 0x72, 0x64, 0x65, 0x72, + 0x69, 0x6e, 0x67, 0x2a, 0x04, 0x08, 0x01, 0x10, 0x02, 0x2a, 0x04, 0x08, + 0x03, 0x10, 0x04, 0x2a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x2a, 0x04, 0x08, + 0x04, 0x10, 0x05, 0x2a, 0x04, 0x08, 0x07, 0x10, 0x08, 0x2a, 0x04, 0x08, + 0x09, 0x10, 0x0a, 0x2a, 0x04, 0x08, 0x64, 0x10, 0x6f, 0x2a, 0x05, 0x08, + 0x7e, 0x10, 0x83, 0x01, 0x2a, 0x04, 0x08, 0x6f, 0x10, 0x79, 0x4a, 0x04, + 0x08, 0x08, 0x10, 0x09, 0x4a, 0x04, 0x08, 0x79, 0x10, 0x7e, 0x22, 0xd5, + 0x01, 0x0a, 0x23, 0x4d, 0x73, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, + 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x4f, 0x72, 0x64, 0x65, + 0x72, 0x69, 0x6e, 0x67, 0x57, 0x69, 0x74, 0x68, 0x46, 0x69, 0x65, 0x6c, + 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x36, + 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, + 0x64, 0x36, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, + 0x32, 0x34, 0x18, 0x7c, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x31, 0x32, 0x34, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x31, 0x32, 0x35, 0x18, 0x7d, 0x20, 0x01, 0x28, 0x05, + 0x52, 0x08, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x32, 0x35, 0x12, 0x1b, + 0x0a, 0x08, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x30, 0x30, 0x18, 0xc8, + 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x08, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x32, 0x30, 0x30, 0x2a, 0x04, 0x08, 0x01, 0x10, 0x02, 0x2a, 0x04, 0x08, + 0x03, 0x10, 0x04, 0x2a, 0x04, 0x08, 0x02, 0x10, 0x03, 0x2a, 0x04, 0x08, + 0x04, 0x10, 0x05, 0x2a, 0x04, 0x08, 0x07, 0x10, 0x08, 0x2a, 0x04, 0x08, + 0x09, 0x10, 0x0a, 0x2a, 0x04, 0x08, 0x64, 0x10, 0x6f, 0x2a, 0x05, 0x08, + 0x7e, 0x10, 0x83, 0x01, 0x2a, 0x04, 0x08, 0x6f, 0x10, 0x79, 0x4a, 0x04, + 0x08, 0x08, 0x10, 0x09, 0x4a, 0x04, 0x08, 0x79, 0x10, 0x7c, 0x22, 0xcc, + 0x01, 0x0a, 0x22, 0x4d, 0x73, 0x67, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, + 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x4f, 0x72, 0x64, 0x65, + 0x72, 0x69, 0x6e, 0x67, 0x4e, 0x6f, 0x4d, 0x65, 0x72, 0x67, 0x69, 0x6e, + 0x67, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x31, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x32, 0x12, 0x16, 0x0a, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x36, 0x18, + 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x36, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x31, 0x33, + 0x18, 0x0d, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x66, 0x69, 0x65, 0x6c, + 0x64, 0x31, 0x33, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x69, 0x65, 0x6c, 0x64, + 0x31, 0x35, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x31, 0x35, 0x12, 0x18, 0x0a, 0x07, 0x66, 0x69, 0x65, + 0x6c, 0x64, 0x32, 0x31, 0x18, 0x15, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, + 0x66, 0x69, 0x65, 0x6c, 0x64, 0x32, 0x31, 0x2a, 0x04, 0x08, 0x03, 0x10, + 0x06, 0x2a, 0x04, 0x08, 0x07, 0x10, 0x0d, 0x2a, 0x04, 0x08, 0x10, 0x10, + 0x15, 0x2a, 0x3c, 0x0a, 0x0c, 0x54, 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, + 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x0e, 0x0a, 0x0a, 0x56, 0x41, 0x4c, + 0x55, 0x45, 0x5f, 0x5a, 0x45, 0x52, 0x4f, 0x10, 0x00, 0x12, 0x0d, 0x0a, + 0x09, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x4f, 0x4e, 0x45, 0x10, 0x01, + 0x12, 0x0d, 0x0a, 0x09, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x54, 0x57, + 0x4f, 0x10, 0x02, 0x32, 0xb1, 0x01, 0x0a, 0x0b, 0x53, 0x6f, 0x6d, 0x65, + 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x4a, 0x0a, 0x03, 0x46, + 0x6f, 0x6f, 0x12, 0x20, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x65, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, + 0x1a, 0x21, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x63, 0x6f, 0x6d, 0x70, 0x69, + 0x6c, 0x65, 0x72, 0x2e, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, + 0x56, 0x0a, 0x03, 0x42, 0x61, 0x72, 0x12, 0x26, 0x2e, 0x73, 0x77, 0x69, + 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, + 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, 0x6f, 0x70, 0x4c, 0x65, + 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x1a, 0x27, + 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, + 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x54, + 0x6f, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x32, 0x3a, 0x38, 0x0a, 0x07, 0x65, 0x78, 0x74, 0x5f, 0x73, + 0x74, 0x72, 0x12, 0x1d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x46, 0x69, 0x65, + 0x6c, 0x64, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x90, 0xbf, + 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x78, 0x74, 0x53, 0x74, + 0x72, 0x42, 0x06, 0xba, 0x02, 0x03, 0x53, 0x44, 0x54, 0x0a, 0xae, 0x0a, + 0x0a, 0x20, 0x70, 0x6c, 0x75, 0x67, 0x69, 0x6e, 0x6c, 0x69, 0x62, 0x5f, + 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, + 0x65, 0x73, 0x74, 0x32, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x15, + 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x22, 0xc4, 0x09, + 0x0a, 0x18, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x4d, 0x65, 0x73, 0x73, + 0x61, 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, 0x65, 0x73, 0x65, 0x6e, + 0x63, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x74, 0x72, 0x5f, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, + 0x74, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x69, + 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x05, 0x52, 0x0a, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x46, + 0x69, 0x65, 0x6c, 0x64, 0x12, 0x56, 0x0a, 0x0a, 0x65, 0x6e, 0x75, 0x6d, + 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, + 0x32, 0x37, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, - 0x2e, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, - 0x65, 0x48, 0x00, 0x52, 0x11, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4d, 0x65, - 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x22, 0x3c, - 0x0a, 0x07, 0x53, 0x75, 0x62, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x0a, - 0x0b, 0x53, 0x55, 0x42, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x30, - 0x10, 0x00, 0x12, 0x0f, 0x0a, 0x0b, 0x53, 0x55, 0x42, 0x5f, 0x56, 0x41, - 0x4c, 0x55, 0x45, 0x5f, 0x31, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x53, - 0x55, 0x42, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x32, 0x10, 0x02, - 0x42, 0x03, 0x0a, 0x01, 0x6f, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x6f, 0x70, - 0x74, 0x5f, 0x73, 0x74, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x42, - 0x12, 0x0a, 0x10, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, - 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x11, 0x0a, 0x0f, 0x5f, - 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x6d, - 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, - 0x22, 0x24, 0x0a, 0x0c, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4d, 0x65, 0x73, - 0x73, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x66, 0x69, 0x65, - 0x6c, 0x64, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x0a, 0xf7, - 0x01, 0x0a, 0x24, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x62, 0x75, 0x66, 0x5f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, - 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x12, 0x18, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x67, 0x65, 0x6e, 0x5f, - 0x73, 0x77, 0x69, 0x66, 0x74, 0x22, 0xac, 0x01, 0x0a, 0x0e, 0x4d, 0x6f, - 0x64, 0x75, 0x6c, 0x65, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, - 0x12, 0x48, 0x0a, 0x07, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, - 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x73, 0x77, 0x69, 0x66, - 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x67, - 0x65, 0x6e, 0x5f, 0x73, 0x77, 0x69, 0x66, 0x74, 0x2e, 0x4d, 0x6f, 0x64, - 0x75, 0x6c, 0x65, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x2e, - 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x6d, 0x61, 0x70, 0x70, 0x69, - 0x6e, 0x67, 0x1a, 0x50, 0x0a, 0x05, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, - 0x1f, 0x0a, 0x0b, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x6e, 0x61, - 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6d, 0x6f, - 0x64, 0x75, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0f, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x70, - 0x61, 0x74, 0x68, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, - 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33 + 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x63, + 0x65, 0x2e, 0x53, 0x75, 0x62, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x09, 0x65, + 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x48, 0x0a, 0x0d, + 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, + 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x73, 0x77, + 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, + 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x74, 0x68, 0x65, + 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x0c, 0x6d, 0x65, + 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x27, + 0x0a, 0x0d, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x5f, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, + 0x0b, 0x6f, 0x70, 0x74, 0x53, 0x74, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, + 0x88, 0x01, 0x01, 0x12, 0x2b, 0x0a, 0x0f, 0x6f, 0x70, 0x74, 0x5f, 0x69, + 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0c, + 0x20, 0x01, 0x28, 0x05, 0x48, 0x02, 0x52, 0x0d, 0x6f, 0x70, 0x74, 0x49, + 0x6e, 0x74, 0x33, 0x32, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x88, 0x01, 0x01, + 0x12, 0x62, 0x0a, 0x0e, 0x6f, 0x70, 0x74, 0x5f, 0x65, 0x6e, 0x75, 0x6d, + 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0e, + 0x32, 0x37, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, + 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x63, + 0x65, 0x2e, 0x53, 0x75, 0x62, 0x45, 0x6e, 0x75, 0x6d, 0x48, 0x03, 0x52, + 0x0c, 0x6f, 0x70, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, 0x65, 0x6c, + 0x64, 0x88, 0x01, 0x01, 0x12, 0x54, 0x0a, 0x11, 0x6f, 0x70, 0x74, 0x5f, + 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, + 0x64, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x73, 0x77, + 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, + 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x74, 0x68, 0x65, + 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x04, 0x52, 0x0f, + 0x6f, 0x70, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x69, + 0x65, 0x6c, 0x64, 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x10, 0x72, 0x65, + 0x70, 0x65, 0x61, 0x74, 0x5f, 0x73, 0x74, 0x72, 0x5f, 0x66, 0x69, 0x65, + 0x6c, 0x64, 0x18, 0x15, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, + 0x70, 0x65, 0x61, 0x74, 0x53, 0x74, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, + 0x12, 0x2c, 0x0a, 0x12, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, 0x69, + 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x16, + 0x20, 0x03, 0x28, 0x05, 0x52, 0x10, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, + 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x63, + 0x0a, 0x11, 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x5f, 0x65, 0x6e, 0x75, + 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x17, 0x20, 0x03, 0x28, + 0x0e, 0x32, 0x37, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, + 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, + 0x74, 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x4d, 0x65, 0x73, 0x73, + 0x61, 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, 0x65, 0x73, 0x65, 0x6e, + 0x63, 0x65, 0x2e, 0x53, 0x75, 0x62, 0x45, 0x6e, 0x75, 0x6d, 0x52, 0x0f, + 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, + 0x65, 0x6c, 0x64, 0x12, 0x55, 0x0a, 0x14, 0x72, 0x65, 0x70, 0x65, 0x61, + 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x18, 0x18, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x23, 0x2e, + 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x74, + 0x68, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x12, + 0x72, 0x65, 0x70, 0x65, 0x61, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, + 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x28, 0x0a, 0x0f, 0x6f, 0x6e, + 0x65, 0x6f, 0x66, 0x5f, 0x73, 0x74, 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, + 0x64, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0d, 0x6f, + 0x6e, 0x65, 0x6f, 0x66, 0x53, 0x74, 0x72, 0x46, 0x69, 0x65, 0x6c, 0x64, + 0x12, 0x2c, 0x0a, 0x11, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x69, 0x6e, + 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x20, 0x20, + 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x0f, 0x6f, 0x6e, 0x65, 0x6f, 0x66, + 0x49, 0x6e, 0x74, 0x33, 0x32, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x63, + 0x0a, 0x10, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x5f, 0x65, 0x6e, 0x75, 0x6d, + 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x21, 0x20, 0x01, 0x28, 0x0e, + 0x32, 0x37, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, + 0x2e, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x4d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x46, 0x6f, 0x72, 0x50, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x63, + 0x65, 0x2e, 0x53, 0x75, 0x62, 0x45, 0x6e, 0x75, 0x6d, 0x48, 0x00, 0x52, + 0x0e, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x45, 0x6e, 0x75, 0x6d, 0x46, 0x69, + 0x65, 0x6c, 0x64, 0x12, 0x55, 0x0a, 0x13, 0x6f, 0x6e, 0x65, 0x6f, 0x66, + 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, + 0x6c, 0x64, 0x18, 0x22, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x73, + 0x77, 0x69, 0x66, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x6f, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x2e, 0x4f, 0x74, 0x68, + 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, + 0x11, 0x6f, 0x6e, 0x65, 0x6f, 0x66, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, + 0x65, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x22, 0x3c, 0x0a, 0x07, 0x53, 0x75, + 0x62, 0x45, 0x6e, 0x75, 0x6d, 0x12, 0x0f, 0x0a, 0x0b, 0x53, 0x55, 0x42, + 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x30, 0x10, 0x00, 0x12, 0x0f, + 0x0a, 0x0b, 0x53, 0x55, 0x42, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, + 0x31, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x53, 0x55, 0x42, 0x5f, 0x56, + 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x32, 0x10, 0x02, 0x42, 0x03, 0x0a, 0x01, + 0x6f, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x73, 0x74, + 0x72, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x12, 0x0a, 0x10, 0x5f, + 0x6f, 0x70, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x33, 0x32, 0x5f, 0x66, 0x69, + 0x65, 0x6c, 0x64, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x6f, 0x70, 0x74, 0x5f, + 0x65, 0x6e, 0x75, 0x6d, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x42, 0x14, + 0x0a, 0x12, 0x5f, 0x6f, 0x70, 0x74, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, + 0x67, 0x65, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x22, 0x24, 0x0a, 0x0c, + 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, + 0x12, 0x14, 0x0a, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x05, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x62, 0x06, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, 0x0a, 0xf7, 0x01, 0x0a, 0x24, 0x73, + 0x77, 0x69, 0x66, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, + 0x66, 0x5f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x6d, 0x61, 0x70, + 0x70, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, + 0x18, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x62, 0x75, 0x66, 0x2e, 0x67, 0x65, 0x6e, 0x5f, 0x73, 0x77, 0x69, 0x66, + 0x74, 0x22, 0xac, 0x01, 0x0a, 0x0e, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, + 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x48, 0x0a, 0x07, + 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x03, 0x28, + 0x0b, 0x32, 0x2e, 0x2e, 0x73, 0x77, 0x69, 0x66, 0x74, 0x5f, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x67, 0x65, 0x6e, 0x5f, 0x73, + 0x77, 0x69, 0x66, 0x74, 0x2e, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x4d, + 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x45, 0x6e, 0x74, 0x72, + 0x79, 0x52, 0x07, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x1a, 0x50, + 0x0a, 0x05, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x6d, + 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, + 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x18, + 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x46, 0x69, 0x6c, 0x65, 0x50, 0x61, 0x74, 0x68, 0x62, 0x06, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x33 ] let fileDescriptorSetData = Data(fileDescriptorSetBytes)