forked from google/trillian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrillian.pb.go
538 lines (478 loc) · 21.4 KB
/
trillian.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
// Code generated by protoc-gen-go.
// source: trillian.proto
// DO NOT EDIT!
package trillian
import proto "github.com/golang/protobuf/proto"
import fmt "fmt"
import math "math"
import keyspb "github.com/google/trillian/crypto/keyspb"
import sigpb "github.com/google/trillian/crypto/sigpb"
import google_protobuf "github.com/golang/protobuf/ptypes/any"
import google_protobuf1 "github.com/golang/protobuf/ptypes/duration"
import google_protobuf2 "github.com/golang/protobuf/ptypes/timestamp"
// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf
// Defines the way empty / node / leaf hashes are constructed incorporating
// preimage protection, which can be application specific.
type HashStrategy int32
const (
// Hash strategy cannot be determined. Included to enable detection of
// mismatched proto versions being used. Represents an invalid value.
HashStrategy_UNKNOWN_HASH_STRATEGY HashStrategy = 0
// Certificate Transparency strategy: leaf hash prefix = 0x00, node prefix =
// 0x01, empty hash is digest([]byte{}), as defined in the specification.
HashStrategy_RFC_6962 HashStrategy = 1
)
var HashStrategy_name = map[int32]string{
0: "UNKNOWN_HASH_STRATEGY",
1: "RFC_6962",
}
var HashStrategy_value = map[string]int32{
"UNKNOWN_HASH_STRATEGY": 0,
"RFC_6962": 1,
}
func (x HashStrategy) String() string {
return proto.EnumName(HashStrategy_name, int32(x))
}
func (HashStrategy) EnumDescriptor() ([]byte, []int) { return fileDescriptor3, []int{0} }
// State of the tree.
type TreeState int32
const (
// Tree state cannot be determined. Included to enable detection of
// mismatched proto versions being used. Represents an invalid value.
TreeState_UNKNOWN_TREE_STATE TreeState = 0
// Active trees are able to respond to both read and write requests.
TreeState_ACTIVE TreeState = 1
// Frozen trees are only able to respond to read requests, writing to a frozen
// tree is forbidden.
TreeState_FROZEN TreeState = 2
// Tree was been deleted, therefore is invisible and acts similarly to a
// non-existing tree for all requests.
// A soft deleted tree may be undeleted while the soft-deletion period has not
// passed.
TreeState_SOFT_DELETED TreeState = 3
// A hard deleted tree was been definitely deleted and cannot be recovered.
// Acts an a non-existing tree for all read and write requests, but blocks the
// tree ID from ever being reused.
TreeState_HARD_DELETED TreeState = 4
)
var TreeState_name = map[int32]string{
0: "UNKNOWN_TREE_STATE",
1: "ACTIVE",
2: "FROZEN",
3: "SOFT_DELETED",
4: "HARD_DELETED",
}
var TreeState_value = map[string]int32{
"UNKNOWN_TREE_STATE": 0,
"ACTIVE": 1,
"FROZEN": 2,
"SOFT_DELETED": 3,
"HARD_DELETED": 4,
}
func (x TreeState) String() string {
return proto.EnumName(TreeState_name, int32(x))
}
func (TreeState) EnumDescriptor() ([]byte, []int) { return fileDescriptor3, []int{1} }
// Type of the tree.
type TreeType int32
const (
// Tree type cannot be determined. Included to enable detection of
// mismatched proto versions being used. Represents an invalid value.
TreeType_UNKNOWN_TREE_TYPE TreeType = 0
// Tree represents a verifiable log.
TreeType_LOG TreeType = 1
// Tree represents a verifiable map.
TreeType_MAP TreeType = 2
)
var TreeType_name = map[int32]string{
0: "UNKNOWN_TREE_TYPE",
1: "LOG",
2: "MAP",
}
var TreeType_value = map[string]int32{
"UNKNOWN_TREE_TYPE": 0,
"LOG": 1,
"MAP": 2,
}
func (x TreeType) String() string {
return proto.EnumName(TreeType_name, int32(x))
}
func (TreeType) EnumDescriptor() ([]byte, []int) { return fileDescriptor3, []int{2} }
// Represents a tree, which may be either a verifiable log or map.
// Readonly attributes are assigned at tree creation, after which they may not
// be modified.
type Tree struct {
// ID of the tree.
// Readonly.
TreeId int64 `protobuf:"varint,1,opt,name=tree_id,json=treeId" json:"tree_id,omitempty"`
// State of the tree.
// Trees are active after creation. At any point the tree may transition
// between ACTIVE and FROZEN.
// Deleted trees are set as SOFT_DELETED for a certain time period, after
// which they'll automatically transition to HARD_DELETED.
TreeState TreeState `protobuf:"varint,2,opt,name=tree_state,json=treeState,enum=trillian.TreeState" json:"tree_state,omitempty"`
// Type of the tree.
// Readonly.
TreeType TreeType `protobuf:"varint,3,opt,name=tree_type,json=treeType,enum=trillian.TreeType" json:"tree_type,omitempty"`
// Hash strategy to be used by the tree.
// Readonly.
HashStrategy HashStrategy `protobuf:"varint,4,opt,name=hash_strategy,json=hashStrategy,enum=trillian.HashStrategy" json:"hash_strategy,omitempty"`
// Hash algorithm to be used by the tree.
// Readonly.
HashAlgorithm sigpb.DigitallySigned_HashAlgorithm `protobuf:"varint,5,opt,name=hash_algorithm,json=hashAlgorithm,enum=sigpb.DigitallySigned_HashAlgorithm" json:"hash_algorithm,omitempty"`
// Signature algorithm to be used by the tree.
// Readonly.
SignatureAlgorithm sigpb.DigitallySigned_SignatureAlgorithm `protobuf:"varint,6,opt,name=signature_algorithm,json=signatureAlgorithm,enum=sigpb.DigitallySigned_SignatureAlgorithm" json:"signature_algorithm,omitempty"`
// Display name of the tree.
// Optional.
DisplayName string `protobuf:"bytes,8,opt,name=display_name,json=displayName" json:"display_name,omitempty"`
// Description of the tree,
// Optional.
Description string `protobuf:"bytes,9,opt,name=description" json:"description,omitempty"`
// Identifies the private key used for signing tree heads and entry
// timestamps.
// This can be any type of message to accommodate different key management
// systems, e.g. PEM files, HSMs, etc.
// Private keys are write-only: they're never returned by RPCs.
// TODO(RJPercival): Implement sufficient validation to allow this field to be
// mutable. It should be mutable in the sense that the key can be migrated to
// a different key management system, but the key itself should never change.
PrivateKey *google_protobuf.Any `protobuf:"bytes,12,opt,name=private_key,json=privateKey" json:"private_key,omitempty"`
// Storage-specific settings.
// Varies according to the storage implementation backing Trillian.
StorageSettings *google_protobuf.Any `protobuf:"bytes,13,opt,name=storage_settings,json=storageSettings" json:"storage_settings,omitempty"`
// The public key used for verifying tree heads and entry timestamps.
// Readonly.
PublicKey *keyspb.PublicKey `protobuf:"bytes,14,opt,name=public_key,json=publicKey" json:"public_key,omitempty"`
// Interval after which a new signed root is produced even if there have been
// no submission. If zero, this behavior is disabled.
MaxRootDuration *google_protobuf1.Duration `protobuf:"bytes,15,opt,name=max_root_duration,json=maxRootDuration" json:"max_root_duration,omitempty"`
// Time of tree creation.
// Readonly.
CreateTime *google_protobuf2.Timestamp `protobuf:"bytes,16,opt,name=create_time,json=createTime" json:"create_time,omitempty"`
// Time of last tree update.
// Readonly (automatically assigned on updates).
UpdateTime *google_protobuf2.Timestamp `protobuf:"bytes,17,opt,name=update_time,json=updateTime" json:"update_time,omitempty"`
}
func (m *Tree) Reset() { *m = Tree{} }
func (m *Tree) String() string { return proto.CompactTextString(m) }
func (*Tree) ProtoMessage() {}
func (*Tree) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{0} }
func (m *Tree) GetTreeId() int64 {
if m != nil {
return m.TreeId
}
return 0
}
func (m *Tree) GetTreeState() TreeState {
if m != nil {
return m.TreeState
}
return TreeState_UNKNOWN_TREE_STATE
}
func (m *Tree) GetTreeType() TreeType {
if m != nil {
return m.TreeType
}
return TreeType_UNKNOWN_TREE_TYPE
}
func (m *Tree) GetHashStrategy() HashStrategy {
if m != nil {
return m.HashStrategy
}
return HashStrategy_UNKNOWN_HASH_STRATEGY
}
func (m *Tree) GetHashAlgorithm() sigpb.DigitallySigned_HashAlgorithm {
if m != nil {
return m.HashAlgorithm
}
return sigpb.DigitallySigned_NONE
}
func (m *Tree) GetSignatureAlgorithm() sigpb.DigitallySigned_SignatureAlgorithm {
if m != nil {
return m.SignatureAlgorithm
}
return sigpb.DigitallySigned_ANONYMOUS
}
func (m *Tree) GetDisplayName() string {
if m != nil {
return m.DisplayName
}
return ""
}
func (m *Tree) GetDescription() string {
if m != nil {
return m.Description
}
return ""
}
func (m *Tree) GetPrivateKey() *google_protobuf.Any {
if m != nil {
return m.PrivateKey
}
return nil
}
func (m *Tree) GetStorageSettings() *google_protobuf.Any {
if m != nil {
return m.StorageSettings
}
return nil
}
func (m *Tree) GetPublicKey() *keyspb.PublicKey {
if m != nil {
return m.PublicKey
}
return nil
}
func (m *Tree) GetMaxRootDuration() *google_protobuf1.Duration {
if m != nil {
return m.MaxRootDuration
}
return nil
}
func (m *Tree) GetCreateTime() *google_protobuf2.Timestamp {
if m != nil {
return m.CreateTime
}
return nil
}
func (m *Tree) GetUpdateTime() *google_protobuf2.Timestamp {
if m != nil {
return m.UpdateTime
}
return nil
}
type SignedEntryTimestamp struct {
TimestampNanos int64 `protobuf:"varint,1,opt,name=timestamp_nanos,json=timestampNanos" json:"timestamp_nanos,omitempty"`
LogId int64 `protobuf:"varint,2,opt,name=log_id,json=logId" json:"log_id,omitempty"`
Signature *sigpb.DigitallySigned `protobuf:"bytes,3,opt,name=signature" json:"signature,omitempty"`
}
func (m *SignedEntryTimestamp) Reset() { *m = SignedEntryTimestamp{} }
func (m *SignedEntryTimestamp) String() string { return proto.CompactTextString(m) }
func (*SignedEntryTimestamp) ProtoMessage() {}
func (*SignedEntryTimestamp) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{1} }
func (m *SignedEntryTimestamp) GetTimestampNanos() int64 {
if m != nil {
return m.TimestampNanos
}
return 0
}
func (m *SignedEntryTimestamp) GetLogId() int64 {
if m != nil {
return m.LogId
}
return 0
}
func (m *SignedEntryTimestamp) GetSignature() *sigpb.DigitallySigned {
if m != nil {
return m.Signature
}
return nil
}
// SignedLogRoot represents a commitment by a Log to a particular tree.
type SignedLogRoot struct {
// epoch nanoseconds, good until 2500ish
TimestampNanos int64 `protobuf:"varint,1,opt,name=timestamp_nanos,json=timestampNanos" json:"timestamp_nanos,omitempty"`
RootHash []byte `protobuf:"bytes,2,opt,name=root_hash,json=rootHash,proto3" json:"root_hash,omitempty"`
// TreeSize is the number of entries in the tree.
TreeSize int64 `protobuf:"varint,3,opt,name=tree_size,json=treeSize" json:"tree_size,omitempty"`
// TODO(al): define serialized format for the signature scheme.
Signature *sigpb.DigitallySigned `protobuf:"bytes,4,opt,name=signature" json:"signature,omitempty"`
LogId int64 `protobuf:"varint,5,opt,name=log_id,json=logId" json:"log_id,omitempty"`
TreeRevision int64 `protobuf:"varint,6,opt,name=tree_revision,json=treeRevision" json:"tree_revision,omitempty"`
}
func (m *SignedLogRoot) Reset() { *m = SignedLogRoot{} }
func (m *SignedLogRoot) String() string { return proto.CompactTextString(m) }
func (*SignedLogRoot) ProtoMessage() {}
func (*SignedLogRoot) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{2} }
func (m *SignedLogRoot) GetTimestampNanos() int64 {
if m != nil {
return m.TimestampNanos
}
return 0
}
func (m *SignedLogRoot) GetRootHash() []byte {
if m != nil {
return m.RootHash
}
return nil
}
func (m *SignedLogRoot) GetTreeSize() int64 {
if m != nil {
return m.TreeSize
}
return 0
}
func (m *SignedLogRoot) GetSignature() *sigpb.DigitallySigned {
if m != nil {
return m.Signature
}
return nil
}
func (m *SignedLogRoot) GetLogId() int64 {
if m != nil {
return m.LogId
}
return 0
}
func (m *SignedLogRoot) GetTreeRevision() int64 {
if m != nil {
return m.TreeRevision
}
return 0
}
type MapperMetadata struct {
SourceLogId []byte `protobuf:"bytes,1,opt,name=source_log_id,json=sourceLogId,proto3" json:"source_log_id,omitempty"`
HighestFullyCompletedSeq int64 `protobuf:"varint,2,opt,name=highest_fully_completed_seq,json=highestFullyCompletedSeq" json:"highest_fully_completed_seq,omitempty"`
HighestPartiallyCompletedSeq int64 `protobuf:"varint,3,opt,name=highest_partially_completed_seq,json=highestPartiallyCompletedSeq" json:"highest_partially_completed_seq,omitempty"`
}
func (m *MapperMetadata) Reset() { *m = MapperMetadata{} }
func (m *MapperMetadata) String() string { return proto.CompactTextString(m) }
func (*MapperMetadata) ProtoMessage() {}
func (*MapperMetadata) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{3} }
func (m *MapperMetadata) GetSourceLogId() []byte {
if m != nil {
return m.SourceLogId
}
return nil
}
func (m *MapperMetadata) GetHighestFullyCompletedSeq() int64 {
if m != nil {
return m.HighestFullyCompletedSeq
}
return 0
}
func (m *MapperMetadata) GetHighestPartiallyCompletedSeq() int64 {
if m != nil {
return m.HighestPartiallyCompletedSeq
}
return 0
}
// SignedMapRoot represents a commitment by a Map to a particular tree.
type SignedMapRoot struct {
TimestampNanos int64 `protobuf:"varint,1,opt,name=timestamp_nanos,json=timestampNanos" json:"timestamp_nanos,omitempty"`
RootHash []byte `protobuf:"bytes,2,opt,name=root_hash,json=rootHash,proto3" json:"root_hash,omitempty"`
Metadata *MapperMetadata `protobuf:"bytes,3,opt,name=metadata" json:"metadata,omitempty"`
// TODO(al): define serialized format for the signature scheme.
Signature *sigpb.DigitallySigned `protobuf:"bytes,4,opt,name=signature" json:"signature,omitempty"`
MapId int64 `protobuf:"varint,5,opt,name=map_id,json=mapId" json:"map_id,omitempty"`
MapRevision int64 `protobuf:"varint,6,opt,name=map_revision,json=mapRevision" json:"map_revision,omitempty"`
}
func (m *SignedMapRoot) Reset() { *m = SignedMapRoot{} }
func (m *SignedMapRoot) String() string { return proto.CompactTextString(m) }
func (*SignedMapRoot) ProtoMessage() {}
func (*SignedMapRoot) Descriptor() ([]byte, []int) { return fileDescriptor3, []int{4} }
func (m *SignedMapRoot) GetTimestampNanos() int64 {
if m != nil {
return m.TimestampNanos
}
return 0
}
func (m *SignedMapRoot) GetRootHash() []byte {
if m != nil {
return m.RootHash
}
return nil
}
func (m *SignedMapRoot) GetMetadata() *MapperMetadata {
if m != nil {
return m.Metadata
}
return nil
}
func (m *SignedMapRoot) GetSignature() *sigpb.DigitallySigned {
if m != nil {
return m.Signature
}
return nil
}
func (m *SignedMapRoot) GetMapId() int64 {
if m != nil {
return m.MapId
}
return 0
}
func (m *SignedMapRoot) GetMapRevision() int64 {
if m != nil {
return m.MapRevision
}
return 0
}
func init() {
proto.RegisterType((*Tree)(nil), "trillian.Tree")
proto.RegisterType((*SignedEntryTimestamp)(nil), "trillian.SignedEntryTimestamp")
proto.RegisterType((*SignedLogRoot)(nil), "trillian.SignedLogRoot")
proto.RegisterType((*MapperMetadata)(nil), "trillian.MapperMetadata")
proto.RegisterType((*SignedMapRoot)(nil), "trillian.SignedMapRoot")
proto.RegisterEnum("trillian.HashStrategy", HashStrategy_name, HashStrategy_value)
proto.RegisterEnum("trillian.TreeState", TreeState_name, TreeState_value)
proto.RegisterEnum("trillian.TreeType", TreeType_name, TreeType_value)
}
func init() { proto.RegisterFile("trillian.proto", fileDescriptor3) }
var fileDescriptor3 = []byte{
// 976 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xac, 0x56, 0xed, 0x6e, 0xdb, 0x36,
0x14, 0xad, 0x12, 0xd7, 0x91, 0xaf, 0x3f, 0xa2, 0xb0, 0x4d, 0xa6, 0xa4, 0xc3, 0x9a, 0x79, 0x03,
0x96, 0x05, 0x83, 0x3d, 0x24, 0x6d, 0x87, 0xa1, 0x18, 0x06, 0x37, 0x51, 0x9a, 0x4f, 0xc7, 0x90,
0xb4, 0x0d, 0xed, 0x1f, 0x81, 0xb6, 0x58, 0x99, 0xa8, 0x64, 0xb2, 0x12, 0x5d, 0x54, 0x7d, 0x86,
0x3d, 0xca, 0x9e, 0x60, 0xcf, 0xb3, 0xb7, 0xd8, 0x9f, 0x81, 0x14, 0xa5, 0x38, 0xc9, 0xb6, 0x16,
0xc3, 0xfe, 0x24, 0xbc, 0xe7, 0x9e, 0x73, 0xf8, 0x71, 0x2f, 0x29, 0x43, 0x47, 0xa4, 0x34, 0x8e,
0x29, 0x9e, 0xf5, 0x78, 0xca, 0x04, 0x43, 0x66, 0x19, 0x6f, 0x3d, 0x8e, 0xa8, 0x98, 0xce, 0xc7,
0xbd, 0x09, 0x4b, 0xfa, 0x11, 0x63, 0x51, 0x4c, 0xfa, 0x65, 0xae, 0x3f, 0x49, 0x73, 0x2e, 0x58,
0xff, 0x35, 0xc9, 0x33, 0x3e, 0xd6, 0xff, 0x0a, 0x83, 0xad, 0xfd, 0x0f, 0xcb, 0x32, 0x1a, 0xf1,
0x71, 0xf1, 0x57, 0x8b, 0x36, 0x35, 0x53, 0x45, 0xe3, 0xf9, 0xab, 0x3e, 0x9e, 0xe5, 0x3a, 0xf5,
0xd9, 0xcd, 0x54, 0x38, 0x4f, 0xb1, 0xa0, 0x4c, 0x2f, 0x78, 0xeb, 0xe1, 0xcd, 0xbc, 0xa0, 0x09,
0xc9, 0x04, 0x4e, 0x78, 0x41, 0xe8, 0xfe, 0x56, 0x87, 0x9a, 0x9f, 0x12, 0x82, 0x3e, 0x81, 0x15,
0x91, 0x12, 0x12, 0xd0, 0xd0, 0x36, 0xb6, 0x8d, 0x9d, 0x65, 0xb7, 0x2e, 0xc3, 0x93, 0x10, 0xed,
0x01, 0xa8, 0x44, 0x26, 0xb0, 0x20, 0xf6, 0xd2, 0xb6, 0xb1, 0xd3, 0xd9, 0xbb, 0xd7, 0xab, 0x0e,
0x46, 0x8a, 0x3d, 0x99, 0x72, 0x1b, 0xa2, 0x1c, 0xa2, 0x3e, 0xa8, 0x20, 0x10, 0x39, 0x27, 0xf6,
0xb2, 0x92, 0xa0, 0xeb, 0x12, 0x3f, 0xe7, 0xc4, 0x35, 0x85, 0x1e, 0xa1, 0xa7, 0xd0, 0x9e, 0xe2,
0x6c, 0x1a, 0x64, 0x22, 0xc5, 0x82, 0x44, 0xb9, 0x5d, 0x53, 0xa2, 0x8d, 0x2b, 0xd1, 0x31, 0xce,
0xa6, 0x9e, 0xce, 0xba, 0xad, 0xe9, 0x42, 0x84, 0xce, 0xa0, 0xa3, 0xc4, 0x38, 0x8e, 0x58, 0x4a,
0xc5, 0x34, 0xb1, 0xef, 0x2a, 0xf5, 0x97, 0xbd, 0xe2, 0x14, 0x0f, 0x69, 0x44, 0x05, 0x8e, 0xe3,
0xdc, 0xa3, 0xd1, 0x8c, 0x84, 0xca, 0x6a, 0x50, 0x72, 0x5d, 0x35, 0x71, 0x15, 0xa2, 0x97, 0x70,
0x2f, 0xa3, 0xd1, 0x0c, 0x8b, 0x79, 0x4a, 0x16, 0x1c, 0xeb, 0xca, 0xf1, 0xeb, 0x7f, 0x70, 0xf4,
0x4a, 0xc5, 0x95, 0x2d, 0xca, 0x6e, 0x61, 0xe8, 0x73, 0x68, 0x85, 0x34, 0xe3, 0x31, 0xce, 0x83,
0x19, 0x4e, 0x88, 0x6d, 0x6e, 0x1b, 0x3b, 0x0d, 0xb7, 0xa9, 0xb1, 0x21, 0x4e, 0x08, 0xda, 0x86,
0x66, 0x48, 0xb2, 0x49, 0x4a, 0xb9, 0xac, 0xa2, 0xdd, 0xd0, 0x8c, 0x2b, 0x08, 0x3d, 0x86, 0x26,
0x4f, 0xe9, 0x5b, 0x2c, 0x48, 0xf0, 0x9a, 0xe4, 0x76, 0x6b, 0xdb, 0xd8, 0x69, 0xee, 0xdd, 0xef,
0x15, 0x85, 0xee, 0x95, 0x85, 0xee, 0x0d, 0x66, 0xb9, 0x0b, 0x9a, 0x78, 0x46, 0x72, 0xf4, 0x23,
0x58, 0x99, 0x60, 0x29, 0x8e, 0x48, 0x90, 0x11, 0x21, 0xe8, 0x2c, 0xca, 0xec, 0xf6, 0xbf, 0x68,
0x57, 0x35, 0xdb, 0xd3, 0x64, 0xf4, 0x2d, 0x00, 0x9f, 0x8f, 0x63, 0x3a, 0x51, 0xd3, 0x76, 0x94,
0x74, 0xad, 0xa7, 0xbb, 0x7b, 0xa4, 0x32, 0x67, 0x24, 0x77, 0x1b, 0xbc, 0x1c, 0x22, 0x07, 0xd6,
0x12, 0xfc, 0x2e, 0x48, 0x19, 0x13, 0x41, 0xd9, 0x97, 0xf6, 0xaa, 0x12, 0x6e, 0xde, 0x9a, 0xf3,
0x50, 0x13, 0xdc, 0xd5, 0x04, 0xbf, 0x73, 0x19, 0x13, 0x25, 0x80, 0x9e, 0x42, 0x73, 0x92, 0x12,
0xb9, 0x5f, 0xd9, 0xbc, 0xb6, 0xa5, 0x0c, 0xb6, 0x6e, 0x19, 0xf8, 0x65, 0x67, 0xbb, 0x50, 0xd0,
0x25, 0x20, 0xc5, 0x73, 0x1e, 0x56, 0xe2, 0xb5, 0x0f, 0x8b, 0x0b, 0xba, 0x04, 0x4e, 0x6b, 0xe6,
0x8a, 0x65, 0x9e, 0xd6, 0x4c, 0xb0, 0x9a, 0xa7, 0x35, 0xb3, 0x69, 0xb5, 0xba, 0xbf, 0x1a, 0x70,
0xbf, 0xa8, 0xb9, 0x33, 0x13, 0x69, 0x5e, 0xc9, 0xd0, 0x57, 0xb0, 0x5a, 0x5d, 0xad, 0x60, 0x86,
0x67, 0x2c, 0xd3, 0xd7, 0xa8, 0x53, 0xc1, 0x43, 0x89, 0xa2, 0x75, 0xa8, 0xc7, 0x2c, 0x92, 0xd7,
0x6c, 0x49, 0xe5, 0xef, 0xc6, 0x2c, 0x3a, 0x09, 0xd1, 0x23, 0x68, 0x54, 0x0d, 0xa3, 0x6e, 0x4c,
0x73, 0x6f, 0xe3, 0xef, 0x9b, 0xcd, 0xbd, 0x22, 0x76, 0xff, 0x30, 0xa0, 0x5d, 0xa0, 0xe7, 0x2c,
0x92, 0x87, 0xf6, 0xf1, 0xeb, 0x78, 0x00, 0x0d, 0x55, 0x18, 0xd9, 0xfd, 0x6a, 0x29, 0x2d, 0xd7,
0x94, 0x80, 0xbc, 0x1c, 0x32, 0x59, 0xdc, 0x79, 0xfa, 0xbe, 0x58, 0xcd, 0x72, 0x71, 0x57, 0x3d,
0xfa, 0x9e, 0x5c, 0x5f, 0x6a, 0xed, 0x23, 0x97, 0xba, 0xb0, 0xef, 0xbb, 0x8b, 0xfb, 0xfe, 0x02,
0xda, 0x6a, 0xa6, 0x94, 0xbc, 0xa5, 0x99, 0xec, 0x8f, 0xba, 0xca, 0xb6, 0x24, 0xe8, 0x6a, 0xac,
0xfb, 0xbb, 0x01, 0x9d, 0x0b, 0xcc, 0x39, 0x49, 0x2f, 0x88, 0xc0, 0x21, 0x16, 0x18, 0x75, 0xa1,
0x9d, 0xb1, 0x79, 0x3a, 0x21, 0x81, 0x76, 0x35, 0xd4, 0x16, 0x9a, 0x05, 0x78, 0xae, 0xbc, 0x7f,
0x80, 0x07, 0x53, 0x1a, 0x4d, 0x49, 0x26, 0x82, 0x57, 0xf3, 0x38, 0xce, 0x83, 0x09, 0x4b, 0x78,
0x4c, 0x04, 0x09, 0x83, 0x8c, 0xbc, 0xd1, 0xe7, 0x6f, 0x6b, 0xca, 0x91, 0x64, 0x1c, 0x94, 0x04,
0x8f, 0xbc, 0x41, 0x0e, 0x3c, 0x2c, 0xe5, 0x1c, 0xa7, 0x82, 0xe2, 0xdb, 0x16, 0xc5, 0xd1, 0x7c,
0xaa, 0x69, 0xa3, 0x92, 0xb5, 0x68, 0xd3, 0xfd, 0xb3, 0xaa, 0xd1, 0x05, 0xe6, 0xff, 0x63, 0x8d,
0x1e, 0x81, 0x99, 0xe8, 0xd3, 0xd0, 0x0d, 0x63, 0x5f, 0xbd, 0x96, 0xd7, 0x4f, 0xcb, 0xad, 0x98,
0xff, 0xbd, 0x78, 0x09, 0xe6, 0x0b, 0xc5, 0x4b, 0x30, 0x3f, 0x09, 0xe5, 0x7b, 0x26, 0xe1, 0x1b,
0xb5, 0x6b, 0x26, 0x98, 0x97, 0xa5, 0xdb, 0xfd, 0x0e, 0x5a, 0x8b, 0x2f, 0x37, 0xda, 0x84, 0xf5,
0x9f, 0x86, 0x67, 0xc3, 0xcb, 0x5f, 0x86, 0xc1, 0xf1, 0xc0, 0x3b, 0x0e, 0x3c, 0xdf, 0x1d, 0xf8,
0xce, 0xf3, 0x17, 0xd6, 0x1d, 0xd4, 0x02, 0xd3, 0x3d, 0x3a, 0x08, 0x9e, 0x7c, 0xff, 0x64, 0xcf,
0x32, 0x76, 0x03, 0x68, 0x54, 0x9f, 0x16, 0xb4, 0x01, 0xa8, 0x54, 0xf9, 0xae, 0xe3, 0x04, 0x9e,
0x3f, 0xf0, 0x1d, 0xeb, 0x0e, 0x02, 0xa8, 0x0f, 0x0e, 0xfc, 0x93, 0x9f, 0x1d, 0xcb, 0x90, 0xe3,
0x23, 0xf7, 0xf2, 0xa5, 0x33, 0xb4, 0x96, 0x90, 0x05, 0x2d, 0xef, 0xf2, 0xc8, 0x0f, 0x0e, 0x9d,
0x73, 0xc7, 0x77, 0x0e, 0xad, 0x65, 0x89, 0x1c, 0x0f, 0xdc, 0xc3, 0x0a, 0xa9, 0xed, 0xee, 0x83,
0x59, 0x7e, 0x88, 0xd0, 0x3a, 0xac, 0x5d, 0xf3, 0xf7, 0x5f, 0x8c, 0xa4, 0xfd, 0x0a, 0x2c, 0x9f,
0x5f, 0x3e, 0xb7, 0x0c, 0x39, 0xb8, 0x18, 0x8c, 0xac, 0xa5, 0x67, 0xdf, 0xc0, 0xe6, 0x84, 0x25,
0xe5, 0xf3, 0x71, 0xfd, 0xd7, 0xc1, 0xb3, 0xb6, 0xaf, 0xe3, 0x91, 0x0c, 0x47, 0xc6, 0xb8, 0xae,
0xf0, 0xfd, 0xbf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x22, 0xa5, 0x5e, 0xb6, 0x47, 0x08, 0x00, 0x00,
}