|  | @@ -232,6 +232,8 @@ type Attachment struct {
 | 
											
												
													
														|  |  	Filename        string `protobuf:"bytes,2,opt,name=filename,proto3" json:"filename,omitempty"`
 |  |  	Filename        string `protobuf:"bytes,2,opt,name=filename,proto3" json:"filename,omitempty"`
 | 
											
												
													
														|  |  	ContentType     string `protobuf:"bytes,3,opt,name=content_type,proto3" json:"content_type,omitempty"`
 |  |  	ContentType     string `protobuf:"bytes,3,opt,name=content_type,proto3" json:"content_type,omitempty"`
 | 
											
												
													
														|  |  	ContentEncoding string `protobuf:"bytes,4,opt,name=content_encoding,proto3" json:"content_encoding,omitempty"`
 |  |  	ContentEncoding string `protobuf:"bytes,4,opt,name=content_encoding,proto3" json:"content_encoding,omitempty"`
 | 
											
												
													
														|  | 
 |  | +	Bucket          string `protobuf:"bytes,5,opt,name=bucket,proto3" json:"bucket,omitempty"`
 | 
											
												
													
														|  | 
 |  | +	Key             string `protobuf:"bytes,6,opt,name=key,proto3" json:"key,omitempty"`
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  func (x *Attachment) Reset() {
 |  |  func (x *Attachment) Reset() {
 | 
											
										
											
												
													
														|  | @@ -294,6 +296,20 @@ func (x *Attachment) GetContentEncoding() string {
 | 
											
												
													
														|  |  	return ""
 |  |  	return ""
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | 
 |  | +func (x *Attachment) GetBucket() string {
 | 
											
												
													
														|  | 
 |  | +	if x != nil {
 | 
											
												
													
														|  | 
 |  | +		return x.Bucket
 | 
											
												
													
														|  | 
 |  | +	}
 | 
											
												
													
														|  | 
 |  | +	return ""
 | 
											
												
													
														|  | 
 |  | +}
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  | 
 |  | +func (x *Attachment) GetKey() string {
 | 
											
												
													
														|  | 
 |  | +	if x != nil {
 | 
											
												
													
														|  | 
 |  | +		return x.Key
 | 
											
												
													
														|  | 
 |  | +	}
 | 
											
												
													
														|  | 
 |  | +	return ""
 | 
											
												
													
														|  | 
 |  | +}
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  |  type AssistantRequest struct {
 |  |  type AssistantRequest struct {
 | 
											
												
													
														|  |  	state         protoimpl.MessageState
 |  |  	state         protoimpl.MessageState
 | 
											
												
													
														|  |  	sizeCache     protoimpl.SizeCache
 |  |  	sizeCache     protoimpl.SizeCache
 | 
											
										
											
												
													
														|  | @@ -386,9 +402,10 @@ type AssistantCallback struct {
 | 
											
												
													
														|  |  	sizeCache     protoimpl.SizeCache
 |  |  	sizeCache     protoimpl.SizeCache
 | 
											
												
													
														|  |  	unknownFields protoimpl.UnknownFields
 |  |  	unknownFields protoimpl.UnknownFields
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -	To      *EmailAddress `protobuf:"bytes,1,opt,name=to,proto3" json:"to,omitempty"`
 |  | 
 | 
											
												
													
														|  | -	Subject string        `protobuf:"bytes,2,opt,name=subject,proto3" json:"subject,omitempty"`
 |  | 
 | 
											
												
													
														|  | -	Body    string        `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
 |  | 
 | 
											
												
													
														|  | 
 |  | +	To          *EmailAddress `protobuf:"bytes,1,opt,name=to,proto3" json:"to,omitempty"`
 | 
											
												
													
														|  | 
 |  | +	Subject     string        `protobuf:"bytes,2,opt,name=subject,proto3" json:"subject,omitempty"`
 | 
											
												
													
														|  | 
 |  | +	Body        string        `protobuf:"bytes,3,opt,name=body,proto3" json:"body,omitempty"`
 | 
											
												
													
														|  | 
 |  | +	Attachments []*Attachment `protobuf:"bytes,10,rep,name=attachments,proto3" json:"attachments,omitempty"`
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  func (x *AssistantCallback) Reset() {
 |  |  func (x *AssistantCallback) Reset() {
 | 
											
										
											
												
													
														|  | @@ -444,6 +461,13 @@ func (x *AssistantCallback) GetBody() string {
 | 
											
												
													
														|  |  	return ""
 |  |  	return ""
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | 
 |  | +func (x *AssistantCallback) GetAttachments() []*Attachment {
 | 
											
												
													
														|  | 
 |  | +	if x != nil {
 | 
											
												
													
														|  | 
 |  | +		return x.Attachments
 | 
											
												
													
														|  | 
 |  | +	}
 | 
											
												
													
														|  | 
 |  | +	return nil
 | 
											
												
													
														|  | 
 |  | +}
 | 
											
												
													
														|  | 
 |  | +
 | 
											
												
													
														|  |  type Message struct {
 |  |  type Message struct {
 | 
											
												
													
														|  |  	state         protoimpl.MessageState
 |  |  	state         protoimpl.MessageState
 | 
											
												
													
														|  |  	sizeCache     protoimpl.SizeCache
 |  |  	sizeCache     protoimpl.SizeCache
 | 
											
										
											
												
													
														|  | @@ -459,7 +483,7 @@ type Message struct {
 | 
											
												
													
														|  |  	Flags       []byte                 `protobuf:"bytes,8,opt,name=flags,proto3" json:"flags,omitempty"`
 |  |  	Flags       []byte                 `protobuf:"bytes,8,opt,name=flags,proto3" json:"flags,omitempty"`
 | 
											
												
													
														|  |  	Headers     map[string]string      `protobuf:"bytes,10,rep,name=headers,proto3" json:"headers,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 |  |  	Headers     map[string]string      `protobuf:"bytes,10,rep,name=headers,proto3" json:"headers,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 | 
											
												
													
														|  |  	Meta        map[string]string      `protobuf:"bytes,11,rep,name=meta,proto3" json:"meta,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 |  |  	Meta        map[string]string      `protobuf:"bytes,11,rep,name=meta,proto3" json:"meta,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
 | 
											
												
													
														|  | -	Attachments []*Message_Attachment  `protobuf:"bytes,12,rep,name=attachments,proto3" json:"attachments,omitempty"`
 |  | 
 | 
											
												
													
														|  | 
 |  | +	Attachments []*Attachment          `protobuf:"bytes,12,rep,name=attachments,proto3" json:"attachments,omitempty"`
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  func (x *Message) Reset() {
 |  |  func (x *Message) Reset() {
 | 
											
										
											
												
													
														|  | @@ -564,7 +588,7 @@ func (x *Message) GetMeta() map[string]string {
 | 
											
												
													
														|  |  	return nil
 |  |  	return nil
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -func (x *Message) GetAttachments() []*Message_Attachment {
 |  | 
 | 
											
												
													
														|  | 
 |  | +func (x *Message) GetAttachments() []*Attachment {
 | 
											
												
													
														|  |  	if x != nil {
 |  |  	if x != nil {
 | 
											
												
													
														|  |  		return x.Attachments
 |  |  		return x.Attachments
 | 
											
												
													
														|  |  	}
 |  |  	}
 | 
											
										
											
												
													
														|  | @@ -690,93 +714,6 @@ func (x *Ticket) GetTags() []string {
 | 
											
												
													
														|  |  	return nil
 |  |  	return nil
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  | -type Message_Attachment struct {
 |  | 
 | 
											
												
													
														|  | -	state         protoimpl.MessageState
 |  | 
 | 
											
												
													
														|  | -	sizeCache     protoimpl.SizeCache
 |  | 
 | 
											
												
													
														|  | -	unknownFields protoimpl.UnknownFields
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -	Id              string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
 |  | 
 | 
											
												
													
														|  | -	Filename        string `protobuf:"bytes,2,opt,name=filename,proto3" json:"filename,omitempty"`
 |  | 
 | 
											
												
													
														|  | -	ContentType     string `protobuf:"bytes,3,opt,name=content_type,proto3" json:"content_type,omitempty"`
 |  | 
 | 
											
												
													
														|  | -	ContentEncoding string `protobuf:"bytes,4,opt,name=content_encoding,proto3" json:"content_encoding,omitempty"`
 |  | 
 | 
											
												
													
														|  | -	Bucket          string `protobuf:"bytes,5,opt,name=bucket,proto3" json:"bucket,omitempty"`
 |  | 
 | 
											
												
													
														|  | -	Key             string `protobuf:"bytes,6,opt,name=key,proto3" json:"key,omitempty"`
 |  | 
 | 
											
												
													
														|  | -}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -func (x *Message_Attachment) Reset() {
 |  | 
 | 
											
												
													
														|  | -	*x = Message_Attachment{}
 |  | 
 | 
											
												
													
														|  | -	if protoimpl.UnsafeEnabled {
 |  | 
 | 
											
												
													
														|  | -		mi := &file_ticket_proto_msgTypes[6]
 |  | 
 | 
											
												
													
														|  | -		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 |  | 
 | 
											
												
													
														|  | -		ms.StoreMessageInfo(mi)
 |  | 
 | 
											
												
													
														|  | -	}
 |  | 
 | 
											
												
													
														|  | -}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -func (x *Message_Attachment) String() string {
 |  | 
 | 
											
												
													
														|  | -	return protoimpl.X.MessageStringOf(x)
 |  | 
 | 
											
												
													
														|  | -}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -func (*Message_Attachment) ProtoMessage() {}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -func (x *Message_Attachment) ProtoReflect() protoreflect.Message {
 |  | 
 | 
											
												
													
														|  | -	mi := &file_ticket_proto_msgTypes[6]
 |  | 
 | 
											
												
													
														|  | -	if protoimpl.UnsafeEnabled && x != nil {
 |  | 
 | 
											
												
													
														|  | -		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 |  | 
 | 
											
												
													
														|  | -		if ms.LoadMessageInfo() == nil {
 |  | 
 | 
											
												
													
														|  | -			ms.StoreMessageInfo(mi)
 |  | 
 | 
											
												
													
														|  | -		}
 |  | 
 | 
											
												
													
														|  | -		return ms
 |  | 
 | 
											
												
													
														|  | -	}
 |  | 
 | 
											
												
													
														|  | -	return mi.MessageOf(x)
 |  | 
 | 
											
												
													
														|  | -}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -// Deprecated: Use Message_Attachment.ProtoReflect.Descriptor instead.
 |  | 
 | 
											
												
													
														|  | -func (*Message_Attachment) Descriptor() ([]byte, []int) {
 |  | 
 | 
											
												
													
														|  | -	return file_ticket_proto_rawDescGZIP(), []int{4, 0}
 |  | 
 | 
											
												
													
														|  | -}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -func (x *Message_Attachment) GetId() string {
 |  | 
 | 
											
												
													
														|  | -	if x != nil {
 |  | 
 | 
											
												
													
														|  | -		return x.Id
 |  | 
 | 
											
												
													
														|  | -	}
 |  | 
 | 
											
												
													
														|  | -	return ""
 |  | 
 | 
											
												
													
														|  | -}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -func (x *Message_Attachment) GetFilename() string {
 |  | 
 | 
											
												
													
														|  | -	if x != nil {
 |  | 
 | 
											
												
													
														|  | -		return x.Filename
 |  | 
 | 
											
												
													
														|  | -	}
 |  | 
 | 
											
												
													
														|  | -	return ""
 |  | 
 | 
											
												
													
														|  | -}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -func (x *Message_Attachment) GetContentType() string {
 |  | 
 | 
											
												
													
														|  | -	if x != nil {
 |  | 
 | 
											
												
													
														|  | -		return x.ContentType
 |  | 
 | 
											
												
													
														|  | -	}
 |  | 
 | 
											
												
													
														|  | -	return ""
 |  | 
 | 
											
												
													
														|  | -}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -func (x *Message_Attachment) GetContentEncoding() string {
 |  | 
 | 
											
												
													
														|  | -	if x != nil {
 |  | 
 | 
											
												
													
														|  | -		return x.ContentEncoding
 |  | 
 | 
											
												
													
														|  | -	}
 |  | 
 | 
											
												
													
														|  | -	return ""
 |  | 
 | 
											
												
													
														|  | -}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -func (x *Message_Attachment) GetBucket() string {
 |  | 
 | 
											
												
													
														|  | -	if x != nil {
 |  | 
 | 
											
												
													
														|  | -		return x.Bucket
 |  | 
 | 
											
												
													
														|  | -	}
 |  | 
 | 
											
												
													
														|  | -	return ""
 |  | 
 | 
											
												
													
														|  | -}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  | -func (x *Message_Attachment) GetKey() string {
 |  | 
 | 
											
												
													
														|  | -	if x != nil {
 |  | 
 | 
											
												
													
														|  | -		return x.Key
 |  | 
 | 
											
												
													
														|  | -	}
 |  | 
 | 
											
												
													
														|  | -	return ""
 |  | 
 | 
											
												
													
														|  | -}
 |  | 
 | 
											
												
													
														|  | -
 |  | 
 | 
											
												
													
														|  |  var File_ticket_proto protoreflect.FileDescriptor
 |  |  var File_ticket_proto protoreflect.FileDescriptor
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  var file_ticket_proto_rawDesc = []byte{
 |  |  var file_ticket_proto_rawDesc = []byte{
 | 
											
										
											
												
													
														|  | @@ -787,7 +724,7 @@ var file_ticket_proto_rawDesc = []byte{
 | 
											
												
													
														|  |  	0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65,
 |  |  	0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65,
 | 
											
												
													
														|  |  	0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
 |  |  	0x73, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73,
 | 
											
												
													
														|  |  	0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
 |  |  	0x73, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
 | 
											
												
													
														|  | -	0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x88, 0x01, 0x0a, 0x0a, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68,
 |  | 
 | 
											
												
													
														|  | 
 |  | +	0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xb2, 0x01, 0x0a, 0x0a, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68,
 | 
											
												
													
														|  |  	0x6d, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
 |  |  	0x6d, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
 | 
											
												
													
														|  |  	0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65,
 |  |  	0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65,
 | 
											
												
													
														|  |  	0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65,
 |  |  	0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69, 0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65,
 | 
											
										
											
												
													
														|  | @@ -796,114 +733,108 @@ var file_ticket_proto_rawDesc = []byte{
 | 
											
												
													
														|  |  	0x74, 0x79, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f,
 |  |  	0x74, 0x79, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f,
 | 
											
												
													
														|  |  	0x65, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10,
 |  |  	0x65, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10,
 | 
											
												
													
														|  |  	0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67,
 |  |  	0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67,
 | 
											
												
													
														|  | -	0x22, 0xe0, 0x01, 0x0a, 0x10, 0x41, 0x73, 0x73, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x65,
 |  | 
 | 
											
												
													
														|  | -	0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x74, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28,
 |  | 
 | 
											
												
													
														|  | -	0x09, 0x52, 0x02, 0x74, 0x6f, 0x12, 0x28, 0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x18, 0x02, 0x20,
 |  | 
 | 
											
												
													
														|  | -	0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x45, 0x6d, 0x61,
 |  | 
 | 
											
												
													
														|  | -	0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x12,
 |  | 
 | 
											
												
													
														|  | -	0x18, 0x0a, 0x07, 0x73, 0x75, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
 |  | 
 | 
											
												
													
														|  | -	0x52, 0x07, 0x73, 0x75, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x2e, 0x0a, 0x04, 0x64, 0x61, 0x74,
 |  | 
 | 
											
												
													
														|  | -	0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
 |  | 
 | 
											
												
													
														|  | -	0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74,
 |  | 
 | 
											
												
													
														|  | -	0x61, 0x6d, 0x70, 0x52, 0x04, 0x64, 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x62, 0x6f, 0x64,
 |  | 
 | 
											
												
													
														|  | -	0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x12, 0x34, 0x0a,
 |  | 
 | 
											
												
													
														|  | -	0x0b, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x0a, 0x20, 0x03,
 |  | 
 | 
											
												
													
														|  | -	0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x41, 0x74, 0x74, 0x61,
 |  | 
 | 
											
												
													
														|  | -	0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0b, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65,
 |  | 
 | 
											
												
													
														|  | -	0x6e, 0x74, 0x73, 0x22, 0x67, 0x0a, 0x11, 0x41, 0x73, 0x73, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x74,
 |  | 
 | 
											
												
													
														|  | -	0x43, 0x61, 0x6c, 0x6c, 0x62, 0x61, 0x63, 0x6b, 0x12, 0x24, 0x0a, 0x02, 0x74, 0x6f, 0x18, 0x01,
 |  | 
 | 
											
												
													
														|  | 
 |  | +	0x12, 0x16, 0x0a, 0x06, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
 | 
											
												
													
														|  | 
 |  | +	0x52, 0x06, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18,
 | 
											
												
													
														|  | 
 |  | +	0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0xe0, 0x01, 0x0a, 0x10, 0x41,
 | 
											
												
													
														|  | 
 |  | +	0x73, 0x73, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
 | 
											
												
													
														|  | 
 |  | +	0x0e, 0x0a, 0x02, 0x74, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x74, 0x6f, 0x12,
 | 
											
												
													
														|  | 
 |  | +	0x28, 0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e,
 | 
											
												
													
														|  | 
 |  | +	0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x73, 0x73, 0x52, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x62,
 | 
											
												
													
														|  | 
 |  | +	0x6a, 0x65, 0x63, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x62, 0x6a,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x63, 0x74, 0x12, 0x2e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
 | 
											
												
													
														|  | 
 |  | +	0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
 | 
											
												
													
														|  | 
 |  | +	0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x04, 0x64,
 | 
											
												
													
														|  | 
 |  | +	0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28,
 | 
											
												
													
														|  | 
 |  | +	0x09, 0x52, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x12, 0x34, 0x0a, 0x0b, 0x61, 0x74, 0x74, 0x61, 0x63,
 | 
											
												
													
														|  | 
 |  | +	0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74,
 | 
											
												
													
														|  | 
 |  | +	0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74,
 | 
											
												
													
														|  | 
 |  | +	0x52, 0x0b, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x9d, 0x01,
 | 
											
												
													
														|  | 
 |  | +	0x0a, 0x11, 0x41, 0x73, 0x73, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x62,
 | 
											
												
													
														|  | 
 |  | +	0x61, 0x63, 0x6b, 0x12, 0x24, 0x0a, 0x02, 0x74, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32,
 | 
											
												
													
														|  | 
 |  | +	0x14, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41, 0x64,
 | 
											
												
													
														|  | 
 |  | +	0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x02, 0x74, 0x6f, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x62,
 | 
											
												
													
														|  | 
 |  | +	0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x62, 0x6a,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x63, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28,
 | 
											
												
													
														|  | 
 |  | +	0x09, 0x52, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x12, 0x34, 0x0a, 0x0b, 0x61, 0x74, 0x74, 0x61, 0x63,
 | 
											
												
													
														|  | 
 |  | +	0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74,
 | 
											
												
													
														|  | 
 |  | +	0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74,
 | 
											
												
													
														|  | 
 |  | +	0x52, 0x0b, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x22, 0xcf, 0x04,
 | 
											
												
													
														|  | 
 |  | +	0x0a, 0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x6d, 0x65, 0x73,
 | 
											
												
													
														|  | 
 |  | +	0x73, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6d,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x63,
 | 
											
												
													
														|  | 
 |  | +	0x6b, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74, 0x69,
 | 
											
												
													
														|  | 
 |  | +	0x63, 0x6b, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18,
 | 
											
												
													
														|  | 
 |  | +	0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x74,
 | 
											
												
													
														|  | 
 |  | +	0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x69, 0x63, 0x6b,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52,
 | 
											
												
													
														|  | 
 |  | +	0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74,
 | 
											
												
													
														|  | 
 |  | +	0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12,
 | 
											
												
													
														|  | 
 |  | +	0x2e, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e,
 | 
											
												
													
														|  | 
 |  | +	0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
 | 
											
												
													
														|  | 
 |  | +	0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x04, 0x64, 0x61, 0x74, 0x65, 0x12,
 | 
											
												
													
														|  | 
 |  | +	0x10, 0x0a, 0x03, 0x72, 0x61, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x72, 0x61,
 | 
											
												
													
														|  | 
 |  | +	0x77, 0x12, 0x14, 0x0a, 0x05, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0c,
 | 
											
												
													
														|  | 
 |  | +	0x52, 0x05, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x12, 0x36, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65,
 | 
											
												
													
														|  | 
 |  | +	0x72, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65,
 | 
											
												
													
														|  | 
 |  | +	0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72,
 | 
											
												
													
														|  | 
 |  | +	0x73, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x12,
 | 
											
												
													
														|  | 
 |  | +	0x2d, 0x0a, 0x04, 0x6d, 0x65, 0x74, 0x61, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e,
 | 
											
												
													
														|  | 
 |  | +	0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x6d, 0x65, 0x74, 0x61, 0x12, 0x34,
 | 
											
												
													
														|  | 
 |  | +	0x0a, 0x0b, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x0c, 0x20,
 | 
											
												
													
														|  | 
 |  | +	0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x41, 0x74, 0x74,
 | 
											
												
													
														|  | 
 |  | +	0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0b, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x6e, 0x74, 0x73, 0x1a, 0x3a, 0x0a, 0x0c, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x45,
 | 
											
												
													
														|  | 
 |  | +	0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
 | 
											
												
													
														|  | 
 |  | +	0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18,
 | 
											
												
													
														|  | 
 |  | +	0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01,
 | 
											
												
													
														|  | 
 |  | +	0x1a, 0x37, 0x0a, 0x09, 0x4d, 0x65, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a,
 | 
											
												
													
														|  | 
 |  | +	0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
 | 
											
												
													
														|  | 
 |  | +	0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
 | 
											
												
													
														|  | 
 |  | +	0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x44, 0x0a, 0x04, 0x54, 0x79, 0x70,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x12, 0x0f, 0x0a, 0x07, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x10, 0x00, 0x1a, 0x02,
 | 
											
												
													
														|  | 
 |  | +	0x08, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x54, 0x45, 0x58, 0x54, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05,
 | 
											
												
													
														|  | 
 |  | +	0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x02, 0x12, 0x16, 0x0a, 0x12, 0x41, 0x53, 0x53, 0x49, 0x53,
 | 
											
												
													
														|  | 
 |  | +	0x54, 0x41, 0x4e, 0x54, 0x5f, 0x43, 0x41, 0x4c, 0x4c, 0x42, 0x41, 0x43, 0x4b, 0x10, 0x03, 0x22,
 | 
											
												
													
														|  | 
 |  | +	0xb4, 0x03, 0x0a, 0x06, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69,
 | 
											
												
													
														|  | 
 |  | +	0x63, 0x6b, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74,
 | 
											
												
													
														|  | 
 |  | +	0x69, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x68, 0x72, 0x65,
 | 
											
												
													
														|  | 
 |  | +	0x61, 0x64, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74, 0x68, 0x72,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x61, 0x64, 0x5f, 0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x74, 0x6f, 0x18, 0x03, 0x20, 0x01,
 | 
											
												
													
														|  | 
 |  | +	0x28, 0x09, 0x52, 0x02, 0x74, 0x6f, 0x12, 0x28, 0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x18, 0x04,
 | 
											
												
													
														|  |  	0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x45, 0x6d,
 |  |  	0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x45, 0x6d,
 | 
											
												
													
														|  | -	0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x02, 0x74, 0x6f, 0x12, 0x18,
 |  | 
 | 
											
												
													
														|  | -	0x0a, 0x07, 0x73, 0x75, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
 |  | 
 | 
											
												
													
														|  | -	0x07, 0x73, 0x75, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x62, 0x6f, 0x64, 0x79,
 |  | 
 | 
											
												
													
														|  | -	0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x62, 0x6f, 0x64, 0x79, 0x22, 0x8c, 0x06, 0x0a,
 |  | 
 | 
											
												
													
														|  | -	0x07, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x6d, 0x65, 0x73, 0x73,
 |  | 
 | 
											
												
													
														|  | -	0x61, 0x67, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6d, 0x65,
 |  | 
 | 
											
												
													
														|  | -	0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x63, 0x6b,
 |  | 
 | 
											
												
													
														|  | -	0x65, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74, 0x69, 0x63,
 |  | 
 | 
											
												
													
														|  | -	0x6b, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x18, 0x03,
 |  | 
 | 
											
												
													
														|  | -	0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x28, 0x0a, 0x04, 0x74, 0x79,
 |  | 
 | 
											
												
													
														|  | -	0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x14, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65,
 |  | 
 | 
											
												
													
														|  | -	0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04,
 |  | 
 | 
											
												
													
														|  | -	0x74, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x18,
 |  | 
 | 
											
												
													
														|  | -	0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x12, 0x2e,
 |  | 
 | 
											
												
													
														|  | -	0x0a, 0x04, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67,
 |  | 
 | 
											
												
													
														|  | -	0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54,
 |  | 
 | 
											
												
													
														|  | -	0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x04, 0x64, 0x61, 0x74, 0x65, 0x12, 0x10,
 |  | 
 | 
											
												
													
														|  | -	0x0a, 0x03, 0x72, 0x61, 0x77, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x03, 0x72, 0x61, 0x77,
 |  | 
 | 
											
												
													
														|  | -	0x12, 0x14, 0x0a, 0x05, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0c, 0x52,
 |  | 
 | 
											
												
													
														|  | -	0x05, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x12, 0x36, 0x0a, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72,
 |  | 
 | 
											
												
													
														|  | -	0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74,
 |  | 
 | 
											
												
													
														|  | -	0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73,
 |  | 
 | 
											
												
													
														|  | -	0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x07, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x12, 0x2d,
 |  | 
 | 
											
												
													
														|  | -	0x0a, 0x04, 0x6d, 0x65, 0x74, 0x61, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x74,
 |  | 
 | 
											
												
													
														|  | -	0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x4d, 0x65,
 |  | 
 | 
											
												
													
														|  | -	0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04, 0x6d, 0x65, 0x74, 0x61, 0x12, 0x3c, 0x0a,
 |  | 
 | 
											
												
													
														|  | -	0x0b, 0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x0c, 0x20, 0x03,
 |  | 
 | 
											
												
													
														|  | -	0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73,
 |  | 
 | 
											
												
													
														|  | -	0x61, 0x67, 0x65, 0x2e, 0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x0b,
 |  | 
 | 
											
												
													
														|  | -	0x61, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x1a, 0xb2, 0x01, 0x0a, 0x0a,
 |  | 
 | 
											
												
													
														|  | -	0x41, 0x74, 0x74, 0x61, 0x63, 0x68, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
 |  | 
 | 
											
												
													
														|  | -	0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x66, 0x69,
 |  | 
 | 
											
												
													
														|  | -	0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x66, 0x69,
 |  | 
 | 
											
												
													
														|  | -	0x6c, 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
 |  | 
 | 
											
												
													
														|  | -	0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x6f,
 |  | 
 | 
											
												
													
														|  | -	0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x63, 0x6f,
 |  | 
 | 
											
												
													
														|  | -	0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x6e, 0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x18, 0x04,
 |  | 
 | 
											
												
													
														|  | -	0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x65, 0x6e,
 |  | 
 | 
											
												
													
														|  | -	0x63, 0x6f, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74,
 |  | 
 | 
											
												
													
														|  | -	0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x62, 0x75, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x10,
 |  | 
 | 
											
												
													
														|  | -	0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79,
 |  | 
 | 
											
												
													
														|  | -	0x1a, 0x3a, 0x0a, 0x0c, 0x48, 0x65, 0x61, 0x64, 0x65, 0x72, 0x73, 0x45, 0x6e, 0x74, 0x72, 0x79,
 |  | 
 | 
											
												
													
														|  | -	0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b,
 |  | 
 | 
											
												
													
														|  | -	0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28,
 |  | 
 | 
											
												
													
														|  | -	0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x1a, 0x37, 0x0a, 0x09,
 |  | 
 | 
											
												
													
														|  | -	0x4d, 0x65, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79,
 |  | 
 | 
											
												
													
														|  | -	0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76,
 |  | 
 | 
											
												
													
														|  | -	0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75,
 |  | 
 | 
											
												
													
														|  | -	0x65, 0x3a, 0x02, 0x38, 0x01, 0x22, 0x44, 0x0a, 0x04, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a,
 |  | 
 | 
											
												
													
														|  | -	0x07, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x10, 0x00, 0x1a, 0x02, 0x08, 0x01, 0x12, 0x08,
 |  | 
 | 
											
												
													
														|  | -	0x0a, 0x04, 0x54, 0x45, 0x58, 0x54, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4d, 0x41, 0x49,
 |  | 
 | 
											
												
													
														|  | -	0x4c, 0x10, 0x02, 0x12, 0x16, 0x0a, 0x12, 0x41, 0x53, 0x53, 0x49, 0x53, 0x54, 0x41, 0x4e, 0x54,
 |  | 
 | 
											
												
													
														|  | -	0x5f, 0x43, 0x41, 0x4c, 0x4c, 0x42, 0x41, 0x43, 0x4b, 0x10, 0x03, 0x22, 0xb4, 0x03, 0x0a, 0x06,
 |  | 
 | 
											
												
													
														|  | -	0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74,
 |  | 
 | 
											
												
													
														|  | -	0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74, 0x69, 0x63, 0x6b, 0x65,
 |  | 
 | 
											
												
													
														|  | -	0x74, 0x5f, 0x69, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x5f, 0x69,
 |  | 
 | 
											
												
													
														|  | -	0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x74, 0x68, 0x72, 0x65, 0x61, 0x64, 0x5f,
 |  | 
 | 
											
												
													
														|  | -	0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x74, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02,
 |  | 
 | 
											
												
													
														|  | -	0x74, 0x6f, 0x12, 0x28, 0x0a, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b,
 |  | 
 | 
											
												
													
														|  | -	0x32, 0x14, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x41,
 |  | 
 | 
											
												
													
														|  | -	0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x04, 0x66, 0x72, 0x6f, 0x6d, 0x12, 0x14, 0x0a, 0x05,
 |  | 
 | 
											
												
													
														|  | -	0x66, 0x6c, 0x61, 0x67, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x05, 0x66, 0x6c, 0x61,
 |  | 
 | 
											
												
													
														|  | -	0x67, 0x73, 0x12, 0x3a, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74,
 |  | 
 | 
											
												
													
														|  | -	0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
 |  | 
 | 
											
												
													
														|  | 
 |  | +	0x61, 0x69, 0x6c, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x04, 0x66, 0x72, 0x6f, 0x6d,
 | 
											
												
													
														|  | 
 |  | +	0x12, 0x14, 0x0a, 0x05, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0c, 0x52,
 | 
											
												
													
														|  | 
 |  | +	0x05, 0x66, 0x6c, 0x61, 0x67, 0x73, 0x12, 0x3a, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
 | 
											
												
													
														|  | 
 |  | +	0x64, 0x5f, 0x61, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f,
 | 
											
												
													
														|  | 
 |  | +	0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f,
 | 
											
												
													
														|  | 
 |  | +	0x61, 0x74, 0x12, 0x3a, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74,
 | 
											
												
													
														|  | 
 |  | +	0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
 | 
											
												
													
														|  |  	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
 |  |  	0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
 | 
											
												
													
														|  | -	0x6d, 0x70, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x12, 0x3a,
 |  | 
 | 
											
												
													
														|  | -	0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x18, 0x07, 0x20, 0x01,
 |  | 
 | 
											
												
													
														|  | -	0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
 |  | 
 | 
											
												
													
														|  | -	0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x0a,
 |  | 
 | 
											
												
													
														|  | -	0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x12, 0x2b, 0x0a, 0x08, 0x6d, 0x65,
 |  | 
 | 
											
												
													
														|  | -	0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x74,
 |  | 
 | 
											
												
													
														|  | -	0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x08, 0x6d,
 |  | 
 | 
											
												
													
														|  | -	0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x2c, 0x0a, 0x04, 0x6d, 0x65, 0x74, 0x61, 0x18,
 |  | 
 | 
											
												
													
														|  | -	0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x54,
 |  | 
 | 
											
												
													
														|  | -	0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52,
 |  | 
 | 
											
												
													
														|  | -	0x04, 0x6d, 0x65, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x61, 0x67, 0x73, 0x18, 0x0c, 0x20,
 |  | 
 | 
											
												
													
														|  | -	0x03, 0x28, 0x09, 0x52, 0x04, 0x74, 0x61, 0x67, 0x73, 0x1a, 0x37, 0x0a, 0x09, 0x4d, 0x65, 0x74,
 |  | 
 | 
											
												
													
														|  | -	0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
 |  | 
 | 
											
												
													
														|  | -	0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75,
 |  | 
 | 
											
												
													
														|  | -	0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
 |  | 
 | 
											
												
													
														|  | -	0x38, 0x01, 0x2a, 0x43, 0x0a, 0x0b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x46, 0x6c, 0x61,
 |  | 
 | 
											
												
													
														|  | -	0x67, 0x12, 0x1c, 0x0a, 0x14, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e, 0x5f, 0x6d, 0x65, 0x73,
 |  | 
 | 
											
												
													
														|  | -	0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x10, 0x00, 0x1a, 0x02, 0x08, 0x01, 0x12,
 |  | 
 | 
											
												
													
														|  | -	0x08, 0x0a, 0x04, 0x53, 0x45, 0x4e, 0x54, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x4d, 0x4f, 0x44,
 |  | 
 | 
											
												
													
														|  | -	0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x02, 0x2a, 0x29, 0x0a, 0x0a, 0x54, 0x69, 0x63, 0x6b, 0x65,
 |  | 
 | 
											
												
													
														|  | -	0x74, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x1b, 0x0a, 0x13, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e,
 |  | 
 | 
											
												
													
														|  | -	0x5f, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x10, 0x00, 0x1a, 0x02,
 |  | 
 | 
											
												
													
														|  | -	0x08, 0x01, 0x42, 0x2d, 0x0a, 0x1a, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x73, 0x68, 0x6f, 0x70, 0x70,
 |  | 
 | 
											
												
													
														|  | -	0x65, 0x72, 0x2e, 0x63, 0x72, 0x6d, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x76, 0x32,
 |  | 
 | 
											
												
													
														|  | -	0x42, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5a, 0x08, 0x2e, 0x2f, 0x74, 0x69, 0x63, 0x6b, 0x65,
 |  | 
 | 
											
												
													
														|  | -	0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 |  | 
 | 
											
												
													
														|  | 
 |  | +	0x6d, 0x70, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x74, 0x12, 0x2b,
 | 
											
												
													
														|  | 
 |  | +	0x0a, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x18, 0x0a, 0x20, 0x03, 0x28, 0x0b,
 | 
											
												
													
														|  | 
 |  | +	0x32, 0x0f, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x52, 0x08, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x12, 0x2c, 0x0a, 0x04, 0x6d,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x74, 0x61, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x74, 0x69, 0x63, 0x6b,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x74, 0x2e, 0x54, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x2e, 0x4d, 0x65, 0x74, 0x61, 0x45, 0x6e,
 | 
											
												
													
														|  | 
 |  | +	0x74, 0x72, 0x79, 0x52, 0x04, 0x6d, 0x65, 0x74, 0x61, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x61, 0x67,
 | 
											
												
													
														|  | 
 |  | +	0x73, 0x18, 0x0c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x74, 0x61, 0x67, 0x73, 0x1a, 0x37, 0x0a,
 | 
											
												
													
														|  | 
 |  | +	0x09, 0x4d, 0x65, 0x74, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65,
 | 
											
												
													
														|  | 
 |  | +	0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05,
 | 
											
												
													
														|  | 
 |  | +	0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c,
 | 
											
												
													
														|  | 
 |  | +	0x75, 0x65, 0x3a, 0x02, 0x38, 0x01, 0x2a, 0x43, 0x0a, 0x0b, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
 | 
											
												
													
														|  | 
 |  | +	0x65, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x1c, 0x0a, 0x14, 0x75, 0x6e, 0x6b, 0x6e, 0x6f, 0x77, 0x6e,
 | 
											
												
													
														|  | 
 |  | +	0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x6c, 0x61, 0x67, 0x10, 0x00, 0x1a,
 | 
											
												
													
														|  | 
 |  | +	0x02, 0x08, 0x01, 0x12, 0x08, 0x0a, 0x04, 0x53, 0x45, 0x4e, 0x54, 0x10, 0x01, 0x12, 0x0c, 0x0a,
 | 
											
												
													
														|  | 
 |  | +	0x08, 0x4d, 0x4f, 0x44, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x02, 0x2a, 0x29, 0x0a, 0x0a, 0x54,
 | 
											
												
													
														|  | 
 |  | +	0x69, 0x63, 0x6b, 0x65, 0x74, 0x46, 0x6c, 0x61, 0x67, 0x12, 0x1b, 0x0a, 0x13, 0x75, 0x6e, 0x6b,
 | 
											
												
													
														|  | 
 |  | +	0x6e, 0x6f, 0x77, 0x6e, 0x5f, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x74, 0x5f, 0x66, 0x6c, 0x61, 0x67,
 | 
											
												
													
														|  | 
 |  | +	0x10, 0x00, 0x1a, 0x02, 0x08, 0x01, 0x42, 0x2d, 0x0a, 0x1a, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x73,
 | 
											
												
													
														|  | 
 |  | +	0x68, 0x6f, 0x70, 0x70, 0x65, 0x72, 0x2e, 0x63, 0x72, 0x6d, 0x2e, 0x74, 0x69, 0x63, 0x6b, 0x65,
 | 
											
												
													
														|  | 
 |  | +	0x74, 0x2e, 0x76, 0x32, 0x42, 0x05, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x5a, 0x08, 0x2e, 0x2f, 0x74,
 | 
											
												
													
														|  | 
 |  | +	0x69, 0x63, 0x6b, 0x65, 0x74, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  var (
 |  |  var (
 | 
											
										
											
												
													
														|  | @@ -919,7 +850,7 @@ func file_ticket_proto_rawDescGZIP() []byte {
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  var file_ticket_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
 |  |  var file_ticket_proto_enumTypes = make([]protoimpl.EnumInfo, 3)
 | 
											
												
													
														|  | -var file_ticket_proto_msgTypes = make([]protoimpl.MessageInfo, 10)
 |  | 
 | 
											
												
													
														|  | 
 |  | +var file_ticket_proto_msgTypes = make([]protoimpl.MessageInfo, 9)
 | 
											
												
													
														|  |  var file_ticket_proto_goTypes = []interface{}{
 |  |  var file_ticket_proto_goTypes = []interface{}{
 | 
											
												
													
														|  |  	(MessageFlag)(0),              // 0: ticket.MessageFlag
 |  |  	(MessageFlag)(0),              // 0: ticket.MessageFlag
 | 
											
												
													
														|  |  	(TicketFlag)(0),               // 1: ticket.TicketFlag
 |  |  	(TicketFlag)(0),               // 1: ticket.TicketFlag
 | 
											
										
											
												
													
														|  | @@ -930,32 +861,32 @@ var file_ticket_proto_goTypes = []interface{}{
 | 
											
												
													
														|  |  	(*AssistantCallback)(nil),     // 6: ticket.AssistantCallback
 |  |  	(*AssistantCallback)(nil),     // 6: ticket.AssistantCallback
 | 
											
												
													
														|  |  	(*Message)(nil),               // 7: ticket.Message
 |  |  	(*Message)(nil),               // 7: ticket.Message
 | 
											
												
													
														|  |  	(*Ticket)(nil),                // 8: ticket.Ticket
 |  |  	(*Ticket)(nil),                // 8: ticket.Ticket
 | 
											
												
													
														|  | -	(*Message_Attachment)(nil),    // 9: ticket.Message.Attachment
 |  | 
 | 
											
												
													
														|  | -	nil,                           // 10: ticket.Message.HeadersEntry
 |  | 
 | 
											
												
													
														|  | -	nil,                           // 11: ticket.Message.MetaEntry
 |  | 
 | 
											
												
													
														|  | -	nil,                           // 12: ticket.Ticket.MetaEntry
 |  | 
 | 
											
												
													
														|  | -	(*timestamppb.Timestamp)(nil), // 13: google.protobuf.Timestamp
 |  | 
 | 
											
												
													
														|  | 
 |  | +	nil,                           // 9: ticket.Message.HeadersEntry
 | 
											
												
													
														|  | 
 |  | +	nil,                           // 10: ticket.Message.MetaEntry
 | 
											
												
													
														|  | 
 |  | +	nil,                           // 11: ticket.Ticket.MetaEntry
 | 
											
												
													
														|  | 
 |  | +	(*timestamppb.Timestamp)(nil), // 12: google.protobuf.Timestamp
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  var file_ticket_proto_depIdxs = []int32{
 |  |  var file_ticket_proto_depIdxs = []int32{
 | 
											
												
													
														|  |  	3,  // 0: ticket.AssistantRequest.from:type_name -> ticket.EmailAddress
 |  |  	3,  // 0: ticket.AssistantRequest.from:type_name -> ticket.EmailAddress
 | 
											
												
													
														|  | -	13, // 1: ticket.AssistantRequest.date:type_name -> google.protobuf.Timestamp
 |  | 
 | 
											
												
													
														|  | 
 |  | +	12, // 1: ticket.AssistantRequest.date:type_name -> google.protobuf.Timestamp
 | 
											
												
													
														|  |  	4,  // 2: ticket.AssistantRequest.attachments:type_name -> ticket.Attachment
 |  |  	4,  // 2: ticket.AssistantRequest.attachments:type_name -> ticket.Attachment
 | 
											
												
													
														|  |  	3,  // 3: ticket.AssistantCallback.to:type_name -> ticket.EmailAddress
 |  |  	3,  // 3: ticket.AssistantCallback.to:type_name -> ticket.EmailAddress
 | 
											
												
													
														|  | -	2,  // 4: ticket.Message.type:type_name -> ticket.Message.Type
 |  | 
 | 
											
												
													
														|  | -	13, // 5: ticket.Message.date:type_name -> google.protobuf.Timestamp
 |  | 
 | 
											
												
													
														|  | -	10, // 6: ticket.Message.headers:type_name -> ticket.Message.HeadersEntry
 |  | 
 | 
											
												
													
														|  | -	11, // 7: ticket.Message.meta:type_name -> ticket.Message.MetaEntry
 |  | 
 | 
											
												
													
														|  | -	9,  // 8: ticket.Message.attachments:type_name -> ticket.Message.Attachment
 |  | 
 | 
											
												
													
														|  | -	3,  // 9: ticket.Ticket.from:type_name -> ticket.EmailAddress
 |  | 
 | 
											
												
													
														|  | -	13, // 10: ticket.Ticket.created_at:type_name -> google.protobuf.Timestamp
 |  | 
 | 
											
												
													
														|  | -	13, // 11: ticket.Ticket.updated_at:type_name -> google.protobuf.Timestamp
 |  | 
 | 
											
												
													
														|  | -	7,  // 12: ticket.Ticket.messages:type_name -> ticket.Message
 |  | 
 | 
											
												
													
														|  | -	12, // 13: ticket.Ticket.meta:type_name -> ticket.Ticket.MetaEntry
 |  | 
 | 
											
												
													
														|  | -	14, // [14:14] is the sub-list for method output_type
 |  | 
 | 
											
												
													
														|  | -	14, // [14:14] is the sub-list for method input_type
 |  | 
 | 
											
												
													
														|  | -	14, // [14:14] is the sub-list for extension type_name
 |  | 
 | 
											
												
													
														|  | -	14, // [14:14] is the sub-list for extension extendee
 |  | 
 | 
											
												
													
														|  | -	0,  // [0:14] is the sub-list for field type_name
 |  | 
 | 
											
												
													
														|  | 
 |  | +	4,  // 4: ticket.AssistantCallback.attachments:type_name -> ticket.Attachment
 | 
											
												
													
														|  | 
 |  | +	2,  // 5: ticket.Message.type:type_name -> ticket.Message.Type
 | 
											
												
													
														|  | 
 |  | +	12, // 6: ticket.Message.date:type_name -> google.protobuf.Timestamp
 | 
											
												
													
														|  | 
 |  | +	9,  // 7: ticket.Message.headers:type_name -> ticket.Message.HeadersEntry
 | 
											
												
													
														|  | 
 |  | +	10, // 8: ticket.Message.meta:type_name -> ticket.Message.MetaEntry
 | 
											
												
													
														|  | 
 |  | +	4,  // 9: ticket.Message.attachments:type_name -> ticket.Attachment
 | 
											
												
													
														|  | 
 |  | +	3,  // 10: ticket.Ticket.from:type_name -> ticket.EmailAddress
 | 
											
												
													
														|  | 
 |  | +	12, // 11: ticket.Ticket.created_at:type_name -> google.protobuf.Timestamp
 | 
											
												
													
														|  | 
 |  | +	12, // 12: ticket.Ticket.updated_at:type_name -> google.protobuf.Timestamp
 | 
											
												
													
														|  | 
 |  | +	7,  // 13: ticket.Ticket.messages:type_name -> ticket.Message
 | 
											
												
													
														|  | 
 |  | +	11, // 14: ticket.Ticket.meta:type_name -> ticket.Ticket.MetaEntry
 | 
											
												
													
														|  | 
 |  | +	15, // [15:15] is the sub-list for method output_type
 | 
											
												
													
														|  | 
 |  | +	15, // [15:15] is the sub-list for method input_type
 | 
											
												
													
														|  | 
 |  | +	15, // [15:15] is the sub-list for extension type_name
 | 
											
												
													
														|  | 
 |  | +	15, // [15:15] is the sub-list for extension extendee
 | 
											
												
													
														|  | 
 |  | +	0,  // [0:15] is the sub-list for field type_name
 | 
											
												
													
														|  |  }
 |  |  }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |  func init() { file_ticket_proto_init() }
 |  |  func init() { file_ticket_proto_init() }
 | 
											
										
											
												
													
														|  | @@ -1036,18 +967,6 @@ func file_ticket_proto_init() {
 | 
											
												
													
														|  |  				return nil
 |  |  				return nil
 | 
											
												
													
														|  |  			}
 |  |  			}
 | 
											
												
													
														|  |  		}
 |  |  		}
 | 
											
												
													
														|  | -		file_ticket_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
 |  | 
 | 
											
												
													
														|  | -			switch v := v.(*Message_Attachment); i {
 |  | 
 | 
											
												
													
														|  | -			case 0:
 |  | 
 | 
											
												
													
														|  | -				return &v.state
 |  | 
 | 
											
												
													
														|  | -			case 1:
 |  | 
 | 
											
												
													
														|  | -				return &v.sizeCache
 |  | 
 | 
											
												
													
														|  | -			case 2:
 |  | 
 | 
											
												
													
														|  | -				return &v.unknownFields
 |  | 
 | 
											
												
													
														|  | -			default:
 |  | 
 | 
											
												
													
														|  | -				return nil
 |  | 
 | 
											
												
													
														|  | -			}
 |  | 
 | 
											
												
													
														|  | -		}
 |  | 
 | 
											
												
													
														|  |  	}
 |  |  	}
 | 
											
												
													
														|  |  	type x struct{}
 |  |  	type x struct{}
 | 
											
												
													
														|  |  	out := protoimpl.TypeBuilder{
 |  |  	out := protoimpl.TypeBuilder{
 | 
											
										
											
												
													
														|  | @@ -1055,7 +974,7 @@ func file_ticket_proto_init() {
 | 
											
												
													
														|  |  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 |  |  			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 | 
											
												
													
														|  |  			RawDescriptor: file_ticket_proto_rawDesc,
 |  |  			RawDescriptor: file_ticket_proto_rawDesc,
 | 
											
												
													
														|  |  			NumEnums:      3,
 |  |  			NumEnums:      3,
 | 
											
												
													
														|  | -			NumMessages:   10,
 |  | 
 | 
											
												
													
														|  | 
 |  | +			NumMessages:   9,
 | 
											
												
													
														|  |  			NumExtensions: 0,
 |  |  			NumExtensions: 0,
 | 
											
												
													
														|  |  			NumServices:   0,
 |  |  			NumServices:   0,
 | 
											
												
													
														|  |  		},
 |  |  		},
 |