-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkodec.pb.go
597 lines (532 loc) · 16.7 KB
/
kodec.pb.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
// Code generated by protoc-gen-go.
// source: kodec.proto
// DO NOT EDIT!
/*
Package kodec is a generated protocol buffer package.
It is generated from these files:
kodec.proto
It has these top-level messages:
Msg
Card
File
Cmd
Meta
Ack
*/
package kodec
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import 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.
const _ = proto.ProtoPackageIsVersion1
type Msg_Type int32
const (
Msg_UNKNOWN Msg_Type = 0
Msg_TXT Msg_Type = 1
Msg_IMG Msg_Type = 2
Msg_VOICE Msg_Type = 3
Msg_SYS Msg_Type = 4
Msg_CARD Msg_Type = 5
Msg_GIF Msg_Type = 6
Msg_NEWS Msg_Type = 7
Msg_FILE Msg_Type = 8
)
var Msg_Type_name = map[int32]string{
0: "UNKNOWN",
1: "TXT",
2: "IMG",
3: "VOICE",
4: "SYS",
5: "CARD",
6: "GIF",
7: "NEWS",
8: "FILE",
}
var Msg_Type_value = map[string]int32{
"UNKNOWN": 0,
"TXT": 1,
"IMG": 2,
"VOICE": 3,
"SYS": 4,
"CARD": 5,
"GIF": 6,
"NEWS": 7,
"FILE": 8,
}
func (x Msg_Type) Enum() *Msg_Type {
p := new(Msg_Type)
*p = x
return p
}
func (x Msg_Type) String() string {
return proto.EnumName(Msg_Type_name, int32(x))
}
func (x *Msg_Type) UnmarshalJSON(data []byte) error {
value, err := proto.UnmarshalJSONEnum(Msg_Type_value, data, "Msg_Type")
if err != nil {
return err
}
*x = Msg_Type(value)
return nil
}
func (Msg_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{0, 0} }
type File_Type int32
const (
File_UNKNOWN File_Type = 0
File_PDF File_Type = 1
File_DOC File_Type = 2
File_XLS File_Type = 3
File_PPT File_Type = 4
File_IMG File_Type = 5
File_TXT File_Type = 6
)
var File_Type_name = map[int32]string{
0: "UNKNOWN",
1: "PDF",
2: "DOC",
3: "XLS",
4: "PPT",
5: "IMG",
6: "TXT",
}
var File_Type_value = map[string]int32{
"UNKNOWN": 0,
"PDF": 1,
"DOC": 2,
"XLS": 3,
"PPT": 4,
"IMG": 5,
"TXT": 6,
}
func (x File_Type) Enum() *File_Type {
p := new(File_Type)
*p = x
return p
}
func (x File_Type) String() string {
return proto.EnumName(File_Type_name, int32(x))
}
func (x *File_Type) UnmarshalJSON(data []byte) error {
value, err := proto.UnmarshalJSONEnum(File_Type_value, data, "File_Type")
if err != nil {
return err
}
*x = File_Type(value)
return nil
}
func (File_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{2, 0} }
type Cmd_Type int32
const (
Cmd_UNKNOWN Cmd_Type = 0
Cmd_UNAUTHORIZED Cmd_Type = 1
Cmd_PING Cmd_Type = 2
Cmd_VISIT Cmd_Type = 3
Cmd_SYNC Cmd_Type = 4
Cmd_NOTICE Cmd_Type = 5
)
var Cmd_Type_name = map[int32]string{
0: "UNKNOWN",
1: "UNAUTHORIZED",
2: "PING",
3: "VISIT",
4: "SYNC",
5: "NOTICE",
}
var Cmd_Type_value = map[string]int32{
"UNKNOWN": 0,
"UNAUTHORIZED": 1,
"PING": 2,
"VISIT": 3,
"SYNC": 4,
"NOTICE": 5,
}
func (x Cmd_Type) Enum() *Cmd_Type {
p := new(Cmd_Type)
*p = x
return p
}
func (x Cmd_Type) String() string {
return proto.EnumName(Cmd_Type_name, int32(x))
}
func (x *Cmd_Type) UnmarshalJSON(data []byte) error {
value, err := proto.UnmarshalJSONEnum(Cmd_Type_value, data, "Cmd_Type")
if err != nil {
return err
}
*x = Cmd_Type(value)
return nil
}
func (Cmd_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{3, 0} }
type Meta_Type int32
const (
Meta_UNKNOWN Meta_Type = 0
Meta_JOIN_TOK Meta_Type = 1
Meta_LEAVE_TOK Meta_Type = 2
Meta_DISMISS_TOK Meta_Type = 3
Meta_EVENT_CHANGE Meta_Type = 4
Meta_ADD_FRIEND Meta_Type = 5
Meta_DEL_FRIEND Meta_Type = 6
Meta_USER_UPDATE Meta_Type = 7
Meta_SETUP_TOK Meta_Type = 8
Meta_UPDATE_TOK Meta_Type = 9
Meta_NEWS Meta_Type = 10
Meta_LANDING_PHONE Meta_Type = 11
Meta_VOIP Meta_Type = 12
Meta_VIDEO Meta_Type = 13
Meta_CONSULAR_PHONE Meta_Type = 14
Meta_PENDING_FRIEND Meta_Type = 15
Meta_NOTICE Meta_Type = 16
)
var Meta_Type_name = map[int32]string{
0: "UNKNOWN",
1: "JOIN_TOK",
2: "LEAVE_TOK",
3: "DISMISS_TOK",
4: "EVENT_CHANGE",
5: "ADD_FRIEND",
6: "DEL_FRIEND",
7: "USER_UPDATE",
8: "SETUP_TOK",
9: "UPDATE_TOK",
10: "NEWS",
11: "LANDING_PHONE",
12: "VOIP",
13: "VIDEO",
14: "CONSULAR_PHONE",
15: "PENDING_FRIEND",
16: "NOTICE",
}
var Meta_Type_value = map[string]int32{
"UNKNOWN": 0,
"JOIN_TOK": 1,
"LEAVE_TOK": 2,
"DISMISS_TOK": 3,
"EVENT_CHANGE": 4,
"ADD_FRIEND": 5,
"DEL_FRIEND": 6,
"USER_UPDATE": 7,
"SETUP_TOK": 8,
"UPDATE_TOK": 9,
"NEWS": 10,
"LANDING_PHONE": 11,
"VOIP": 12,
"VIDEO": 13,
"CONSULAR_PHONE": 14,
"PENDING_FRIEND": 15,
"NOTICE": 16,
}
func (x Meta_Type) Enum() *Meta_Type {
p := new(Meta_Type)
*p = x
return p
}
func (x Meta_Type) String() string {
return proto.EnumName(Meta_Type_name, int32(x))
}
func (x *Meta_Type) UnmarshalJSON(data []byte) error {
value, err := proto.UnmarshalJSONEnum(Meta_Type_value, data, "Meta_Type")
if err != nil {
return err
}
*x = Meta_Type(value)
return nil
}
func (Meta_Type) EnumDescriptor() ([]byte, []int) { return fileDescriptor0, []int{4, 0} }
// bag id = 0
type Msg struct {
To *string `protobuf:"bytes,1,req,name=to" json:"to,omitempty"`
From *int64 `protobuf:"varint,2,opt,name=from" json:"from,omitempty"`
Tp *Msg_Type `protobuf:"varint,3,opt,name=tp,enum=Msg_Type,def=0" json:"tp,omitempty"`
Desc *string `protobuf:"bytes,4,opt,name=desc,def=" json:"desc,omitempty"`
// d has different meanings for different type:
// TXT & SYS: text content
// IMG: image binary
// VOICE: voice binary
// CARD: Card binary
D []byte `protobuf:"bytes,5,req,name=d" json:"d,omitempty"`
Ct *int64 `protobuf:"varint,6,opt,name=ct" json:"ct,omitempty"`
Meta []*Meta `protobuf:"bytes,7,rep,name=meta" json:"meta,omitempty"`
Id *string `protobuf:"bytes,8,opt,name=id,def=" json:"id,omitempty"`
At []int64 `protobuf:"varint,9,rep,name=at" json:"at,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *Msg) Reset() { *m = Msg{} }
func (m *Msg) String() string { return proto.CompactTextString(m) }
func (*Msg) ProtoMessage() {}
func (*Msg) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
const Default_Msg_Tp Msg_Type = Msg_UNKNOWN
func (m *Msg) GetTo() string {
if m != nil && m.To != nil {
return *m.To
}
return ""
}
func (m *Msg) GetFrom() int64 {
if m != nil && m.From != nil {
return *m.From
}
return 0
}
func (m *Msg) GetTp() Msg_Type {
if m != nil && m.Tp != nil {
return *m.Tp
}
return Default_Msg_Tp
}
func (m *Msg) GetDesc() string {
if m != nil && m.Desc != nil {
return *m.Desc
}
return ""
}
func (m *Msg) GetD() []byte {
if m != nil {
return m.D
}
return nil
}
func (m *Msg) GetCt() int64 {
if m != nil && m.Ct != nil {
return *m.Ct
}
return 0
}
func (m *Msg) GetMeta() []*Meta {
if m != nil {
return m.Meta
}
return nil
}
func (m *Msg) GetId() string {
if m != nil && m.Id != nil {
return *m.Id
}
return ""
}
func (m *Msg) GetAt() []int64 {
if m != nil {
return m.At
}
return nil
}
// the user card
type Card struct {
Uid *int64 `protobuf:"varint,1,req,name=uid" json:"uid,omitempty"`
Name *string `protobuf:"bytes,2,req,name=name" json:"name,omitempty"`
Icon *string `protobuf:"bytes,3,opt,name=icon" json:"icon,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *Card) Reset() { *m = Card{} }
func (m *Card) String() string { return proto.CompactTextString(m) }
func (*Card) ProtoMessage() {}
func (*Card) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
func (m *Card) GetUid() int64 {
if m != nil && m.Uid != nil {
return *m.Uid
}
return 0
}
func (m *Card) GetName() string {
if m != nil && m.Name != nil {
return *m.Name
}
return ""
}
func (m *Card) GetIcon() string {
if m != nil && m.Icon != nil {
return *m.Icon
}
return ""
}
type File struct {
Name *string `protobuf:"bytes,1,req,name=name" json:"name,omitempty"`
Size *int64 `protobuf:"varint,2,req,name=size" json:"size,omitempty"`
Dl *string `protobuf:"bytes,3,req,name=dl" json:"dl,omitempty"`
Tp *File_Type `protobuf:"varint,4,opt,name=tp,enum=File_Type,def=0" json:"tp,omitempty"`
D []byte `protobuf:"bytes,5,opt,name=d" json:"d,omitempty"`
// 原始文件,默认值true
Original *bool `protobuf:"varint,6,opt,name=original,def=1" json:"original,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *File) Reset() { *m = File{} }
func (m *File) String() string { return proto.CompactTextString(m) }
func (*File) ProtoMessage() {}
func (*File) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{2} }
const Default_File_Tp File_Type = File_UNKNOWN
const Default_File_Original bool = true
func (m *File) GetName() string {
if m != nil && m.Name != nil {
return *m.Name
}
return ""
}
func (m *File) GetSize() int64 {
if m != nil && m.Size != nil {
return *m.Size
}
return 0
}
func (m *File) GetDl() string {
if m != nil && m.Dl != nil {
return *m.Dl
}
return ""
}
func (m *File) GetTp() File_Type {
if m != nil && m.Tp != nil {
return *m.Tp
}
return Default_File_Tp
}
func (m *File) GetD() []byte {
if m != nil {
return m.D
}
return nil
}
func (m *File) GetOriginal() bool {
if m != nil && m.Original != nil {
return *m.Original
}
return Default_File_Original
}
// bag id = 1
type Cmd struct {
Tp *Cmd_Type `protobuf:"varint,1,opt,name=tp,enum=Cmd_Type,def=0" json:"tp,omitempty"`
Ct *int64 `protobuf:"varint,2,req,name=ct" json:"ct,omitempty"`
Txt *string `protobuf:"bytes,3,opt,name=txt,def=" json:"txt,omitempty"`
Meta []*Meta `protobuf:"bytes,4,rep,name=meta" json:"meta,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *Cmd) Reset() { *m = Cmd{} }
func (m *Cmd) String() string { return proto.CompactTextString(m) }
func (*Cmd) ProtoMessage() {}
func (*Cmd) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{3} }
const Default_Cmd_Tp Cmd_Type = Cmd_UNKNOWN
func (m *Cmd) GetTp() Cmd_Type {
if m != nil && m.Tp != nil {
return *m.Tp
}
return Default_Cmd_Tp
}
func (m *Cmd) GetCt() int64 {
if m != nil && m.Ct != nil {
return *m.Ct
}
return 0
}
func (m *Cmd) GetTxt() string {
if m != nil && m.Txt != nil {
return *m.Txt
}
return ""
}
func (m *Cmd) GetMeta() []*Meta {
if m != nil {
return m.Meta
}
return nil
}
// meta, add invisible payload to message & command
type Meta struct {
Tp *Meta_Type `protobuf:"varint,1,opt,name=tp,enum=Meta_Type,def=0" json:"tp,omitempty"`
// for JOIN_TOK/LEAVE_TOK, it's comma separated uids
// for event change it's event id
// for ADD_FRIEND/DEL_FRIEND/USER_UPDATE, it's comma separated uids
// for USER_UPDATE, it's uid
// for SETUP_TOK, UPDATE_TOK, it's nothing
Txt *string `protobuf:"bytes,2,req,name=txt" json:"txt,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *Meta) Reset() { *m = Meta{} }
func (m *Meta) String() string { return proto.CompactTextString(m) }
func (*Meta) ProtoMessage() {}
func (*Meta) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{4} }
const Default_Meta_Tp Meta_Type = Meta_UNKNOWN
func (m *Meta) GetTp() Meta_Type {
if m != nil && m.Tp != nil {
return *m.Tp
}
return Default_Meta_Tp
}
func (m *Meta) GetTxt() string {
if m != nil && m.Txt != nil {
return *m.Txt
}
return ""
}
type Ack struct {
Id *string `protobuf:"bytes,1,req,name=id" json:"id,omitempty"`
XXX_unrecognized []byte `json:"-"`
}
func (m *Ack) Reset() { *m = Ack{} }
func (m *Ack) String() string { return proto.CompactTextString(m) }
func (*Ack) ProtoMessage() {}
func (*Ack) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{5} }
func (m *Ack) GetId() string {
if m != nil && m.Id != nil {
return *m.Id
}
return ""
}
func init() {
proto.RegisterType((*Msg)(nil), "Msg")
proto.RegisterType((*Card)(nil), "Card")
proto.RegisterType((*File)(nil), "File")
proto.RegisterType((*Cmd)(nil), "Cmd")
proto.RegisterType((*Meta)(nil), "Meta")
proto.RegisterType((*Ack)(nil), "Ack")
proto.RegisterEnum("Msg_Type", Msg_Type_name, Msg_Type_value)
proto.RegisterEnum("File_Type", File_Type_name, File_Type_value)
proto.RegisterEnum("Cmd_Type", Cmd_Type_name, Cmd_Type_value)
proto.RegisterEnum("Meta_Type", Meta_Type_name, Meta_Type_value)
}
var fileDescriptor0 = []byte{
// 649 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0x74, 0x94, 0x4d, 0x4f, 0xdb, 0x4c,
0x10, 0xc7, 0xb1, 0xd7, 0x79, 0xf1, 0xe4, 0x85, 0xc5, 0x8f, 0xf4, 0xd4, 0x97, 0x16, 0xe4, 0x13,
0x27, 0x57, 0xe2, 0xc8, 0xcd, 0xd8, 0x1b, 0xd8, 0x92, 0xac, 0xad, 0xd8, 0xe6, 0xa5, 0x97, 0x34,
0xc4, 0x2e, 0xb5, 0x20, 0x98, 0x06, 0x47, 0xa2, 0xfd, 0x06, 0xfd, 0x24, 0xfd, 0x14, 0x95, 0xfa,
0xad, 0x7a, 0xed, 0xec, 0xda, 0x41, 0x08, 0xd1, 0x9b, 0x77, 0x76, 0x66, 0xe7, 0x3f, 0xbf, 0xff,
0xc8, 0xd0, 0xbb, 0x29, 0xb3, 0x7c, 0xe1, 0xde, 0xaf, 0xca, 0xaa, 0x74, 0xfe, 0x68, 0x40, 0x26,
0x0f, 0xd7, 0x16, 0x80, 0x5e, 0x95, 0xb6, 0xb6, 0xa7, 0xef, 0x9b, 0x56, 0x1f, 0x8c, 0xcf, 0xab,
0x72, 0x69, 0xeb, 0x7b, 0xda, 0x3e, 0xb1, 0xde, 0xe1, 0xcd, 0xbd, 0x4d, 0xf0, 0x7b, 0x78, 0x60,
0xba, 0x98, 0xeb, 0x26, 0xdf, 0xee, 0xf3, 0xc3, 0x4e, 0x2a, 0x4e, 0x45, 0x78, 0x2e, 0xac, 0x21,
0x18, 0x59, 0xfe, 0xb0, 0xb0, 0x0d, 0xcc, 0x30, 0x0f, 0xb7, 0x2c, 0x13, 0xb4, 0xcc, 0x6e, 0xe1,
0x43, 0x7d, 0xf9, 0xe8, 0xa2, 0xb2, 0xdb, 0xea, 0x99, 0xff, 0xc0, 0x58, 0xe6, 0xd5, 0xdc, 0xee,
0xec, 0x91, 0xfd, 0xde, 0x41, 0xcb, 0x9d, 0xe0, 0x01, 0x3b, 0xe9, 0x45, 0x66, 0x77, 0x9b, 0x4a,
0x4c, 0x9f, 0x57, 0xb6, 0x89, 0x09, 0xc4, 0xf9, 0x04, 0x86, 0x6c, 0x63, 0xf5, 0x60, 0xd3, 0x88,
0x6e, 0x59, 0x1d, 0x20, 0xc9, 0x45, 0x42, 0x35, 0xf9, 0xc1, 0x27, 0xc7, 0x54, 0xc7, 0x66, 0xad,
0xb3, 0x90, 0xfb, 0x8c, 0x12, 0x19, 0x8b, 0x2f, 0x63, 0x6a, 0x58, 0x5d, 0x30, 0x7c, 0x6f, 0x1a,
0xd0, 0x96, 0x0c, 0x1d, 0xf3, 0x11, 0x6d, 0xcb, 0x90, 0x60, 0xe7, 0x31, 0xed, 0xc8, 0xaf, 0x11,
0x1f, 0x33, 0xda, 0x75, 0xde, 0x63, 0xda, 0x7c, 0x95, 0x61, 0x07, 0xb2, 0x46, 0x11, 0x72, 0x74,
0x22, 0x47, 0xbf, 0x9b, 0x2f, 0x73, 0x1c, 0xbd, 0x01, 0x51, 0x2c, 0xca, 0x3b, 0x35, 0xbc, 0xe9,
0xfc, 0xd2, 0xb0, 0xb6, 0xb8, 0xcd, 0x9f, 0x92, 0x9e, 0x68, 0x3d, 0x14, 0xdf, 0xeb, 0x12, 0x22,
0x67, 0xc8, 0x6e, 0xb1, 0x40, 0xde, 0xec, 0x2a, 0x72, 0x86, 0x22, 0x07, 0xae, 0x2c, 0x7d, 0x81,
0xae, 0x41, 0xa5, 0x21, 0xaa, 0xff, 0xa1, 0x5b, 0xae, 0x8a, 0xeb, 0xe2, 0x6e, 0x7e, 0xab, 0x80,
0x75, 0x0f, 0x8d, 0x6a, 0xb5, 0xce, 0x1d, 0xfe, 0x0f, 0x0e, 0x51, 0x30, 0xaa, 0x39, 0x04, 0xa1,
0x8f, 0x1c, 0xf0, 0xe3, 0x62, 0x1c, 0xd7, 0x14, 0xa2, 0x28, 0x41, 0x0a, 0x0d, 0xa2, 0xd6, 0x06,
0x5a, 0xdb, 0xf9, 0x89, 0x56, 0xfb, 0xcb, 0xac, 0x31, 0x54, 0x6b, 0x0c, 0xc5, 0xc8, 0x0b, 0x55,
0xb5, 0x6b, 0xf5, 0x38, 0x03, 0x20, 0xd5, 0x63, 0x55, 0x03, 0x40, 0x87, 0x36, 0x26, 0x1a, 0xcf,
0x4c, 0x74, 0xa2, 0xd7, 0x24, 0x52, 0xe8, 0xa7, 0xc2, 0x4b, 0x93, 0x93, 0x70, 0xca, 0x3f, 0xb2,
0x00, 0xb5, 0x22, 0xf9, 0x88, 0x8b, 0x8d, 0x69, 0x3c, 0xe6, 0x09, 0xca, 0xc5, 0x60, 0x7c, 0x29,
0x7c, 0xd4, 0x0b, 0xd0, 0x16, 0x61, 0x22, 0xad, 0x6c, 0x39, 0xbf, 0x75, 0x30, 0xd4, 0x7e, 0xec,
0x3e, 0x93, 0x0a, 0xaa, 0xdb, 0x0b, 0xad, 0xbd, 0x5a, 0x9f, 0xb2, 0xcb, 0xf9, 0xa1, 0xbf, 0xa6,
0xa4, 0x0f, 0xdd, 0x0f, 0x21, 0x17, 0xb3, 0x24, 0x3c, 0x45, 0x15, 0x03, 0x30, 0xc7, 0xcc, 0x3b,
0x63, 0xea, 0xa8, 0x5b, 0xdb, 0xd0, 0x0b, 0x78, 0x3c, 0xe1, 0x71, 0xac, 0x02, 0x44, 0xea, 0x66,
0x67, 0x4c, 0x24, 0x33, 0xff, 0xc4, 0x13, 0xc7, 0x0c, 0x85, 0x0d, 0x01, 0xbc, 0x20, 0x98, 0x8d,
0xa6, 0x9c, 0x09, 0xb9, 0x54, 0x78, 0x0e, 0xd8, 0x78, 0x73, 0x6e, 0xcb, 0x27, 0xd2, 0x98, 0x4d,
0x67, 0x69, 0x14, 0x78, 0x09, 0xc3, 0x15, 0xc3, 0x16, 0x31, 0x4b, 0xd2, 0x48, 0xbd, 0xd8, 0x95,
0xf9, 0xf5, 0x95, 0x3a, 0x9b, 0x4f, 0xbb, 0x08, 0xd6, 0x0e, 0x0c, 0xc6, 0x9e, 0x08, 0x10, 0xca,
0x2c, 0x3a, 0x09, 0x05, 0xa3, 0x3d, 0x79, 0x89, 0xfb, 0x1c, 0xd1, 0x7e, 0x0d, 0x29, 0x60, 0x21,
0x1d, 0x58, 0x16, 0x0c, 0xfd, 0x50, 0xc4, 0xe9, 0xd8, 0x9b, 0x36, 0x89, 0x43, 0x19, 0x8b, 0x58,
0x5d, 0xdb, 0x28, 0xd9, 0x7e, 0x86, 0x90, 0x3a, 0x3b, 0x40, 0xbc, 0xc5, 0x8d, 0xf4, 0xb2, 0xd9,
0x6d, 0xf3, 0xe8, 0x2d, 0xbc, 0x59, 0x94, 0x4b, 0xf7, 0xba, 0xa8, 0xbe, 0xac, 0xaf, 0xdc, 0xaf,
0xeb, 0xfc, 0x31, 0x5f, 0xb9, 0xea, 0x5f, 0x70, 0xa4, 0x47, 0x57, 0x7f, 0x03, 0x00, 0x00, 0xff,
0xff, 0x1d, 0x13, 0x7a, 0x99, 0x17, 0x04, 0x00, 0x00,
}