-
Notifications
You must be signed in to change notification settings - Fork 402
/
pointerdb.pb.go
506 lines (446 loc) · 18.8 KB
/
pointerdb.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
// Code generated by protoc-gen-gogo. DO NOT EDIT.
// source: pointerdb.proto
package pb
import (
fmt "fmt"
_ "github.com/gogo/protobuf/gogoproto"
proto "github.com/gogo/protobuf/proto"
_ "github.com/golang/protobuf/ptypes/timestamp"
math "math"
time "time"
)
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
var _ = time.Kitchen
// 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.GoGoProtoPackageIsVersion2 // please upgrade the proto package
type RedundancyScheme_SchemeType int32
const (
RedundancyScheme_INVALID RedundancyScheme_SchemeType = 0
RedundancyScheme_RS RedundancyScheme_SchemeType = 1
)
var RedundancyScheme_SchemeType_name = map[int32]string{
0: "INVALID",
1: "RS",
}
var RedundancyScheme_SchemeType_value = map[string]int32{
"INVALID": 0,
"RS": 1,
}
func (x RedundancyScheme_SchemeType) String() string {
return proto.EnumName(RedundancyScheme_SchemeType_name, int32(x))
}
func (RedundancyScheme_SchemeType) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_75fef806d28fc810, []int{0, 0}
}
type Pointer_DataType int32
const (
Pointer_INLINE Pointer_DataType = 0
Pointer_REMOTE Pointer_DataType = 1
)
var Pointer_DataType_name = map[int32]string{
0: "INLINE",
1: "REMOTE",
}
var Pointer_DataType_value = map[string]int32{
"INLINE": 0,
"REMOTE": 1,
}
func (x Pointer_DataType) String() string {
return proto.EnumName(Pointer_DataType_name, int32(x))
}
func (Pointer_DataType) EnumDescriptor() ([]byte, []int) {
return fileDescriptor_75fef806d28fc810, []int{3, 0}
}
type RedundancyScheme struct {
Type RedundancyScheme_SchemeType `protobuf:"varint,1,opt,name=type,proto3,enum=pointerdb.RedundancyScheme_SchemeType" json:"type,omitempty"`
// these values apply to RS encoding
MinReq int32 `protobuf:"varint,2,opt,name=min_req,json=minReq,proto3" json:"min_req,omitempty"`
Total int32 `protobuf:"varint,3,opt,name=total,proto3" json:"total,omitempty"`
RepairThreshold int32 `protobuf:"varint,4,opt,name=repair_threshold,json=repairThreshold,proto3" json:"repair_threshold,omitempty"`
SuccessThreshold int32 `protobuf:"varint,5,opt,name=success_threshold,json=successThreshold,proto3" json:"success_threshold,omitempty"`
ErasureShareSize int32 `protobuf:"varint,6,opt,name=erasure_share_size,json=erasureShareSize,proto3" json:"erasure_share_size,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RedundancyScheme) Reset() { *m = RedundancyScheme{} }
func (m *RedundancyScheme) String() string { return proto.CompactTextString(m) }
func (*RedundancyScheme) ProtoMessage() {}
func (*RedundancyScheme) Descriptor() ([]byte, []int) {
return fileDescriptor_75fef806d28fc810, []int{0}
}
func (m *RedundancyScheme) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RedundancyScheme.Unmarshal(m, b)
}
func (m *RedundancyScheme) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RedundancyScheme.Marshal(b, m, deterministic)
}
func (m *RedundancyScheme) XXX_Merge(src proto.Message) {
xxx_messageInfo_RedundancyScheme.Merge(m, src)
}
func (m *RedundancyScheme) XXX_Size() int {
return xxx_messageInfo_RedundancyScheme.Size(m)
}
func (m *RedundancyScheme) XXX_DiscardUnknown() {
xxx_messageInfo_RedundancyScheme.DiscardUnknown(m)
}
var xxx_messageInfo_RedundancyScheme proto.InternalMessageInfo
func (m *RedundancyScheme) GetType() RedundancyScheme_SchemeType {
if m != nil {
return m.Type
}
return RedundancyScheme_INVALID
}
func (m *RedundancyScheme) GetMinReq() int32 {
if m != nil {
return m.MinReq
}
return 0
}
func (m *RedundancyScheme) GetTotal() int32 {
if m != nil {
return m.Total
}
return 0
}
func (m *RedundancyScheme) GetRepairThreshold() int32 {
if m != nil {
return m.RepairThreshold
}
return 0
}
func (m *RedundancyScheme) GetSuccessThreshold() int32 {
if m != nil {
return m.SuccessThreshold
}
return 0
}
func (m *RedundancyScheme) GetErasureShareSize() int32 {
if m != nil {
return m.ErasureShareSize
}
return 0
}
type RemotePiece struct {
PieceNum int32 `protobuf:"varint,1,opt,name=piece_num,json=pieceNum,proto3" json:"piece_num,omitempty"`
NodeId NodeID `protobuf:"bytes,2,opt,name=node_id,json=nodeId,proto3,customtype=NodeID" json:"node_id"`
Hash *PieceHash `protobuf:"bytes,3,opt,name=hash,proto3" json:"hash,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RemotePiece) Reset() { *m = RemotePiece{} }
func (m *RemotePiece) String() string { return proto.CompactTextString(m) }
func (*RemotePiece) ProtoMessage() {}
func (*RemotePiece) Descriptor() ([]byte, []int) {
return fileDescriptor_75fef806d28fc810, []int{1}
}
func (m *RemotePiece) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemotePiece.Unmarshal(m, b)
}
func (m *RemotePiece) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RemotePiece.Marshal(b, m, deterministic)
}
func (m *RemotePiece) XXX_Merge(src proto.Message) {
xxx_messageInfo_RemotePiece.Merge(m, src)
}
func (m *RemotePiece) XXX_Size() int {
return xxx_messageInfo_RemotePiece.Size(m)
}
func (m *RemotePiece) XXX_DiscardUnknown() {
xxx_messageInfo_RemotePiece.DiscardUnknown(m)
}
var xxx_messageInfo_RemotePiece proto.InternalMessageInfo
func (m *RemotePiece) GetPieceNum() int32 {
if m != nil {
return m.PieceNum
}
return 0
}
func (m *RemotePiece) GetHash() *PieceHash {
if m != nil {
return m.Hash
}
return nil
}
type RemoteSegment struct {
Redundancy *RedundancyScheme `protobuf:"bytes,1,opt,name=redundancy,proto3" json:"redundancy,omitempty"`
RootPieceId PieceID `protobuf:"bytes,2,opt,name=root_piece_id,json=rootPieceId,proto3,customtype=PieceID" json:"root_piece_id"`
RemotePieces []*RemotePiece `protobuf:"bytes,3,rep,name=remote_pieces,json=remotePieces,proto3" json:"remote_pieces,omitempty"`
MerkleRoot []byte `protobuf:"bytes,4,opt,name=merkle_root,json=merkleRoot,proto3" json:"merkle_root,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *RemoteSegment) Reset() { *m = RemoteSegment{} }
func (m *RemoteSegment) String() string { return proto.CompactTextString(m) }
func (*RemoteSegment) ProtoMessage() {}
func (*RemoteSegment) Descriptor() ([]byte, []int) {
return fileDescriptor_75fef806d28fc810, []int{2}
}
func (m *RemoteSegment) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RemoteSegment.Unmarshal(m, b)
}
func (m *RemoteSegment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_RemoteSegment.Marshal(b, m, deterministic)
}
func (m *RemoteSegment) XXX_Merge(src proto.Message) {
xxx_messageInfo_RemoteSegment.Merge(m, src)
}
func (m *RemoteSegment) XXX_Size() int {
return xxx_messageInfo_RemoteSegment.Size(m)
}
func (m *RemoteSegment) XXX_DiscardUnknown() {
xxx_messageInfo_RemoteSegment.DiscardUnknown(m)
}
var xxx_messageInfo_RemoteSegment proto.InternalMessageInfo
func (m *RemoteSegment) GetRedundancy() *RedundancyScheme {
if m != nil {
return m.Redundancy
}
return nil
}
func (m *RemoteSegment) GetRemotePieces() []*RemotePiece {
if m != nil {
return m.RemotePieces
}
return nil
}
func (m *RemoteSegment) GetMerkleRoot() []byte {
if m != nil {
return m.MerkleRoot
}
return nil
}
type Pointer struct {
Type Pointer_DataType `protobuf:"varint,1,opt,name=type,proto3,enum=pointerdb.Pointer_DataType" json:"type,omitempty"`
InlineSegment []byte `protobuf:"bytes,3,opt,name=inline_segment,json=inlineSegment,proto3" json:"inline_segment,omitempty"`
Remote *RemoteSegment `protobuf:"bytes,4,opt,name=remote,proto3" json:"remote,omitempty"`
SegmentSize int64 `protobuf:"varint,5,opt,name=segment_size,json=segmentSize,proto3" json:"segment_size,omitempty"`
CreationDate time.Time `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3,stdtime" json:"creation_date"`
ExpirationDate time.Time `protobuf:"bytes,7,opt,name=expiration_date,json=expirationDate,proto3,stdtime" json:"expiration_date"`
Metadata []byte `protobuf:"bytes,8,opt,name=metadata,proto3" json:"metadata,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Pointer) Reset() { *m = Pointer{} }
func (m *Pointer) String() string { return proto.CompactTextString(m) }
func (*Pointer) ProtoMessage() {}
func (*Pointer) Descriptor() ([]byte, []int) {
return fileDescriptor_75fef806d28fc810, []int{3}
}
func (m *Pointer) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Pointer.Unmarshal(m, b)
}
func (m *Pointer) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Pointer.Marshal(b, m, deterministic)
}
func (m *Pointer) XXX_Merge(src proto.Message) {
xxx_messageInfo_Pointer.Merge(m, src)
}
func (m *Pointer) XXX_Size() int {
return xxx_messageInfo_Pointer.Size(m)
}
func (m *Pointer) XXX_DiscardUnknown() {
xxx_messageInfo_Pointer.DiscardUnknown(m)
}
var xxx_messageInfo_Pointer proto.InternalMessageInfo
func (m *Pointer) GetType() Pointer_DataType {
if m != nil {
return m.Type
}
return Pointer_INLINE
}
func (m *Pointer) GetInlineSegment() []byte {
if m != nil {
return m.InlineSegment
}
return nil
}
func (m *Pointer) GetRemote() *RemoteSegment {
if m != nil {
return m.Remote
}
return nil
}
func (m *Pointer) GetSegmentSize() int64 {
if m != nil {
return m.SegmentSize
}
return 0
}
func (m *Pointer) GetCreationDate() time.Time {
if m != nil {
return m.CreationDate
}
return time.Time{}
}
func (m *Pointer) GetExpirationDate() time.Time {
if m != nil {
return m.ExpirationDate
}
return time.Time{}
}
func (m *Pointer) GetMetadata() []byte {
if m != nil {
return m.Metadata
}
return nil
}
// ListResponse is a response message for the List rpc call
type ListResponse struct {
Items []*ListResponse_Item `protobuf:"bytes,1,rep,name=items,proto3" json:"items,omitempty"`
More bool `protobuf:"varint,2,opt,name=more,proto3" json:"more,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ListResponse) Reset() { *m = ListResponse{} }
func (m *ListResponse) String() string { return proto.CompactTextString(m) }
func (*ListResponse) ProtoMessage() {}
func (*ListResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_75fef806d28fc810, []int{4}
}
func (m *ListResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListResponse.Unmarshal(m, b)
}
func (m *ListResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ListResponse.Marshal(b, m, deterministic)
}
func (m *ListResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListResponse.Merge(m, src)
}
func (m *ListResponse) XXX_Size() int {
return xxx_messageInfo_ListResponse.Size(m)
}
func (m *ListResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ListResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ListResponse proto.InternalMessageInfo
func (m *ListResponse) GetItems() []*ListResponse_Item {
if m != nil {
return m.Items
}
return nil
}
func (m *ListResponse) GetMore() bool {
if m != nil {
return m.More
}
return false
}
type ListResponse_Item struct {
Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
Pointer *Pointer `protobuf:"bytes,2,opt,name=pointer,proto3" json:"pointer,omitempty"`
IsPrefix bool `protobuf:"varint,3,opt,name=is_prefix,json=isPrefix,proto3" json:"is_prefix,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ListResponse_Item) Reset() { *m = ListResponse_Item{} }
func (m *ListResponse_Item) String() string { return proto.CompactTextString(m) }
func (*ListResponse_Item) ProtoMessage() {}
func (*ListResponse_Item) Descriptor() ([]byte, []int) {
return fileDescriptor_75fef806d28fc810, []int{4, 0}
}
func (m *ListResponse_Item) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ListResponse_Item.Unmarshal(m, b)
}
func (m *ListResponse_Item) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ListResponse_Item.Marshal(b, m, deterministic)
}
func (m *ListResponse_Item) XXX_Merge(src proto.Message) {
xxx_messageInfo_ListResponse_Item.Merge(m, src)
}
func (m *ListResponse_Item) XXX_Size() int {
return xxx_messageInfo_ListResponse_Item.Size(m)
}
func (m *ListResponse_Item) XXX_DiscardUnknown() {
xxx_messageInfo_ListResponse_Item.DiscardUnknown(m)
}
var xxx_messageInfo_ListResponse_Item proto.InternalMessageInfo
func (m *ListResponse_Item) GetPath() string {
if m != nil {
return m.Path
}
return ""
}
func (m *ListResponse_Item) GetPointer() *Pointer {
if m != nil {
return m.Pointer
}
return nil
}
func (m *ListResponse_Item) GetIsPrefix() bool {
if m != nil {
return m.IsPrefix
}
return false
}
func init() {
proto.RegisterEnum("pointerdb.RedundancyScheme_SchemeType", RedundancyScheme_SchemeType_name, RedundancyScheme_SchemeType_value)
proto.RegisterEnum("pointerdb.Pointer_DataType", Pointer_DataType_name, Pointer_DataType_value)
proto.RegisterType((*RedundancyScheme)(nil), "pointerdb.RedundancyScheme")
proto.RegisterType((*RemotePiece)(nil), "pointerdb.RemotePiece")
proto.RegisterType((*RemoteSegment)(nil), "pointerdb.RemoteSegment")
proto.RegisterType((*Pointer)(nil), "pointerdb.Pointer")
proto.RegisterType((*ListResponse)(nil), "pointerdb.ListResponse")
proto.RegisterType((*ListResponse_Item)(nil), "pointerdb.ListResponse.Item")
}
func init() { proto.RegisterFile("pointerdb.proto", fileDescriptor_75fef806d28fc810) }
var fileDescriptor_75fef806d28fc810 = []byte{
// 735 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x53, 0xcd, 0x6e, 0xdb, 0x46,
0x10, 0x36, 0x2d, 0x89, 0xa2, 0x87, 0x94, 0xad, 0x2c, 0x8a, 0x96, 0x50, 0x0a, 0xc8, 0x21, 0x90,
0xd6, 0x45, 0x03, 0xba, 0x60, 0x6e, 0xcd, 0xa9, 0x86, 0x0c, 0x94, 0x80, 0xa3, 0x1a, 0x2b, 0xa1,
0x87, 0x5e, 0x88, 0x95, 0x38, 0x11, 0x17, 0x15, 0xb9, 0xcc, 0xee, 0x0a, 0x88, 0xfd, 0x14, 0x79,
0x8a, 0xbe, 0x45, 0xef, 0x7d, 0x86, 0x1e, 0x92, 0x57, 0x29, 0xb8, 0x4b, 0x4a, 0x4a, 0x03, 0x14,
0xe8, 0x85, 0x9c, 0x9f, 0x6f, 0x7e, 0xf6, 0x9b, 0x19, 0xb8, 0xa8, 0x05, 0xaf, 0x34, 0xca, 0x7c,
0x15, 0xd7, 0x52, 0x68, 0x41, 0xce, 0xf6, 0x86, 0xc9, 0x74, 0x23, 0xc4, 0x66, 0x8b, 0xd7, 0xc6,
0xb1, 0xda, 0xbd, 0xb9, 0xd6, 0xbc, 0x44, 0xa5, 0x59, 0x59, 0x5b, 0xec, 0x04, 0x36, 0x62, 0x23,
0x3a, 0xb9, 0x12, 0x39, 0xb6, 0x72, 0x20, 0x64, 0x8e, 0x52, 0x59, 0x2d, 0xfa, 0xe3, 0x14, 0xc6,
0x14, 0xf3, 0x5d, 0x95, 0xb3, 0x6a, 0xfd, 0xb0, 0x58, 0x17, 0x58, 0x22, 0xf9, 0x11, 0xfa, 0xfa,
0xa1, 0xc6, 0xd0, 0xb9, 0x74, 0xae, 0xce, 0x93, 0x6f, 0xe2, 0x43, 0x1b, 0xff, 0x86, 0xc6, 0xf6,
0xb7, 0x7c, 0xa8, 0x91, 0x9a, 0x18, 0xf2, 0x15, 0x0c, 0x4b, 0x5e, 0x65, 0x12, 0xdf, 0x86, 0xa7,
0x97, 0xce, 0xd5, 0x80, 0xba, 0x25, 0xaf, 0x28, 0xbe, 0x25, 0x5f, 0xc0, 0x40, 0x0b, 0xcd, 0xb6,
0x61, 0xcf, 0x98, 0xad, 0x42, 0xbe, 0x83, 0xb1, 0xc4, 0x9a, 0x71, 0x99, 0xe9, 0x42, 0xa2, 0x2a,
0xc4, 0x36, 0x0f, 0xfb, 0x06, 0x70, 0x61, 0xed, 0xcb, 0xce, 0x4c, 0xbe, 0x87, 0x27, 0x6a, 0xb7,
0x5e, 0xa3, 0x52, 0x47, 0xd8, 0x81, 0xc1, 0x8e, 0x5b, 0xc7, 0x01, 0xfc, 0x02, 0x08, 0x4a, 0xa6,
0x76, 0x12, 0x33, 0x55, 0xb0, 0xe6, 0xcb, 0x1f, 0x31, 0x74, 0x2d, 0xba, 0xf5, 0x2c, 0x1a, 0xc7,
0x82, 0x3f, 0x62, 0xf4, 0x0c, 0xe0, 0xf0, 0x10, 0xe2, 0xc3, 0x30, 0x9d, 0xff, 0xfa, 0xd3, 0x5d,
0x3a, 0x1b, 0x9f, 0x10, 0x17, 0x4e, 0xe9, 0x62, 0xec, 0x44, 0x8f, 0xe0, 0x53, 0x2c, 0x85, 0xc6,
0x7b, 0x8e, 0x6b, 0x24, 0x4f, 0xe1, 0xac, 0x6e, 0x84, 0xac, 0xda, 0x95, 0x86, 0xa7, 0x01, 0xf5,
0x8c, 0x61, 0xbe, 0x2b, 0xc9, 0xb7, 0x30, 0x6c, 0x08, 0xcf, 0x78, 0x6e, 0x38, 0x08, 0x6e, 0xce,
0xff, 0xfa, 0x30, 0x3d, 0xf9, 0xfb, 0xc3, 0xd4, 0x9d, 0x8b, 0x1c, 0xd3, 0x19, 0x75, 0x1b, 0x77,
0x9a, 0x93, 0xe7, 0xd0, 0x2f, 0x98, 0x2a, 0x0c, 0x25, 0x7e, 0xf2, 0x24, 0x6e, 0x47, 0x63, 0x4a,
0xfc, 0xcc, 0x54, 0x41, 0x8d, 0x3b, 0xfa, 0xe8, 0xc0, 0xc8, 0x16, 0x5f, 0xe0, 0xa6, 0xc4, 0x4a,
0x93, 0x57, 0x00, 0x72, 0x3f, 0x0a, 0x53, 0xdf, 0x4f, 0x9e, 0xfe, 0xc7, 0x9c, 0xe8, 0x11, 0x9c,
0xbc, 0x84, 0x91, 0x14, 0x42, 0x67, 0xf6, 0x01, 0xfb, 0x26, 0x2f, 0xda, 0x26, 0x87, 0xa6, 0x7c,
0x3a, 0xa3, 0x7e, 0x83, 0xb2, 0x4a, 0x4e, 0x5e, 0xc1, 0x48, 0x9a, 0x16, 0x6c, 0x98, 0x0a, 0x7b,
0x97, 0xbd, 0x2b, 0x3f, 0xf9, 0xf2, 0x93, 0xa2, 0x7b, 0x7e, 0x68, 0x20, 0x0f, 0x8a, 0x22, 0x53,
0xf0, 0x4b, 0x94, 0xbf, 0x6f, 0x31, 0x6b, 0x52, 0x9a, 0x01, 0x07, 0x14, 0xac, 0x89, 0x0a, 0xa1,
0xa3, 0xf7, 0x3d, 0x18, 0xde, 0xdb, 0x44, 0xe4, 0xfa, 0x93, 0xed, 0x3b, 0x7e, 0x55, 0x8b, 0x88,
0x67, 0x4c, 0xb3, 0xa3, 0x95, 0x7b, 0x0e, 0xe7, 0xbc, 0xda, 0xf2, 0x0a, 0x33, 0x65, 0xe9, 0x31,
0x7c, 0x06, 0x74, 0x64, 0xad, 0x1d, 0x67, 0x3f, 0x80, 0x6b, 0x9b, 0x32, 0xf5, 0xfd, 0x24, 0xfc,
0xac, 0xf5, 0x16, 0x49, 0x5b, 0x1c, 0x79, 0x06, 0x41, 0x9b, 0xd1, 0xae, 0x4f, 0xb3, 0x6c, 0x3d,
0xea, 0xb7, 0xb6, 0x66, 0x73, 0x48, 0x0a, 0xa3, 0xb5, 0x44, 0xa6, 0xb9, 0xa8, 0xb2, 0x9c, 0x69,
0xbb, 0x62, 0x7e, 0x32, 0x89, 0xed, 0x79, 0xc6, 0xdd, 0x79, 0xc6, 0xcb, 0xee, 0x3c, 0x6f, 0xbc,
0x86, 0xe7, 0xf7, 0x1f, 0xa7, 0x0e, 0x0d, 0xba, 0xd0, 0x19, 0xd3, 0x48, 0x5e, 0xc3, 0x05, 0xbe,
0xab, 0xb9, 0x3c, 0x4a, 0x36, 0xfc, 0x1f, 0xc9, 0xce, 0x0f, 0xc1, 0x26, 0xdd, 0x04, 0xbc, 0x12,
0x35, 0xcb, 0x99, 0x66, 0xa1, 0x67, 0xf8, 0xd8, 0xeb, 0x51, 0x04, 0x5e, 0xc7, 0x21, 0x01, 0x70,
0xd3, 0xf9, 0x5d, 0x3a, 0xbf, 0x1d, 0x9f, 0x34, 0x32, 0xbd, 0x7d, 0xfd, 0xcb, 0xf2, 0x76, 0xec,
0x44, 0x7f, 0x3a, 0x10, 0xdc, 0x71, 0xa5, 0x29, 0xaa, 0x5a, 0x54, 0x0a, 0x49, 0x02, 0x03, 0xae,
0xb1, 0x54, 0xa1, 0x63, 0x26, 0xff, 0xf5, 0x11, 0x7d, 0xc7, 0xb8, 0x38, 0xd5, 0x58, 0x52, 0x0b,
0x25, 0x04, 0xfa, 0xa5, 0x90, 0x68, 0x36, 0xcc, 0xa3, 0x46, 0x9e, 0x20, 0xf4, 0x1b, 0x48, 0xe3,
0xab, 0x99, 0x2e, 0xcc, 0x9c, 0xcf, 0xa8, 0x91, 0xc9, 0x0b, 0x18, 0xb6, 0x59, 0x4d, 0x88, 0x9f,
0x90, 0xcf, 0xc7, 0x4f, 0x3b, 0x48, 0x73, 0x84, 0x5c, 0x65, 0xb5, 0xc4, 0x37, 0xfc, 0x9d, 0x99,
0xb9, 0x47, 0x3d, 0xae, 0xee, 0x8d, 0x7e, 0xd3, 0xff, 0xed, 0xb4, 0x5e, 0xad, 0x5c, 0xc3, 0xd9,
0xcb, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x73, 0x81, 0x70, 0xa2, 0x4b, 0x05, 0x00, 0x00,
}