mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 10:54:28 +00:00
999 lines
34 KiB
Go
999 lines
34 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: proto/users.proto
|
|
|
|
package users
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type User struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
|
|
Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
|
|
Created int64 `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
|
|
Updated int64 `protobuf:"varint,5,opt,name=updated,proto3" json:"updated,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *User) Reset() { *m = User{} }
|
|
func (m *User) String() string { return proto.CompactTextString(m) }
|
|
func (*User) ProtoMessage() {}
|
|
func (*User) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{0}
|
|
}
|
|
|
|
func (m *User) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_User.Unmarshal(m, b)
|
|
}
|
|
func (m *User) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_User.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *User) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_User.Merge(m, src)
|
|
}
|
|
func (m *User) XXX_Size() int {
|
|
return xxx_messageInfo_User.Size(m)
|
|
}
|
|
func (m *User) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_User.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_User proto.InternalMessageInfo
|
|
|
|
func (m *User) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetUsername() string {
|
|
if m != nil {
|
|
return m.Username
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *User) GetCreated() int64 {
|
|
if m != nil {
|
|
return m.Created
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *User) GetUpdated() int64 {
|
|
if m != nil {
|
|
return m.Updated
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Session struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
|
|
Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
|
|
Created int64 `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
|
|
Expires int64 `protobuf:"varint,5,opt,name=expires,proto3" json:"expires,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Session) Reset() { *m = Session{} }
|
|
func (m *Session) String() string { return proto.CompactTextString(m) }
|
|
func (*Session) ProtoMessage() {}
|
|
func (*Session) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{1}
|
|
}
|
|
|
|
func (m *Session) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Session.Unmarshal(m, b)
|
|
}
|
|
func (m *Session) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Session.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Session) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Session.Merge(m, src)
|
|
}
|
|
func (m *Session) XXX_Size() int {
|
|
return xxx_messageInfo_Session.Size(m)
|
|
}
|
|
func (m *Session) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Session.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Session proto.InternalMessageInfo
|
|
|
|
func (m *Session) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Session) GetUsername() string {
|
|
if m != nil {
|
|
return m.Username
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Session) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Session) GetCreated() int64 {
|
|
if m != nil {
|
|
return m.Created
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Session) GetExpires() int64 {
|
|
if m != nil {
|
|
return m.Expires
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type CreateRequest struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
|
|
Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
|
|
Password string `protobuf:"bytes,4,opt,name=password,proto3" json:"password,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateRequest) Reset() { *m = CreateRequest{} }
|
|
func (m *CreateRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateRequest) ProtoMessage() {}
|
|
func (*CreateRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{2}
|
|
}
|
|
|
|
func (m *CreateRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreateRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *CreateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreateRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreateRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreateRequest.Merge(m, src)
|
|
}
|
|
func (m *CreateRequest) XXX_Size() int {
|
|
return xxx_messageInfo_CreateRequest.Size(m)
|
|
}
|
|
func (m *CreateRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreateRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreateRequest proto.InternalMessageInfo
|
|
|
|
func (m *CreateRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateRequest) GetUsername() string {
|
|
if m != nil {
|
|
return m.Username
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateRequest) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateRequest) GetPassword() string {
|
|
if m != nil {
|
|
return m.Password
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type CreateResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateResponse) Reset() { *m = CreateResponse{} }
|
|
func (m *CreateResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateResponse) ProtoMessage() {}
|
|
func (*CreateResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{3}
|
|
}
|
|
|
|
func (m *CreateResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreateResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *CreateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreateResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreateResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreateResponse.Merge(m, src)
|
|
}
|
|
func (m *CreateResponse) XXX_Size() int {
|
|
return xxx_messageInfo_CreateResponse.Size(m)
|
|
}
|
|
func (m *CreateResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreateResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreateResponse proto.InternalMessageInfo
|
|
|
|
type DeleteRequest struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DeleteRequest) Reset() { *m = DeleteRequest{} }
|
|
func (m *DeleteRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteRequest) ProtoMessage() {}
|
|
func (*DeleteRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{4}
|
|
}
|
|
|
|
func (m *DeleteRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DeleteRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *DeleteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DeleteRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DeleteRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DeleteRequest.Merge(m, src)
|
|
}
|
|
func (m *DeleteRequest) XXX_Size() int {
|
|
return xxx_messageInfo_DeleteRequest.Size(m)
|
|
}
|
|
func (m *DeleteRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DeleteRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DeleteRequest proto.InternalMessageInfo
|
|
|
|
func (m *DeleteRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type DeleteResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DeleteResponse) Reset() { *m = DeleteResponse{} }
|
|
func (m *DeleteResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteResponse) ProtoMessage() {}
|
|
func (*DeleteResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{5}
|
|
}
|
|
|
|
func (m *DeleteResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DeleteResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *DeleteResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DeleteResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DeleteResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DeleteResponse.Merge(m, src)
|
|
}
|
|
func (m *DeleteResponse) XXX_Size() int {
|
|
return xxx_messageInfo_DeleteResponse.Size(m)
|
|
}
|
|
func (m *DeleteResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DeleteResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DeleteResponse proto.InternalMessageInfo
|
|
|
|
type ReadRequest struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ReadRequest) Reset() { *m = ReadRequest{} }
|
|
func (m *ReadRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ReadRequest) ProtoMessage() {}
|
|
func (*ReadRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{6}
|
|
}
|
|
|
|
func (m *ReadRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ReadRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ReadRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ReadRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ReadRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ReadRequest.Merge(m, src)
|
|
}
|
|
func (m *ReadRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ReadRequest.Size(m)
|
|
}
|
|
func (m *ReadRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ReadRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ReadRequest proto.InternalMessageInfo
|
|
|
|
func (m *ReadRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ReadResponse struct {
|
|
User *User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ReadResponse) Reset() { *m = ReadResponse{} }
|
|
func (m *ReadResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ReadResponse) ProtoMessage() {}
|
|
func (*ReadResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{7}
|
|
}
|
|
|
|
func (m *ReadResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ReadResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *ReadResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ReadResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ReadResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ReadResponse.Merge(m, src)
|
|
}
|
|
func (m *ReadResponse) XXX_Size() int {
|
|
return xxx_messageInfo_ReadResponse.Size(m)
|
|
}
|
|
func (m *ReadResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ReadResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ReadResponse proto.InternalMessageInfo
|
|
|
|
func (m *ReadResponse) GetUser() *User {
|
|
if m != nil {
|
|
return m.User
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type UpdateRequest struct {
|
|
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
|
|
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
|
|
Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UpdateRequest) Reset() { *m = UpdateRequest{} }
|
|
func (m *UpdateRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateRequest) ProtoMessage() {}
|
|
func (*UpdateRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{8}
|
|
}
|
|
|
|
func (m *UpdateRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UpdateRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *UpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UpdateRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UpdateRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UpdateRequest.Merge(m, src)
|
|
}
|
|
func (m *UpdateRequest) XXX_Size() int {
|
|
return xxx_messageInfo_UpdateRequest.Size(m)
|
|
}
|
|
func (m *UpdateRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UpdateRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UpdateRequest proto.InternalMessageInfo
|
|
|
|
func (m *UpdateRequest) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateRequest) GetUsername() string {
|
|
if m != nil {
|
|
return m.Username
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdateRequest) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UpdateResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UpdateResponse) Reset() { *m = UpdateResponse{} }
|
|
func (m *UpdateResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdateResponse) ProtoMessage() {}
|
|
func (*UpdateResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{9}
|
|
}
|
|
|
|
func (m *UpdateResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UpdateResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *UpdateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UpdateResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UpdateResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UpdateResponse.Merge(m, src)
|
|
}
|
|
func (m *UpdateResponse) XXX_Size() int {
|
|
return xxx_messageInfo_UpdateResponse.Size(m)
|
|
}
|
|
func (m *UpdateResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UpdateResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UpdateResponse proto.InternalMessageInfo
|
|
|
|
type UpdatePasswordRequest struct {
|
|
UserId string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
|
|
OldPassword string `protobuf:"bytes,2,opt,name=oldPassword,proto3" json:"oldPassword,omitempty"`
|
|
NewPassword string `protobuf:"bytes,3,opt,name=newPassword,proto3" json:"newPassword,omitempty"`
|
|
ConfirmPassword string `protobuf:"bytes,4,opt,name=confirm_password,json=confirmPassword,proto3" json:"confirm_password,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UpdatePasswordRequest) Reset() { *m = UpdatePasswordRequest{} }
|
|
func (m *UpdatePasswordRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdatePasswordRequest) ProtoMessage() {}
|
|
func (*UpdatePasswordRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{10}
|
|
}
|
|
|
|
func (m *UpdatePasswordRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UpdatePasswordRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *UpdatePasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UpdatePasswordRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UpdatePasswordRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UpdatePasswordRequest.Merge(m, src)
|
|
}
|
|
func (m *UpdatePasswordRequest) XXX_Size() int {
|
|
return xxx_messageInfo_UpdatePasswordRequest.Size(m)
|
|
}
|
|
func (m *UpdatePasswordRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UpdatePasswordRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UpdatePasswordRequest proto.InternalMessageInfo
|
|
|
|
func (m *UpdatePasswordRequest) GetUserId() string {
|
|
if m != nil {
|
|
return m.UserId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdatePasswordRequest) GetOldPassword() string {
|
|
if m != nil {
|
|
return m.OldPassword
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdatePasswordRequest) GetNewPassword() string {
|
|
if m != nil {
|
|
return m.NewPassword
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *UpdatePasswordRequest) GetConfirmPassword() string {
|
|
if m != nil {
|
|
return m.ConfirmPassword
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type UpdatePasswordResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *UpdatePasswordResponse) Reset() { *m = UpdatePasswordResponse{} }
|
|
func (m *UpdatePasswordResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*UpdatePasswordResponse) ProtoMessage() {}
|
|
func (*UpdatePasswordResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{11}
|
|
}
|
|
|
|
func (m *UpdatePasswordResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_UpdatePasswordResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *UpdatePasswordResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_UpdatePasswordResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *UpdatePasswordResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_UpdatePasswordResponse.Merge(m, src)
|
|
}
|
|
func (m *UpdatePasswordResponse) XXX_Size() int {
|
|
return xxx_messageInfo_UpdatePasswordResponse.Size(m)
|
|
}
|
|
func (m *UpdatePasswordResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_UpdatePasswordResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_UpdatePasswordResponse proto.InternalMessageInfo
|
|
|
|
type SearchRequest struct {
|
|
Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
|
|
Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
|
|
Limit int64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
|
|
Offset int64 `protobuf:"varint,4,opt,name=offset,proto3" json:"offset,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SearchRequest) Reset() { *m = SearchRequest{} }
|
|
func (m *SearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*SearchRequest) ProtoMessage() {}
|
|
func (*SearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{12}
|
|
}
|
|
|
|
func (m *SearchRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SearchRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *SearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SearchRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SearchRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SearchRequest.Merge(m, src)
|
|
}
|
|
func (m *SearchRequest) XXX_Size() int {
|
|
return xxx_messageInfo_SearchRequest.Size(m)
|
|
}
|
|
func (m *SearchRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SearchRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SearchRequest proto.InternalMessageInfo
|
|
|
|
func (m *SearchRequest) GetUsername() string {
|
|
if m != nil {
|
|
return m.Username
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SearchRequest) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SearchRequest) GetLimit() int64 {
|
|
if m != nil {
|
|
return m.Limit
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchRequest) GetOffset() int64 {
|
|
if m != nil {
|
|
return m.Offset
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type SearchResponse struct {
|
|
Users []*User `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SearchResponse) Reset() { *m = SearchResponse{} }
|
|
func (m *SearchResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*SearchResponse) ProtoMessage() {}
|
|
func (*SearchResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{13}
|
|
}
|
|
|
|
func (m *SearchResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SearchResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *SearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SearchResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SearchResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SearchResponse.Merge(m, src)
|
|
}
|
|
func (m *SearchResponse) XXX_Size() int {
|
|
return xxx_messageInfo_SearchResponse.Size(m)
|
|
}
|
|
func (m *SearchResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SearchResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SearchResponse proto.InternalMessageInfo
|
|
|
|
func (m *SearchResponse) GetUsers() []*User {
|
|
if m != nil {
|
|
return m.Users
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ReadSessionRequest struct {
|
|
SessionId string `protobuf:"bytes,1,opt,name=sessionId,proto3" json:"sessionId,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ReadSessionRequest) Reset() { *m = ReadSessionRequest{} }
|
|
func (m *ReadSessionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ReadSessionRequest) ProtoMessage() {}
|
|
func (*ReadSessionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{14}
|
|
}
|
|
|
|
func (m *ReadSessionRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ReadSessionRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ReadSessionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ReadSessionRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ReadSessionRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ReadSessionRequest.Merge(m, src)
|
|
}
|
|
func (m *ReadSessionRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ReadSessionRequest.Size(m)
|
|
}
|
|
func (m *ReadSessionRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ReadSessionRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ReadSessionRequest proto.InternalMessageInfo
|
|
|
|
func (m *ReadSessionRequest) GetSessionId() string {
|
|
if m != nil {
|
|
return m.SessionId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ReadSessionResponse struct {
|
|
Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ReadSessionResponse) Reset() { *m = ReadSessionResponse{} }
|
|
func (m *ReadSessionResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ReadSessionResponse) ProtoMessage() {}
|
|
func (*ReadSessionResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{15}
|
|
}
|
|
|
|
func (m *ReadSessionResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ReadSessionResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *ReadSessionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ReadSessionResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ReadSessionResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ReadSessionResponse.Merge(m, src)
|
|
}
|
|
func (m *ReadSessionResponse) XXX_Size() int {
|
|
return xxx_messageInfo_ReadSessionResponse.Size(m)
|
|
}
|
|
func (m *ReadSessionResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ReadSessionResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ReadSessionResponse proto.InternalMessageInfo
|
|
|
|
func (m *ReadSessionResponse) GetSession() *Session {
|
|
if m != nil {
|
|
return m.Session
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type LoginRequest struct {
|
|
Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
|
|
Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
|
|
Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LoginRequest) Reset() { *m = LoginRequest{} }
|
|
func (m *LoginRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*LoginRequest) ProtoMessage() {}
|
|
func (*LoginRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{16}
|
|
}
|
|
|
|
func (m *LoginRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LoginRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *LoginRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LoginRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LoginRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LoginRequest.Merge(m, src)
|
|
}
|
|
func (m *LoginRequest) XXX_Size() int {
|
|
return xxx_messageInfo_LoginRequest.Size(m)
|
|
}
|
|
func (m *LoginRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LoginRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LoginRequest proto.InternalMessageInfo
|
|
|
|
func (m *LoginRequest) GetUsername() string {
|
|
if m != nil {
|
|
return m.Username
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *LoginRequest) GetEmail() string {
|
|
if m != nil {
|
|
return m.Email
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *LoginRequest) GetPassword() string {
|
|
if m != nil {
|
|
return m.Password
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type LoginResponse struct {
|
|
Session *Session `protobuf:"bytes,1,opt,name=session,proto3" json:"session,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LoginResponse) Reset() { *m = LoginResponse{} }
|
|
func (m *LoginResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*LoginResponse) ProtoMessage() {}
|
|
func (*LoginResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{17}
|
|
}
|
|
|
|
func (m *LoginResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LoginResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *LoginResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LoginResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LoginResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LoginResponse.Merge(m, src)
|
|
}
|
|
func (m *LoginResponse) XXX_Size() int {
|
|
return xxx_messageInfo_LoginResponse.Size(m)
|
|
}
|
|
func (m *LoginResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LoginResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LoginResponse proto.InternalMessageInfo
|
|
|
|
func (m *LoginResponse) GetSession() *Session {
|
|
if m != nil {
|
|
return m.Session
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type LogoutRequest struct {
|
|
SessionId string `protobuf:"bytes,1,opt,name=sessionId,proto3" json:"sessionId,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LogoutRequest) Reset() { *m = LogoutRequest{} }
|
|
func (m *LogoutRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*LogoutRequest) ProtoMessage() {}
|
|
func (*LogoutRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{18}
|
|
}
|
|
|
|
func (m *LogoutRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LogoutRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *LogoutRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LogoutRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LogoutRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LogoutRequest.Merge(m, src)
|
|
}
|
|
func (m *LogoutRequest) XXX_Size() int {
|
|
return xxx_messageInfo_LogoutRequest.Size(m)
|
|
}
|
|
func (m *LogoutRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LogoutRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LogoutRequest proto.InternalMessageInfo
|
|
|
|
func (m *LogoutRequest) GetSessionId() string {
|
|
if m != nil {
|
|
return m.SessionId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type LogoutResponse struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LogoutResponse) Reset() { *m = LogoutResponse{} }
|
|
func (m *LogoutResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*LogoutResponse) ProtoMessage() {}
|
|
func (*LogoutResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_b1c161a4c7514913, []int{19}
|
|
}
|
|
|
|
func (m *LogoutResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LogoutResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *LogoutResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LogoutResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LogoutResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LogoutResponse.Merge(m, src)
|
|
}
|
|
func (m *LogoutResponse) XXX_Size() int {
|
|
return xxx_messageInfo_LogoutResponse.Size(m)
|
|
}
|
|
func (m *LogoutResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LogoutResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LogoutResponse proto.InternalMessageInfo
|
|
|
|
func init() {
|
|
proto.RegisterType((*User)(nil), "User")
|
|
proto.RegisterType((*Session)(nil), "Session")
|
|
proto.RegisterType((*CreateRequest)(nil), "CreateRequest")
|
|
proto.RegisterType((*CreateResponse)(nil), "CreateResponse")
|
|
proto.RegisterType((*DeleteRequest)(nil), "DeleteRequest")
|
|
proto.RegisterType((*DeleteResponse)(nil), "DeleteResponse")
|
|
proto.RegisterType((*ReadRequest)(nil), "ReadRequest")
|
|
proto.RegisterType((*ReadResponse)(nil), "ReadResponse")
|
|
proto.RegisterType((*UpdateRequest)(nil), "UpdateRequest")
|
|
proto.RegisterType((*UpdateResponse)(nil), "UpdateResponse")
|
|
proto.RegisterType((*UpdatePasswordRequest)(nil), "UpdatePasswordRequest")
|
|
proto.RegisterType((*UpdatePasswordResponse)(nil), "UpdatePasswordResponse")
|
|
proto.RegisterType((*SearchRequest)(nil), "SearchRequest")
|
|
proto.RegisterType((*SearchResponse)(nil), "SearchResponse")
|
|
proto.RegisterType((*ReadSessionRequest)(nil), "ReadSessionRequest")
|
|
proto.RegisterType((*ReadSessionResponse)(nil), "ReadSessionResponse")
|
|
proto.RegisterType((*LoginRequest)(nil), "LoginRequest")
|
|
proto.RegisterType((*LoginResponse)(nil), "LoginResponse")
|
|
proto.RegisterType((*LogoutRequest)(nil), "LogoutRequest")
|
|
proto.RegisterType((*LogoutResponse)(nil), "LogoutResponse")
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterFile("proto/users.proto", fileDescriptor_b1c161a4c7514913)
|
|
}
|
|
|
|
var fileDescriptor_b1c161a4c7514913 = []byte{
|
|
// 600 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xb4, 0x55, 0xcf, 0x6e, 0xd3, 0x4e,
|
|
0x10, 0x4e, 0xe2, 0x38, 0x69, 0x27, 0x71, 0xda, 0xdf, 0xb6, 0xbf, 0x60, 0x0c, 0x88, 0x6a, 0x25,
|
|
0xa4, 0x56, 0xa8, 0x8b, 0x94, 0x9e, 0xe0, 0x5a, 0x2e, 0x48, 0x1c, 0xc0, 0x55, 0x6f, 0x48, 0xc8,
|
|
0x24, 0x1b, 0xb0, 0x14, 0x7b, 0x8d, 0xd7, 0x51, 0x39, 0x20, 0xf1, 0x26, 0x3c, 0x08, 0x4f, 0xc7,
|
|
0xec, 0xbf, 0xc4, 0x36, 0x8d, 0x04, 0xa8, 0xdc, 0x3c, 0x33, 0xdf, 0xec, 0x7c, 0x3b, 0x33, 0xdf,
|
|
0x1a, 0xfe, 0x2b, 0x4a, 0x51, 0x89, 0x67, 0x6b, 0xc9, 0x4b, 0xc9, 0xf4, 0x37, 0xfd, 0x0a, 0xfd,
|
|
0x6b, 0x34, 0xc9, 0x04, 0x7a, 0xe9, 0x22, 0xec, 0x9e, 0x74, 0x4f, 0xf7, 0x63, 0xfc, 0x22, 0x11,
|
|
0xec, 0x29, 0x58, 0x9e, 0x64, 0x3c, 0xec, 0x69, 0xef, 0xc6, 0x26, 0xc7, 0xe0, 0xf3, 0x2c, 0x49,
|
|
0x57, 0xa1, 0xa7, 0x03, 0xc6, 0x20, 0x21, 0x0c, 0xe7, 0x25, 0x4f, 0x2a, 0xbe, 0x08, 0xfb, 0xe8,
|
|
0xf7, 0x62, 0x67, 0xaa, 0xc8, 0xba, 0x58, 0xe8, 0x88, 0x6f, 0x22, 0xd6, 0xa4, 0xdf, 0x60, 0x78,
|
|
0xc5, 0xa5, 0x4c, 0x45, 0xfe, 0xaf, 0x09, 0xf0, 0x2f, 0x45, 0x5a, 0x72, 0xe9, 0x08, 0x58, 0x93,
|
|
0x66, 0x10, 0x5c, 0x6a, 0x50, 0xcc, 0x3f, 0xaf, 0xb9, 0xac, 0xee, 0x80, 0x06, 0x66, 0x14, 0x89,
|
|
0x94, 0x37, 0xa2, 0x34, 0x3c, 0x30, 0xc3, 0xd9, 0xf4, 0x10, 0x26, 0xae, 0x9c, 0x2c, 0x44, 0x2e,
|
|
0x39, 0x7d, 0x0c, 0xc1, 0x4b, 0xbe, 0xe2, 0x3b, 0x09, 0xa8, 0x14, 0x07, 0xb0, 0x29, 0x8f, 0x60,
|
|
0x14, 0xf3, 0x64, 0xb1, 0x2b, 0xe1, 0x0c, 0xc6, 0x26, 0x6c, 0xe0, 0xe4, 0x3e, 0xf4, 0x15, 0x63,
|
|
0x8d, 0x18, 0xcd, 0x7c, 0xa6, 0xc6, 0x1d, 0x6b, 0x17, 0x7d, 0x0b, 0xc1, 0xb5, 0x9e, 0xc4, 0x9d,
|
|
0xdd, 0x5e, 0xd1, 0x75, 0x47, 0x5a, 0xba, 0xdf, 0xbb, 0xf0, 0xbf, 0x71, 0xbd, 0xb1, 0x6d, 0x70,
|
|
0xd5, 0xa6, 0x30, 0x50, 0xa7, 0xbd, 0x72, 0x15, 0xad, 0x45, 0x4e, 0x60, 0x24, 0x56, 0x0b, 0x87,
|
|
0xb6, 0x85, 0xeb, 0x2e, 0x85, 0xc8, 0xf9, 0xcd, 0x06, 0x61, 0x18, 0xd4, 0x5d, 0xe4, 0x0c, 0x0e,
|
|
0xe7, 0x22, 0x5f, 0xa6, 0x65, 0xf6, 0xbe, 0x35, 0x8d, 0x03, 0xeb, 0x77, 0x50, 0x1a, 0xc2, 0xb4,
|
|
0xcd, 0xcf, 0x52, 0x17, 0x10, 0x5c, 0xf1, 0xa4, 0x9c, 0x7f, 0x72, 0x8c, 0xeb, 0xfd, 0xe8, 0xee,
|
|
0xea, 0x47, 0xaf, 0xbe, 0x0d, 0xe8, 0x5d, 0xa5, 0x59, 0x5a, 0x69, 0x8e, 0x5e, 0x6c, 0x0c, 0x75,
|
|
0x73, 0xb1, 0x5c, 0x4a, 0x5e, 0xd9, 0x4d, 0xb5, 0x16, 0x3d, 0x87, 0x89, 0x2b, 0x68, 0xa7, 0xf7,
|
|
0x00, 0x7c, 0x2d, 0x57, 0x2c, 0xe7, 0x6d, 0xc7, 0x67, 0x7c, 0x74, 0x06, 0x44, 0x8d, 0xda, 0x4a,
|
|
0xc8, 0x91, 0x7c, 0x08, 0xfb, 0xd2, 0x78, 0x36, 0x9d, 0xdd, 0x3a, 0xe8, 0x73, 0x38, 0x6a, 0xe4,
|
|
0xd8, 0x3a, 0x14, 0x86, 0x16, 0x63, 0x17, 0x65, 0x8f, 0x39, 0x88, 0x0b, 0xd0, 0x77, 0x30, 0x7e,
|
|
0x2d, 0x3e, 0xa6, 0xf9, 0xdf, 0x77, 0xa3, 0xae, 0x0d, 0xaf, 0xa5, 0x8d, 0x0b, 0x08, 0xec, 0xe9,
|
|
0x7f, 0x40, 0xe9, 0x5c, 0x27, 0x89, 0x75, 0xf5, 0x7b, 0x97, 0xc7, 0xed, 0x74, 0x70, 0x53, 0x64,
|
|
0xf6, 0xc3, 0x03, 0x5f, 0xb5, 0x54, 0x92, 0xa7, 0x30, 0x30, 0xda, 0x24, 0x13, 0xd6, 0x78, 0x13,
|
|
0xa2, 0x03, 0xd6, 0x12, 0x6d, 0x87, 0x3c, 0x81, 0xbe, 0xea, 0x22, 0x19, 0xb3, 0x9a, 0x14, 0xa3,
|
|
0x80, 0xd5, 0x95, 0x87, 0x30, 0x3c, 0xd3, 0xac, 0x16, 0x9e, 0xd9, 0x50, 0x1a, 0x9e, 0xd9, 0x92,
|
|
0x89, 0x06, 0x1b, 0xa5, 0x23, 0xb8, 0xf1, 0x26, 0x20, 0xb8, 0xf5, 0x04, 0x68, 0xb0, 0xd9, 0x14,
|
|
0x04, 0x37, 0x76, 0x14, 0xc1, 0xcd, 0x15, 0x42, 0xf0, 0xa5, 0x13, 0xe5, 0x46, 0x1e, 0x53, 0x76,
|
|
0xab, 0x24, 0xa3, 0x7b, 0x6c, 0x87, 0x14, 0x3a, 0xe4, 0x14, 0x7c, 0x3d, 0x1f, 0x12, 0xb0, 0xfa,
|
|
0x16, 0x44, 0x13, 0xd6, 0x18, 0x9b, 0xe1, 0x66, 0xba, 0x4c, 0x74, 0x6c, 0x3b, 0x1d, 0xe4, 0xd6,
|
|
0x6c, 0x3f, 0x82, 0x5f, 0x98, 0xd7, 0xcc, 0xfd, 0x06, 0x8e, 0xd8, 0xaf, 0x1b, 0x1d, 0x1d, 0xb3,
|
|
0x5b, 0x56, 0x96, 0x76, 0x3e, 0x0c, 0xf4, 0x3f, 0xec, 0xe2, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff,
|
|
0xc7, 0x99, 0xc1, 0x0c, 0xd8, 0x06, 0x00, 0x00,
|
|
}
|