Change the logic of getting vchannel position (#5502)

Datanode send `SaveBinlogPath` request after every segment flush finish
with the binlog paths and dml/ddl position. But the flush of segments is
not sorted. So we sort the segments according to segment id and find the
largest segment id with not nil dml position which is the position of
the msgstream to recover.

Signed-off-by: sunby <bingyi.sun@zilliz.com>
pull/5779/head
sunby 2021-05-31 18:47:32 +08:00 committed by zhenshan.cao
parent 31c4a4f5ed
commit 38b1f7dabe
10 changed files with 236 additions and 334 deletions

View File

@ -3,6 +3,7 @@ package dataservice
import (
"errors"
"path"
"sort"
"strconv"
"github.com/golang/protobuf/proto"
@ -172,35 +173,6 @@ func (s *Server) getDDLBinlogMeta(collID UniqueID) (metas []*datapb.DDLBinlogMet
return
}
// prepareSegmentPos prepare segment flushed pos
func (s *Server) prepareSegmentPos(segInfo *datapb.SegmentInfo, dmlPos, ddlPos *datapb.PositionPair) (map[string]string, error) {
if segInfo == nil {
return nil, errNilSegmentInfo
}
result := make(map[string]string, 4)
if dmlPos != nil {
key, err := s.genKey(false, segInfo.ID)
if err != nil {
return nil, err
}
msPosPair := proto.MarshalTextString(dmlPos)
result[path.Join(Params.SegmentDmlPosSubPath, key)] = msPosPair // segment pos
result[path.Join(Params.DmlChannelPosSubPath, segInfo.InsertChannel)] = msPosPair // DmlChannel pos
}
if ddlPos != nil {
key, err := s.genKey(false, segInfo.ID)
if err != nil {
return nil, err
}
msPosPair := proto.MarshalTextString(ddlPos)
result[path.Join(Params.SegmentDdlPosSubPath, key)] = msPosPair //segment pos
result[path.Join(Params.DdlChannelPosSubPath, segInfo.InsertChannel)] = msPosPair // DdlChannel pos(use dm channel as Key, since dd channel may share same channel name)
}
return result, nil
}
// GetVChanPositions get vchannel latest postitions with provided dml channel names
func (s *Server) GetVChanPositions(vchans []vchannel) ([]*datapb.VchannelPair, error) {
if s.kvClient == nil {
@ -209,37 +181,27 @@ func (s *Server) GetVChanPositions(vchans []vchannel) ([]*datapb.VchannelPair, e
pairs := make([]*datapb.VchannelPair, 0, len(vchans))
for _, vchan := range vchans {
dmlKey := path.Join(Params.DmlChannelPosSubPath, vchan.DmlChannel)
ddlKey := path.Join(Params.DdlChannelPosSubPath, vchan.DmlChannel)
segments := s.meta.GetSegmentsByChannel(vchan.DmlChannel)
sort.Slice(segments, func(i, j int) bool {
return segments[i].ID < segments[j].ID
})
dmlPos := &datapb.PositionPair{}
ddlPos := &datapb.PositionPair{}
dmlVal, err := s.kvClient.Load(dmlKey)
zp := zeroPos(vchan.DmlChannel)
if err != nil {
dmlPos.StartPosition = &zp
dmlPos.EndPosition = &zp
} else {
err = proto.UnmarshalText(dmlVal, dmlPos)
if err != nil {
dmlPos.StartPosition = &zp
dmlPos.EndPosition = &zp
}
}
dmlPos.StartPosition = &zp
dmlPos.EndPosition = &zp
ddlPos.StartPosition = &zp
ddlPos.EndPosition = &zp
ddlVal, err := s.kvClient.Load(ddlKey)
zp = zeroPos(vchan.DdlChannel)
if err != nil {
ddlPos.StartPosition = &zp
ddlPos.EndPosition = &zp
} else {
err = proto.UnmarshalText(ddlVal, ddlPos)
if err != nil {
ddlPos.StartPosition = &zp
ddlPos.EndPosition = &zp
// find the last segment with not-nil position
for i := 0; i < len(segments); i++ {
if segments[i].DmlPosition == nil {
break
}
dmlPos = segments[i].DmlPosition
ddlPos = segments[i].DdlPosition
}
pairs = append(pairs, &datapb.VchannelPair{

View File

@ -164,8 +164,12 @@ func (s *Server) GetSegmentStates(ctx context.Context, req *datapb.GetSegmentSta
} else {
state.Status.ErrorCode = commonpb.ErrorCode_Success
state.State = segmentInfo.State
state.StartPosition = segmentInfo.StartPosition
state.EndPosition = segmentInfo.EndPosition
if segmentInfo.DmlPosition != nil {
state.StartPosition = segmentInfo.DmlPosition.StartPosition
state.EndPosition = segmentInfo.DmlPosition.EndPosition
} else {
}
}
resp.States = append(resp.States, state)
}
@ -304,15 +308,16 @@ func (s *Server) SaveBinlogPaths(ctx context.Context, req *datapb.SaveBinlogPath
return resp, nil
}
meta, err := s.prepareBinlogAndPos(req)
meta, err := s.prepareBinlog(req)
if err != nil {
log.Error("prepare binlog and pos meta failed", zap.Error(err))
log.Error("prepare binlog meta failed", zap.Error(err))
resp.Reason = err.Error()
return resp, nil
}
// set segment to SegmentState_Flushing
err = s.meta.FlushSegmentWithBinlogAndPos(req.SegmentID, meta)
err = s.meta.FlushSegmentWithBinlogAndPos(req.SegmentID, req.DmlPosition,
req.DdlPosition, meta)
if err != nil {
resp.Reason = err.Error()
return resp, nil

View File

@ -160,18 +160,15 @@ func (m *meta) AddSegment(segment *datapb.SegmentInfo) error {
return nil
}
func (m *meta) UpdateSegmentStatistic(segment *datapb.SegmentInfo) error {
func (m *meta) UpdateSegmentStatistic(stats *internalpb.SegmentStatisticsUpdates) error {
m.Lock()
defer m.Unlock()
seg, ok := m.segments[segment.ID]
seg, ok := m.segments[stats.SegmentID]
if !ok {
return newErrSegmentNotFound(segment.ID)
return newErrSegmentNotFound(stats.SegmentID)
}
seg.NumRows = segment.NumRows
seg.StartPosition = proto.Clone(segment.StartPosition).(*internalpb.MsgPosition)
seg.EndPosition = proto.Clone(segment.EndPosition).(*internalpb.MsgPosition)
if err := m.saveSegmentInfo(segment); err != nil {
seg.NumRows = stats.NumRows
if err := m.saveSegmentInfo(seg); err != nil {
return err
}
return nil
@ -234,7 +231,10 @@ func (m *meta) SealSegment(segID UniqueID) error {
return nil
}
func (m *meta) FlushSegmentWithBinlogAndPos(segID UniqueID, kv map[string]string) error {
func (m *meta) FlushSegmentWithBinlogAndPos(segID UniqueID,
dmlPositionPair *datapb.PositionPair,
ddlPositionPair *datapb.PositionPair,
binlogMeta map[string]string) error {
m.Lock()
defer m.Unlock()
@ -242,9 +242,15 @@ func (m *meta) FlushSegmentWithBinlogAndPos(segID UniqueID, kv map[string]string
if !ok {
return newErrSegmentNotFound(segID)
}
kv := make(map[string]string)
for k, v := range binlogMeta {
kv[k] = v
}
segInfo.State = commonpb.SegmentState_Flushing
segInfo.DmlPosition = dmlPositionPair
segInfo.DdlPosition = ddlPositionPair
segBytes := proto.MarshalTextString(segInfo)
key := fmt.Sprintf("%s/%d/%d/%d", segmentPrefix, segInfo.CollectionID, segInfo.PartitionID, segInfo.ID)
key := m.prepareSegmentPath(segInfo)
kv[key] = segBytes
if err := m.saveKvTxn(kv); err != nil {
@ -253,6 +259,18 @@ func (m *meta) FlushSegmentWithBinlogAndPos(segID UniqueID, kv map[string]string
return nil
}
func (m *meta) GetSegmentsByChannel(dmlCh string) []*datapb.SegmentInfo {
infos := make([]*datapb.SegmentInfo, 0)
for _, segment := range m.segments {
if segment.InsertChannel != dmlCh {
continue
}
cInfo := proto.Clone(segment).(*datapb.SegmentInfo)
infos = append(infos, cInfo)
}
return infos
}
func (m *meta) FlushSegment(segID UniqueID) error {
m.Lock()
defer m.Unlock()
@ -399,15 +417,19 @@ func (m *meta) GetFlushingSegments() []*datapb.SegmentInfo {
func (m *meta) saveSegmentInfo(segment *datapb.SegmentInfo) error {
segBytes := proto.MarshalTextString(segment)
key := fmt.Sprintf("%s/%d/%d/%d", segmentPrefix, segment.CollectionID, segment.PartitionID, segment.ID)
key := m.prepareSegmentPath(segment)
return m.client.Save(key, segBytes)
}
func (m *meta) removeSegmentInfo(segment *datapb.SegmentInfo) error {
key := fmt.Sprintf("%s/%d/%d/%d", segmentPrefix, segment.CollectionID, segment.PartitionID, segment.ID)
key := m.prepareSegmentPath(segment)
return m.client.Remove(key)
}
func (m *meta) prepareSegmentPath(segInfo *datapb.SegmentInfo) string {
return fmt.Sprintf("%s/%d/%d/%d", segmentPrefix, segInfo.CollectionID, segInfo.PartitionID, segInfo.ID)
}
func (m *meta) saveKvTxn(kv map[string]string) error {
return m.client.MultiSave(kv)
}
@ -420,15 +442,5 @@ func BuildSegment(collectionID UniqueID, partitionID UniqueID, segmentID UniqueI
InsertChannel: channelName,
NumRows: 0,
State: commonpb.SegmentState_Growing,
StartPosition: &internalpb.MsgPosition{
ChannelName: channelName,
MsgID: make([]byte, 0),
Timestamp: 0,
},
EndPosition: &internalpb.MsgPosition{
ChannelName: channelName,
MsgID: make([]byte, 0),
Timestamp: 0,
},
}, nil
}

View File

@ -16,6 +16,7 @@ import (
"github.com/golang/protobuf/proto"
"github.com/milvus-io/milvus/internal/proto/commonpb"
"github.com/milvus-io/milvus/internal/proto/datapb"
"github.com/milvus-io/milvus/internal/proto/internalpb"
"github.com/stretchr/testify/assert"
)
@ -209,8 +210,10 @@ func TestMeta_Basic(t *testing.T) {
assert.Nil(t, err)
// update seg1 to 300 rows
segInfo0.NumRows = rowCount1
err = meta.UpdateSegmentStatistic(segInfo0)
stat := &internalpb.SegmentStatisticsUpdates{}
stat.SegmentID = segInfo0.ID
stat.NumRows = rowCount1
err = meta.UpdateSegmentStatistic(stat)
assert.Nil(t, err)
nums, err = meta.GetNumRowsOfCollection(collID)
@ -218,10 +221,9 @@ func TestMeta_Basic(t *testing.T) {
assert.EqualValues(t, rowCount1, nums)
// check update non-exist segment
segInfoNonExist := segInfo0
segInfoNonExist.ID, err = mockAllocator.allocID()
stat.SegmentID, err = mockAllocator.allocID()
assert.Nil(t, err)
err = meta.UpdateSegmentStatistic(segInfo0)
err = meta.UpdateSegmentStatistic(stat)
assert.NotNil(t, err)
// add seg2 with 300 rows

View File

@ -20,7 +20,6 @@ import (
"github.com/milvus-io/milvus/internal/log"
"github.com/milvus-io/milvus/internal/msgstream"
"github.com/milvus-io/milvus/internal/proto/commonpb"
"github.com/milvus-io/milvus/internal/proto/internalpb"
"github.com/milvus-io/milvus/internal/util/trace"
"github.com/milvus-io/milvus/internal/util/tsoutil"
@ -230,24 +229,12 @@ func (s *channelSegmentAllocator) openNewSegment(ctx context.Context, collection
return nil, err
}
segmentInfo := &datapb.SegmentInfo{
ID: id,
CollectionID: collectionID,
PartitionID: partitionID,
InsertChannel: channelName,
NumRows: 0,
State: commonpb.SegmentState_Growing,
StartPosition: &internalpb.MsgPosition{
ChannelName: "",
MsgID: []byte{},
MsgGroup: "",
Timestamp: 0,
},
EndPosition: &internalpb.MsgPosition{
ChannelName: "",
MsgID: []byte{},
MsgGroup: "",
Timestamp: 0,
},
ID: id,
CollectionID: collectionID,
PartitionID: partitionID,
InsertChannel: channelName,
NumRows: 0,
State: commonpb.SegmentState_Growing,
MaxRowNum: int64(totalRows),
LastExpireTime: 0,
}

View File

@ -56,7 +56,6 @@ type Server struct {
meta *meta
segmentInfoStream msgstream.MsgStream
segAllocator segmentAllocator
statsHandler *statsHandler
allocator allocator
cluster *cluster
masterClient types.MasterService
@ -137,7 +136,6 @@ func (s *Server) Start() error {
s.allocator = newAllocator(s.masterClient)
s.startSegmentAllocator()
s.statsHandler = newStatsHandler(s.meta)
if err = s.initFlushMsgStream(); err != nil {
return err
}
@ -295,7 +293,7 @@ func (s *Server) startStatsChannel(ctx context.Context) {
}
ssMsg := msg.(*msgstream.SegmentStatisticsMsg)
for _, stat := range ssMsg.SegStats {
if err := s.statsHandler.HandleSegmentStat(stat); err != nil {
if err := s.meta.UpdateSegmentStatistic(stat); err != nil {
log.Error("handle segment stat error",
zap.Int64("segmentID", stat.SegmentID),
zap.Error(err))
@ -554,13 +552,8 @@ func (s *Server) loadCollectionFromMaster(ctx context.Context, collectionID int6
return s.meta.AddCollection(collInfo)
}
func (s *Server) prepareBinlogAndPos(req *datapb.SaveBinlogPathsRequest) (map[string]string, error) {
func (s *Server) prepareBinlog(req *datapb.SaveBinlogPathsRequest) (map[string]string, error) {
meta := make(map[string]string)
segInfo, err := s.meta.GetSegment(req.GetSegmentID())
if err != nil {
log.Error("Failed to get segment info", zap.Int64("segmentID", req.GetSegmentID()), zap.Error(err))
return nil, err
}
for _, fieldBlp := range req.Field2BinlogPaths {
fieldMeta, err := s.prepareField2PathMeta(req.SegmentID, fieldBlp)
@ -579,14 +572,6 @@ func (s *Server) prepareBinlogAndPos(req *datapb.SaveBinlogPathsRequest) (map[st
for k, v := range ddlMeta {
meta[k] = v
}
segmentPos, err := s.prepareSegmentPos(segInfo, req.GetDmlPosition(), req.GetDdlPosition())
if err != nil {
return nil, err
}
for k, v := range segmentPos {
meta[k] = v
}
return meta, nil
}

View File

@ -246,18 +246,6 @@ func TestGetSegmentStates(t *testing.T) {
InsertChannel: "",
NumRows: 0,
State: commonpb.SegmentState_Growing,
StartPosition: &internalpb.MsgPosition{
ChannelName: "",
MsgID: []byte{},
MsgGroup: "",
Timestamp: 0,
},
EndPosition: &internalpb.MsgPosition{
ChannelName: "",
MsgID: []byte{},
MsgGroup: "",
Timestamp: 0,
},
})
assert.Nil(t, err)
@ -814,6 +802,13 @@ func TestGetVChannelPos(t *testing.T) {
InsertChannel: "ch1",
})
assert.Nil(t, err)
err = svr.meta.AddSegment(&datapb.SegmentInfo{
ID: 2,
CollectionID: 0,
PartitionID: 0,
InsertChannel: "ch1",
})
assert.Nil(t, err)
req := &datapb.SaveBinlogPathsRequest{
SegmentID: 1,
CollectionID: 0,

View File

@ -1,46 +0,0 @@
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under the License
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
// or implied. See the License for the specific language governing permissions and limitations under the License.
package dataservice
import (
"github.com/milvus-io/milvus/internal/log"
"github.com/milvus-io/milvus/internal/proto/internalpb"
"go.uber.org/zap"
)
type statsHandler struct {
meta *meta
}
func newStatsHandler(meta *meta) *statsHandler {
return &statsHandler{
meta: meta,
}
}
func (handler *statsHandler) HandleSegmentStat(segStats *internalpb.SegmentStatisticsUpdates) error {
segMeta, err := handler.meta.GetSegment(segStats.SegmentID)
if err != nil {
return err
}
if segStats.StartPosition != nil {
segMeta.StartPosition = segStats.StartPosition
}
if segStats.EndPosition != nil {
segMeta.EndPosition = segStats.EndPosition
}
segMeta.NumRows = segStats.NumRows
log.Debug("stats_handler update segment", zap.Any("segmentID", segMeta.ID), zap.Any("State", segMeta.State))
return handler.meta.UpdateSegmentStatistic(segMeta)
}

View File

@ -234,8 +234,8 @@ message SegmentInfo {
string insert_channel = 4;
int64 num_rows = 5;
common.SegmentState state = 6;
internal.MsgPosition start_position = 7;
internal.MsgPosition end_position = 8;
PositionPair dmlPosition = 7;
PositionPair ddlPosition = 8;
int64 max_row_num = 9;
uint64 last_expire_time = 10;
}

View File

@ -1752,19 +1752,19 @@ func (m *CollectionInfo) GetPartitions() []int64 {
}
type SegmentInfo struct {
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
PartitionID int64 `protobuf:"varint,3,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
InsertChannel string `protobuf:"bytes,4,opt,name=insert_channel,json=insertChannel,proto3" json:"insert_channel,omitempty"`
NumRows int64 `protobuf:"varint,5,opt,name=num_rows,json=numRows,proto3" json:"num_rows,omitempty"`
State commonpb.SegmentState `protobuf:"varint,6,opt,name=state,proto3,enum=milvus.proto.common.SegmentState" json:"state,omitempty"`
StartPosition *internalpb.MsgPosition `protobuf:"bytes,7,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
EndPosition *internalpb.MsgPosition `protobuf:"bytes,8,opt,name=end_position,json=endPosition,proto3" json:"end_position,omitempty"`
MaxRowNum int64 `protobuf:"varint,9,opt,name=max_row_num,json=maxRowNum,proto3" json:"max_row_num,omitempty"`
LastExpireTime uint64 `protobuf:"varint,10,opt,name=last_expire_time,json=lastExpireTime,proto3" json:"last_expire_time,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
PartitionID int64 `protobuf:"varint,3,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
InsertChannel string `protobuf:"bytes,4,opt,name=insert_channel,json=insertChannel,proto3" json:"insert_channel,omitempty"`
NumRows int64 `protobuf:"varint,5,opt,name=num_rows,json=numRows,proto3" json:"num_rows,omitempty"`
State commonpb.SegmentState `protobuf:"varint,6,opt,name=state,proto3,enum=milvus.proto.common.SegmentState" json:"state,omitempty"`
DmlPosition *PositionPair `protobuf:"bytes,7,opt,name=dmlPosition,proto3" json:"dmlPosition,omitempty"`
DdlPosition *PositionPair `protobuf:"bytes,8,opt,name=ddlPosition,proto3" json:"ddlPosition,omitempty"`
MaxRowNum int64 `protobuf:"varint,9,opt,name=max_row_num,json=maxRowNum,proto3" json:"max_row_num,omitempty"`
LastExpireTime uint64 `protobuf:"varint,10,opt,name=last_expire_time,json=lastExpireTime,proto3" json:"last_expire_time,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SegmentInfo) Reset() { *m = SegmentInfo{} }
@ -1834,16 +1834,16 @@ func (m *SegmentInfo) GetState() commonpb.SegmentState {
return commonpb.SegmentState_SegmentStateNone
}
func (m *SegmentInfo) GetStartPosition() *internalpb.MsgPosition {
func (m *SegmentInfo) GetDmlPosition() *PositionPair {
if m != nil {
return m.StartPosition
return m.DmlPosition
}
return nil
}
func (m *SegmentInfo) GetEndPosition() *internalpb.MsgPosition {
func (m *SegmentInfo) GetDdlPosition() *PositionPair {
if m != nil {
return m.EndPosition
return m.DdlPosition
}
return nil
}
@ -2590,142 +2590,142 @@ func init() {
func init() { proto.RegisterFile("data_service.proto", fileDescriptor_3385cd32ad6cfe64) }
var fileDescriptor_3385cd32ad6cfe64 = []byte{
// 2146 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x19, 0x5b, 0x6f, 0x1b, 0x59,
0x39, 0x63, 0xe7, 0xe6, 0xcf, 0x63, 0x37, 0x39, 0x0d, 0x59, 0xe3, 0xb6, 0x69, 0x3a, 0xec, 0x76,
0xb3, 0x59, 0x91, 0x6c, 0x53, 0xc4, 0xad, 0x2c, 0xa8, 0xa9, 0xb7, 0xc1, 0xa2, 0x29, 0xe1, 0xa4,
0xdb, 0x95, 0x58, 0x21, 0x6b, 0xe2, 0x39, 0x71, 0x86, 0x78, 0x66, 0xbc, 0x73, 0xc6, 0x69, 0xfa,
0xd4, 0xd5, 0x2e, 0x0f, 0x80, 0x10, 0x0b, 0xfc, 0x02, 0x40, 0x42, 0x42, 0x82, 0x07, 0x9e, 0x79,
0xe7, 0x2f, 0xf0, 0x7b, 0x56, 0xe7, 0x32, 0xf7, 0x63, 0x7b, 0xe2, 0xb4, 0xca, 0xdb, 0x9c, 0x33,
0xdf, 0xed, 0x7c, 0xf7, 0xf3, 0x1d, 0x40, 0x96, 0x19, 0x98, 0x1d, 0x4a, 0xfc, 0x33, 0xbb, 0x4b,
0xb6, 0x06, 0xbe, 0x17, 0x78, 0x68, 0xd9, 0xb1, 0xfb, 0x67, 0x43, 0x2a, 0x56, 0x5b, 0x0c, 0xa0,
0xa9, 0x77, 0x3d, 0xc7, 0xf1, 0x5c, 0xb1, 0xd5, 0xac, 0xdb, 0x6e, 0x40, 0x7c, 0xd7, 0xec, 0xcb,
0xb5, 0x9e, 0x44, 0x68, 0xea, 0xb4, 0x7b, 0x42, 0x1c, 0x53, 0xac, 0x8c, 0x57, 0x70, 0x1d, 0x93,
0x9e, 0x4d, 0x03, 0xe2, 0x3f, 0xf5, 0x2c, 0x82, 0xc9, 0x67, 0x43, 0x42, 0x03, 0xf4, 0x01, 0xcc,
0x1e, 0x99, 0x94, 0x34, 0xb4, 0x75, 0x6d, 0xa3, 0xba, 0x73, 0x73, 0x2b, 0xc5, 0x52, 0x32, 0xdb,
0xa7, 0xbd, 0x5d, 0x93, 0x12, 0xcc, 0x21, 0xd1, 0x77, 0x61, 0xc1, 0xb4, 0x2c, 0x9f, 0x50, 0xda,
0x28, 0x8d, 0x41, 0x7a, 0x28, 0x60, 0x70, 0x08, 0x6c, 0x7c, 0xa5, 0xc1, 0x4a, 0x5a, 0x02, 0x3a,
0xf0, 0x5c, 0x4a, 0xd0, 0x2e, 0x54, 0x6d, 0xd7, 0x0e, 0x3a, 0x03, 0xd3, 0x37, 0x1d, 0x2a, 0x25,
0xb9, 0x93, 0x26, 0x1a, 0x1d, 0xb4, 0xed, 0xda, 0xc1, 0x01, 0x07, 0xc4, 0x60, 0x47, 0xdf, 0xe8,
0x3e, 0xcc, 0xd3, 0xc0, 0x0c, 0x86, 0xa1, 0x4c, 0x37, 0x94, 0x32, 0x1d, 0x72, 0x10, 0x2c, 0x41,
0x8d, 0x73, 0xd0, 0x1f, 0xf7, 0x87, 0xf4, 0x64, 0x7a, 0x5d, 0x20, 0x98, 0xb5, 0x8e, 0xda, 0x2d,
0xce, 0xb4, 0x8c, 0xf9, 0x37, 0x32, 0x40, 0xef, 0x7a, 0xfd, 0x3e, 0xe9, 0x06, 0xb6, 0xe7, 0xb6,
0x5b, 0x8d, 0x59, 0xfe, 0x2f, 0xb5, 0x67, 0xfc, 0x59, 0x83, 0xa5, 0x43, 0xd2, 0x73, 0x88, 0x1b,
0xb4, 0x5b, 0x21, 0xfb, 0x15, 0x98, 0xeb, 0x7a, 0x43, 0x37, 0xe0, 0xfc, 0x6b, 0x58, 0x2c, 0xd0,
0x1d, 0xd0, 0xbb, 0x27, 0xa6, 0xeb, 0x92, 0x7e, 0xc7, 0x35, 0x1d, 0xc2, 0x59, 0x55, 0x70, 0x55,
0xee, 0x3d, 0x35, 0x1d, 0x92, 0xe3, 0x58, 0xce, 0x73, 0x44, 0xeb, 0x50, 0x1d, 0x98, 0x7e, 0x60,
0xa7, 0x84, 0x4a, 0x6e, 0x19, 0x7f, 0xd5, 0x60, 0xf5, 0x21, 0xa5, 0x76, 0xcf, 0xcd, 0x49, 0xb6,
0x0a, 0xf3, 0xae, 0x67, 0x91, 0x76, 0x8b, 0x8b, 0x56, 0xc6, 0x72, 0x85, 0x6e, 0x40, 0x65, 0x40,
0x88, 0xdf, 0xf1, 0xbd, 0x7e, 0x28, 0xd8, 0x22, 0xdb, 0xc0, 0x5e, 0x9f, 0xa0, 0x5f, 0xc0, 0x32,
0xcd, 0x10, 0xa2, 0x8d, 0xf2, 0x7a, 0x79, 0xa3, 0xba, 0xf3, 0xad, 0xad, 0x9c, 0x67, 0x6f, 0x65,
0x99, 0xe2, 0x3c, 0xb6, 0xf1, 0x79, 0x09, 0xae, 0x47, 0x70, 0x42, 0x56, 0xf6, 0xcd, 0x34, 0x47,
0x49, 0x2f, 0x12, 0x4f, 0x2c, 0x8a, 0x68, 0x2e, 0x52, 0x79, 0x39, 0xa9, 0xf2, 0x02, 0x16, 0xcc,
0xea, 0x73, 0x2e, 0xa7, 0x4f, 0x74, 0x1b, 0xaa, 0xe4, 0x7c, 0x60, 0xfb, 0xa4, 0x13, 0xd8, 0x0e,
0x69, 0xcc, 0xaf, 0x6b, 0x1b, 0xb3, 0x18, 0xc4, 0xd6, 0x33, 0xdb, 0x21, 0x09, 0x9f, 0x5d, 0x28,
0xee, 0xb3, 0x7f, 0xd7, 0xe0, 0xad, 0x9c, 0x95, 0x64, 0x20, 0x61, 0x58, 0xe2, 0x27, 0x8f, 0x35,
0xc3, 0xa2, 0x89, 0x29, 0xfc, 0xee, 0x38, 0x85, 0xc7, 0xe0, 0x38, 0x87, 0x3f, 0x5d, 0x60, 0xfd,
0x4d, 0x83, 0xeb, 0x87, 0x27, 0xde, 0x0b, 0xc9, 0x82, 0x4e, 0x1f, 0x60, 0x59, 0x53, 0x94, 0x26,
0x9b, 0xa2, 0x9c, 0x37, 0x45, 0x18, 0xa6, 0xb3, 0x71, 0x98, 0x1a, 0xa7, 0xb0, 0x92, 0x16, 0x51,
0x2a, 0x71, 0x0d, 0x20, 0x72, 0x3c, 0xa1, 0xbe, 0x32, 0x4e, 0xec, 0x4c, 0xa7, 0x90, 0x53, 0x78,
0x6b, 0x8f, 0x04, 0x92, 0x17, 0xfb, 0x47, 0x2e, 0xa1, 0x93, 0xb4, 0x84, 0xa5, 0xac, 0x84, 0xc6,
0x7f, 0x4a, 0x51, 0x72, 0xe1, 0xac, 0xda, 0xee, 0xb1, 0x87, 0x6e, 0x42, 0x25, 0x02, 0x91, 0x61,
0x12, 0x6f, 0xa0, 0xef, 0xc1, 0x1c, 0x93, 0x54, 0xc4, 0x48, 0x3d, 0x9b, 0x7c, 0xc3, 0x33, 0x25,
0x68, 0x62, 0x01, 0x8f, 0xda, 0x50, 0xa7, 0x81, 0xe9, 0x07, 0x9d, 0x81, 0x47, 0xb9, 0xb6, 0xb9,
0xfa, 0xab, 0x3b, 0xc6, 0x88, 0xf4, 0xbd, 0x4f, 0x7b, 0x07, 0x12, 0x12, 0xd7, 0x38, 0x66, 0xb8,
0x44, 0x1f, 0x81, 0x4e, 0x5c, 0x2b, 0x26, 0x34, 0x5b, 0x98, 0x50, 0x95, 0xb8, 0x56, 0x44, 0x26,
0xb6, 0xcf, 0x5c, 0x71, 0xfb, 0xfc, 0x41, 0x83, 0x46, 0xde, 0x40, 0xd2, 0x23, 0x62, 0x8a, 0x5a,
0x61, 0x8a, 0xe8, 0x81, 0x40, 0x22, 0xc2, 0x40, 0x63, 0x53, 0x5e, 0x64, 0x24, 0x2c, 0x51, 0x0c,
0x1b, 0xbe, 0x11, 0x4b, 0xc3, 0xff, 0xbc, 0x31, 0x67, 0xf9, 0x52, 0x83, 0xd5, 0x2c, 0xaf, 0xcb,
0x9c, 0xfb, 0x3b, 0x30, 0x67, 0xbb, 0xc7, 0x5e, 0x78, 0xec, 0xb5, 0x31, 0x89, 0x87, 0xf1, 0x12,
0xc0, 0x86, 0x03, 0x37, 0xf6, 0x48, 0xd0, 0x76, 0x29, 0xf1, 0x83, 0x5d, 0xdb, 0xed, 0x7b, 0xbd,
0x03, 0x33, 0x38, 0xb9, 0x44, 0x8c, 0xa4, 0xdc, 0xbd, 0x94, 0x71, 0x77, 0xe3, 0x9f, 0x1a, 0xdc,
0x54, 0xf3, 0x93, 0x47, 0x6f, 0xc2, 0xe2, 0xb1, 0x4d, 0xfa, 0x56, 0x9c, 0x02, 0xa2, 0x35, 0x8b,
0x95, 0x01, 0x03, 0x96, 0x27, 0x1c, 0xd5, 0xa8, 0x1c, 0x06, 0xbe, 0xed, 0xf6, 0x9e, 0xd8, 0x34,
0xc0, 0x02, 0x3e, 0xa1, 0xcf, 0x72, 0x71, 0xcf, 0xfc, 0x8d, 0xf0, 0x4c, 0x21, 0xea, 0x23, 0x51,
0xba, 0xe8, 0x9b, 0x6d, 0x58, 0x14, 0xed, 0x83, 0xf1, 0x7b, 0x0d, 0xd6, 0xf6, 0x48, 0xf0, 0x28,
0xda, 0x63, 0x62, 0xda, 0x34, 0xb0, 0xbb, 0x57, 0x20, 0xcc, 0x57, 0x1a, 0xdc, 0x1e, 0x29, 0x8c,
0xb4, 0xa0, 0xcc, 0x68, 0x61, 0x01, 0x54, 0x67, 0xb4, 0x9f, 0x91, 0x97, 0xcf, 0xcd, 0xfe, 0x90,
0x1c, 0x98, 0xb6, 0x2f, 0x32, 0xda, 0x94, 0xf9, 0xfd, 0x5f, 0x1a, 0xdc, 0xda, 0x23, 0xac, 0x19,
0x15, 0x35, 0xe7, 0x0a, 0xb5, 0x53, 0xa0, 0xd3, 0xfb, 0xa3, 0x30, 0xa6, 0x52, 0xda, 0x2b, 0x51,
0xdf, 0x1a, 0x0f, 0xc7, 0x44, 0x5e, 0x90, 0x8e, 0x2e, 0x95, 0x67, 0xfc, 0xa5, 0x04, 0xfa, 0x73,
0xd9, 0xb7, 0x31, 0x66, 0x39, 0x3d, 0x68, 0x0a, 0x3d, 0x6c, 0xc2, 0xb2, 0xe5, 0xf4, 0x3b, 0x67,
0x8a, 0x1e, 0xf0, 0x9a, 0xe5, 0xf4, 0x9f, 0x27, 0xfb, 0x40, 0x06, 0x6b, 0x65, 0x61, 0xcb, 0x12,
0xd6, 0x4a, 0xc3, 0xee, 0x82, 0xce, 0x60, 0x33, 0x75, 0xea, 0xb6, 0x22, 0xd1, 0x85, 0x35, 0x89,
0xeb, 0xa7, 0x6a, 0x59, 0xfd, 0xa8, 0x48, 0x31, 0x1a, 0x4e, 0x82, 0xc6, 0x5c, 0x51, 0x1a, 0x4e,
0x44, 0xc3, 0xf8, 0x9d, 0x06, 0xab, 0x9f, 0x98, 0x41, 0xf7, 0xa4, 0xe5, 0x5c, 0x3e, 0x2f, 0x7c,
0x08, 0x95, 0xf0, 0xf0, 0x61, 0x62, 0x53, 0x49, 0x93, 0x34, 0x02, 0x8e, 0x31, 0xd8, 0xdd, 0x61,
0x85, 0x5f, 0xa5, 0x2e, 0xdf, 0xf1, 0x4d, 0xeb, 0xf6, 0xe9, 0x42, 0x37, 0x9b, 0x2b, 0x74, 0xe7,
0x00, 0x52, 0xb8, 0x7d, 0xda, 0x9b, 0x42, 0xae, 0xef, 0xc3, 0x82, 0xa4, 0x26, 0x3d, 0x7b, 0x52,
0x69, 0x0b, 0xc1, 0x8d, 0x43, 0x58, 0x95, 0xfb, 0x8f, 0x59, 0x0d, 0x11, 0xf5, 0x66, 0x9f, 0x04,
0x26, 0x6a, 0xc0, 0x82, 0x2c, 0x2b, 0xd2, 0x83, 0xc3, 0x25, 0xbb, 0x3c, 0x1c, 0x71, 0xb8, 0x0e,
0xab, 0x1d, 0xd2, 0x6d, 0xe1, 0x28, 0x2a, 0x55, 0xc6, 0xaf, 0xa0, 0xd6, 0x6a, 0x3d, 0x49, 0xd0,
0xba, 0x0b, 0xcc, 0x53, 0x3b, 0x49, 0x2c, 0x8d, 0x63, 0xd5, 0x2c, 0xab, 0x1f, 0xd7, 0x38, 0xf4,
0x36, 0xd4, 0x03, 0xda, 0xc9, 0x13, 0xd7, 0x03, 0x1a, 0x43, 0x19, 0xfb, 0x50, 0xe7, 0xc2, 0x72,
0xa3, 0x4e, 0x90, 0xf5, 0x0e, 0xe8, 0x09, 0x72, 0xc2, 0x7d, 0x2a, 0xb8, 0x1a, 0x0b, 0x4b, 0x59,
0xf9, 0x08, 0x5b, 0xd2, 0x98, 0xe2, 0xf8, 0x96, 0xf4, 0x16, 0x80, 0x4d, 0x3b, 0xc7, 0x0c, 0x9a,
0x58, 0x5c, 0xc6, 0x45, 0x5c, 0xb1, 0xe9, 0x63, 0xb1, 0x81, 0x7e, 0x00, 0xf3, 0x9c, 0x3f, 0x6b,
0xf3, 0x14, 0x19, 0x8a, 0x5b, 0x23, 0x7d, 0x02, 0x2c, 0x11, 0x8c, 0x8f, 0x41, 0x6f, 0xb5, 0x9e,
0xc4, 0x72, 0x14, 0x49, 0x26, 0x05, 0xce, 0xf8, 0x0a, 0xea, 0x71, 0x45, 0xe2, 0x3d, 0x77, 0x1d,
0x4a, 0x11, 0xb9, 0x52, 0xbb, 0x85, 0x3e, 0x84, 0x79, 0x31, 0x92, 0x91, 0x1e, 0xf4, 0x4e, 0x5a,
0x66, 0x39, 0xae, 0x49, 0x94, 0x35, 0xbe, 0x81, 0x25, 0x12, 0xf3, 0xf0, 0x28, 0x8b, 0x8b, 0x9b,
0x74, 0x19, 0x27, 0x76, 0x8c, 0xff, 0x96, 0xa1, 0x9a, 0x70, 0xc0, 0x1c, 0xfb, 0xd7, 0x73, 0x97,
0x7a, 0x07, 0xea, 0x36, 0x6f, 0x46, 0x3a, 0x32, 0xfa, 0x79, 0x02, 0xac, 0xe0, 0x9a, 0x9d, 0x6c,
0x51, 0xd0, 0x37, 0x61, 0xd1, 0x1d, 0x3a, 0x1d, 0xdf, 0x7b, 0x41, 0xe5, 0xe5, 0x78, 0xc1, 0x1d,
0x3a, 0xd8, 0x7b, 0x41, 0xe3, 0xcb, 0xc6, 0xfc, 0xa5, 0x2f, 0x1b, 0x0b, 0xaf, 0xeb, 0xb2, 0xb1,
0x38, 0xdd, 0x65, 0x63, 0x0d, 0xaa, 0x8e, 0x79, 0xce, 0x4e, 0xd9, 0x71, 0x87, 0x4e, 0xa3, 0x22,
0x9c, 0xd8, 0x31, 0xcf, 0xb1, 0xf7, 0xe2, 0xe9, 0xd0, 0x41, 0x1b, 0xb0, 0xd4, 0x37, 0x69, 0xd0,
0x49, 0x0e, 0x02, 0x80, 0x0f, 0x02, 0xea, 0x6c, 0xff, 0xa3, 0x68, 0x18, 0x60, 0xdc, 0x87, 0x6a,
0xbb, 0xb5, 0xc3, 0x3c, 0x89, 0xb5, 0x8c, 0x39, 0xdb, 0xad, 0xc0, 0xdc, 0x41, 0xc2, 0xf1, 0xc4,
0x82, 0xa5, 0x5d, 0x3d, 0x59, 0x20, 0x14, 0x1a, 0xd2, 0x5e, 0x97, 0x86, 0x4a, 0x53, 0x69, 0xc8,
0xf8, 0x77, 0x19, 0x56, 0x0f, 0xcd, 0x33, 0xf2, 0xe6, 0xbb, 0xfa, 0x42, 0x55, 0xe2, 0x09, 0x2c,
0xf3, 0x2c, 0xb0, 0x93, 0x90, 0x87, 0x17, 0x0b, 0x75, 0x3e, 0x4f, 0x98, 0x04, 0xe7, 0x11, 0xd1,
0x4f, 0xa1, 0x9e, 0x4a, 0xae, 0x61, 0x32, 0x5a, 0x57, 0x90, 0x4a, 0x65, 0x6b, 0x9c, 0xc1, 0xcb,
0x35, 0x04, 0xf3, 0x17, 0x6f, 0x08, 0x72, 0x8d, 0xc9, 0xc2, 0xc5, 0x1b, 0x13, 0xe3, 0x0b, 0x0d,
0x6a, 0x2d, 0x33, 0x30, 0x9f, 0x7a, 0x16, 0x79, 0x36, 0x65, 0xa5, 0x2c, 0x30, 0x77, 0xbb, 0x09,
0x15, 0x16, 0x0b, 0x34, 0x30, 0x9d, 0x01, 0xb7, 0xd3, 0x2c, 0x8e, 0x37, 0x58, 0xb5, 0x80, 0x47,
0x27, 0xa4, 0x7b, 0x7a, 0xe0, 0xd9, 0x6e, 0x30, 0xa1, 0x4e, 0xfc, 0x18, 0x16, 0xa7, 0xf0, 0xd1,
0x08, 0x87, 0x85, 0x30, 0x4b, 0x54, 0xde, 0xb1, 0xc8, 0x55, 0xc2, 0x69, 0x2a, 0xee, 0xd0, 0xf9,
0xf9, 0x31, 0xcb, 0x56, 0xc6, 0x6f, 0x13, 0xbd, 0x27, 0x4f, 0xab, 0x45, 0xca, 0xc5, 0x3a, 0x24,
0x8f, 0xab, 0xd2, 0xc0, 0x1e, 0xd4, 0x28, 0x21, 0xa7, 0xd3, 0xcc, 0x4d, 0x74, 0x86, 0x18, 0x59,
0xfd, 0x27, 0x8c, 0x55, 0xa8, 0xab, 0xd0, 0x97, 0x6f, 0x29, 0x8c, 0x1e, 0x6b, 0x14, 0x27, 0x31,
0xd0, 0x06, 0x5c, 0x93, 0x55, 0x36, 0x6c, 0xde, 0xb8, 0x17, 0x97, 0x71, 0x76, 0xdb, 0xf0, 0xa1,
0x2e, 0xbf, 0x85, 0xeb, 0xd2, 0x09, 0xa6, 0xd9, 0x05, 0xfd, 0x38, 0xee, 0x78, 0xc6, 0x8d, 0x04,
0x12, 0x8d, 0x11, 0x4e, 0xe1, 0x18, 0x0f, 0xa1, 0x9a, 0xf8, 0x39, 0xa6, 0x0b, 0x69, 0xc0, 0xc2,
0x51, 0x82, 0x4f, 0x05, 0x87, 0x4b, 0xe3, 0x4b, 0x0d, 0x6a, 0xb2, 0x2c, 0x89, 0x7b, 0x07, 0xeb,
0x31, 0xb9, 0x67, 0x8a, 0x06, 0x89, 0x7f, 0xa3, 0x1f, 0xa6, 0x47, 0x60, 0x6f, 0x2b, 0x35, 0xc8,
0x89, 0xf0, 0xa6, 0x3b, 0x55, 0x98, 0x8a, 0x5c, 0x5a, 0x3f, 0xd7, 0x40, 0x0f, 0x23, 0x8b, 0xfb,
0x51, 0x23, 0x7e, 0x47, 0x11, 0x72, 0x84, 0x4b, 0xf6, 0xe7, 0x8c, 0xf8, 0x34, 0xf4, 0xe8, 0x32,
0x0e, 0x97, 0xe8, 0x47, 0xb0, 0x18, 0x75, 0xe9, 0xe5, 0x91, 0xa9, 0x26, 0x75, 0x58, 0x1c, 0x61,
0x18, 0xff, 0xd3, 0xf8, 0x18, 0x12, 0x93, 0xae, 0x77, 0x46, 0xfc, 0x97, 0xa9, 0x61, 0xcf, 0xc5,
0xc3, 0xfc, 0x41, 0x42, 0x96, 0xc9, 0x37, 0x06, 0xce, 0x2c, 0x42, 0x40, 0x0f, 0x62, 0x6b, 0x95,
0x47, 0xf6, 0x6f, 0x69, 0x67, 0x8b, 0x0d, 0xfa, 0x27, 0x31, 0xb3, 0x4a, 0x9f, 0xe3, 0x4a, 0x27,
0xcc, 0x9b, 0xf7, 0x60, 0x39, 0xe7, 0x1d, 0xa8, 0x0e, 0xf0, 0xb1, 0xdb, 0xf5, 0x9c, 0x41, 0x9f,
0x04, 0x64, 0x69, 0x06, 0xe9, 0xb0, 0xf8, 0x28, 0x5c, 0x69, 0x3b, 0xff, 0xaf, 0x41, 0x95, 0x39,
0xc4, 0xa1, 0x78, 0xf3, 0x43, 0x03, 0x40, 0x7c, 0xa8, 0xe1, 0x0c, 0x3c, 0x37, 0x1a, 0x42, 0xa2,
0x0f, 0x46, 0x24, 0x84, 0x3c, 0xa8, 0x54, 0x41, 0xf3, 0xee, 0x08, 0x8c, 0x0c, 0xb8, 0x31, 0x83,
0x1c, 0xce, 0x91, 0xb5, 0x1f, 0xcf, 0xec, 0xee, 0x69, 0xd8, 0xb9, 0x8d, 0xe1, 0x98, 0x01, 0x0d,
0x39, 0x66, 0x66, 0x9b, 0x72, 0x21, 0x06, 0x60, 0xa1, 0x83, 0x19, 0x33, 0xe8, 0x33, 0x58, 0x61,
0xb7, 0xfc, 0x68, 0xd8, 0x10, 0x32, 0xdc, 0x19, 0xcd, 0x30, 0x07, 0x7c, 0x41, 0x96, 0x26, 0xe8,
0xc9, 0x27, 0x47, 0xa4, 0x7a, 0x07, 0x51, 0xbc, 0x8a, 0x36, 0xdf, 0x9d, 0x08, 0x17, 0xb1, 0xd8,
0x83, 0x39, 0x7e, 0x95, 0x40, 0x2a, 0xef, 0x4f, 0x3e, 0x2f, 0x36, 0xc7, 0x8d, 0x42, 0x8c, 0x19,
0xf4, 0x6b, 0xb8, 0x96, 0x79, 0xd8, 0x41, 0xef, 0x29, 0x48, 0xaa, 0x9f, 0xe8, 0x9a, 0x9b, 0x45,
0x40, 0x93, 0x7a, 0x49, 0x3e, 0x7e, 0x28, 0xf5, 0xa2, 0x78, 0xc0, 0x51, 0xea, 0x45, 0xf5, 0x8a,
0x62, 0xcc, 0xa0, 0x1e, 0xd4, 0xd3, 0x33, 0x1d, 0xb4, 0xa1, 0x40, 0x56, 0x8e, 0xb9, 0x9b, 0xef,
0x15, 0x80, 0x8c, 0x18, 0x39, 0xb0, 0x94, 0x1d, 0xdd, 0xa3, 0xcd, 0xb1, 0x04, 0xd2, 0xf1, 0xf2,
0x7e, 0x21, 0xd8, 0x88, 0xdd, 0x4b, 0xee, 0xc5, 0xb9, 0xd1, 0x31, 0xda, 0x52, 0x93, 0x19, 0x35,
0xd3, 0x6e, 0x6e, 0x17, 0x86, 0x8f, 0x58, 0x13, 0x58, 0xce, 0x8d, 0x82, 0xd1, 0xfb, 0xe3, 0xe8,
0x64, 0x06, 0x43, 0xcd, 0xc9, 0xc3, 0x6a, 0x63, 0x06, 0x7d, 0x21, 0xca, 0x84, 0x6a, 0xbc, 0x8a,
0xee, 0xa9, 0xb9, 0x8d, 0x99, 0x0b, 0x37, 0x77, 0x2e, 0x82, 0x12, 0x9d, 0xf5, 0x15, 0x4f, 0xf1,
0x8a, 0x11, 0x65, 0x36, 0x3f, 0x85, 0xf4, 0x46, 0xcf, 0x5e, 0x9b, 0xf7, 0x2e, 0x80, 0x11, 0x09,
0xe0, 0x65, 0xdf, 0x60, 0xc2, 0x74, 0xb5, 0x3d, 0xd1, 0x39, 0xa7, 0xcb, 0x55, 0x9f, 0xc2, 0xb5,
0xcc, 0x45, 0x49, 0x19, 0xff, 0xea, 0xcb, 0x54, 0x81, 0xe4, 0x92, 0xa9, 0x98, 0x68, 0x44, 0x90,
0x29, 0xaa, 0x6a, 0x73, 0xb3, 0x08, 0x68, 0x78, 0x90, 0x9d, 0x7f, 0x94, 0x61, 0x31, 0xec, 0x74,
0xae, 0xa0, 0xaa, 0x5d, 0x41, 0x99, 0xf9, 0x14, 0xae, 0x65, 0x26, 0xb1, 0x4a, 0xed, 0xaa, 0xa7,
0xb5, 0x93, 0x4c, 0xf7, 0x09, 0xd4, 0x52, 0xa3, 0x55, 0xf4, 0xee, 0xa8, 0x42, 0x93, 0xcd, 0xd6,
0xe3, 0x09, 0xef, 0xde, 0xff, 0xe5, 0xbd, 0x9e, 0x1d, 0x9c, 0x0c, 0x8f, 0xd8, 0x9f, 0x6d, 0x01,
0xfa, 0x6d, 0xdb, 0x93, 0x5f, 0xdb, 0xa1, 0x82, 0xb6, 0x39, 0xf6, 0x36, 0x63, 0x33, 0x38, 0x3a,
0x9a, 0xe7, 0xab, 0xfb, 0x5f, 0x07, 0x00, 0x00, 0xff, 0xff, 0x14, 0xe8, 0x4b, 0x56, 0xb0, 0x24,
0x00, 0x00,
// 2158 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x39, 0xeb, 0x6e, 0x1b, 0xc7,
0xd5, 0x5a, 0x52, 0x37, 0x1e, 0x2e, 0x29, 0x69, 0xac, 0x4f, 0xe1, 0x47, 0xdb, 0xb2, 0xbc, 0x4d,
0x1c, 0x45, 0x41, 0xa5, 0x58, 0x2e, 0x7a, 0x73, 0xd3, 0xc2, 0x32, 0x63, 0x95, 0xa8, 0xe5, 0xaa,
0x23, 0xc7, 0x01, 0x1a, 0x14, 0xc4, 0x8a, 0x3b, 0xa2, 0xb6, 0xe2, 0xee, 0x32, 0x3b, 0x4b, 0x59,
0xfe, 0xe5, 0x20, 0xe9, 0x8f, 0xb6, 0x28, 0x9a, 0xb6, 0x4f, 0xd0, 0x16, 0x28, 0x50, 0xa0, 0x45,
0xd1, 0x97, 0xe8, 0x2b, 0xf4, 0x79, 0x8a, 0xb9, 0xec, 0x7d, 0x48, 0xae, 0xa8, 0x18, 0xfa, 0xb7,
0x33, 0x7b, 0x6e, 0x73, 0xce, 0x99, 0x73, 0x1b, 0x40, 0x96, 0x19, 0x98, 0x1d, 0x4a, 0xfc, 0x73,
0xbb, 0x4b, 0xb6, 0x07, 0xbe, 0x17, 0x78, 0x68, 0xc5, 0xb1, 0xfb, 0xe7, 0x43, 0x2a, 0x56, 0xdb,
0x0c, 0xa0, 0xa9, 0x77, 0x3d, 0xc7, 0xf1, 0x5c, 0xb1, 0xd5, 0xac, 0xdb, 0x6e, 0x40, 0x7c, 0xd7,
0xec, 0xcb, 0xb5, 0x9e, 0x44, 0x68, 0xea, 0xb4, 0x7b, 0x4a, 0x1c, 0x53, 0xac, 0x8c, 0xd7, 0x70,
0x03, 0x93, 0x9e, 0x4d, 0x03, 0xe2, 0x3f, 0xf3, 0x2c, 0x82, 0xc9, 0x67, 0x43, 0x42, 0x03, 0xf4,
0x01, 0xcc, 0x1e, 0x9b, 0x94, 0x34, 0xb4, 0x0d, 0x6d, 0xb3, 0xba, 0x7b, 0x6b, 0x3b, 0xc5, 0x52,
0x32, 0x3b, 0xa0, 0xbd, 0x3d, 0x93, 0x12, 0xcc, 0x21, 0xd1, 0xb7, 0x61, 0xc1, 0xb4, 0x2c, 0x9f,
0x50, 0xda, 0x28, 0x8d, 0x41, 0x7a, 0x24, 0x60, 0x70, 0x08, 0x6c, 0x7c, 0xa5, 0xc1, 0x6a, 0x5a,
0x02, 0x3a, 0xf0, 0x5c, 0x4a, 0xd0, 0x1e, 0x54, 0x6d, 0xd7, 0x0e, 0x3a, 0x03, 0xd3, 0x37, 0x1d,
0x2a, 0x25, 0xb9, 0x9b, 0x26, 0x1a, 0x1d, 0xb4, 0xed, 0xda, 0xc1, 0x21, 0x07, 0xc4, 0x60, 0x47,
0xdf, 0xe8, 0x01, 0xcc, 0xd3, 0xc0, 0x0c, 0x86, 0xa1, 0x4c, 0x37, 0x95, 0x32, 0x1d, 0x71, 0x10,
0x2c, 0x41, 0x8d, 0x0b, 0xd0, 0x9f, 0xf4, 0x87, 0xf4, 0x74, 0x7a, 0x5d, 0x20, 0x98, 0xb5, 0x8e,
0xdb, 0x2d, 0xce, 0xb4, 0x8c, 0xf9, 0x37, 0x32, 0x40, 0xef, 0x7a, 0xfd, 0x3e, 0xe9, 0x06, 0xb6,
0xe7, 0xb6, 0x5b, 0x8d, 0x59, 0xfe, 0x2f, 0xb5, 0x67, 0xfc, 0x51, 0x83, 0xe5, 0x23, 0xd2, 0x73,
0x88, 0x1b, 0xb4, 0x5b, 0x21, 0xfb, 0x55, 0x98, 0xeb, 0x7a, 0x43, 0x37, 0xe0, 0xfc, 0x6b, 0x58,
0x2c, 0xd0, 0x5d, 0xd0, 0xbb, 0xa7, 0xa6, 0xeb, 0x92, 0x7e, 0xc7, 0x35, 0x1d, 0xc2, 0x59, 0x55,
0x70, 0x55, 0xee, 0x3d, 0x33, 0x1d, 0x92, 0xe3, 0x58, 0xce, 0x73, 0x44, 0x1b, 0x50, 0x1d, 0x98,
0x7e, 0x60, 0xa7, 0x84, 0x4a, 0x6e, 0x19, 0x7f, 0xd6, 0x60, 0xed, 0x11, 0xa5, 0x76, 0xcf, 0xcd,
0x49, 0xb6, 0x06, 0xf3, 0xae, 0x67, 0x91, 0x76, 0x8b, 0x8b, 0x56, 0xc6, 0x72, 0x85, 0x6e, 0x42,
0x65, 0x40, 0x88, 0xdf, 0xf1, 0xbd, 0x7e, 0x28, 0xd8, 0x22, 0xdb, 0xc0, 0x5e, 0x9f, 0xa0, 0x9f,
0xc1, 0x0a, 0xcd, 0x10, 0xa2, 0x8d, 0xf2, 0x46, 0x79, 0xb3, 0xba, 0xfb, 0x8d, 0xed, 0x9c, 0x67,
0x6f, 0x67, 0x99, 0xe2, 0x3c, 0xb6, 0xf1, 0x79, 0x09, 0x6e, 0x44, 0x70, 0x42, 0x56, 0xf6, 0xcd,
0x34, 0x47, 0x49, 0x2f, 0x12, 0x4f, 0x2c, 0x8a, 0x68, 0x2e, 0x52, 0x79, 0x39, 0xa9, 0xf2, 0x02,
0x16, 0xcc, 0xea, 0x73, 0x2e, 0xa7, 0x4f, 0x74, 0x07, 0xaa, 0xe4, 0x62, 0x60, 0xfb, 0xa4, 0x13,
0xd8, 0x0e, 0x69, 0xcc, 0x6f, 0x68, 0x9b, 0xb3, 0x18, 0xc4, 0xd6, 0x73, 0xdb, 0x21, 0x09, 0x9f,
0x5d, 0x28, 0xee, 0xb3, 0x7f, 0xd5, 0xe0, 0xad, 0x9c, 0x95, 0xe4, 0x45, 0xc2, 0xb0, 0xcc, 0x4f,
0x1e, 0x6b, 0x86, 0xdd, 0x26, 0xa6, 0xf0, 0x7b, 0xe3, 0x14, 0x1e, 0x83, 0xe3, 0x1c, 0xfe, 0x74,
0x17, 0xeb, 0x2f, 0x1a, 0xdc, 0x38, 0x3a, 0xf5, 0x5e, 0x4a, 0x16, 0x74, 0xfa, 0x0b, 0x96, 0x35,
0x45, 0x69, 0xb2, 0x29, 0xca, 0x79, 0x53, 0x84, 0xd7, 0x74, 0x36, 0xbe, 0xa6, 0xc6, 0x19, 0xac,
0xa6, 0x45, 0x94, 0x4a, 0x5c, 0x07, 0x88, 0x1c, 0x4f, 0xa8, 0xaf, 0x8c, 0x13, 0x3b, 0xd3, 0x29,
0xe4, 0x0c, 0xde, 0xda, 0x27, 0x81, 0xe4, 0xc5, 0xfe, 0x91, 0x2b, 0xe8, 0x24, 0x2d, 0x61, 0x29,
0x2b, 0xa1, 0xf1, 0xef, 0x52, 0x14, 0x5c, 0x38, 0xab, 0xb6, 0x7b, 0xe2, 0xa1, 0x5b, 0x50, 0x89,
0x40, 0xe4, 0x35, 0x89, 0x37, 0xd0, 0x77, 0x60, 0x8e, 0x49, 0x2a, 0xee, 0x48, 0x3d, 0x1b, 0x7c,
0xc3, 0x33, 0x25, 0x68, 0x62, 0x01, 0x8f, 0xda, 0x50, 0xa7, 0x81, 0xe9, 0x07, 0x9d, 0x81, 0x47,
0xb9, 0xb6, 0xb9, 0xfa, 0xab, 0xbb, 0xc6, 0x88, 0xf0, 0x7d, 0x40, 0x7b, 0x87, 0x12, 0x12, 0xd7,
0x38, 0x66, 0xb8, 0x44, 0x1f, 0x81, 0x4e, 0x5c, 0x2b, 0x26, 0x34, 0x5b, 0x98, 0x50, 0x95, 0xb8,
0x56, 0x44, 0x26, 0xb6, 0xcf, 0x5c, 0x71, 0xfb, 0xfc, 0x4e, 0x83, 0x46, 0xde, 0x40, 0xd2, 0x23,
0x62, 0x8a, 0x5a, 0x61, 0x8a, 0xe8, 0xa1, 0x40, 0x22, 0xc2, 0x40, 0x63, 0x43, 0x5e, 0x64, 0x24,
0x2c, 0x51, 0x0c, 0x1b, 0xfe, 0x2f, 0x96, 0x86, 0xff, 0x79, 0x63, 0xce, 0xf2, 0xa5, 0x06, 0x6b,
0x59, 0x5e, 0x57, 0x39, 0xf7, 0xb7, 0x60, 0xce, 0x76, 0x4f, 0xbc, 0xf0, 0xd8, 0xeb, 0x63, 0x02,
0x0f, 0xe3, 0x25, 0x80, 0x0d, 0x07, 0x6e, 0xee, 0x93, 0xa0, 0xed, 0x52, 0xe2, 0x07, 0x7b, 0xb6,
0xdb, 0xf7, 0x7a, 0x87, 0x66, 0x70, 0x7a, 0x85, 0x3b, 0x92, 0x72, 0xf7, 0x52, 0xc6, 0xdd, 0x8d,
0xbf, 0x6b, 0x70, 0x4b, 0xcd, 0x4f, 0x1e, 0xbd, 0x09, 0x8b, 0x27, 0x36, 0xe9, 0x5b, 0x71, 0x08,
0x88, 0xd6, 0xec, 0xae, 0x0c, 0x18, 0xb0, 0x3c, 0xe1, 0xa8, 0x42, 0xe5, 0x28, 0xf0, 0x6d, 0xb7,
0xf7, 0xd4, 0xa6, 0x01, 0x16, 0xf0, 0x09, 0x7d, 0x96, 0x8b, 0x7b, 0xe6, 0xaf, 0x84, 0x67, 0x0a,
0x51, 0x1f, 0x8b, 0xd4, 0x45, 0xdf, 0x6c, 0xc1, 0xa2, 0x28, 0x1f, 0x8c, 0xdf, 0x6a, 0xb0, 0xbe,
0x4f, 0x82, 0xc7, 0xd1, 0x1e, 0x13, 0xd3, 0xa6, 0x81, 0xdd, 0xbd, 0x06, 0x61, 0xbe, 0xd2, 0xe0,
0xce, 0x48, 0x61, 0xa4, 0x05, 0x65, 0x44, 0x0b, 0x13, 0xa0, 0x3a, 0xa2, 0xfd, 0x84, 0xbc, 0x7a,
0x61, 0xf6, 0x87, 0xe4, 0xd0, 0xb4, 0x7d, 0x11, 0xd1, 0xa6, 0x8c, 0xef, 0xff, 0xd0, 0xe0, 0xf6,
0x3e, 0x61, 0xc5, 0xa8, 0xc8, 0x39, 0xd7, 0xa8, 0x9d, 0x02, 0x95, 0xde, 0xef, 0x85, 0x31, 0x95,
0xd2, 0x5e, 0x8b, 0xfa, 0xd6, 0xf9, 0x75, 0x4c, 0xc4, 0x05, 0xe9, 0xe8, 0x52, 0x79, 0xc6, 0x9f,
0x4a, 0xa0, 0xbf, 0x90, 0x75, 0x1b, 0x63, 0x96, 0xd3, 0x83, 0xa6, 0xd0, 0xc3, 0x16, 0xac, 0x58,
0x4e, 0xbf, 0x73, 0xae, 0xa8, 0x01, 0x97, 0x2c, 0xa7, 0xff, 0x22, 0x59, 0x07, 0x32, 0x58, 0x2b,
0x0b, 0x5b, 0x96, 0xb0, 0x56, 0x1a, 0x76, 0x0f, 0x74, 0x06, 0x9b, 0xc9, 0x53, 0x77, 0x14, 0x81,
0x2e, 0xcc, 0x49, 0x5c, 0x3f, 0x55, 0xcb, 0xea, 0x47, 0x49, 0x8a, 0xd1, 0x70, 0x12, 0x34, 0xe6,
0x8a, 0xd2, 0x70, 0x22, 0x1a, 0xc6, 0x6f, 0x34, 0x58, 0xfb, 0xc4, 0x0c, 0xba, 0xa7, 0x2d, 0xe7,
0xea, 0x71, 0xe1, 0x43, 0xa8, 0x84, 0x87, 0x0f, 0x03, 0x9b, 0x4a, 0x9a, 0xa4, 0x11, 0x70, 0x8c,
0xc1, 0x7a, 0x87, 0x55, 0xde, 0x4a, 0x5d, 0xbd, 0xe2, 0x9b, 0xd6, 0xed, 0xd3, 0x89, 0x6e, 0x36,
0x97, 0xe8, 0x2e, 0x00, 0xa4, 0x70, 0x07, 0xb4, 0x37, 0x85, 0x5c, 0xdf, 0x85, 0x05, 0x49, 0x4d,
0x7a, 0xf6, 0xa4, 0xd4, 0x16, 0x82, 0x1b, 0x47, 0xb0, 0x26, 0xf7, 0x9f, 0xb0, 0x1c, 0x22, 0xf2,
0xcd, 0x01, 0x09, 0x4c, 0xd4, 0x80, 0x05, 0x99, 0x56, 0xa4, 0x07, 0x87, 0x4b, 0xd6, 0x3c, 0x1c,
0x73, 0xb8, 0x0e, 0xcb, 0x1d, 0xd2, 0x6d, 0xe1, 0x38, 0x4a, 0x55, 0xc6, 0x2f, 0xa0, 0xd6, 0x6a,
0x3d, 0x4d, 0xd0, 0xba, 0x07, 0xcc, 0x53, 0x3b, 0x49, 0x2c, 0x8d, 0x63, 0xd5, 0x2c, 0xab, 0x1f,
0xe7, 0x38, 0xf4, 0x36, 0xd4, 0x03, 0xda, 0xc9, 0x13, 0xd7, 0x03, 0x1a, 0x43, 0x19, 0x07, 0x50,
0xe7, 0xc2, 0x72, 0xa3, 0x4e, 0x90, 0xf5, 0x2e, 0xe8, 0x09, 0x72, 0xc2, 0x7d, 0x2a, 0xb8, 0x1a,
0x0b, 0x4b, 0x59, 0xfa, 0x08, 0x4b, 0xd2, 0x98, 0xe2, 0xf8, 0x92, 0xf4, 0x36, 0x80, 0x4d, 0x3b,
0x27, 0x0c, 0x9a, 0x58, 0x5c, 0xc6, 0x45, 0x5c, 0xb1, 0xe9, 0x13, 0xb1, 0x81, 0xbe, 0x07, 0xf3,
0x9c, 0x3f, 0x2b, 0xf3, 0x14, 0x11, 0x8a, 0x5b, 0x23, 0x7d, 0x02, 0x2c, 0x11, 0x8c, 0x8f, 0x41,
0x6f, 0xb5, 0x9e, 0xc6, 0x72, 0x14, 0x09, 0x26, 0x05, 0xce, 0xf8, 0x1a, 0xea, 0x71, 0x46, 0xe2,
0x35, 0x77, 0x1d, 0x4a, 0x11, 0xb9, 0x52, 0xbb, 0x85, 0x3e, 0x84, 0x79, 0x31, 0x92, 0x91, 0x1e,
0xf4, 0x4e, 0x5a, 0x66, 0x39, 0xae, 0x49, 0xa4, 0x35, 0xbe, 0x81, 0x25, 0x12, 0xf3, 0xf0, 0x28,
0x8a, 0x8b, 0x4e, 0xba, 0x8c, 0x13, 0x3b, 0xc6, 0xbf, 0xca, 0x50, 0x4d, 0x38, 0x60, 0x8e, 0xfd,
0xd7, 0xd3, 0x4b, 0xbd, 0x03, 0x75, 0x9b, 0x17, 0x23, 0x1d, 0x79, 0xfb, 0x79, 0x00, 0xac, 0xe0,
0x9a, 0x9d, 0x2c, 0x51, 0xd0, 0xff, 0xc3, 0xa2, 0x3b, 0x74, 0x3a, 0xbe, 0xf7, 0x92, 0xca, 0xe6,
0x78, 0xc1, 0x1d, 0x3a, 0xd8, 0x7b, 0x49, 0xe3, 0x66, 0x63, 0xfe, 0x92, 0xcd, 0xc6, 0x23, 0x48,
0x06, 0x40, 0xd9, 0x35, 0x5f, 0x2a, 0x68, 0x72, 0x12, 0x71, 0x1c, 0x6e, 0x2c, 0x4e, 0x11, 0xbb,
0xd7, 0xa1, 0xea, 0x98, 0x17, 0xec, 0x64, 0x1d, 0x77, 0xe8, 0x34, 0x2a, 0xc2, 0x71, 0x1d, 0xf3,
0x02, 0x7b, 0x2f, 0x9f, 0x0d, 0x1d, 0xb4, 0x09, 0xcb, 0x7d, 0x93, 0x06, 0x9d, 0x64, 0xf3, 0x0f,
0xbc, 0xf9, 0xaf, 0xb3, 0xfd, 0x8f, 0xa2, 0x01, 0x80, 0xf1, 0x00, 0xaa, 0xed, 0xd6, 0x2e, 0xf3,
0x1e, 0x56, 0x26, 0xe6, 0xec, 0xb5, 0x0a, 0x73, 0x87, 0x09, 0x67, 0x13, 0x0b, 0x16, 0x6a, 0xf5,
0xa4, 0x70, 0x8a, 0x16, 0x4c, 0xfb, 0xba, 0x5a, 0xb0, 0xd2, 0x54, 0x2d, 0x98, 0xf1, 0xcf, 0x32,
0xac, 0x1d, 0x99, 0xe7, 0xe4, 0xcd, 0x57, 0xf2, 0x85, 0x32, 0xc3, 0x53, 0x58, 0xe1, 0x37, 0x7f,
0x37, 0x21, 0x0f, 0x4f, 0x10, 0xea, 0x18, 0x9e, 0x30, 0x09, 0xce, 0x23, 0xa2, 0x1f, 0x43, 0x3d,
0x15, 0x50, 0xc3, 0x00, 0xb4, 0xa1, 0x20, 0x95, 0x8a, 0xd0, 0x38, 0x83, 0x97, 0x2b, 0x02, 0xe6,
0xa7, 0xf0, 0xe7, 0x6c, 0x31, 0xb2, 0x70, 0x79, 0x87, 0x36, 0xbe, 0xd0, 0xa0, 0xd6, 0x32, 0x03,
0xf3, 0x99, 0x67, 0x91, 0xe7, 0x53, 0x66, 0xc7, 0x02, 0xb3, 0xb6, 0x5b, 0x50, 0x61, 0x77, 0x81,
0x06, 0xa6, 0x33, 0xe0, 0x76, 0x9a, 0xc5, 0xf1, 0x06, 0xcb, 0x10, 0xf0, 0xf8, 0x94, 0x74, 0xcf,
0x0e, 0x3d, 0xdb, 0x0d, 0x26, 0xe4, 0x86, 0x1f, 0xc2, 0xe2, 0x14, 0x3e, 0x1a, 0xe1, 0xb0, 0x2b,
0xcc, 0x82, 0x93, 0x77, 0x22, 0xe2, 0x93, 0x70, 0x9a, 0x8a, 0x3b, 0x74, 0x7e, 0x7a, 0xc2, 0x22,
0x94, 0xf1, 0xeb, 0x44, 0xbd, 0xc9, 0x43, 0x69, 0x91, 0x14, 0xb1, 0x01, 0xc9, 0xe3, 0xaa, 0x34,
0xb0, 0x0f, 0x35, 0x4a, 0xc8, 0xd9, 0x34, 0xb3, 0x12, 0x9d, 0x21, 0x46, 0x56, 0xff, 0x11, 0x63,
0x15, 0xea, 0x2a, 0xf4, 0xe5, 0xdb, 0x0a, 0xa3, 0xc7, 0x1a, 0xc5, 0x49, 0x0c, 0xb4, 0x09, 0x4b,
0x32, 0xb3, 0x86, 0x05, 0x1b, 0xf7, 0xe2, 0x32, 0xce, 0x6e, 0x1b, 0x3e, 0xd4, 0xe5, 0xb7, 0x70,
0x5d, 0x3a, 0xc1, 0x34, 0x7b, 0xa0, 0x9f, 0xc4, 0x55, 0xce, 0xb8, 0x31, 0x40, 0xa2, 0x18, 0xc2,
0x29, 0x1c, 0xe3, 0x11, 0x54, 0x13, 0x3f, 0xc7, 0x54, 0x1e, 0x0d, 0x58, 0x38, 0x4e, 0xf0, 0xa9,
0xe0, 0x70, 0x69, 0x7c, 0xa9, 0x41, 0x4d, 0xa6, 0x22, 0xd1, 0x6b, 0xb0, 0xba, 0x92, 0x7b, 0xa6,
0x28, 0x8a, 0xf8, 0x37, 0xfa, 0x7e, 0x7a, 0xec, 0xf5, 0xb6, 0x52, 0x83, 0x9c, 0x08, 0x2f, 0xb4,
0x53, 0xc9, 0xa8, 0x48, 0xa3, 0xfa, 0xb9, 0x06, 0x7a, 0x78, 0xb3, 0xb8, 0x1f, 0x35, 0xe2, 0xb7,
0x13, 0x21, 0x47, 0xb8, 0x64, 0x7f, 0xce, 0x89, 0x4f, 0x43, 0x8f, 0x2e, 0xe3, 0x70, 0x89, 0x7e,
0x00, 0x8b, 0x51, 0x65, 0x5e, 0x1e, 0x19, 0x6a, 0x52, 0x87, 0xc5, 0x11, 0x86, 0xf1, 0x1f, 0x8d,
0x8f, 0x1e, 0x31, 0xe9, 0x7a, 0xe7, 0xc4, 0x7f, 0x95, 0x1a, 0xf0, 0x5c, 0xfe, 0x9a, 0x3f, 0x4c,
0xc8, 0x32, 0xb9, 0x4b, 0xe0, 0xcc, 0x22, 0x04, 0xf4, 0x30, 0xb6, 0x56, 0x79, 0x64, 0xcd, 0x96,
0x76, 0xb6, 0xd8, 0xa0, 0x7f, 0x10, 0x73, 0xaa, 0xf4, 0x39, 0xae, 0x75, 0xaa, 0xbc, 0x75, 0x1f,
0x56, 0x72, 0xde, 0x81, 0xea, 0x00, 0x1f, 0xbb, 0x5d, 0xcf, 0x19, 0xf4, 0x49, 0x40, 0x96, 0x67,
0x90, 0x0e, 0x8b, 0x8f, 0xc3, 0x95, 0xb6, 0xfb, 0xdf, 0x1a, 0x54, 0x99, 0x43, 0x1c, 0x89, 0x77,
0x3e, 0x34, 0x00, 0xc4, 0x07, 0x19, 0xce, 0xc0, 0x73, 0xa3, 0xc1, 0x23, 0xfa, 0x60, 0x44, 0x40,
0xc8, 0x83, 0x4a, 0x15, 0x34, 0xef, 0x8d, 0xc0, 0xc8, 0x80, 0x1b, 0x33, 0xc8, 0xe1, 0x1c, 0x59,
0xf9, 0xf1, 0xdc, 0xee, 0x9e, 0x85, 0xd5, 0xda, 0x18, 0x8e, 0x19, 0xd0, 0x90, 0x63, 0x66, 0x9e,
0x29, 0x17, 0x62, 0xe8, 0x15, 0x3a, 0x98, 0x31, 0x83, 0x3e, 0x83, 0x55, 0xd6, 0xd9, 0x47, 0x03,
0x86, 0x90, 0xe1, 0xee, 0x68, 0x86, 0x39, 0xe0, 0x4b, 0xb2, 0x34, 0x41, 0x4f, 0x3e, 0x33, 0x22,
0xd5, 0xdb, 0x87, 0xe2, 0x25, 0xb4, 0xf9, 0xee, 0x44, 0xb8, 0x88, 0xc5, 0x3e, 0xcc, 0xf1, 0xf6,
0x01, 0xa9, 0xbc, 0x3f, 0xf9, 0xa4, 0xd8, 0x1c, 0x37, 0xfe, 0x30, 0x66, 0xd0, 0x2f, 0x61, 0x29,
0xf3, 0x98, 0x83, 0xde, 0x53, 0x90, 0x54, 0x3f, 0xcb, 0x35, 0xb7, 0x8a, 0x80, 0x26, 0xf5, 0x92,
0x7c, 0xf0, 0x50, 0xea, 0x45, 0xf1, 0x68, 0xa3, 0xd4, 0x8b, 0xea, 0xe5, 0xc4, 0x98, 0x41, 0x3d,
0xa8, 0xa7, 0xe7, 0x38, 0x68, 0x53, 0x81, 0xac, 0x1c, 0x6d, 0x37, 0xdf, 0x2b, 0x00, 0x19, 0x31,
0x72, 0x60, 0x39, 0x3b, 0xae, 0x47, 0x5b, 0x63, 0x09, 0xa4, 0xef, 0xcb, 0xfb, 0x85, 0x60, 0x23,
0x76, 0xaf, 0xb8, 0x17, 0xe7, 0xc6, 0xc5, 0x68, 0x5b, 0x4d, 0x66, 0xd4, 0x1c, 0xbb, 0xb9, 0x53,
0x18, 0x3e, 0x62, 0x4d, 0x60, 0x25, 0x37, 0xfe, 0x45, 0xef, 0x8f, 0xa3, 0x93, 0x19, 0x06, 0x35,
0x27, 0x0f, 0xa8, 0x8d, 0x19, 0xf4, 0x85, 0x48, 0x13, 0xaa, 0x91, 0x2a, 0xba, 0xaf, 0xe6, 0x36,
0x66, 0x16, 0xdc, 0xdc, 0xbd, 0x0c, 0x4a, 0x74, 0xd6, 0xd7, 0x3c, 0xc4, 0x2b, 0xc6, 0x92, 0xd9,
0xf8, 0x14, 0xd2, 0x1b, 0x3d, 0x6f, 0x6d, 0xde, 0xbf, 0x04, 0x46, 0x24, 0x80, 0x97, 0x7d, 0x77,
0x09, 0xc3, 0xd5, 0xce, 0x44, 0xe7, 0x9c, 0x2e, 0x56, 0x7d, 0x0a, 0x4b, 0x99, 0x46, 0x49, 0x79,
0xff, 0xd5, 0xcd, 0x54, 0x81, 0xe0, 0x92, 0xc9, 0x98, 0x68, 0xc4, 0x25, 0x53, 0x64, 0xd5, 0xe6,
0x56, 0x11, 0xd0, 0xf0, 0x20, 0xbb, 0x7f, 0x2b, 0xc3, 0x62, 0x58, 0xe9, 0x5c, 0x43, 0x56, 0xbb,
0x86, 0x34, 0xf3, 0x29, 0x2c, 0x65, 0xa6, 0xaf, 0x4a, 0xed, 0xaa, 0x27, 0xb4, 0x93, 0x4c, 0xf7,
0x09, 0xd4, 0x52, 0xe3, 0x54, 0xf4, 0xee, 0xa8, 0x44, 0x93, 0x8d, 0xd6, 0xe3, 0x09, 0xef, 0x3d,
0xf8, 0xf9, 0xfd, 0x9e, 0x1d, 0x9c, 0x0e, 0x8f, 0xd9, 0x9f, 0x1d, 0x01, 0xfa, 0x4d, 0xdb, 0x93,
0x5f, 0x3b, 0xa1, 0x82, 0x76, 0x38, 0xf6, 0x0e, 0x63, 0x33, 0x38, 0x3e, 0x9e, 0xe7, 0xab, 0x07,
0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x8b, 0x30, 0x33, 0xa4, 0x24, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.