package api
import (
fmt "fmt"
proto "github.com/golang/protobuf/proto"
timestamp "github.com/golang/protobuf/ptypes/timestamp"
math "math"
)
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
const _ = proto.ProtoPackageIsVersion3
type ReplToken_Persistence int32
const (
ReplToken_PERSISTENT ReplToken_Persistence = 0
ReplToken_EPHEMERAL ReplToken_Persistence = 1
ReplToken_NONE ReplToken_Persistence = 2
)
var ReplToken_Persistence_name = map[int32]string{
0: "PERSISTENT",
1: "EPHEMERAL",
2: "NONE",
}
var ReplToken_Persistence_value = map[string]int32{
"PERSISTENT": 0,
"EPHEMERAL": 1,
"NONE": 2,
}
func (x ReplToken_Persistence) String() string {
return proto.EnumName(ReplToken_Persistence_name, int32(x))
}
func (ReplToken_Persistence) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_014de31d7ac8c57c, []int{2, 0}
}
type ReplToken_WireFormat int32
const (
ReplToken_PROTOBUF ReplToken_WireFormat = 0
ReplToken_JSON ReplToken_WireFormat = 1 )
var ReplToken_WireFormat_name = map[int32]string{
0: "PROTOBUF",
1: "JSON",
}
var ReplToken_WireFormat_value = map[string]int32{
"PROTOBUF": 0,
"JSON": 1,
}
func (x ReplToken_WireFormat) String() string {
return proto.EnumName(ReplToken_WireFormat_name, int32(x))
}
func (ReplToken_WireFormat) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_014de31d7ac8c57c, []int{2, 1}
}
type Repl struct {
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Language string `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"`
Bucket string `protobuf:"bytes,3,opt,name=bucket,proto3" json:"bucket,omitempty"`
Slug string `protobuf:"bytes,4,opt,name=slug,proto3" json:"slug,omitempty"`
User string `protobuf:"bytes,5,opt,name=user,proto3" json:"user,omitempty"`
SourceRepl string `protobuf:"bytes,6,opt,name=sourceRepl,proto3" json:"sourceRepl,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Repl) Reset() { *m = Repl{} }
func (m *Repl) String() string { return proto.CompactTextString(m) }
func (*Repl) ProtoMessage() {}
func (*Repl) Descriptor() ([]byte, []int) {
return fileDescriptor_014de31d7ac8c57c, []int{0}
}
func (m *Repl) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Repl.Unmarshal(m, b)
}
func (m *Repl) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Repl.Marshal(b, m, deterministic)
}
func (m *Repl) XXX_Merge(src proto.Message) {
xxx_messageInfo_Repl.Merge(m, src)
}
func (m *Repl) XXX_Size() int {
return xxx_messageInfo_Repl.Size(m)
}
func (m *Repl) XXX_DiscardUnknown() {
xxx_messageInfo_Repl.DiscardUnknown(m)
}
var xxx_messageInfo_Repl proto.InternalMessageInfo
func (m *Repl) GetId() string {
if m != nil {
return m.Id
}
return ""
}
func (m *Repl) GetLanguage() string {
if m != nil {
return m.Language
}
return ""
}
func (m *Repl) GetBucket() string {
if m != nil {
return m.Bucket
}
return ""
}
func (m *Repl) GetSlug() string {
if m != nil {
return m.Slug
}
return ""
}
func (m *Repl) GetUser() string {
if m != nil {
return m.User
}
return ""
}
func (m *Repl) GetSourceRepl() string {
if m != nil {
return m.SourceRepl
}
return ""
}
type ResourceLimits struct {
Net bool `protobuf:"varint,1,opt,name=net,proto3" json:"net,omitempty"`
Memory int64 `protobuf:"varint,2,opt,name=memory,proto3" json:"memory,omitempty"`
Threads float64 `protobuf:"fixed64,3,opt,name=threads,proto3" json:"threads,omitempty"`
Shares float64 `protobuf:"fixed64,4,opt,name=shares,proto3" json:"shares,omitempty"`
Disk int64 `protobuf:"varint,5,opt,name=disk,proto3" json:"disk,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ResourceLimits) Reset() { *m = ResourceLimits{} }
func (m *ResourceLimits) String() string { return proto.CompactTextString(m) }
func (*ResourceLimits) ProtoMessage() {}
func (*ResourceLimits) Descriptor() ([]byte, []int) {
return fileDescriptor_014de31d7ac8c57c, []int{1}
}
func (m *ResourceLimits) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ResourceLimits.Unmarshal(m, b)
}
func (m *ResourceLimits) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ResourceLimits.Marshal(b, m, deterministic)
}
func (m *ResourceLimits) XXX_Merge(src proto.Message) {
xxx_messageInfo_ResourceLimits.Merge(m, src)
}
func (m *ResourceLimits) XXX_Size() int {
return xxx_messageInfo_ResourceLimits.Size(m)
}
func (m *ResourceLimits) XXX_DiscardUnknown() {
xxx_messageInfo_ResourceLimits.DiscardUnknown(m)
}
var xxx_messageInfo_ResourceLimits proto.InternalMessageInfo
func (m *ResourceLimits) GetNet() bool {
if m != nil {
return m.Net
}
return false
}
func (m *ResourceLimits) GetMemory() int64 {
if m != nil {
return m.Memory
}
return 0
}
func (m *ResourceLimits) GetThreads() float64 {
if m != nil {
return m.Threads
}
return 0
}
func (m *ResourceLimits) GetShares() float64 {
if m != nil {
return m.Shares
}
return 0
}
func (m *ResourceLimits) GetDisk() int64 {
if m != nil {
return m.Disk
}
return 0
}
type ReplToken struct {
Iat *timestamp.Timestamp `protobuf:"bytes,1,opt,name=iat,proto3" json:"iat,omitempty"`
Exp *timestamp.Timestamp `protobuf:"bytes,2,opt,name=exp,proto3" json:"exp,omitempty"`
Salt string `protobuf:"bytes,3,opt,name=salt,proto3" json:"salt,omitempty"`
Cluster string `protobuf:"bytes,4,opt,name=cluster,proto3" json:"cluster,omitempty"`
Persistence ReplToken_Persistence `protobuf:"varint,6,opt,name=persistence,proto3,enum=api.ReplToken_Persistence" json:"persistence,omitempty"`
Metadata isReplToken_Metadata `protobuf_oneof:"metadata"`
ResourceLimits *ResourceLimits `protobuf:"bytes,10,opt,name=resourceLimits,proto3" json:"resourceLimits,omitempty"`
Format ReplToken_WireFormat `protobuf:"varint,12,opt,name=format,proto3,enum=api.ReplToken_WireFormat" json:"format,omitempty"`
Presenced *ReplToken_Presenced `protobuf:"bytes,13,opt,name=presenced,proto3" json:"presenced,omitempty"`
Flags []string `protobuf:"bytes,14,rep,name=flags,proto3" json:"flags,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReplToken) Reset() { *m = ReplToken{} }
func (m *ReplToken) String() string { return proto.CompactTextString(m) }
func (*ReplToken) ProtoMessage() {}
func (*ReplToken) Descriptor() ([]byte, []int) {
return fileDescriptor_014de31d7ac8c57c, []int{2}
}
func (m *ReplToken) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReplToken.Unmarshal(m, b)
}
func (m *ReplToken) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReplToken.Marshal(b, m, deterministic)
}
func (m *ReplToken) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReplToken.Merge(m, src)
}
func (m *ReplToken) XXX_Size() int {
return xxx_messageInfo_ReplToken.Size(m)
}
func (m *ReplToken) XXX_DiscardUnknown() {
xxx_messageInfo_ReplToken.DiscardUnknown(m)
}
var xxx_messageInfo_ReplToken proto.InternalMessageInfo
func (m *ReplToken) GetIat() *timestamp.Timestamp {
if m != nil {
return m.Iat
}
return nil
}
func (m *ReplToken) GetExp() *timestamp.Timestamp {
if m != nil {
return m.Exp
}
return nil
}
func (m *ReplToken) GetSalt() string {
if m != nil {
return m.Salt
}
return ""
}
func (m *ReplToken) GetCluster() string {
if m != nil {
return m.Cluster
}
return ""
}
func (m *ReplToken) GetPersistence() ReplToken_Persistence {
if m != nil {
return m.Persistence
}
return ReplToken_PERSISTENT
}
type isReplToken_Metadata interface {
isReplToken_Metadata()
}
type ReplToken_Repl struct {
Repl *Repl `protobuf:"bytes,7,opt,name=repl,proto3,oneof"`
}
type ReplToken_Id struct {
Id *ReplToken_ReplID `protobuf:"bytes,8,opt,name=id,proto3,oneof"`
}
type ReplToken_Classroom struct {
Classroom *ReplToken_ClassroomMetadata `protobuf:"bytes,9,opt,name=classroom,proto3,oneof"`
}
func (*ReplToken_Repl) isReplToken_Metadata() {}
func (*ReplToken_Id) isReplToken_Metadata() {}
func (*ReplToken_Classroom) isReplToken_Metadata() {}
func (m *ReplToken) GetMetadata() isReplToken_Metadata {
if m != nil {
return m.Metadata
}
return nil
}
func (m *ReplToken) GetRepl() *Repl {
if x, ok := m.GetMetadata().(*ReplToken_Repl); ok {
return x.Repl
}
return nil
}
func (m *ReplToken) GetId() *ReplToken_ReplID {
if x, ok := m.GetMetadata().(*ReplToken_Id); ok {
return x.Id
}
return nil
}
func (m *ReplToken) GetClassroom() *ReplToken_ClassroomMetadata {
if x, ok := m.GetMetadata().(*ReplToken_Classroom); ok {
return x.Classroom
}
return nil
}
func (m *ReplToken) GetResourceLimits() *ResourceLimits {
if m != nil {
return m.ResourceLimits
}
return nil
}
func (m *ReplToken) GetFormat() ReplToken_WireFormat {
if m != nil {
return m.Format
}
return ReplToken_PROTOBUF
}
func (m *ReplToken) GetPresenced() *ReplToken_Presenced {
if m != nil {
return m.Presenced
}
return nil
}
func (m *ReplToken) GetFlags() []string {
if m != nil {
return m.Flags
}
return nil
}
func (*ReplToken) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*ReplToken_Repl)(nil),
(*ReplToken_Id)(nil),
(*ReplToken_Classroom)(nil),
}
}
type ReplToken_ClassroomMetadata struct {
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Language string `protobuf:"bytes,2,opt,name=language,proto3" json:"language,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReplToken_ClassroomMetadata) Reset() { *m = ReplToken_ClassroomMetadata{} }
func (m *ReplToken_ClassroomMetadata) String() string { return proto.CompactTextString(m) }
func (*ReplToken_ClassroomMetadata) ProtoMessage() {}
func (*ReplToken_ClassroomMetadata) Descriptor() ([]byte, []int) {
return fileDescriptor_014de31d7ac8c57c, []int{2, 0}
}
func (m *ReplToken_ClassroomMetadata) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReplToken_ClassroomMetadata.Unmarshal(m, b)
}
func (m *ReplToken_ClassroomMetadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReplToken_ClassroomMetadata.Marshal(b, m, deterministic)
}
func (m *ReplToken_ClassroomMetadata) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReplToken_ClassroomMetadata.Merge(m, src)
}
func (m *ReplToken_ClassroomMetadata) XXX_Size() int {
return xxx_messageInfo_ReplToken_ClassroomMetadata.Size(m)
}
func (m *ReplToken_ClassroomMetadata) XXX_DiscardUnknown() {
xxx_messageInfo_ReplToken_ClassroomMetadata.DiscardUnknown(m)
}
var xxx_messageInfo_ReplToken_ClassroomMetadata proto.InternalMessageInfo
func (m *ReplToken_ClassroomMetadata) GetId() string {
if m != nil {
return m.Id
}
return ""
}
func (m *ReplToken_ClassroomMetadata) GetLanguage() string {
if m != nil {
return m.Language
}
return ""
}
type ReplToken_ReplID struct {
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
SourceRepl string `protobuf:"bytes,2,opt,name=sourceRepl,proto3" json:"sourceRepl,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReplToken_ReplID) Reset() { *m = ReplToken_ReplID{} }
func (m *ReplToken_ReplID) String() string { return proto.CompactTextString(m) }
func (*ReplToken_ReplID) ProtoMessage() {}
func (*ReplToken_ReplID) Descriptor() ([]byte, []int) {
return fileDescriptor_014de31d7ac8c57c, []int{2, 1}
}
func (m *ReplToken_ReplID) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReplToken_ReplID.Unmarshal(m, b)
}
func (m *ReplToken_ReplID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReplToken_ReplID.Marshal(b, m, deterministic)
}
func (m *ReplToken_ReplID) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReplToken_ReplID.Merge(m, src)
}
func (m *ReplToken_ReplID) XXX_Size() int {
return xxx_messageInfo_ReplToken_ReplID.Size(m)
}
func (m *ReplToken_ReplID) XXX_DiscardUnknown() {
xxx_messageInfo_ReplToken_ReplID.DiscardUnknown(m)
}
var xxx_messageInfo_ReplToken_ReplID proto.InternalMessageInfo
func (m *ReplToken_ReplID) GetId() string {
if m != nil {
return m.Id
}
return ""
}
func (m *ReplToken_ReplID) GetSourceRepl() string {
if m != nil {
return m.SourceRepl
}
return ""
}
type ReplToken_Presenced struct {
BearerID uint32 `protobuf:"varint,1,opt,name=bearerID,proto3" json:"bearerID,omitempty"`
BearerName string `protobuf:"bytes,2,opt,name=bearerName,proto3" json:"bearerName,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ReplToken_Presenced) Reset() { *m = ReplToken_Presenced{} }
func (m *ReplToken_Presenced) String() string { return proto.CompactTextString(m) }
func (*ReplToken_Presenced) ProtoMessage() {}
func (*ReplToken_Presenced) Descriptor() ([]byte, []int) {
return fileDescriptor_014de31d7ac8c57c, []int{2, 2}
}
func (m *ReplToken_Presenced) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ReplToken_Presenced.Unmarshal(m, b)
}
func (m *ReplToken_Presenced) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ReplToken_Presenced.Marshal(b, m, deterministic)
}
func (m *ReplToken_Presenced) XXX_Merge(src proto.Message) {
xxx_messageInfo_ReplToken_Presenced.Merge(m, src)
}
func (m *ReplToken_Presenced) XXX_Size() int {
return xxx_messageInfo_ReplToken_Presenced.Size(m)
}
func (m *ReplToken_Presenced) XXX_DiscardUnknown() {
xxx_messageInfo_ReplToken_Presenced.DiscardUnknown(m)
}
var xxx_messageInfo_ReplToken_Presenced proto.InternalMessageInfo
func (m *ReplToken_Presenced) GetBearerID() uint32 {
if m != nil {
return m.BearerID
}
return 0
}
func (m *ReplToken_Presenced) GetBearerName() string {
if m != nil {
return m.BearerName
}
return ""
}
func init() {
proto.RegisterEnum("api.ReplToken_Persistence", ReplToken_Persistence_name, ReplToken_Persistence_value)
proto.RegisterEnum("api.ReplToken_WireFormat", ReplToken_WireFormat_name, ReplToken_WireFormat_value)
proto.RegisterType((*Repl)(nil), "api.Repl")
proto.RegisterType((*ResourceLimits)(nil), "api.ResourceLimits")
proto.RegisterType((*ReplToken)(nil), "api.ReplToken")
proto.RegisterType((*ReplToken_ClassroomMetadata)(nil), "api.ReplToken.ClassroomMetadata")
proto.RegisterType((*ReplToken_ReplID)(nil), "api.ReplToken.ReplID")
proto.RegisterType((*ReplToken_Presenced)(nil), "api.ReplToken.Presenced")
}
func init() { proto.RegisterFile("client.proto", fileDescriptor_014de31d7ac8c57c) }
var fileDescriptor_014de31d7ac8c57c = []byte{
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0x5f, 0x6f, 0xd3, 0x3e,
0x14, 0x6d, 0xfe, 0x2c, 0x4b, 0xee, 0xba, 0xaa, 0x3f, 0xff, 0x00, 0x99, 0x3c, 0xb0, 0xa9, 0x2f,
0xec, 0x01, 0x65, 0x62, 0x48, 0x13, 0x12, 0x48, 0x88, 0xb1, 0x8e, 0x0e, 0x6d, 0x6d, 0xe5, 0x15,
0x21, 0xf1, 0xe6, 0xb6, 0x5e, 0x67, 0x35, 0x69, 0x22, 0xdb, 0x91, 0xc6, 0x1b, 0x9f, 0x81, 0xaf,
0xc6, 0x17, 0x42, 0xbe, 0x69, 0xda, 0xae, 0x7b, 0x40, 0xbc, 0xdd, 0x73, 0xee, 0xf1, 0xbd, 0x27,
0x27, 0x36, 0x34, 0x27, 0xa9, 0x14, 0x0b, 0x93, 0x14, 0x2a, 0x37, 0x39, 0xf1, 0x78, 0x21, 0xe3,
0x83, 0x59, 0x9e, 0xcf, 0x52, 0x71, 0x8c, 0xd4, 0xb8, 0xbc, 0x3d, 0x36, 0x32, 0x13, 0xda, 0xf0,
0xac, 0xa8, 0x54, 0x9d, 0x5f, 0x0e, 0xf8, 0x4c, 0x14, 0x29, 0x69, 0x81, 0x2b, 0xa7, 0xd4, 0x39,
0x74, 0x8e, 0x22, 0xe6, 0xca, 0x29, 0x89, 0x21, 0x4c, 0xf9, 0x62, 0x56, 0xf2, 0x99, 0xa0, 0x2e,
0xb2, 0x2b, 0x4c, 0x9e, 0x41, 0x30, 0x2e, 0x27, 0x73, 0x61, 0xa8, 0x87, 0x9d, 0x25, 0x22, 0x04,
0x7c, 0x9d, 0x96, 0x33, 0xea, 0x23, 0x8b, 0xb5, 0xe5, 0x4a, 0x2d, 0x14, 0xdd, 0xa9, 0x38, 0x5b,
0x93, 0x17, 0x00, 0x3a, 0x2f, 0xd5, 0x44, 0xd8, 0xcd, 0x34, 0xc0, 0xce, 0x06, 0xd3, 0xf9, 0xe9,
0x40, 0x8b, 0x89, 0x8a, 0xb8, 0x92, 0x99, 0x34, 0x9a, 0xb4, 0xc1, 0x5b, 0x08, 0x83, 0xfe, 0x42,
0x66, 0x4b, 0x6b, 0x22, 0x13, 0x59, 0xae, 0x7e, 0xa0, 0x3d, 0x8f, 0x2d, 0x11, 0xa1, 0xb0, 0x6b,
0xee, 0x94, 0xe0, 0x53, 0x8d, 0xee, 0x1c, 0x56, 0x43, 0x7b, 0x42, 0xdf, 0x71, 0x25, 0x34, 0x1a,
0x74, 0xd8, 0x12, 0x59, 0x8b, 0x53, 0xa9, 0xe7, 0x68, 0xd1, 0x63, 0x58, 0x77, 0x7e, 0x07, 0x10,
0x59, 0x2f, 0xa3, 0x7c, 0x2e, 0x16, 0xe4, 0x15, 0x78, 0x92, 0x57, 0xdb, 0xf7, 0x4e, 0xe2, 0xa4,
0x0a, 0x35, 0xa9, 0x43, 0x4d, 0x46, 0x75, 0xa8, 0xcc, 0xca, 0xac, 0x5a, 0xdc, 0x17, 0x68, 0xeb,
0x2f, 0x6a, 0x71, 0x5f, 0x60, 0x68, 0x3c, 0xad, 0xa3, 0xc4, 0xda, 0x7e, 0xc3, 0x24, 0x2d, 0xb5,
0x11, 0x6a, 0x99, 0x65, 0x0d, 0xc9, 0x7b, 0xd8, 0x2b, 0x84, 0xd2, 0x52, 0x1b, 0xb1, 0x98, 0x08,
0xcc, 0xae, 0x75, 0x12, 0x27, 0xbc, 0x90, 0xc9, 0xca, 0x6e, 0x32, 0x5c, 0x2b, 0xd8, 0xa6, 0x9c,
0x1c, 0x80, 0xaf, 0x6c, 0xe4, 0xbb, 0x68, 0x2d, 0x5a, 0x1d, 0xeb, 0x35, 0x18, 0x36, 0xc8, 0x4b,
0xbc, 0x05, 0x21, 0xb6, 0x9f, 0x6e, 0x4d, 0xb5, 0xd5, 0xe5, 0x79, 0xaf, 0x81, 0xd7, 0xe3, 0x1c,
0xa2, 0x49, 0xca, 0xb5, 0x56, 0x79, 0x9e, 0xd1, 0x08, 0xf5, 0x87, 0x5b, 0xfa, 0x4f, 0x75, 0xff,
0x5a, 0x18, 0x3e, 0xe5, 0x86, 0x9f, 0xb9, 0xd4, 0xe9, 0x35, 0xd8, 0xfa, 0x20, 0x79, 0x07, 0x2d,
0xf5, 0xe0, 0x3f, 0x53, 0xc0, 0x51, 0xff, 0x2f, 0x47, 0x6d, 0xb6, 0xd8, 0x96, 0x94, 0xbc, 0x86,
0xe0, 0x36, 0x57, 0x19, 0x37, 0xb4, 0x89, 0x29, 0x3c, 0xdf, 0xda, 0xff, 0x4d, 0x2a, 0x71, 0x81,
0x02, 0xb6, 0x14, 0x92, 0x53, 0x88, 0x0a, 0x25, 0xb4, 0xcd, 0x62, 0x4a, 0xf7, 0x71, 0x15, 0xdd,
0xce, 0xae, 0xee, 0xb3, 0xb5, 0x94, 0x3c, 0x81, 0x9d, 0xdb, 0x94, 0xcf, 0x34, 0x6d, 0x1d, 0x7a,
0x47, 0x11, 0xab, 0x40, 0xfc, 0x01, 0xfe, 0x7b, 0xf4, 0x8d, 0xff, 0xf2, 0x8e, 0xe2, 0xb7, 0x10,
0x54, 0xa1, 0x3e, 0x3a, 0xf5, 0xf0, 0x85, 0xb8, 0xdb, 0x2f, 0x24, 0xfe, 0x0c, 0xd1, 0xca, 0xa8,
0x5d, 0x31, 0x16, 0x5c, 0x09, 0x75, 0x79, 0x8e, 0x23, 0xf6, 0xd9, 0x0a, 0xdb, 0x41, 0x55, 0xdd,
0xe7, 0x59, 0x6d, 0x60, 0x83, 0xe9, 0x9c, 0xc2, 0xde, 0xc6, 0x6d, 0x21, 0x2d, 0x80, 0x61, 0x97,
0xdd, 0x5c, 0xde, 0x8c, 0xba, 0xfd, 0x51, 0xbb, 0x41, 0xf6, 0x21, 0xea, 0x0e, 0x7b, 0xdd, 0xeb,
0x2e, 0xfb, 0x78, 0xd5, 0x76, 0x48, 0x08, 0x7e, 0x7f, 0xd0, 0xef, 0xb6, 0xdd, 0xce, 0x11, 0xc0,
0x3a, 0x5f, 0xd2, 0x84, 0x70, 0xc8, 0x06, 0xa3, 0xc1, 0xd9, 0xd7, 0x8b, 0x76, 0x83, 0x34, 0xc1,
0xff, 0x72, 0x33, 0xe8, 0xb7, 0x9d, 0xd8, 0x0d, 0x9d, 0x33, 0x80, 0x30, 0xab, 0x2f, 0x40, 0xf0,
0xdd, 0x3f, 0xe6, 0x85, 0x1c, 0x07, 0xf8, 0x18, 0xde, 0xfc, 0x09, 0x00, 0x00, 0xff, 0xff, 0xd8,
0x6b, 0x3c, 0xff, 0xb2, 0x04, 0x00, 0x00,
}