Fix alter collection hang (#20686)

Signed-off-by: yun.zhang <yun.zhang@zilliz.com>

Signed-off-by: yun.zhang <yun.zhang@zilliz.com>
pull/20698/head
jaime 2022-11-17 22:07:09 +08:00 committed by GitHub
parent c65306bc9b
commit a2b383b523
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 530 additions and 317 deletions

View File

@ -1389,8 +1389,7 @@ func (s *Server) MarkSegmentsDropped(ctx context.Context, req *datapb.MarkSegmen
}, nil
}
func (s *Server) BroadcastAlteredCollection(ctx context.Context,
req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
func (s *Server) BroadcastAlteredCollection(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error) {
errResp := &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: "",
@ -1405,26 +1404,26 @@ func (s *Server) BroadcastAlteredCollection(ctx context.Context,
// get collection info from cache
clonedColl := s.meta.GetClonedCollectionInfo(req.CollectionID)
// try to reload collection from RootCoord
if clonedColl == nil {
err := s.loadCollectionFromRootCoord(ctx, req.CollectionID)
if err != nil {
log.Warn("failed to load collection from rootcoord", zap.Int64("collectionID", req.CollectionID), zap.Error(err))
errResp.Reason = fmt.Sprintf("failed to load collection from rootcoord, collectionID:%d", req.CollectionID)
return errResp, nil
}
}
clonedColl = s.meta.GetClonedCollectionInfo(req.CollectionID)
if clonedColl == nil {
return nil, fmt.Errorf("get collection from cache failed, collectionID:%d", req.CollectionID)
}
properties := make(map[string]string)
for _, pair := range req.Properties {
properties[pair.GetKey()] = pair.GetValue()
}
// cache miss and update cache
if clonedColl == nil {
collInfo := &collectionInfo{
ID: req.GetCollectionID(),
Schema: req.GetSchema(),
Partitions: req.GetPartitionIDs(),
StartPositions: req.GetStartPositions(),
Properties: properties,
}
s.meta.AddCollection(collInfo)
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_Success,
}, nil
}
clonedColl.Properties = properties
s.meta.AddCollection(clonedColl)
return &commonpb.Status{

View File

@ -0,0 +1,56 @@
package datacoord
import (
"context"
"testing"
"github.com/milvus-io/milvus/internal/proto/datapb"
"github.com/milvus-io/milvus-proto/go-api/commonpb"
"github.com/stretchr/testify/assert"
)
func TestBroadcastAlteredCollection(t *testing.T) {
t.Run("test server is closed", func(t *testing.T) {
s := &Server{}
s.stateCode.Store(commonpb.StateCode_Initializing)
ctx := context.Background()
resp, err := s.BroadcastAlteredCollection(ctx, nil)
assert.NotNil(t, resp.Reason)
assert.Nil(t, err)
})
t.Run("test meta non exist", func(t *testing.T) {
s := &Server{meta: &meta{collections: make(map[UniqueID]*collectionInfo, 1)}}
s.stateCode.Store(commonpb.StateCode_Healthy)
ctx := context.Background()
req := &datapb.AlterCollectionRequest{
CollectionID: 1,
PartitionIDs: []int64{1},
Properties: []*commonpb.KeyValuePair{{Key: "k", Value: "v"}},
}
resp, err := s.BroadcastAlteredCollection(ctx, req)
assert.NotNil(t, resp)
assert.NoError(t, err)
assert.Equal(t, 1, len(s.meta.collections))
})
t.Run("test update meta", func(t *testing.T) {
s := &Server{meta: &meta{collections: map[UniqueID]*collectionInfo{
1: {ID: 1},
}}}
s.stateCode.Store(commonpb.StateCode_Healthy)
ctx := context.Background()
req := &datapb.AlterCollectionRequest{
CollectionID: 1,
PartitionIDs: []int64{1},
Properties: []*commonpb.KeyValuePair{{Key: "k", Value: "v"}},
}
assert.Nil(t, s.meta.collections[1].Properties)
resp, err := s.BroadcastAlteredCollection(ctx, req)
assert.NotNil(t, resp)
assert.NoError(t, err)
assert.NotNil(t, s.meta.collections[1].Properties)
})
}

View File

@ -277,7 +277,7 @@ func (ds *DataCoordFactory) MarkSegmentsDropped(context.Context, *datapb.MarkSeg
}, nil
}
func (ds *DataCoordFactory) BroadcastAlteredCollection(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
func (ds *DataCoordFactory) BroadcastAlteredCollection(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error) {
return &commonpb.Status{
ErrorCode: commonpb.ErrorCode_Success,
}, nil

View File

@ -770,12 +770,8 @@ func (c *Client) MarkSegmentsDropped(ctx context.Context, req *datapb.MarkSegmen
}
// BroadcastAlteredCollection is the DataCoord client side code for BroadcastAlteredCollection call.
func (c *Client) BroadcastAlteredCollection(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
func (c *Client) BroadcastAlteredCollection(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error) {
req = typeutil.Clone(req)
commonpbutil.UpdateMsgBase(
req.GetBase(),
commonpbutil.FillMsgBaseFromClient(Params.DataCoordCfg.GetNodeID(), commonpbutil.WithTargetID(c.sess.ServerID)),
)
ret, err := c.grpcClient.ReCall(ctx, func(client datapb.DataCoordClient) (any, error) {
if !funcutil.CheckCtxValid(ctx) {
return nil, ctx.Err()

View File

@ -403,7 +403,7 @@ func (s *Server) MarkSegmentsDropped(ctx context.Context, req *datapb.MarkSegmen
return s.dataCoord.MarkSegmentsDropped(ctx, req)
}
func (s *Server) BroadcastAlteredCollection(ctx context.Context, request *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
func (s *Server) BroadcastAlteredCollection(ctx context.Context, request *datapb.AlterCollectionRequest) (*commonpb.Status, error) {
return s.dataCoord.BroadcastAlteredCollection(ctx, request)
}

View File

@ -225,7 +225,7 @@ func (m *MockDataCoord) MarkSegmentsDropped(ctx context.Context, req *datapb.Mar
return m.markSegmentsDroppedResp, m.err
}
func (m *MockDataCoord) BroadcastAlteredCollection(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
func (m *MockDataCoord) BroadcastAlteredCollection(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error) {
return m.broadCastResp, m.err
}

View File

@ -604,7 +604,7 @@ func (m *MockDataCoord) ReleaseSegmentLock(ctx context.Context, req *datapb.Rele
return nil, nil
}
func (m *MockDataCoord) BroadcastAlteredCollection(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
func (m *MockDataCoord) BroadcastAlteredCollection(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error) {
return nil, nil
}

View File

@ -66,7 +66,7 @@ service DataCoord {
rpc UnsetIsImportingState(UnsetIsImportingStateRequest) returns(common.Status) {}
rpc MarkSegmentsDropped(MarkSegmentsDroppedRequest) returns(common.Status) {}
rpc BroadcastAlteredCollection(milvus.AlterCollectionRequest) returns (common.Status) {}
rpc BroadcastAlteredCollection(AlterCollectionRequest) returns (common.Status) {}
rpc CheckHealth(milvus.CheckHealthRequest) returns (milvus.CheckHealthResponse) {}
}
@ -635,3 +635,12 @@ message SegmentReferenceLock {
int64 nodeID = 2;
repeated int64 segmentIDs = 3;
}
message AlterCollectionRequest {
int64 collectionID = 1;
schema.CollectionSchema schema = 2;
repeated int64 partitionIDs = 3;
repeated common.KeyDataPair start_positions = 4;
repeated common.KeyValuePair properties = 5;
}

View File

@ -4803,6 +4803,77 @@ func (m *SegmentReferenceLock) GetSegmentIDs() []int64 {
return nil
}
type AlterCollectionRequest struct {
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
Schema *schemapb.CollectionSchema `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"`
PartitionIDs []int64 `protobuf:"varint,3,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
StartPositions []*commonpb.KeyDataPair `protobuf:"bytes,4,rep,name=start_positions,json=startPositions,proto3" json:"start_positions,omitempty"`
Properties []*commonpb.KeyValuePair `protobuf:"bytes,5,rep,name=properties,proto3" json:"properties,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *AlterCollectionRequest) Reset() { *m = AlterCollectionRequest{} }
func (m *AlterCollectionRequest) String() string { return proto.CompactTextString(m) }
func (*AlterCollectionRequest) ProtoMessage() {}
func (*AlterCollectionRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{75}
}
func (m *AlterCollectionRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AlterCollectionRequest.Unmarshal(m, b)
}
func (m *AlterCollectionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_AlterCollectionRequest.Marshal(b, m, deterministic)
}
func (m *AlterCollectionRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_AlterCollectionRequest.Merge(m, src)
}
func (m *AlterCollectionRequest) XXX_Size() int {
return xxx_messageInfo_AlterCollectionRequest.Size(m)
}
func (m *AlterCollectionRequest) XXX_DiscardUnknown() {
xxx_messageInfo_AlterCollectionRequest.DiscardUnknown(m)
}
var xxx_messageInfo_AlterCollectionRequest proto.InternalMessageInfo
func (m *AlterCollectionRequest) GetCollectionID() int64 {
if m != nil {
return m.CollectionID
}
return 0
}
func (m *AlterCollectionRequest) GetSchema() *schemapb.CollectionSchema {
if m != nil {
return m.Schema
}
return nil
}
func (m *AlterCollectionRequest) GetPartitionIDs() []int64 {
if m != nil {
return m.PartitionIDs
}
return nil
}
func (m *AlterCollectionRequest) GetStartPositions() []*commonpb.KeyDataPair {
if m != nil {
return m.StartPositions
}
return nil
}
func (m *AlterCollectionRequest) GetProperties() []*commonpb.KeyValuePair {
if m != nil {
return m.Properties
}
return nil
}
func init() {
proto.RegisterEnum("milvus.proto.data.SegmentType", SegmentType_name, SegmentType_value)
proto.RegisterEnum("milvus.proto.data.ChannelWatchState", ChannelWatchState_name, ChannelWatchState_value)
@ -4882,285 +4953,289 @@ func init() {
proto.RegisterType((*UnsetIsImportingStateRequest)(nil), "milvus.proto.data.UnsetIsImportingStateRequest")
proto.RegisterType((*MarkSegmentsDroppedRequest)(nil), "milvus.proto.data.MarkSegmentsDroppedRequest")
proto.RegisterType((*SegmentReferenceLock)(nil), "milvus.proto.data.SegmentReferenceLock")
proto.RegisterType((*AlterCollectionRequest)(nil), "milvus.proto.data.AlterCollectionRequest")
}
func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) }
var fileDescriptor_82cd95f524594f49 = []byte{
// 4364 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4b, 0x6f, 0x24, 0x49,
0x5a, 0x9d, 0xf5, 0x72, 0xd5, 0x57, 0x0f, 0x97, 0xa3, 0x7b, 0xec, 0xea, 0xea, 0xe7, 0x64, 0x4f,
0xcf, 0xf4, 0xf4, 0xf4, 0x74, 0xcf, 0x78, 0x18, 0xed, 0x40, 0xef, 0xcc, 0xaa, 0x6d, 0x8f, 0xbb,
0x0b, 0x6c, 0xaf, 0x37, 0xed, 0x9e, 0x96, 0x76, 0x91, 0x4a, 0xe9, 0xca, 0x70, 0x39, 0xd7, 0xf9,
0xa8, 0xce, 0xcc, 0xb2, 0xdb, 0xcb, 0x61, 0x47, 0xac, 0x84, 0x34, 0x08, 0xb1, 0x08, 0x09, 0x01,
0x07, 0x24, 0xc4, 0x69, 0x59, 0x04, 0x42, 0x5a, 0x71, 0xe1, 0xc2, 0x75, 0x04, 0x87, 0x15, 0x42,
0xe2, 0x07, 0x70, 0x00, 0xee, 0x5c, 0x39, 0xa0, 0x78, 0x64, 0xe4, 0xbb, 0x2a, 0x5d, 0xd5, 0x3d,
0x8d, 0xe0, 0x56, 0x11, 0xf9, 0x45, 0x7c, 0x11, 0x5f, 0x7c, 0xef, 0xf8, 0xa2, 0xa0, 0xad, 0xa9,
0x9e, 0xda, 0x1f, 0xd8, 0xb6, 0xa3, 0xdd, 0x1f, 0x39, 0xb6, 0x67, 0xa3, 0x25, 0x53, 0x37, 0x4e,
0xc6, 0x2e, 0x6b, 0xdd, 0x27, 0x9f, 0xbb, 0x8d, 0x81, 0x6d, 0x9a, 0xb6, 0xc5, 0xba, 0xba, 0x2d,
0xdd, 0xf2, 0xb0, 0x63, 0xa9, 0x06, 0x6f, 0x37, 0xc2, 0x03, 0xba, 0x0d, 0x77, 0x70, 0x84, 0x4d,
0x95, 0xb5, 0xe4, 0x05, 0x28, 0x7f, 0x6e, 0x8e, 0xbc, 0x33, 0xf9, 0x4f, 0x24, 0x68, 0x6c, 0x1a,
0x63, 0xf7, 0x48, 0xc1, 0xcf, 0xc7, 0xd8, 0xf5, 0xd0, 0x07, 0x50, 0x3a, 0x50, 0x5d, 0xdc, 0x91,
0x6e, 0x4a, 0x77, 0xea, 0xab, 0x57, 0xef, 0x47, 0xb0, 0x72, 0x7c, 0xdb, 0xee, 0x70, 0x4d, 0x75,
0xb1, 0x42, 0x21, 0x11, 0x82, 0x92, 0x76, 0xd0, 0xdb, 0xe8, 0x14, 0x6e, 0x4a, 0x77, 0x8a, 0x0a,
0xfd, 0x8d, 0xae, 0x03, 0xb8, 0x78, 0x68, 0x62, 0xcb, 0xeb, 0x6d, 0xb8, 0x9d, 0xe2, 0xcd, 0xe2,
0x9d, 0xa2, 0x12, 0xea, 0x41, 0x32, 0x34, 0x06, 0xb6, 0x61, 0xe0, 0x81, 0xa7, 0xdb, 0x56, 0x6f,
0xa3, 0x53, 0xa2, 0x63, 0x23, 0x7d, 0xf2, 0xbf, 0x4b, 0xd0, 0xe4, 0x4b, 0x73, 0x47, 0xb6, 0xe5,
0x62, 0xf4, 0x11, 0x54, 0x5c, 0x4f, 0xf5, 0xc6, 0x2e, 0x5f, 0xdd, 0x95, 0xd4, 0xd5, 0xed, 0x51,
0x10, 0x85, 0x83, 0xa6, 0x2e, 0x2f, 0x8e, 0xbe, 0x98, 0x44, 0x1f, 0xdb, 0x42, 0x29, 0xb1, 0x85,
0x3b, 0xb0, 0x78, 0x48, 0x56, 0xb7, 0x17, 0x00, 0x95, 0x29, 0x50, 0xbc, 0x9b, 0xcc, 0xe4, 0xe9,
0x26, 0xfe, 0xee, 0xe1, 0x1e, 0x56, 0x8d, 0x4e, 0x85, 0xe2, 0x0a, 0xf5, 0xc8, 0xff, 0x2c, 0x41,
0x5b, 0x80, 0xfb, 0xe7, 0x70, 0x09, 0xca, 0x03, 0x7b, 0x6c, 0x79, 0x74, 0xab, 0x4d, 0x85, 0x35,
0xd0, 0x9b, 0xd0, 0x18, 0x1c, 0xa9, 0x96, 0x85, 0x8d, 0xbe, 0xa5, 0x9a, 0x98, 0x6e, 0xaa, 0xa6,
0xd4, 0x79, 0xdf, 0x8e, 0x6a, 0xe2, 0x5c, 0x7b, 0xbb, 0x09, 0xf5, 0x91, 0xea, 0x78, 0x7a, 0x84,
0xfa, 0xe1, 0x2e, 0xd4, 0x85, 0xaa, 0xee, 0xf6, 0xcc, 0x91, 0xed, 0x78, 0x9d, 0xf2, 0x4d, 0xe9,
0x4e, 0x55, 0x11, 0x6d, 0x82, 0x41, 0xa7, 0xbf, 0xf6, 0x55, 0xf7, 0xb8, 0xb7, 0xc1, 0x77, 0x14,
0xe9, 0x93, 0xff, 0x5c, 0x82, 0xe5, 0x47, 0xae, 0xab, 0x0f, 0xad, 0xc4, 0xce, 0x96, 0xa1, 0x62,
0xd9, 0x1a, 0xee, 0x6d, 0xd0, 0xad, 0x15, 0x15, 0xde, 0x42, 0x57, 0xa0, 0x36, 0xc2, 0xd8, 0xe9,
0x3b, 0xb6, 0xe1, 0x6f, 0xac, 0x4a, 0x3a, 0x14, 0xdb, 0xc0, 0xe8, 0x7b, 0xb0, 0xe4, 0xc6, 0x26,
0x62, 0x7c, 0x55, 0x5f, 0xbd, 0x75, 0x3f, 0x21, 0x19, 0xf7, 0xe3, 0x48, 0x95, 0xe4, 0x68, 0xf9,
0xcb, 0x02, 0x5c, 0x14, 0x70, 0x6c, 0xad, 0xe4, 0x37, 0xa1, 0xbc, 0x8b, 0x87, 0x62, 0x79, 0xac,
0x91, 0x87, 0xf2, 0xe2, 0xc8, 0x8a, 0xe1, 0x23, 0xcb, 0xc1, 0xea, 0xf1, 0xf3, 0x28, 0x27, 0xcf,
0xe3, 0x06, 0xd4, 0xf1, 0x8b, 0x91, 0xee, 0xe0, 0x3e, 0x61, 0x1c, 0x4a, 0xf2, 0x92, 0x02, 0xac,
0x6b, 0x5f, 0x37, 0xc3, 0xb2, 0xb1, 0x90, 0x5b, 0x36, 0xe4, 0xbf, 0x90, 0x60, 0x25, 0x71, 0x4a,
0x5c, 0xd8, 0x14, 0x68, 0xd3, 0x9d, 0x07, 0x94, 0x21, 0x62, 0x47, 0x08, 0xfe, 0xf6, 0x24, 0x82,
0x07, 0xe0, 0x4a, 0x62, 0x7c, 0x68, 0x91, 0x85, 0xfc, 0x8b, 0x3c, 0x86, 0x95, 0xc7, 0xd8, 0xe3,
0x08, 0xc8, 0x37, 0xec, 0xce, 0xae, 0xac, 0xa2, 0x52, 0x5d, 0x88, 0x4b, 0xb5, 0xfc, 0xb7, 0x05,
0x21, 0x8b, 0x14, 0x55, 0xcf, 0x3a, 0xb4, 0xd1, 0x55, 0xa8, 0x09, 0x10, 0xce, 0x15, 0x41, 0x07,
0xfa, 0x16, 0x94, 0xc9, 0x4a, 0x19, 0x4b, 0xb4, 0x56, 0xdf, 0x4c, 0xdf, 0x53, 0x68, 0x4e, 0x85,
0xc1, 0xa3, 0x1e, 0xb4, 0x5c, 0x4f, 0x75, 0xbc, 0xfe, 0xc8, 0x76, 0xe9, 0x39, 0x53, 0xc6, 0xa9,
0xaf, 0xca, 0xd1, 0x19, 0x84, 0x5a, 0xdf, 0x76, 0x87, 0xbb, 0x1c, 0x52, 0x69, 0xd2, 0x91, 0x7e,
0x13, 0x7d, 0x0e, 0x0d, 0x6c, 0x69, 0xc1, 0x44, 0xa5, 0xdc, 0x13, 0xd5, 0xb1, 0xa5, 0x89, 0x69,
0x82, 0xf3, 0x29, 0xe7, 0x3f, 0x9f, 0xdf, 0x93, 0xa0, 0x93, 0x3c, 0xa0, 0x79, 0x54, 0xf6, 0x43,
0x36, 0x08, 0xb3, 0x03, 0x9a, 0x28, 0xe1, 0xe2, 0x90, 0x14, 0x3e, 0x44, 0xfe, 0x23, 0x09, 0xde,
0x08, 0x96, 0x43, 0x3f, 0xbd, 0x2a, 0x6e, 0x41, 0x77, 0xa1, 0xad, 0x5b, 0x03, 0x63, 0xac, 0xe1,
0xa7, 0xd6, 0x13, 0xac, 0x1a, 0xde, 0xd1, 0x19, 0x3d, 0xc3, 0xaa, 0x92, 0xe8, 0x97, 0x7f, 0x22,
0xc1, 0x72, 0x7c, 0x5d, 0xf3, 0x10, 0xe9, 0x57, 0xa0, 0xac, 0x5b, 0x87, 0xb6, 0x4f, 0xa3, 0xeb,
0x13, 0x84, 0x92, 0xe0, 0x62, 0xc0, 0xb2, 0x09, 0x57, 0x1e, 0x63, 0xaf, 0x67, 0xb9, 0xd8, 0xf1,
0xd6, 0x74, 0xcb, 0xb0, 0x87, 0xbb, 0xaa, 0x77, 0x34, 0x87, 0x40, 0x45, 0x64, 0xa3, 0x10, 0x93,
0x0d, 0xf9, 0x67, 0x12, 0x5c, 0x4d, 0xc7, 0xc7, 0xb7, 0xde, 0x85, 0xea, 0xa1, 0x8e, 0x0d, 0x8d,
0xd0, 0x57, 0xa2, 0xf4, 0x15, 0x6d, 0x22, 0x58, 0x23, 0x02, 0xcc, 0x77, 0xf8, 0x66, 0x06, 0x37,
0xef, 0x79, 0x8e, 0x6e, 0x0d, 0xb7, 0x74, 0xd7, 0x53, 0x18, 0x7c, 0x88, 0x9e, 0xc5, 0xfc, 0x6c,
0xfc, 0xbb, 0x12, 0x5c, 0x7f, 0x8c, 0xbd, 0x75, 0xa1, 0x97, 0xc9, 0x77, 0xdd, 0xf5, 0xf4, 0x81,
0xfb, 0x72, 0x7d, 0xa3, 0x1c, 0x06, 0x5a, 0xfe, 0xa9, 0x04, 0x37, 0x32, 0x17, 0xc3, 0x49, 0xc7,
0xf5, 0x8e, 0xaf, 0x95, 0xd3, 0xf5, 0xce, 0x6f, 0xe0, 0xb3, 0x2f, 0x54, 0x63, 0x8c, 0x77, 0x55,
0xdd, 0x61, 0x7a, 0x67, 0x46, 0x2d, 0xfc, 0xd7, 0x12, 0x5c, 0x7b, 0x8c, 0xbd, 0x5d, 0xdf, 0x26,
0xbd, 0x46, 0xea, 0x10, 0x98, 0x90, 0x6d, 0xf4, 0x9d, 0xb3, 0x48, 0x9f, 0xfc, 0xfb, 0xec, 0x38,
0x53, 0xd7, 0xfb, 0x5a, 0x08, 0x78, 0x9d, 0x4a, 0x42, 0x48, 0x24, 0xd7, 0x99, 0xeb, 0xc0, 0xc9,
0x27, 0xff, 0x99, 0x04, 0x97, 0x1f, 0x0d, 0x9e, 0x8f, 0x75, 0x07, 0x73, 0xa0, 0x2d, 0x7b, 0x70,
0x3c, 0x3b, 0x71, 0x03, 0x37, 0xab, 0x10, 0x71, 0xb3, 0xa6, 0xb9, 0xe6, 0xcb, 0x50, 0xf1, 0x98,
0x5f, 0xc7, 0x3c, 0x15, 0xde, 0xa2, 0xeb, 0x53, 0xb0, 0x81, 0x55, 0xf7, 0x7f, 0xe7, 0xfa, 0x7e,
0x5a, 0x82, 0xc6, 0x17, 0xdc, 0x1d, 0xa3, 0x56, 0x3b, 0xce, 0x49, 0x52, 0xba, 0xe3, 0x15, 0xf2,
0xe0, 0xd2, 0x9c, 0xba, 0xc7, 0xd0, 0x74, 0x31, 0x3e, 0x9e, 0xc5, 0x46, 0x37, 0xc8, 0x40, 0x61,
0x5b, 0xb7, 0x60, 0x69, 0x6c, 0xd1, 0xd0, 0x00, 0x6b, 0x9c, 0x80, 0x8c, 0x73, 0xa7, 0xeb, 0xee,
0xe4, 0x40, 0xf4, 0x84, 0x47, 0x1f, 0xa1, 0xb9, 0xca, 0xb9, 0xe6, 0x8a, 0x0f, 0x43, 0x3d, 0x68,
0x6b, 0x8e, 0x3d, 0x1a, 0x61, 0xad, 0xef, 0xfa, 0x53, 0x55, 0xf2, 0x4d, 0xc5, 0xc7, 0x89, 0xa9,
0x3e, 0x80, 0x8b, 0xf1, 0x95, 0xf6, 0x34, 0xe2, 0x90, 0x92, 0x33, 0x4c, 0xfb, 0x84, 0xee, 0xc1,
0x52, 0x12, 0xbe, 0x4a, 0xe1, 0x93, 0x1f, 0xd0, 0xfb, 0x80, 0x62, 0x4b, 0x25, 0xe0, 0x35, 0x06,
0x1e, 0x5d, 0x4c, 0x4f, 0x73, 0xe5, 0xaf, 0x24, 0x58, 0x7e, 0xa6, 0x7a, 0x83, 0xa3, 0x0d, 0x93,
0xcb, 0xda, 0x1c, 0xba, 0xea, 0x53, 0xa8, 0x9d, 0x70, 0xbe, 0xf0, 0x0d, 0xd2, 0x8d, 0x14, 0xfa,
0x84, 0x39, 0x50, 0x09, 0x46, 0x90, 0x78, 0xe8, 0xd2, 0x66, 0x28, 0x2e, 0x7c, 0x0d, 0x5a, 0x73,
0x4a, 0x40, 0x2b, 0xbf, 0x00, 0xe0, 0x8b, 0xdb, 0x76, 0x87, 0x33, 0xac, 0xeb, 0x13, 0x58, 0xe0,
0xb3, 0x71, 0xb5, 0x38, 0x8d, 0x7f, 0x7c, 0x70, 0xf9, 0xe7, 0x15, 0xa8, 0x87, 0x3e, 0xa0, 0x16,
0x14, 0x84, 0xbc, 0x16, 0x52, 0x76, 0x57, 0x98, 0x1e, 0x42, 0x15, 0x93, 0x21, 0xd4, 0x6d, 0x68,
0xe9, 0xd4, 0x0f, 0xe9, 0xf3, 0x53, 0xa1, 0x0a, 0xa4, 0xa6, 0x34, 0x59, 0x2f, 0x67, 0x11, 0x74,
0x1d, 0xea, 0xd6, 0xd8, 0xec, 0xdb, 0x87, 0x7d, 0xc7, 0x3e, 0x75, 0x79, 0x2c, 0x56, 0xb3, 0xc6,
0xe6, 0x77, 0x0f, 0x15, 0xfb, 0xd4, 0x0d, 0xdc, 0xfd, 0xca, 0x39, 0xdd, 0xfd, 0xeb, 0x50, 0x37,
0xd5, 0x17, 0x64, 0xd6, 0xbe, 0x35, 0x36, 0x69, 0x98, 0x56, 0x54, 0x6a, 0xa6, 0xfa, 0x42, 0xb1,
0x4f, 0x77, 0xc6, 0x26, 0xba, 0x03, 0x6d, 0x43, 0x75, 0xbd, 0x7e, 0x38, 0xce, 0xab, 0xd2, 0x38,
0xaf, 0x45, 0xfa, 0x3f, 0x0f, 0x62, 0xbd, 0x64, 0xe0, 0x50, 0x9b, 0x23, 0x70, 0xd0, 0x4c, 0x23,
0x98, 0x08, 0xf2, 0x07, 0x0e, 0x9a, 0x69, 0x88, 0x69, 0x3e, 0x81, 0x85, 0x03, 0xea, 0xdd, 0xb9,
0x9d, 0x7a, 0xa6, 0xee, 0xd8, 0x24, 0x8e, 0x1d, 0x73, 0x02, 0x15, 0x1f, 0x1c, 0x7d, 0x1b, 0x6a,
0xd4, 0xa8, 0xd2, 0xb1, 0x8d, 0x5c, 0x63, 0x83, 0x01, 0x64, 0xb4, 0x86, 0x0d, 0x4f, 0xa5, 0xa3,
0x9b, 0xf9, 0x46, 0x8b, 0x01, 0x44, 0x5f, 0x0d, 0x1c, 0xac, 0x7a, 0x58, 0x5b, 0x3b, 0x5b, 0xb7,
0xcd, 0x91, 0x4a, 0x99, 0xa9, 0xd3, 0xa2, 0x1e, 0x7c, 0xda, 0x27, 0xf4, 0x36, 0xb4, 0x06, 0xa2,
0xb5, 0xe9, 0xd8, 0x66, 0x67, 0x91, 0xca, 0x51, 0xac, 0x17, 0x5d, 0x03, 0xf0, 0x35, 0x95, 0xea,
0x75, 0xda, 0xf4, 0x14, 0x6b, 0xbc, 0xe7, 0x11, 0x4d, 0xe3, 0xe8, 0x6e, 0x9f, 0x25, 0x4c, 0x74,
0x6b, 0xd8, 0x59, 0xa2, 0x18, 0xeb, 0x7e, 0x86, 0x45, 0xb7, 0x86, 0x68, 0x05, 0x16, 0x74, 0xb7,
0x7f, 0xa8, 0x1e, 0xe3, 0x0e, 0xa2, 0x5f, 0x2b, 0xba, 0xbb, 0xa9, 0x1e, 0x63, 0xf9, 0xc7, 0x70,
0x29, 0xe0, 0xae, 0xd0, 0x49, 0x26, 0x99, 0x42, 0x9a, 0x95, 0x29, 0x26, 0xfb, 0xf4, 0xbf, 0x2c,
0xc1, 0xf2, 0x9e, 0x7a, 0x82, 0x5f, 0x7d, 0xf8, 0x90, 0x4b, 0xad, 0x6d, 0xc1, 0x12, 0x8d, 0x18,
0x56, 0x43, 0xeb, 0x99, 0x60, 0x57, 0xc3, 0xac, 0x90, 0x1c, 0x88, 0xbe, 0x43, 0x1c, 0x02, 0x3c,
0x38, 0xde, 0xb5, 0xf5, 0xc0, 0xa6, 0x5e, 0x4b, 0x99, 0x67, 0x5d, 0x40, 0x29, 0xe1, 0x11, 0x68,
0x17, 0x16, 0xa3, 0xc7, 0xe0, 0x5b, 0xd3, 0x77, 0x26, 0x06, 0xb1, 0x01, 0xf5, 0x95, 0x56, 0xe4,
0x30, 0x5c, 0xd4, 0x81, 0x05, 0x6e, 0x0a, 0xa9, 0xce, 0xa8, 0x2a, 0x7e, 0x13, 0xed, 0xc2, 0x45,
0xb6, 0x83, 0x3d, 0x2e, 0x10, 0x6c, 0xf3, 0xd5, 0x5c, 0x9b, 0x4f, 0x1b, 0x1a, 0x95, 0xa7, 0xda,
0x79, 0xe5, 0xa9, 0x03, 0x0b, 0x9c, 0xc7, 0xa9, 0x1e, 0xa9, 0x2a, 0x7e, 0x93, 0x1c, 0x73, 0xc0,
0xed, 0x75, 0xfa, 0x2d, 0xe8, 0x20, 0xa1, 0x17, 0x04, 0xf4, 0x9c, 0x92, 0x6e, 0xf9, 0x0c, 0xaa,
0x82, 0xc3, 0x0b, 0xb9, 0x39, 0x5c, 0x8c, 0x89, 0xeb, 0xf7, 0x62, 0x4c, 0xbf, 0xcb, 0xff, 0x24,
0x41, 0x63, 0x83, 0x6c, 0x69, 0xcb, 0x1e, 0x52, 0x6b, 0x74, 0x1b, 0x5a, 0x0e, 0x1e, 0xd8, 0x8e,
0xd6, 0xc7, 0x96, 0xe7, 0xe8, 0x98, 0x45, 0xe9, 0x25, 0xa5, 0xc9, 0x7a, 0x3f, 0x67, 0x9d, 0x04,
0x8c, 0xa8, 0x6c, 0xd7, 0x53, 0xcd, 0x51, 0xff, 0x90, 0xa8, 0x86, 0x02, 0x03, 0x13, 0xbd, 0x54,
0x33, 0xbc, 0x09, 0x8d, 0x00, 0xcc, 0xb3, 0x29, 0xfe, 0x92, 0x52, 0x17, 0x7d, 0xfb, 0x36, 0x7a,
0x0b, 0x5a, 0x94, 0xa6, 0x7d, 0xc3, 0x1e, 0xf6, 0x49, 0x44, 0xcb, 0x0d, 0x55, 0x43, 0xe3, 0xcb,
0x22, 0x67, 0x15, 0x85, 0x72, 0xf5, 0x1f, 0x61, 0x6e, 0xaa, 0x04, 0xd4, 0x9e, 0xfe, 0x23, 0x2c,
0xff, 0xa3, 0x04, 0xcd, 0x0d, 0xd5, 0x53, 0x77, 0x6c, 0x0d, 0xef, 0xcf, 0x68, 0xd8, 0x73, 0xa4,
0x3e, 0xaf, 0x42, 0x4d, 0xec, 0x80, 0x6f, 0x29, 0xe8, 0x40, 0x9b, 0xd0, 0xf2, 0x5d, 0xcb, 0x3e,
0x8b, 0xb8, 0x4a, 0x99, 0x0e, 0x54, 0xc8, 0x72, 0xba, 0x4a, 0xd3, 0x1f, 0x46, 0x9b, 0xf2, 0x26,
0x34, 0xc2, 0x9f, 0x09, 0xd6, 0xbd, 0x38, 0xa3, 0x88, 0x0e, 0xc2, 0x8d, 0x3b, 0x63, 0x93, 0x9c,
0x29, 0x57, 0x2c, 0x7e, 0x53, 0xfe, 0x89, 0x04, 0x4d, 0x6e, 0xee, 0xf7, 0xc4, 0x25, 0x01, 0xdd,
0x9a, 0x44, 0xb7, 0x46, 0x7f, 0xa3, 0x5f, 0x8b, 0xe6, 0xf5, 0xde, 0x4a, 0x55, 0x02, 0x74, 0x12,
0xea, 0x64, 0x46, 0x6c, 0x7d, 0x9e, 0x18, 0xff, 0x4b, 0xc2, 0x68, 0xfc, 0x68, 0x28, 0xa3, 0x75,
0x60, 0x41, 0xd5, 0x34, 0x07, 0xbb, 0x2e, 0x5f, 0x87, 0xdf, 0x24, 0x5f, 0x4e, 0xb0, 0xe3, 0xfa,
0x2c, 0x5f, 0x54, 0xfc, 0x26, 0xfa, 0x36, 0x54, 0x85, 0x57, 0xca, 0xd2, 0xe1, 0x37, 0xb3, 0xd7,
0xc9, 0x23, 0x52, 0x31, 0x42, 0xfe, 0xbb, 0x02, 0xb4, 0x38, 0xc1, 0xd6, 0xb8, 0x3d, 0x9e, 0x2c,
0x7c, 0x6b, 0xd0, 0x38, 0x0c, 0x64, 0x7f, 0x52, 0xee, 0x29, 0xac, 0x22, 0x22, 0x63, 0xa6, 0x09,
0x60, 0xd4, 0x23, 0x28, 0xcd, 0xe5, 0x11, 0x94, 0xcf, 0xab, 0xc1, 0x92, 0x3e, 0x62, 0x25, 0xc5,
0x47, 0x94, 0x7f, 0x13, 0xea, 0xa1, 0x09, 0xa8, 0x86, 0x66, 0x49, 0x2b, 0x4e, 0x31, 0xbf, 0x89,
0x3e, 0x0a, 0xfc, 0x22, 0x46, 0xaa, 0xcb, 0x29, 0x6b, 0x89, 0xb9, 0x44, 0xf2, 0x3f, 0x48, 0x50,
0xe1, 0x33, 0xdf, 0x80, 0x3a, 0x57, 0x3a, 0xd4, 0x67, 0x64, 0xb3, 0x03, 0xef, 0x22, 0x4e, 0xe3,
0xcb, 0xd3, 0x3a, 0x97, 0xa1, 0x1a, 0xd3, 0x37, 0x0b, 0xdc, 0x2c, 0xf8, 0x9f, 0x42, 0x4a, 0x86,
0x7c, 0x22, 0xfa, 0x05, 0x5d, 0x82, 0xb2, 0x61, 0x0f, 0xc5, 0x25, 0x10, 0x6b, 0xc8, 0x5f, 0x4b,
0x34, 0x67, 0xaf, 0xe0, 0x81, 0x7d, 0x82, 0x9d, 0xb3, 0xf9, 0x93, 0x9d, 0x0f, 0x43, 0x6c, 0x9e,
0x33, 0xf8, 0x12, 0x03, 0xd0, 0xc3, 0xe0, 0x10, 0x8a, 0x69, 0x99, 0x9e, 0xb0, 0xde, 0xe1, 0x4c,
0x1a, 0x1c, 0xc6, 0x1f, 0xb0, 0xb4, 0x6d, 0x74, 0x2b, 0xb3, 0x7a, 0x3b, 0x2f, 0x25, 0x90, 0x91,
0x7f, 0x29, 0x41, 0x37, 0x48, 0x25, 0xb9, 0x6b, 0x67, 0xf3, 0x5e, 0x8a, 0xbc, 0x9c, 0xf8, 0xea,
0x57, 0x45, 0xd6, 0x9e, 0x08, 0x6d, 0xae, 0xc8, 0xc8, 0xcf, 0xd9, 0x5b, 0x34, 0x2b, 0x9d, 0xdc,
0xd0, 0x3c, 0x2c, 0xd3, 0x85, 0xaa, 0xc8, 0x67, 0xb0, 0xcc, 0xbd, 0x68, 0x13, 0x09, 0xbb, 0xfc,
0x18, 0x7b, 0x9b, 0xd1, 0x54, 0xc8, 0xeb, 0x26, 0x60, 0xf8, 0x36, 0xe1, 0x88, 0xdf, 0x26, 0x94,
0x62, 0xb7, 0x09, 0xbc, 0x5f, 0x36, 0x29, 0x0b, 0x24, 0x36, 0xf0, 0xaa, 0x08, 0xf6, 0x3b, 0x12,
0x74, 0x38, 0x16, 0x8a, 0x93, 0x84, 0x44, 0x06, 0xf6, 0xb0, 0xf6, 0x4d, 0xa7, 0x0a, 0xfe, 0x5b,
0x82, 0x76, 0xd8, 0xea, 0x52, 0xc3, 0xf9, 0x31, 0x94, 0x69, 0xa6, 0x85, 0xaf, 0x60, 0xaa, 0x6a,
0x60, 0xd0, 0x44, 0x6d, 0x53, 0x57, 0x7b, 0x5f, 0x38, 0x08, 0xbc, 0x19, 0x98, 0xfe, 0xe2, 0xf9,
0x4d, 0x3f, 0x77, 0x85, 0xec, 0x31, 0x99, 0x97, 0xa5, 0x28, 0x83, 0x0e, 0xf4, 0x29, 0x54, 0x58,
0x21, 0x06, 0xbf, 0x61, 0xbb, 0x1d, 0x9d, 0x9a, 0x17, 0x69, 0x84, 0xf2, 0xfe, 0xb4, 0x43, 0xe1,
0x83, 0xe4, 0x5f, 0x87, 0xe5, 0x20, 0x1a, 0x65, 0x68, 0x67, 0x65, 0x5a, 0xf9, 0x5f, 0x25, 0xb8,
0xb8, 0x77, 0x66, 0x0d, 0xe2, 0xec, 0xbf, 0x0c, 0x95, 0x91, 0xa1, 0x06, 0x19, 0x53, 0xde, 0xa2,
0x6e, 0x20, 0xc3, 0x8d, 0x35, 0x62, 0x43, 0x18, 0xcd, 0xea, 0xa2, 0x6f, 0xdf, 0x9e, 0x6a, 0xda,
0x6f, 0x8b, 0xf0, 0x19, 0x6b, 0xcc, 0x5a, 0xb1, 0x34, 0x54, 0x53, 0xf4, 0x52, 0x6b, 0xf5, 0x29,
0x00, 0x35, 0xe8, 0xfd, 0xf3, 0x18, 0x71, 0x3a, 0x62, 0x8b, 0xa8, 0xec, 0x5f, 0x14, 0xa0, 0x13,
0xa2, 0xd2, 0x37, 0xed, 0xdf, 0x64, 0x44, 0x65, 0xc5, 0x97, 0x14, 0x95, 0x95, 0xe6, 0xf7, 0x69,
0xca, 0x69, 0x3e, 0xcd, 0xbf, 0x15, 0xa0, 0x15, 0x50, 0x6d, 0xd7, 0x50, 0xad, 0x4c, 0x4e, 0xd8,
0x13, 0xfe, 0x7c, 0x94, 0x4e, 0xef, 0xa5, 0xc9, 0x49, 0xc6, 0x41, 0x28, 0xb1, 0x29, 0xd0, 0x35,
0x7a, 0xe8, 0x8e, 0xc7, 0x12, 0x5f, 0x3c, 0x86, 0x60, 0x02, 0xa9, 0x9b, 0x18, 0xdd, 0x03, 0xc4,
0xa5, 0xa8, 0xaf, 0x5b, 0x7d, 0x17, 0x0f, 0x6c, 0x4b, 0x63, 0xf2, 0x55, 0x56, 0xda, 0xfc, 0x4b,
0xcf, 0xda, 0x63, 0xfd, 0xe8, 0x63, 0x28, 0x79, 0x67, 0x23, 0xe6, 0xad, 0xb4, 0x52, 0xed, 0x7d,
0xb0, 0xae, 0xfd, 0xb3, 0x11, 0x56, 0x28, 0xb8, 0x5f, 0xa9, 0xe3, 0x39, 0xea, 0x09, 0x77, 0xfd,
0x4a, 0x4a, 0xa8, 0x87, 0x68, 0x0c, 0x9f, 0x86, 0x0b, 0xcc, 0x45, 0xe2, 0x4d, 0xc6, 0xd9, 0xbe,
0xd0, 0xf6, 0x3d, 0xcf, 0xa0, 0xa9, 0x3b, 0xca, 0xd9, 0x7e, 0xef, 0xbe, 0x67, 0xc8, 0xff, 0x52,
0x80, 0x76, 0x80, 0x59, 0xc1, 0xee, 0xd8, 0xc8, 0x16, 0xb8, 0xc9, 0xb9, 0x91, 0x69, 0xb2, 0xf6,
0x1d, 0xa8, 0xf3, 0x63, 0x3f, 0x07, 0xdb, 0x00, 0x1b, 0xb2, 0x35, 0x81, 0x8f, 0xcb, 0x2f, 0x89,
0x8f, 0x2b, 0x33, 0x64, 0x17, 0xd2, 0x89, 0x2f, 0xff, 0x4c, 0x82, 0x37, 0x12, 0x6a, 0x71, 0x22,
0x69, 0x27, 0xc7, 0x76, 0x5c, 0x5d, 0xc6, 0xa7, 0xe4, 0x0a, 0xfe, 0x21, 0x54, 0x1c, 0x3a, 0x3b,
0xbf, 0x0a, 0xba, 0x35, 0x91, 0xbb, 0xd8, 0x42, 0x14, 0x3e, 0x44, 0xfe, 0x43, 0x09, 0x56, 0x92,
0x4b, 0x9d, 0xc3, 0x6a, 0xaf, 0xc1, 0x02, 0x9b, 0xda, 0x17, 0xc2, 0x3b, 0x93, 0x85, 0x30, 0x20,
0x8e, 0xe2, 0x0f, 0x94, 0xf7, 0x60, 0xd9, 0x37, 0xee, 0x01, 0xe9, 0xb7, 0xb1, 0xa7, 0x4e, 0x88,
0x6c, 0x6e, 0x40, 0x9d, 0xb9, 0xc8, 0x2c, 0x62, 0x60, 0x39, 0x01, 0x38, 0x10, 0xa9, 0x34, 0xf9,
0x3f, 0x25, 0xb8, 0x44, 0xad, 0x63, 0xfc, 0xee, 0x25, 0xcf, 0xbd, 0x9c, 0x2c, 0x52, 0x0e, 0x3b,
0xaa, 0xc9, 0xeb, 0x40, 0x6a, 0x4a, 0xa4, 0x0f, 0xf5, 0x92, 0x99, 0xb6, 0xd4, 0x08, 0x38, 0xb8,
0xc8, 0x25, 0xd1, 0x36, 0xbd, 0xc7, 0x8d, 0xa7, 0xd8, 0x02, 0xab, 0x5c, 0x9a, 0xc5, 0x2a, 0x6f,
0xc1, 0x1b, 0xb1, 0x9d, 0xce, 0x71, 0xa2, 0xf2, 0x5f, 0x4a, 0xe4, 0x38, 0x22, 0xf5, 0x34, 0xb3,
0x7b, 0xa6, 0xd7, 0xc4, 0xa5, 0x4f, 0x5f, 0xd7, 0xe2, 0x4a, 0x44, 0x43, 0x9f, 0x41, 0xcd, 0xc2,
0xa7, 0xfd, 0xb0, 0xb3, 0x93, 0xc3, 0x6d, 0xaf, 0x5a, 0xf8, 0x94, 0xfe, 0x92, 0x77, 0x60, 0x25,
0xb1, 0xd4, 0x79, 0xf6, 0xfe, 0xf7, 0x12, 0x5c, 0xde, 0x70, 0xec, 0xd1, 0x17, 0xba, 0xe3, 0x8d,
0x55, 0x23, 0x7a, 0x45, 0xfe, 0x6a, 0x52, 0x57, 0x4f, 0x42, 0x6e, 0x2f, 0xe3, 0x9f, 0x7b, 0x29,
0x12, 0x94, 0x5c, 0x14, 0xdf, 0x74, 0xc8, 0x49, 0xfe, 0x8f, 0x62, 0xda, 0xe2, 0x39, 0xdc, 0x14,
0xc7, 0x23, 0x4f, 0x04, 0x91, 0x9a, 0xe9, 0x2e, 0xce, 0x9a, 0xe9, 0xce, 0x50, 0xef, 0xa5, 0x97,
0xa4, 0xde, 0xcf, 0x9d, 0x7a, 0x79, 0x02, 0xd1, 0x5b, 0x08, 0x6a, 0x7e, 0x67, 0xba, 0xbe, 0x58,
0x03, 0x08, 0x32, 0xf2, 0xbc, 0x1c, 0x32, 0xcf, 0x34, 0xa1, 0x51, 0xe4, 0xb4, 0x84, 0x29, 0xe5,
0xa6, 0x3c, 0x94, 0x23, 0xfe, 0x1e, 0x74, 0xd3, 0xb8, 0x74, 0x1e, 0xce, 0xff, 0x45, 0x01, 0xa0,
0x27, 0x2a, 0x68, 0x67, 0xb3, 0x05, 0xb7, 0x20, 0xe4, 0x6e, 0x04, 0xf2, 0x1e, 0xe6, 0x22, 0x8d,
0x88, 0x84, 0x08, 0x3a, 0x09, 0x4c, 0x22, 0x10, 0xd5, 0xe8, 0x3c, 0x21, 0xa9, 0x61, 0x4c, 0x11,
0x57, 0xbf, 0x57, 0xa0, 0xe6, 0xd8, 0xa7, 0x7d, 0x22, 0x66, 0x9a, 0x5f, 0x22, 0xec, 0xd8, 0xa7,
0x44, 0xf8, 0x34, 0xb4, 0x02, 0x0b, 0x9e, 0xea, 0x1e, 0x93, 0xf9, 0x2b, 0xa1, 0x2a, 0x0d, 0x0d,
0x5d, 0x82, 0xf2, 0xa1, 0x6e, 0x60, 0x56, 0x14, 0x50, 0x53, 0x58, 0x03, 0x7d, 0xcb, 0xaf, 0x65,
0xab, 0xe6, 0xae, 0xc4, 0x61, 0xe5, 0x6c, 0x5f, 0x4b, 0xb0, 0x18, 0x50, 0x8d, 0x2a, 0x20, 0xa2,
0xd3, 0xa8, 0x3e, 0x5b, 0xb7, 0x35, 0xa6, 0x2a, 0x5a, 0x19, 0x16, 0x81, 0x0d, 0x64, 0x5a, 0x2b,
0x18, 0x32, 0x29, 0x0e, 0x26, 0xfb, 0x22, 0x9b, 0xd6, 0x35, 0xbf, 0x32, 0xa5, 0xe2, 0xd8, 0xa7,
0x3d, 0x4d, 0x50, 0x83, 0xd5, 0xff, 0xb2, 0xa8, 0x8f, 0x50, 0x63, 0x9d, 0x96, 0x00, 0xdf, 0x82,
0x26, 0x76, 0x1c, 0xdb, 0xe9, 0x9b, 0xd8, 0x75, 0xd5, 0x21, 0xe6, 0x0e, 0x78, 0x83, 0x76, 0x6e,
0xb3, 0x3e, 0xf9, 0x8f, 0x4b, 0xd0, 0x0a, 0xb6, 0xe2, 0xdf, 0x83, 0xeb, 0x9a, 0x7f, 0x0f, 0xae,
0x93, 0xa3, 0x03, 0x87, 0xa9, 0x42, 0x71, 0xb8, 0x6b, 0x85, 0x8e, 0xa4, 0xd4, 0x78, 0x6f, 0x4f,
0x23, 0x66, 0x99, 0x08, 0x99, 0x65, 0x6b, 0x38, 0x38, 0x5c, 0xf0, 0xbb, 0xf8, 0xd9, 0x46, 0x78,
0xa4, 0x94, 0x83, 0x47, 0xca, 0x39, 0x78, 0xa4, 0x92, 0xc2, 0x23, 0xcb, 0x50, 0x39, 0x18, 0x0f,
0x8e, 0xb1, 0xc7, 0x3d, 0x36, 0xde, 0x8a, 0xf2, 0x4e, 0x35, 0xc6, 0x3b, 0x82, 0x45, 0x6a, 0x61,
0x16, 0xb9, 0x02, 0x35, 0x76, 0x21, 0xdb, 0xf7, 0x5c, 0x7a, 0xbb, 0x54, 0x54, 0xaa, 0xac, 0x63,
0xdf, 0x45, 0x9f, 0xf8, 0xee, 0x5c, 0x3d, 0x4d, 0xd8, 0xa9, 0xd6, 0x89, 0x71, 0x89, 0xef, 0xcc,
0xbd, 0x03, 0x8b, 0x21, 0x72, 0x50, 0x1b, 0xd1, 0xa0, 0x4b, 0x0d, 0xb9, 0xf3, 0xd4, 0x4c, 0xdc,
0x86, 0x56, 0x40, 0x12, 0x0a, 0xd7, 0x64, 0x51, 0x94, 0xe8, 0xa5, 0x60, 0x82, 0x93, 0x5b, 0xe7,
0xe3, 0x64, 0x74, 0x19, 0xaa, 0x3c, 0xfc, 0x71, 0x3b, 0x8b, 0x91, 0x6c, 0x84, 0xfc, 0x43, 0x40,
0xc1, 0xea, 0xe7, 0xf3, 0x16, 0x63, 0xec, 0x51, 0x88, 0xb3, 0x87, 0xfc, 0x73, 0x09, 0x96, 0xc2,
0xc8, 0x66, 0x35, 0xbc, 0x9f, 0x41, 0x9d, 0xdd, 0xef, 0xf5, 0x89, 0xe0, 0xf3, 0x2c, 0xcf, 0xb5,
0x89, 0xe7, 0xa2, 0x40, 0xf0, 0x82, 0x80, 0xb0, 0xd7, 0xa9, 0xed, 0x1c, 0xeb, 0xd6, 0xb0, 0x4f,
0x56, 0xe6, 0x8b, 0x5b, 0x83, 0x77, 0xee, 0x90, 0x3e, 0xf9, 0x2b, 0x09, 0xae, 0x3f, 0x1d, 0x69,
0xaa, 0x87, 0x43, 0x1e, 0xc8, 0xbc, 0x45, 0x89, 0x1f, 0xfb, 0x55, 0x81, 0x85, 0x7c, 0x77, 0x54,
0x0c, 0x5a, 0xfe, 0x1b, 0xb1, 0x16, 0x6e, 0x0e, 0xe8, 0x85, 0xe6, 0x88, 0x5e, 0x10, 0xcf, 0xbc,
0x96, 0x2e, 0x54, 0x4f, 0xf8, 0x74, 0xfe, 0x8b, 0x08, 0xbf, 0x1d, 0xb9, 0x07, 0x2d, 0x9e, 0xff,
0x1e, 0x54, 0xde, 0x86, 0xcb, 0x0a, 0x76, 0xb1, 0xa5, 0x45, 0x76, 0x33, 0x73, 0x36, 0x69, 0x04,
0xdd, 0xb4, 0xe9, 0xe6, 0x61, 0x56, 0xe6, 0xbb, 0xf6, 0x1d, 0x32, 0xad, 0xc7, 0x55, 0x31, 0x71,
0x99, 0x28, 0x1e, 0x4f, 0xfe, 0xab, 0x02, 0xac, 0x3c, 0xd2, 0x34, 0xae, 0xc5, 0xb9, 0x37, 0xf6,
0xaa, 0x1c, 0xe5, 0xb8, 0x23, 0x59, 0x4c, 0x3a, 0x92, 0x2f, 0x4b, 0xb3, 0x72, 0x1b, 0x63, 0x8d,
0x4d, 0xdf, 0x76, 0x3a, 0xac, 0x40, 0xe8, 0x21, 0xbf, 0x18, 0x23, 0x01, 0x3d, 0xb5, 0x9f, 0xd3,
0xfd, 0xab, 0xaa, 0x9f, 0x15, 0x93, 0x47, 0xd0, 0x49, 0x12, 0x6b, 0x4e, 0x55, 0xe2, 0x53, 0x64,
0x64, 0xb3, 0x0c, 0x6a, 0x83, 0xb8, 0x50, 0xb4, 0x6b, 0xd7, 0x76, 0xe5, 0xff, 0x2a, 0x40, 0x67,
0x4f, 0x3d, 0xc1, 0xff, 0x7f, 0x0e, 0xe8, 0xfb, 0x70, 0xc9, 0x55, 0x4f, 0x70, 0x3f, 0x14, 0x18,
0xf7, 0x1d, 0xfc, 0x9c, 0xbb, 0xa0, 0xef, 0xa6, 0x69, 0x92, 0xd4, 0x3a, 0x1a, 0x65, 0xc9, 0x8d,
0xf4, 0x2b, 0xf8, 0x39, 0x7a, 0x1b, 0x16, 0xc3, 0x85, 0x5a, 0x64, 0x69, 0x55, 0x4a, 0xf2, 0x66,
0xa8, 0x0e, 0xab, 0xa7, 0xc9, 0xcf, 0xe1, 0xea, 0x53, 0xcb, 0xc5, 0x5e, 0x2f, 0xa8, 0x25, 0x9a,
0x33, 0x84, 0xbc, 0x01, 0xf5, 0x80, 0xf0, 0x89, 0x57, 0x10, 0x9a, 0x2b, 0xdb, 0xd0, 0xdd, 0x56,
0x9d, 0x63, 0x3f, 0x8f, 0xbc, 0xc1, 0x6a, 0x3e, 0x5e, 0x21, 0xc2, 0x43, 0x51, 0x02, 0xa5, 0xe0,
0x43, 0xec, 0x60, 0x6b, 0x80, 0xb7, 0xec, 0xc1, 0x71, 0xa8, 0x34, 0x58, 0x0a, 0x97, 0x06, 0xcf,
0x5a, 0x6a, 0x7c, 0xf7, 0x33, 0x51, 0x96, 0xb8, 0x7f, 0x36, 0xc2, 0x68, 0x01, 0x8a, 0x3b, 0xf8,
0xb4, 0x7d, 0x01, 0x01, 0x54, 0x76, 0x6c, 0xc7, 0x54, 0x8d, 0xb6, 0x84, 0xea, 0xb0, 0xc0, 0x6f,
0x61, 0xda, 0x05, 0xd4, 0x84, 0xda, 0xba, 0x9f, 0xc9, 0x6e, 0x17, 0xef, 0xfe, 0xa9, 0x04, 0x4b,
0x89, 0x7b, 0x02, 0xd4, 0x02, 0x78, 0x6a, 0x0d, 0xf8, 0x05, 0x4a, 0xfb, 0x02, 0x6a, 0x40, 0xd5,
0xbf, 0x4e, 0x61, 0xf3, 0xed, 0xdb, 0x14, 0xba, 0x5d, 0x40, 0x6d, 0x68, 0xb0, 0x81, 0xe3, 0xc1,
0x00, 0xbb, 0x6e, 0xbb, 0x28, 0x7a, 0x36, 0x55, 0xdd, 0x18, 0x3b, 0xb8, 0x5d, 0x22, 0x38, 0xf7,
0x6d, 0x5e, 0x98, 0xdd, 0x2e, 0x23, 0x04, 0x2d, 0xbf, 0x4a, 0x9b, 0x0f, 0xaa, 0x84, 0xfa, 0xfc,
0x61, 0x0b, 0x77, 0x9f, 0x85, 0xb3, 0xbd, 0x74, 0x7b, 0x2b, 0x70, 0xf1, 0xa9, 0xa5, 0xe1, 0x43,
0xdd, 0xc2, 0x5a, 0xf0, 0xa9, 0x7d, 0x01, 0x5d, 0x84, 0xc5, 0x6d, 0xec, 0x0c, 0x71, 0xa8, 0xb3,
0x80, 0x96, 0xa0, 0xb9, 0xad, 0xbf, 0x08, 0x75, 0x15, 0xe5, 0x52, 0x55, 0x6a, 0x4b, 0xab, 0x5f,
0x5d, 0x83, 0xda, 0x86, 0xea, 0xa9, 0xeb, 0xb6, 0xed, 0x68, 0xc8, 0x00, 0x44, 0xdf, 0x31, 0x98,
0x23, 0xdb, 0x12, 0xaf, 0x83, 0xd0, 0xfd, 0x28, 0x17, 0xf0, 0x46, 0x12, 0x90, 0xf3, 0x50, 0xf7,
0xad, 0x54, 0xf8, 0x18, 0xb0, 0x7c, 0x01, 0x99, 0x14, 0xdb, 0xbe, 0x6e, 0xe2, 0x7d, 0x7d, 0x70,
0xec, 0x5b, 0xca, 0x0f, 0x32, 0xec, 0x62, 0x12, 0xd4, 0xc7, 0x77, 0x2b, 0x15, 0x1f, 0x7b, 0x68,
0xe2, 0x6b, 0x4d, 0xf9, 0x02, 0x7a, 0x0e, 0x97, 0x1e, 0xe3, 0x90, 0xd3, 0xe1, 0x23, 0x5c, 0xcd,
0x46, 0x98, 0x00, 0x3e, 0x27, 0xca, 0x2d, 0x28, 0x53, 0x76, 0x43, 0x69, 0x7e, 0x49, 0xf8, 0x21,
0x6f, 0xf7, 0x66, 0x36, 0x80, 0x98, 0xed, 0x87, 0xb0, 0x18, 0x7b, 0xfe, 0x87, 0xd2, 0xb4, 0x54,
0xfa, 0x43, 0xce, 0xee, 0xdd, 0x3c, 0xa0, 0x02, 0xd7, 0x10, 0x5a, 0xd1, 0xf7, 0x0f, 0x28, 0x2d,
0x53, 0x99, 0xfa, 0x72, 0xab, 0xfb, 0x6e, 0x0e, 0x48, 0x81, 0xc8, 0x84, 0x76, 0xfc, 0x39, 0x1a,
0xba, 0x3b, 0x71, 0x82, 0x28, 0xb3, 0xbd, 0x97, 0x0b, 0x56, 0xa0, 0x3b, 0xa3, 0x4c, 0x90, 0x78,
0xe1, 0x14, 0xe7, 0x71, 0x7f, 0x9a, 0xac, 0xa7, 0x57, 0xdd, 0x07, 0xb9, 0xe1, 0x05, 0xea, 0xdf,
0x66, 0x65, 0x16, 0x69, 0xaf, 0x84, 0xd0, 0x87, 0xe9, 0xd3, 0x4d, 0x78, 0xde, 0xd4, 0x5d, 0x3d,
0xcf, 0x10, 0xb1, 0x88, 0x1f, 0xd3, 0xfa, 0x88, 0x94, 0x77, 0x36, 0x71, 0xb9, 0xf3, 0xe7, 0xcb,
0x7e, 0x42, 0xd4, 0xfd, 0xf0, 0x1c, 0x23, 0xc4, 0x02, 0xec, 0xf8, 0x7b, 0x3f, 0x5f, 0x0c, 0x1f,
0x4c, 0xe5, 0x9a, 0xd9, 0x64, 0xf0, 0x07, 0xb0, 0x18, 0xb3, 0xdb, 0x28, 0xbf, 0x6d, 0xef, 0x4e,
0x72, 0xae, 0x98, 0x48, 0xc6, 0xca, 0x4d, 0x50, 0x06, 0xf7, 0xa7, 0x94, 0xa4, 0x74, 0xef, 0xe6,
0x01, 0x15, 0x1b, 0x71, 0xa9, 0xba, 0x8c, 0x15, 0x11, 0xa0, 0x7b, 0xe9, 0x73, 0xa4, 0x17, 0x4b,
0x74, 0xdf, 0xcf, 0x09, 0x2d, 0x90, 0x9e, 0xc0, 0xc5, 0x94, 0x5a, 0x0f, 0xf4, 0xfe, 0xc4, 0xc3,
0x8a, 0x17, 0xb9, 0x74, 0xef, 0xe7, 0x05, 0x17, 0x78, 0x7f, 0x0b, 0xd0, 0xde, 0x91, 0x7d, 0xba,
0x6e, 0x5b, 0x87, 0xfa, 0x70, 0xec, 0xa8, 0x2c, 0xf3, 0x9f, 0x65, 0x1b, 0x92, 0xa0, 0x19, 0x3c,
0x3a, 0x71, 0x84, 0x40, 0xde, 0x07, 0x78, 0x8c, 0xbd, 0x6d, 0xec, 0x39, 0x44, 0x30, 0xde, 0xce,
0x32, 0x7f, 0x1c, 0xc0, 0x47, 0xf5, 0xce, 0x54, 0xb8, 0x90, 0x29, 0x6a, 0x6f, 0xab, 0xd6, 0x58,
0x35, 0x42, 0xc5, 0xea, 0xf7, 0x52, 0x87, 0xc7, 0xc1, 0x32, 0x0e, 0x32, 0x13, 0x5a, 0xa0, 0x3c,
0x15, 0xa6, 0x3d, 0x74, 0xb5, 0x34, 0xd9, 0xb4, 0x27, 0xeb, 0x16, 0xe2, 0x6a, 0x6f, 0x02, 0xbc,
0x40, 0xfc, 0xa5, 0x44, 0xcb, 0x85, 0x62, 0x00, 0xcf, 0x74, 0xef, 0x68, 0xd7, 0x50, 0x2d, 0x37,
0xcf, 0x12, 0x28, 0xe0, 0x39, 0x96, 0xc0, 0xe1, 0xc5, 0x12, 0x34, 0x68, 0x46, 0x6e, 0x7c, 0x50,
0x5a, 0x75, 0x77, 0xda, 0xed, 0x57, 0xf7, 0xce, 0x74, 0x40, 0x81, 0xe5, 0x08, 0x9a, 0xbe, 0x28,
0x31, 0xe2, 0xbe, 0x9b, 0xb5, 0xd2, 0x00, 0x26, 0x43, 0x13, 0xa4, 0x83, 0x86, 0x35, 0x41, 0x32,
0xa1, 0x8d, 0xf2, 0x5d, 0x84, 0x4c, 0xd2, 0x04, 0xd9, 0x59, 0x72, 0xa6, 0xea, 0x62, 0x97, 0x47,
0xe9, 0x7a, 0x34, 0xf5, 0x2e, 0x2c, 0x55, 0xd5, 0x65, 0xdc, 0x45, 0xc9, 0x17, 0xd0, 0x33, 0xa8,
0xf0, 0x7f, 0xaf, 0x78, 0x6b, 0x72, 0x12, 0x8a, 0xcf, 0x7e, 0x7b, 0x0a, 0x94, 0x98, 0xf8, 0x18,
0x56, 0x32, 0x52, 0x50, 0xa9, 0x26, 0x78, 0x72, 0xba, 0x6a, 0x9a, 0x71, 0x10, 0xc8, 0x12, 0x39,
0xa6, 0x09, 0xc8, 0xb2, 0xf2, 0x51, 0xd3, 0x90, 0xa9, 0x80, 0x92, 0xef, 0x51, 0x53, 0x79, 0x22,
0xf3, 0xd9, 0x6a, 0x0e, 0x14, 0xc9, 0x27, 0xa5, 0xa9, 0x28, 0x32, 0x5f, 0x9e, 0x4e, 0x43, 0xd1,
0x87, 0xa5, 0x44, 0x12, 0x02, 0xbd, 0x97, 0x61, 0xae, 0xd3, 0x52, 0x15, 0xd3, 0x10, 0x0c, 0xe1,
0x8d, 0xd4, 0x80, 0x3b, 0xd5, 0xfd, 0x98, 0x14, 0x9a, 0x4f, 0x43, 0x34, 0x80, 0x8b, 0x29, 0x61,
0x76, 0xaa, 0xe1, 0xcc, 0x0e, 0xc7, 0xa7, 0x21, 0x39, 0x82, 0xee, 0x9a, 0x63, 0xab, 0xda, 0x40,
0x75, 0xbd, 0x47, 0x86, 0x87, 0x1d, 0x12, 0x0b, 0xfa, 0xfe, 0x5f, 0x9c, 0x6e, 0xbc, 0x41, 0xe1,
0x02, 0xa8, 0x9c, 0x98, 0x0e, 0xa0, 0x4e, 0x59, 0x92, 0xfd, 0x3f, 0x02, 0x4a, 0xb7, 0x75, 0x21,
0x88, 0x0c, 0x05, 0x9a, 0x06, 0xe8, 0x0b, 0xe7, 0xea, 0xd7, 0x35, 0xa8, 0xfa, 0x25, 0xf6, 0xdf,
0x70, 0x28, 0xfa, 0x1a, 0x62, 0xc3, 0x1f, 0xc0, 0x62, 0xec, 0xb9, 0x6b, 0xaa, 0x3e, 0x4d, 0x7f,
0x12, 0x3b, 0xed, 0xb8, 0x9e, 0xf1, 0x3f, 0x63, 0x12, 0x6e, 0xe2, 0x3b, 0x59, 0xf1, 0x65, 0xdc,
0x43, 0x9c, 0x32, 0xf1, 0xff, 0x6d, 0xbf, 0x6c, 0x07, 0x20, 0xe4, 0x91, 0x4d, 0x2e, 0x44, 0x23,
0x4e, 0xc6, 0x34, 0x6a, 0x99, 0xa9, 0x4e, 0xd7, 0xbb, 0x79, 0x6a, 0x7e, 0xb2, 0xcd, 0x66, 0xb6,
0xab, 0xf5, 0x14, 0x1a, 0xe1, 0x12, 0x51, 0x94, 0xfa, 0xd7, 0x3f, 0xc9, 0x1a, 0xd2, 0x69, 0xbb,
0xd8, 0x3e, 0xa7, 0x35, 0x9e, 0x32, 0x9d, 0x4b, 0xcc, 0x48, 0xfc, 0xee, 0x21, 0xc3, 0x8c, 0x64,
0xdc, 0x78, 0xa4, 0x7a, 0x2f, 0xd9, 0x17, 0x1a, 0x2c, 0xcd, 0x10, 0x4f, 0xa8, 0xa7, 0xa6, 0x19,
0x32, 0xae, 0x28, 0x52, 0xd3, 0x0c, 0x59, 0x19, 0x7a, 0xf9, 0xc2, 0xda, 0x47, 0xdf, 0xff, 0x70,
0xa8, 0x7b, 0x47, 0xe3, 0x03, 0xb2, 0xfb, 0x07, 0x6c, 0xe8, 0xfb, 0xba, 0xcd, 0x7f, 0x3d, 0xf0,
0xd9, 0xfd, 0x01, 0x9d, 0xed, 0x01, 0x99, 0x6d, 0x74, 0x70, 0x50, 0xa1, 0xad, 0x8f, 0xfe, 0x27,
0x00, 0x00, 0xff, 0xff, 0x36, 0x4c, 0xc5, 0x32, 0x4e, 0x4e, 0x00, 0x00,
// 4414 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4b, 0x8f, 0x1c, 0x49,
0x5a, 0xce, 0x7a, 0x75, 0xd5, 0x57, 0x8f, 0xae, 0x0e, 0x7b, 0xda, 0xe5, 0x1a, 0xbf, 0x26, 0x3d,
0x9e, 0xf1, 0x78, 0x3c, 0xf6, 0x8c, 0x87, 0xd1, 0x0e, 0x78, 0x67, 0x56, 0x6e, 0xf7, 0xb4, 0xa7,
0xa0, 0xbb, 0xb7, 0x37, 0xbb, 0x3d, 0x96, 0x76, 0x91, 0x4a, 0xd9, 0x95, 0xd1, 0xd5, 0xb9, 0x5d,
0x99, 0x59, 0xce, 0xcc, 0xea, 0x76, 0x2f, 0x87, 0x1d, 0xb1, 0x12, 0x68, 0x11, 0x62, 0x11, 0x12,
0x02, 0x0e, 0x48, 0x88, 0xd3, 0xb2, 0x68, 0x11, 0xd2, 0x8a, 0x0b, 0x17, 0xae, 0x23, 0x38, 0xac,
0x10, 0x12, 0x3f, 0x80, 0x03, 0x70, 0xe7, 0xca, 0x01, 0xc5, 0x23, 0x23, 0x5f, 0x91, 0x55, 0xd9,
0x55, 0xf6, 0x18, 0xc1, 0xad, 0xe2, 0xcb, 0x2f, 0xe2, 0x8b, 0xc7, 0xf7, 0x8e, 0x2f, 0x0a, 0xda,
0x86, 0xee, 0xeb, 0xfd, 0x81, 0xe3, 0xb8, 0xc6, 0xdd, 0xb1, 0xeb, 0xf8, 0x0e, 0x5a, 0xb1, 0xcc,
0xd1, 0xf1, 0xc4, 0x63, 0xad, 0xbb, 0xe4, 0x73, 0xb7, 0x31, 0x70, 0x2c, 0xcb, 0xb1, 0x19, 0xa8,
0xdb, 0x32, 0x6d, 0x1f, 0xbb, 0xb6, 0x3e, 0xe2, 0xed, 0x46, 0xb4, 0x43, 0xb7, 0xe1, 0x0d, 0x0e,
0xb1, 0xa5, 0xb3, 0x96, 0xba, 0x04, 0xe5, 0xcf, 0xac, 0xb1, 0x7f, 0xaa, 0xfe, 0xa9, 0x02, 0x8d,
0x8d, 0xd1, 0xc4, 0x3b, 0xd4, 0xf0, 0xb3, 0x09, 0xf6, 0x7c, 0xf4, 0x3e, 0x94, 0xf6, 0x75, 0x0f,
0x77, 0x94, 0xeb, 0xca, 0xad, 0xfa, 0xfd, 0xcb, 0x77, 0x63, 0x54, 0x39, 0xbd, 0x2d, 0x6f, 0xb8,
0xa6, 0x7b, 0x58, 0xa3, 0x98, 0x08, 0x41, 0xc9, 0xd8, 0xef, 0xad, 0x77, 0x0a, 0xd7, 0x95, 0x5b,
0x45, 0x8d, 0xfe, 0x46, 0x57, 0x01, 0x3c, 0x3c, 0xb4, 0xb0, 0xed, 0xf7, 0xd6, 0xbd, 0x4e, 0xf1,
0x7a, 0xf1, 0x56, 0x51, 0x8b, 0x40, 0x90, 0x0a, 0x8d, 0x81, 0x33, 0x1a, 0xe1, 0x81, 0x6f, 0x3a,
0x76, 0x6f, 0xbd, 0x53, 0xa2, 0x7d, 0x63, 0x30, 0xf5, 0xdf, 0x15, 0x68, 0xf2, 0xa9, 0x79, 0x63,
0xc7, 0xf6, 0x30, 0xfa, 0x10, 0x2a, 0x9e, 0xaf, 0xfb, 0x13, 0x8f, 0xcf, 0xee, 0x75, 0xe9, 0xec,
0x76, 0x29, 0x8a, 0xc6, 0x51, 0xa5, 0xd3, 0x4b, 0x92, 0x2f, 0xa6, 0xc9, 0x27, 0x96, 0x50, 0x4a,
0x2d, 0xe1, 0x16, 0x2c, 0x1f, 0x90, 0xd9, 0xed, 0x86, 0x48, 0x65, 0x8a, 0x94, 0x04, 0x93, 0x91,
0x7c, 0xd3, 0xc2, 0xdf, 0x3e, 0xd8, 0xc5, 0xfa, 0xa8, 0x53, 0xa1, 0xb4, 0x22, 0x10, 0xf5, 0x9f,
0x15, 0x68, 0x0b, 0xf4, 0xe0, 0x1c, 0x2e, 0x40, 0x79, 0xe0, 0x4c, 0x6c, 0x9f, 0x2e, 0xb5, 0xa9,
0xb1, 0x06, 0x7a, 0x03, 0x1a, 0x83, 0x43, 0xdd, 0xb6, 0xf1, 0xa8, 0x6f, 0xeb, 0x16, 0xa6, 0x8b,
0xaa, 0x69, 0x75, 0x0e, 0xdb, 0xd6, 0x2d, 0x9c, 0x6b, 0x6d, 0xd7, 0xa1, 0x3e, 0xd6, 0x5d, 0xdf,
0x8c, 0xed, 0x7e, 0x14, 0x84, 0xba, 0x50, 0x35, 0xbd, 0x9e, 0x35, 0x76, 0x5c, 0xbf, 0x53, 0xbe,
0xae, 0xdc, 0xaa, 0x6a, 0xa2, 0x4d, 0x28, 0x98, 0xf4, 0xd7, 0x9e, 0xee, 0x1d, 0xf5, 0xd6, 0xf9,
0x8a, 0x62, 0x30, 0xf5, 0x2f, 0x14, 0x58, 0x7d, 0xe8, 0x79, 0xe6, 0xd0, 0x4e, 0xad, 0x6c, 0x15,
0x2a, 0xb6, 0x63, 0xe0, 0xde, 0x3a, 0x5d, 0x5a, 0x51, 0xe3, 0x2d, 0xf4, 0x3a, 0xd4, 0xc6, 0x18,
0xbb, 0x7d, 0xd7, 0x19, 0x05, 0x0b, 0xab, 0x12, 0x80, 0xe6, 0x8c, 0x30, 0xfa, 0x0e, 0xac, 0x78,
0x89, 0x81, 0x18, 0x5f, 0xd5, 0xef, 0xdf, 0xb8, 0x9b, 0x92, 0x8c, 0xbb, 0x49, 0xa2, 0x5a, 0xba,
0xb7, 0xfa, 0x65, 0x01, 0xce, 0x0b, 0x3c, 0x36, 0x57, 0xf2, 0x9b, 0xec, 0xbc, 0x87, 0x87, 0x62,
0x7a, 0xac, 0x91, 0x67, 0xe7, 0xc5, 0x91, 0x15, 0xa3, 0x47, 0x96, 0x83, 0xd5, 0x93, 0xe7, 0x51,
0x4e, 0x9f, 0xc7, 0x35, 0xa8, 0xe3, 0xe7, 0x63, 0xd3, 0xc5, 0x7d, 0xc2, 0x38, 0x74, 0xcb, 0x4b,
0x1a, 0x30, 0xd0, 0x9e, 0x69, 0x45, 0x65, 0x63, 0x29, 0xb7, 0x6c, 0xa8, 0x7f, 0xa9, 0xc0, 0xc5,
0xd4, 0x29, 0x71, 0x61, 0xd3, 0xa0, 0x4d, 0x57, 0x1e, 0xee, 0x0c, 0x11, 0x3b, 0xb2, 0xe1, 0x6f,
0x4d, 0xdb, 0xf0, 0x10, 0x5d, 0x4b, 0xf5, 0x8f, 0x4c, 0xb2, 0x90, 0x7f, 0x92, 0x47, 0x70, 0xf1,
0x31, 0xf6, 0x39, 0x01, 0xf2, 0x0d, 0x7b, 0xf3, 0x2b, 0xab, 0xb8, 0x54, 0x17, 0x92, 0x52, 0xad,
0xfe, 0x6d, 0x41, 0xc8, 0x22, 0x25, 0xd5, 0xb3, 0x0f, 0x1c, 0x74, 0x19, 0x6a, 0x02, 0x85, 0x73,
0x45, 0x08, 0x40, 0xdf, 0x80, 0x32, 0x99, 0x29, 0x63, 0x89, 0xd6, 0xfd, 0x37, 0xe4, 0x6b, 0x8a,
0x8c, 0xa9, 0x31, 0x7c, 0xd4, 0x83, 0x96, 0xe7, 0xeb, 0xae, 0xdf, 0x1f, 0x3b, 0x1e, 0x3d, 0x67,
0xca, 0x38, 0xf5, 0xfb, 0x6a, 0x7c, 0x04, 0xa1, 0xd6, 0xb7, 0xbc, 0xe1, 0x0e, 0xc7, 0xd4, 0x9a,
0xb4, 0x67, 0xd0, 0x44, 0x9f, 0x41, 0x03, 0xdb, 0x46, 0x38, 0x50, 0x29, 0xf7, 0x40, 0x75, 0x6c,
0x1b, 0x62, 0x98, 0xf0, 0x7c, 0xca, 0xf9, 0xcf, 0xe7, 0xf7, 0x15, 0xe8, 0xa4, 0x0f, 0x68, 0x11,
0x95, 0xfd, 0x80, 0x75, 0xc2, 0xec, 0x80, 0xa6, 0x4a, 0xb8, 0x38, 0x24, 0x8d, 0x77, 0x51, 0xff,
0x58, 0x81, 0xd7, 0xc2, 0xe9, 0xd0, 0x4f, 0x2f, 0x8b, 0x5b, 0xd0, 0x6d, 0x68, 0x9b, 0xf6, 0x60,
0x34, 0x31, 0xf0, 0x13, 0xfb, 0x73, 0xac, 0x8f, 0xfc, 0xc3, 0x53, 0x7a, 0x86, 0x55, 0x2d, 0x05,
0x57, 0x7f, 0xa4, 0xc0, 0x6a, 0x72, 0x5e, 0x8b, 0x6c, 0xd2, 0xaf, 0x40, 0xd9, 0xb4, 0x0f, 0x9c,
0x60, 0x8f, 0xae, 0x4e, 0x11, 0x4a, 0x42, 0x8b, 0x21, 0xab, 0x16, 0xbc, 0xfe, 0x18, 0xfb, 0x3d,
0xdb, 0xc3, 0xae, 0xbf, 0x66, 0xda, 0x23, 0x67, 0xb8, 0xa3, 0xfb, 0x87, 0x0b, 0x08, 0x54, 0x4c,
0x36, 0x0a, 0x09, 0xd9, 0x50, 0x7f, 0xaa, 0xc0, 0x65, 0x39, 0x3d, 0xbe, 0xf4, 0x2e, 0x54, 0x0f,
0x4c, 0x3c, 0x32, 0xc8, 0xfe, 0x2a, 0x74, 0x7f, 0x45, 0x9b, 0x08, 0xd6, 0x98, 0x20, 0xf3, 0x15,
0xbe, 0x91, 0xc1, 0xcd, 0xbb, 0xbe, 0x6b, 0xda, 0xc3, 0x4d, 0xd3, 0xf3, 0x35, 0x86, 0x1f, 0xd9,
0xcf, 0x62, 0x7e, 0x36, 0xfe, 0x3d, 0x05, 0xae, 0x3e, 0xc6, 0xfe, 0x23, 0xa1, 0x97, 0xc9, 0x77,
0xd3, 0xf3, 0xcd, 0x81, 0xf7, 0x62, 0x7d, 0xa3, 0x1c, 0x06, 0x5a, 0xfd, 0x89, 0x02, 0xd7, 0x32,
0x27, 0xc3, 0xb7, 0x8e, 0xeb, 0x9d, 0x40, 0x2b, 0xcb, 0xf5, 0xce, 0x6f, 0xe0, 0xd3, 0x2f, 0xf4,
0xd1, 0x04, 0xef, 0xe8, 0xa6, 0xcb, 0xf4, 0xce, 0x9c, 0x5a, 0xf8, 0xe7, 0x0a, 0x5c, 0x79, 0x8c,
0xfd, 0x9d, 0xc0, 0x26, 0xbd, 0xc2, 0xdd, 0x21, 0x38, 0x11, 0xdb, 0x18, 0x38, 0x67, 0x31, 0x98,
0xfa, 0x07, 0xec, 0x38, 0xa5, 0xf3, 0x7d, 0x25, 0x1b, 0x78, 0x95, 0x4a, 0x42, 0x44, 0x24, 0x1f,
0x31, 0xd7, 0x81, 0x6f, 0x9f, 0xfa, 0xe7, 0x0a, 0x5c, 0x7a, 0x38, 0x78, 0x36, 0x31, 0x5d, 0xcc,
0x91, 0x36, 0x9d, 0xc1, 0xd1, 0xfc, 0x9b, 0x1b, 0xba, 0x59, 0x85, 0x98, 0x9b, 0x35, 0xcb, 0x35,
0x5f, 0x85, 0x8a, 0xcf, 0xfc, 0x3a, 0xe6, 0xa9, 0xf0, 0x16, 0x9d, 0x9f, 0x86, 0x47, 0x58, 0xf7,
0xfe, 0x77, 0xce, 0xef, 0x27, 0x25, 0x68, 0x7c, 0xc1, 0xdd, 0x31, 0x6a, 0xb5, 0x93, 0x9c, 0xa4,
0xc8, 0x1d, 0xaf, 0x88, 0x07, 0x27, 0x73, 0xea, 0x1e, 0x43, 0xd3, 0xc3, 0xf8, 0x68, 0x1e, 0x1b,
0xdd, 0x20, 0x1d, 0x85, 0x6d, 0xdd, 0x84, 0x95, 0x89, 0x4d, 0x43, 0x03, 0x6c, 0xf0, 0x0d, 0x64,
0x9c, 0x3b, 0x5b, 0x77, 0xa7, 0x3b, 0xa2, 0xcf, 0x79, 0xf4, 0x11, 0x19, 0xab, 0x9c, 0x6b, 0xac,
0x64, 0x37, 0xd4, 0x83, 0xb6, 0xe1, 0x3a, 0xe3, 0x31, 0x36, 0xfa, 0x5e, 0x30, 0x54, 0x25, 0xdf,
0x50, 0xbc, 0x9f, 0x18, 0xea, 0x7d, 0x38, 0x9f, 0x9c, 0x69, 0xcf, 0x20, 0x0e, 0x29, 0x39, 0x43,
0xd9, 0x27, 0x74, 0x07, 0x56, 0xd2, 0xf8, 0x55, 0x8a, 0x9f, 0xfe, 0x80, 0xde, 0x03, 0x94, 0x98,
0x2a, 0x41, 0xaf, 0x31, 0xf4, 0xf8, 0x64, 0x7a, 0x86, 0xa7, 0xfe, 0x58, 0x81, 0xd5, 0xa7, 0xba,
0x3f, 0x38, 0x5c, 0xb7, 0xb8, 0xac, 0x2d, 0xa0, 0xab, 0x3e, 0x81, 0xda, 0x31, 0xe7, 0x8b, 0xc0,
0x20, 0x5d, 0x93, 0xec, 0x4f, 0x94, 0x03, 0xb5, 0xb0, 0x07, 0x89, 0x87, 0x2e, 0x6c, 0x44, 0xe2,
0xc2, 0x57, 0xa0, 0x35, 0x67, 0x04, 0xb4, 0xea, 0x73, 0x00, 0x3e, 0xb9, 0x2d, 0x6f, 0x38, 0xc7,
0xbc, 0x3e, 0x86, 0x25, 0x3e, 0x1a, 0x57, 0x8b, 0xb3, 0xf8, 0x27, 0x40, 0x57, 0x7f, 0x56, 0x81,
0x7a, 0xe4, 0x03, 0x6a, 0x41, 0x41, 0xc8, 0x6b, 0x41, 0xb2, 0xba, 0xc2, 0xec, 0x10, 0xaa, 0x98,
0x0e, 0xa1, 0x6e, 0x42, 0xcb, 0xa4, 0x7e, 0x48, 0x9f, 0x9f, 0x0a, 0x55, 0x20, 0x35, 0xad, 0xc9,
0xa0, 0x9c, 0x45, 0xd0, 0x55, 0xa8, 0xdb, 0x13, 0xab, 0xef, 0x1c, 0xf4, 0x5d, 0xe7, 0xc4, 0xe3,
0xb1, 0x58, 0xcd, 0x9e, 0x58, 0xdf, 0x3e, 0xd0, 0x9c, 0x13, 0x2f, 0x74, 0xf7, 0x2b, 0x67, 0x74,
0xf7, 0xaf, 0x42, 0xdd, 0xd2, 0x9f, 0x93, 0x51, 0xfb, 0xf6, 0xc4, 0xa2, 0x61, 0x5a, 0x51, 0xab,
0x59, 0xfa, 0x73, 0xcd, 0x39, 0xd9, 0x9e, 0x58, 0xe8, 0x16, 0xb4, 0x47, 0xba, 0xe7, 0xf7, 0xa3,
0x71, 0x5e, 0x95, 0xc6, 0x79, 0x2d, 0x02, 0xff, 0x2c, 0x8c, 0xf5, 0xd2, 0x81, 0x43, 0x6d, 0x81,
0xc0, 0xc1, 0xb0, 0x46, 0xe1, 0x40, 0x90, 0x3f, 0x70, 0x30, 0xac, 0x91, 0x18, 0xe6, 0x63, 0x58,
0xda, 0xa7, 0xde, 0x9d, 0xd7, 0xa9, 0x67, 0xea, 0x8e, 0x0d, 0xe2, 0xd8, 0x31, 0x27, 0x50, 0x0b,
0xd0, 0xd1, 0x37, 0xa1, 0x46, 0x8d, 0x2a, 0xed, 0xdb, 0xc8, 0xd5, 0x37, 0xec, 0x40, 0x7a, 0x1b,
0x78, 0xe4, 0xeb, 0xb4, 0x77, 0x33, 0x5f, 0x6f, 0xd1, 0x81, 0xe8, 0xab, 0x81, 0x8b, 0x75, 0x1f,
0x1b, 0x6b, 0xa7, 0x8f, 0x1c, 0x6b, 0xac, 0x53, 0x66, 0xea, 0xb4, 0xa8, 0x07, 0x2f, 0xfb, 0x84,
0xde, 0x82, 0xd6, 0x40, 0xb4, 0x36, 0x5c, 0xc7, 0xea, 0x2c, 0x53, 0x39, 0x4a, 0x40, 0xd1, 0x15,
0x80, 0x40, 0x53, 0xe9, 0x7e, 0xa7, 0x4d, 0x4f, 0xb1, 0xc6, 0x21, 0x0f, 0x69, 0x1a, 0xc7, 0xf4,
0xfa, 0x2c, 0x61, 0x62, 0xda, 0xc3, 0xce, 0x0a, 0xa5, 0x58, 0x0f, 0x32, 0x2c, 0xa6, 0x3d, 0x44,
0x17, 0x61, 0xc9, 0xf4, 0xfa, 0x07, 0xfa, 0x11, 0xee, 0x20, 0xfa, 0xb5, 0x62, 0x7a, 0x1b, 0xfa,
0x11, 0x56, 0x7f, 0x08, 0x17, 0x42, 0xee, 0x8a, 0x9c, 0x64, 0x9a, 0x29, 0x94, 0x79, 0x99, 0x62,
0xba, 0x4f, 0xff, 0xcb, 0x12, 0xac, 0xee, 0xea, 0xc7, 0xf8, 0xe5, 0x87, 0x0f, 0xb9, 0xd4, 0xda,
0x26, 0xac, 0xd0, 0x88, 0xe1, 0x7e, 0x64, 0x3e, 0x53, 0xec, 0x6a, 0x94, 0x15, 0xd2, 0x1d, 0xd1,
0xb7, 0x88, 0x43, 0x80, 0x07, 0x47, 0x3b, 0x8e, 0x19, 0xda, 0xd4, 0x2b, 0x92, 0x71, 0x1e, 0x09,
0x2c, 0x2d, 0xda, 0x03, 0xed, 0xc0, 0x72, 0xfc, 0x18, 0x02, 0x6b, 0xfa, 0xf6, 0xd4, 0x20, 0x36,
0xdc, 0x7d, 0xad, 0x15, 0x3b, 0x0c, 0x0f, 0x75, 0x60, 0x89, 0x9b, 0x42, 0xaa, 0x33, 0xaa, 0x5a,
0xd0, 0x44, 0x3b, 0x70, 0x9e, 0xad, 0x60, 0x97, 0x0b, 0x04, 0x5b, 0x7c, 0x35, 0xd7, 0xe2, 0x65,
0x5d, 0xe3, 0xf2, 0x54, 0x3b, 0xab, 0x3c, 0x75, 0x60, 0x89, 0xf3, 0x38, 0xd5, 0x23, 0x55, 0x2d,
0x68, 0x92, 0x63, 0x0e, 0xb9, 0xbd, 0x4e, 0xbf, 0x85, 0x00, 0x12, 0x7a, 0x41, 0xb8, 0x9f, 0x33,
0xd2, 0x2d, 0x9f, 0x42, 0x55, 0x70, 0x78, 0x21, 0x37, 0x87, 0x8b, 0x3e, 0x49, 0xfd, 0x5e, 0x4c,
0xe8, 0x77, 0xf5, 0x9f, 0x14, 0x68, 0xac, 0x93, 0x25, 0x6d, 0x3a, 0x43, 0x6a, 0x8d, 0x6e, 0x42,
0xcb, 0xc5, 0x03, 0xc7, 0x35, 0xfa, 0xd8, 0xf6, 0x5d, 0x13, 0xb3, 0x28, 0xbd, 0xa4, 0x35, 0x19,
0xf4, 0x33, 0x06, 0x24, 0x68, 0x44, 0x65, 0x7b, 0xbe, 0x6e, 0x8d, 0xfb, 0x07, 0x44, 0x35, 0x14,
0x18, 0x9a, 0x80, 0x52, 0xcd, 0xf0, 0x06, 0x34, 0x42, 0x34, 0xdf, 0xa1, 0xf4, 0x4b, 0x5a, 0x5d,
0xc0, 0xf6, 0x1c, 0xf4, 0x26, 0xb4, 0xe8, 0x9e, 0xf6, 0x47, 0xce, 0xb0, 0x4f, 0x22, 0x5a, 0x6e,
0xa8, 0x1a, 0x06, 0x9f, 0x16, 0x39, 0xab, 0x38, 0x96, 0x67, 0xfe, 0x00, 0x73, 0x53, 0x25, 0xb0,
0x76, 0xcd, 0x1f, 0x60, 0xf5, 0x1f, 0x15, 0x68, 0xae, 0xeb, 0xbe, 0xbe, 0xed, 0x18, 0x78, 0x6f,
0x4e, 0xc3, 0x9e, 0x23, 0xf5, 0x79, 0x19, 0x6a, 0x62, 0x05, 0x7c, 0x49, 0x21, 0x00, 0x6d, 0x40,
0x2b, 0x70, 0x2d, 0xfb, 0x2c, 0xe2, 0x2a, 0x65, 0x3a, 0x50, 0x11, 0xcb, 0xe9, 0x69, 0xcd, 0xa0,
0x1b, 0x6d, 0xaa, 0x1b, 0xd0, 0x88, 0x7e, 0x26, 0x54, 0x77, 0x93, 0x8c, 0x22, 0x00, 0x84, 0x1b,
0xb7, 0x27, 0x16, 0x39, 0x53, 0xae, 0x58, 0x82, 0xa6, 0xfa, 0x23, 0x05, 0x9a, 0xdc, 0xdc, 0xef,
0x8a, 0x4b, 0x02, 0xba, 0x34, 0x85, 0x2e, 0x8d, 0xfe, 0x46, 0xbf, 0x16, 0xcf, 0xeb, 0xbd, 0x29,
0x55, 0x02, 0x74, 0x10, 0xea, 0x64, 0xc6, 0x6c, 0x7d, 0x9e, 0x18, 0xff, 0x4b, 0xc2, 0x68, 0xfc,
0x68, 0x28, 0xa3, 0x75, 0x60, 0x49, 0x37, 0x0c, 0x17, 0x7b, 0x1e, 0x9f, 0x47, 0xd0, 0x24, 0x5f,
0x8e, 0xb1, 0xeb, 0x05, 0x2c, 0x5f, 0xd4, 0x82, 0x26, 0xfa, 0x26, 0x54, 0x85, 0x57, 0xca, 0xd2,
0xe1, 0xd7, 0xb3, 0xe7, 0xc9, 0x23, 0x52, 0xd1, 0x43, 0xfd, 0xbb, 0x02, 0xb4, 0xf8, 0x86, 0xad,
0x71, 0x7b, 0x3c, 0x5d, 0xf8, 0xd6, 0xa0, 0x71, 0x10, 0xca, 0xfe, 0xb4, 0xdc, 0x53, 0x54, 0x45,
0xc4, 0xfa, 0xcc, 0x12, 0xc0, 0xb8, 0x47, 0x50, 0x5a, 0xc8, 0x23, 0x28, 0x9f, 0x55, 0x83, 0xa5,
0x7d, 0xc4, 0x8a, 0xc4, 0x47, 0x54, 0x7f, 0x13, 0xea, 0x91, 0x01, 0xa8, 0x86, 0x66, 0x49, 0x2b,
0xbe, 0x63, 0x41, 0x13, 0x7d, 0x18, 0xfa, 0x45, 0x6c, 0xab, 0x2e, 0x49, 0xe6, 0x92, 0x70, 0x89,
0xd4, 0x7f, 0x50, 0xa0, 0xc2, 0x47, 0xbe, 0x06, 0x75, 0xae, 0x74, 0xa8, 0xcf, 0xc8, 0x46, 0x07,
0x0e, 0x22, 0x4e, 0xe3, 0x8b, 0xd3, 0x3a, 0x97, 0xa0, 0x9a, 0xd0, 0x37, 0x4b, 0xdc, 0x2c, 0x04,
0x9f, 0x22, 0x4a, 0x86, 0x7c, 0x22, 0xfa, 0x05, 0x5d, 0x80, 0xf2, 0xc8, 0x19, 0x8a, 0x4b, 0x20,
0xd6, 0x50, 0xbf, 0x52, 0x68, 0xce, 0x5e, 0xc3, 0x03, 0xe7, 0x18, 0xbb, 0xa7, 0x8b, 0x27, 0x3b,
0x1f, 0x44, 0xd8, 0x3c, 0x67, 0xf0, 0x25, 0x3a, 0xa0, 0x07, 0xe1, 0x21, 0x14, 0x65, 0x99, 0x9e,
0xa8, 0xde, 0xe1, 0x4c, 0x1a, 0x1e, 0xc6, 0x1f, 0xb2, 0xb4, 0x6d, 0x7c, 0x29, 0xf3, 0x7a, 0x3b,
0x2f, 0x24, 0x90, 0x51, 0x7f, 0xa9, 0x40, 0x37, 0x4c, 0x25, 0x79, 0x6b, 0xa7, 0x8b, 0x5e, 0x8a,
0xbc, 0x98, 0xf8, 0xea, 0x57, 0x45, 0xd6, 0x9e, 0x08, 0x6d, 0xae, 0xc8, 0x28, 0xc8, 0xd9, 0xdb,
0x34, 0x2b, 0x9d, 0x5e, 0xd0, 0x22, 0x2c, 0xd3, 0x85, 0xaa, 0xc8, 0x67, 0xb0, 0xcc, 0xbd, 0x68,
0x13, 0x09, 0xbb, 0xf4, 0x18, 0xfb, 0x1b, 0xf1, 0x54, 0xc8, 0xab, 0xde, 0xc0, 0xe8, 0x6d, 0xc2,
0x21, 0xbf, 0x4d, 0x28, 0x25, 0x6e, 0x13, 0x38, 0x5c, 0xb5, 0x28, 0x0b, 0xa4, 0x16, 0xf0, 0xb2,
0x36, 0xec, 0x77, 0x14, 0xe8, 0x70, 0x2a, 0x94, 0x26, 0x09, 0x89, 0x46, 0xd8, 0xc7, 0xc6, 0xd7,
0x9d, 0x2a, 0xf8, 0x6f, 0x05, 0xda, 0x51, 0xab, 0x4b, 0x0d, 0xe7, 0x47, 0x50, 0xa6, 0x99, 0x16,
0x3e, 0x83, 0x99, 0xaa, 0x81, 0x61, 0x13, 0xb5, 0x4d, 0x5d, 0xed, 0x3d, 0xe1, 0x20, 0xf0, 0x66,
0x68, 0xfa, 0x8b, 0x67, 0x37, 0xfd, 0xdc, 0x15, 0x72, 0x26, 0x64, 0x5c, 0x96, 0xa2, 0x0c, 0x01,
0xe8, 0x13, 0xa8, 0xb0, 0x42, 0x0c, 0x7e, 0xc3, 0x76, 0x33, 0x3e, 0x34, 0x2f, 0xd2, 0x88, 0xe4,
0xfd, 0x29, 0x40, 0xe3, 0x9d, 0xd4, 0x5f, 0x87, 0xd5, 0x30, 0x1a, 0x65, 0x64, 0xe7, 0x65, 0x5a,
0xf5, 0x5f, 0x15, 0x38, 0xbf, 0x7b, 0x6a, 0x0f, 0x92, 0xec, 0xbf, 0x0a, 0x95, 0xf1, 0x48, 0x0f,
0x33, 0xa6, 0xbc, 0x45, 0xdd, 0x40, 0x46, 0x1b, 0x1b, 0xc4, 0x86, 0xb0, 0x3d, 0xab, 0x0b, 0xd8,
0x9e, 0x33, 0xd3, 0xb4, 0xdf, 0x14, 0xe1, 0x33, 0x36, 0x98, 0xb5, 0x62, 0x69, 0xa8, 0xa6, 0x80,
0x52, 0x6b, 0xf5, 0x09, 0x00, 0x35, 0xe8, 0xfd, 0xb3, 0x18, 0x71, 0xda, 0x63, 0x93, 0xa8, 0xec,
0x5f, 0x14, 0xa0, 0x13, 0xd9, 0xa5, 0xaf, 0xdb, 0xbf, 0xc9, 0x88, 0xca, 0x8a, 0x2f, 0x28, 0x2a,
0x2b, 0x2d, 0xee, 0xd3, 0x94, 0x65, 0x3e, 0xcd, 0xbf, 0x15, 0xa0, 0x15, 0xee, 0xda, 0xce, 0x48,
0xb7, 0x33, 0x39, 0x61, 0x57, 0xf8, 0xf3, 0xf1, 0x7d, 0x7a, 0x57, 0x26, 0x27, 0x19, 0x07, 0xa1,
0x25, 0x86, 0x40, 0x57, 0xe8, 0xa1, 0xbb, 0x3e, 0x4b, 0x7c, 0xf1, 0x18, 0x82, 0x09, 0xa4, 0x69,
0x61, 0x74, 0x07, 0x10, 0x97, 0xa2, 0xbe, 0x69, 0xf7, 0x3d, 0x3c, 0x70, 0x6c, 0x83, 0xc9, 0x57,
0x59, 0x6b, 0xf3, 0x2f, 0x3d, 0x7b, 0x97, 0xc1, 0xd1, 0x47, 0x50, 0xf2, 0x4f, 0xc7, 0xcc, 0x5b,
0x69, 0x49, 0xed, 0x7d, 0x38, 0xaf, 0xbd, 0xd3, 0x31, 0xd6, 0x28, 0x7a, 0x50, 0xa9, 0xe3, 0xbb,
0xfa, 0x31, 0x77, 0xfd, 0x4a, 0x5a, 0x04, 0x42, 0x34, 0x46, 0xb0, 0x87, 0x4b, 0xcc, 0x45, 0xe2,
0x4d, 0xc6, 0xd9, 0x81, 0xd0, 0xf6, 0x7d, 0x7f, 0x44, 0x53, 0x77, 0x94, 0xb3, 0x03, 0xe8, 0x9e,
0x3f, 0x52, 0xff, 0xa5, 0x00, 0xed, 0x90, 0xb2, 0x86, 0xbd, 0xc9, 0x28, 0x5b, 0xe0, 0xa6, 0xe7,
0x46, 0x66, 0xc9, 0xda, 0xb7, 0xa0, 0xce, 0x8f, 0xfd, 0x0c, 0x6c, 0x03, 0xac, 0xcb, 0xe6, 0x14,
0x3e, 0x2e, 0xbf, 0x20, 0x3e, 0xae, 0xcc, 0x91, 0x5d, 0x90, 0x6f, 0xbe, 0xfa, 0x53, 0x05, 0x5e,
0x4b, 0xa9, 0xc5, 0xa9, 0x5b, 0x3b, 0x3d, 0xb6, 0xe3, 0xea, 0x32, 0x39, 0x24, 0x57, 0xf0, 0x0f,
0xa0, 0xe2, 0xd2, 0xd1, 0xf9, 0x55, 0xd0, 0x8d, 0xa9, 0xdc, 0xc5, 0x26, 0xa2, 0xf1, 0x2e, 0xea,
0x1f, 0x29, 0x70, 0x31, 0x3d, 0xd5, 0x05, 0xac, 0xf6, 0x1a, 0x2c, 0xb1, 0xa1, 0x03, 0x21, 0xbc,
0x35, 0x5d, 0x08, 0xc3, 0xcd, 0xd1, 0x82, 0x8e, 0xea, 0x2e, 0xac, 0x06, 0xc6, 0x3d, 0xdc, 0xfa,
0x2d, 0xec, 0xeb, 0x53, 0x22, 0x9b, 0x6b, 0x50, 0x67, 0x2e, 0x32, 0x8b, 0x18, 0x58, 0x4e, 0x00,
0xf6, 0x45, 0x2a, 0x4d, 0xfd, 0x4f, 0x05, 0x2e, 0x50, 0xeb, 0x98, 0xbc, 0x7b, 0xc9, 0x73, 0x2f,
0xa7, 0x8a, 0x94, 0xc3, 0xb6, 0x6e, 0xf1, 0x3a, 0x90, 0x9a, 0x16, 0x83, 0xa1, 0x5e, 0x3a, 0xd3,
0x26, 0x8d, 0x80, 0xc3, 0x8b, 0x5c, 0x12, 0x6d, 0xd3, 0x7b, 0xdc, 0x64, 0x8a, 0x2d, 0xb4, 0xca,
0xa5, 0x79, 0xac, 0xf2, 0x26, 0xbc, 0x96, 0x58, 0xe9, 0x02, 0x27, 0xaa, 0xfe, 0x95, 0x42, 0x8e,
0x23, 0x56, 0x4f, 0x33, 0xbf, 0x67, 0x7a, 0x45, 0x5c, 0xfa, 0xf4, 0x4d, 0x23, 0xa9, 0x44, 0x0c,
0xf4, 0x29, 0xd4, 0x6c, 0x7c, 0xd2, 0x8f, 0x3a, 0x3b, 0x39, 0xdc, 0xf6, 0xaa, 0x8d, 0x4f, 0xe8,
0x2f, 0x75, 0x1b, 0x2e, 0xa6, 0xa6, 0xba, 0xc8, 0xda, 0xff, 0x5e, 0x81, 0x4b, 0xeb, 0xae, 0x33,
0xfe, 0xc2, 0x74, 0xfd, 0x89, 0x3e, 0x8a, 0x5f, 0x91, 0xbf, 0x9c, 0xd4, 0xd5, 0xe7, 0x11, 0xb7,
0x97, 0xf1, 0xcf, 0x1d, 0x89, 0x04, 0xa5, 0x27, 0xc5, 0x17, 0x1d, 0x71, 0x92, 0xff, 0xa3, 0x28,
0x9b, 0x3c, 0xc7, 0x9b, 0xe1, 0x78, 0xe4, 0x89, 0x20, 0xa4, 0x99, 0xee, 0xe2, 0xbc, 0x99, 0xee,
0x0c, 0xf5, 0x5e, 0x7a, 0x41, 0xea, 0xfd, 0xcc, 0xa9, 0x97, 0xcf, 0x21, 0x7e, 0x0b, 0x41, 0xcd,
0xef, 0x5c, 0xd7, 0x17, 0x6b, 0x00, 0x61, 0x46, 0x9e, 0x97, 0x43, 0xe6, 0x19, 0x26, 0xd2, 0x8b,
0x9c, 0x96, 0x30, 0xa5, 0xdc, 0x94, 0x47, 0x72, 0xc4, 0xdf, 0x81, 0xae, 0x8c, 0x4b, 0x17, 0xe1,
0xfc, 0x5f, 0x14, 0x00, 0x7a, 0xa2, 0x82, 0x76, 0x3e, 0x5b, 0x70, 0x03, 0x22, 0xee, 0x46, 0x28,
0xef, 0x51, 0x2e, 0x32, 0x88, 0x48, 0x88, 0xa0, 0x93, 0xe0, 0xa4, 0x02, 0x51, 0x83, 0x8e, 0x13,
0x91, 0x1a, 0xc6, 0x14, 0x49, 0xf5, 0xfb, 0x3a, 0xd4, 0x5c, 0xe7, 0xa4, 0x4f, 0xc4, 0xcc, 0x08,
0x4a, 0x84, 0x5d, 0xe7, 0x84, 0x08, 0x9f, 0x81, 0x2e, 0xc2, 0x92, 0xaf, 0x7b, 0x47, 0x64, 0xfc,
0x4a, 0xa4, 0x4a, 0xc3, 0x40, 0x17, 0xa0, 0x7c, 0x60, 0x8e, 0x30, 0x2b, 0x0a, 0xa8, 0x69, 0xac,
0x81, 0xbe, 0x11, 0xd4, 0xb2, 0x55, 0x73, 0x57, 0xe2, 0xb0, 0x72, 0xb6, 0xaf, 0x14, 0x58, 0x0e,
0x77, 0x8d, 0x2a, 0x20, 0xa2, 0xd3, 0xa8, 0x3e, 0x7b, 0xe4, 0x18, 0x4c, 0x55, 0xb4, 0x32, 0x2c,
0x02, 0xeb, 0xc8, 0xb4, 0x56, 0xd8, 0x65, 0x5a, 0x1c, 0x4c, 0xd6, 0x45, 0x16, 0x6d, 0x1a, 0x41,
0x65, 0x4a, 0xc5, 0x75, 0x4e, 0x7a, 0x86, 0xd8, 0x0d, 0x56, 0xff, 0xcb, 0xa2, 0x3e, 0xb2, 0x1b,
0x8f, 0x68, 0x09, 0xf0, 0x0d, 0x68, 0x62, 0xd7, 0x75, 0xdc, 0xbe, 0x85, 0x3d, 0x4f, 0x1f, 0x62,
0xee, 0x80, 0x37, 0x28, 0x70, 0x8b, 0xc1, 0xd4, 0x3f, 0x29, 0x41, 0x2b, 0x5c, 0x4a, 0x70, 0x0f,
0x6e, 0x1a, 0xc1, 0x3d, 0xb8, 0x49, 0x8e, 0x0e, 0x5c, 0xa6, 0x0a, 0xc5, 0xe1, 0xae, 0x15, 0x3a,
0x8a, 0x56, 0xe3, 0xd0, 0x9e, 0x41, 0xcc, 0x32, 0x11, 0x32, 0xdb, 0x31, 0x70, 0x78, 0xb8, 0x10,
0x80, 0xf8, 0xd9, 0xc6, 0x78, 0xa4, 0x94, 0x83, 0x47, 0xca, 0x39, 0x78, 0xa4, 0x22, 0xe1, 0x91,
0x55, 0xa8, 0xec, 0x4f, 0x06, 0x47, 0xd8, 0xe7, 0x1e, 0x1b, 0x6f, 0xc5, 0x79, 0xa7, 0x9a, 0xe0,
0x1d, 0xc1, 0x22, 0xb5, 0x28, 0x8b, 0xbc, 0x0e, 0x35, 0x76, 0x21, 0xdb, 0xf7, 0x3d, 0x7a, 0xbb,
0x54, 0xd4, 0xaa, 0x0c, 0xb0, 0xe7, 0xa1, 0x8f, 0x03, 0x77, 0xae, 0x2e, 0x13, 0x76, 0xaa, 0x75,
0x12, 0x5c, 0x12, 0x38, 0x73, 0x6f, 0xc3, 0x72, 0x64, 0x3b, 0xa8, 0x8d, 0x68, 0xd0, 0xa9, 0x46,
0xdc, 0x79, 0x6a, 0x26, 0x6e, 0x42, 0x2b, 0xdc, 0x12, 0x8a, 0xd7, 0x64, 0x51, 0x94, 0x80, 0x52,
0x34, 0xc1, 0xc9, 0xad, 0xb3, 0x71, 0x32, 0xba, 0x04, 0x55, 0x1e, 0xfe, 0x78, 0x9d, 0xe5, 0x58,
0x36, 0x42, 0xfd, 0x3e, 0xa0, 0x70, 0xf6, 0x8b, 0x79, 0x8b, 0x09, 0xf6, 0x28, 0x24, 0xd9, 0x43,
0xfd, 0x99, 0x02, 0x2b, 0x51, 0x62, 0xf3, 0x1a, 0xde, 0x4f, 0xa1, 0xce, 0xee, 0xf7, 0xfa, 0x44,
0xf0, 0x79, 0x96, 0xe7, 0xca, 0xd4, 0x73, 0xd1, 0x20, 0x7c, 0x41, 0x40, 0xd8, 0xeb, 0xc4, 0x71,
0x8f, 0x4c, 0x7b, 0xd8, 0x27, 0x33, 0x0b, 0xc4, 0xad, 0xc1, 0x81, 0xdb, 0x04, 0xa6, 0xfe, 0x58,
0x81, 0xab, 0x4f, 0xc6, 0x86, 0xee, 0xe3, 0x88, 0x07, 0xb2, 0x68, 0x51, 0xe2, 0x47, 0x41, 0x55,
0x60, 0x21, 0xdf, 0x1d, 0x15, 0xc3, 0x56, 0xff, 0x46, 0xcc, 0x85, 0x9b, 0x03, 0x7a, 0xa1, 0x39,
0xa6, 0x17, 0xc4, 0x73, 0xcf, 0xa5, 0x0b, 0xd5, 0x63, 0x3e, 0x5c, 0xf0, 0x22, 0x22, 0x68, 0xc7,
0xee, 0x41, 0x8b, 0x67, 0xbf, 0x07, 0x55, 0xb7, 0xe0, 0x92, 0x86, 0x3d, 0x6c, 0x1b, 0xb1, 0xd5,
0xcc, 0x9d, 0x4d, 0x1a, 0x43, 0x57, 0x36, 0xdc, 0x22, 0xcc, 0xca, 0x7c, 0xd7, 0xbe, 0x4b, 0x86,
0xf5, 0xb9, 0x2a, 0x26, 0x2e, 0x13, 0xa5, 0xe3, 0xab, 0x7f, 0x5d, 0x80, 0x8b, 0x0f, 0x0d, 0x83,
0x6b, 0x71, 0xee, 0x8d, 0xbd, 0x2c, 0x47, 0x39, 0xe9, 0x48, 0x16, 0xd3, 0x8e, 0xe4, 0x8b, 0xd2,
0xac, 0xdc, 0xc6, 0xd8, 0x13, 0x2b, 0xb0, 0x9d, 0x2e, 0x2b, 0x10, 0x7a, 0xc0, 0x2f, 0xc6, 0x48,
0x40, 0x4f, 0xed, 0xe7, 0x6c, 0xff, 0xaa, 0x1a, 0x64, 0xc5, 0xd4, 0x31, 0x74, 0xd2, 0x9b, 0xb5,
0xa0, 0x2a, 0x09, 0x76, 0x64, 0xec, 0xb0, 0x0c, 0x6a, 0x83, 0xb8, 0x50, 0x14, 0xb4, 0xe3, 0x78,
0xea, 0x7f, 0x15, 0xa0, 0xb3, 0xab, 0x1f, 0xe3, 0xff, 0x3f, 0x07, 0xf4, 0x5d, 0xb8, 0xe0, 0xe9,
0xc7, 0xb8, 0x1f, 0x09, 0x8c, 0xfb, 0x2e, 0x7e, 0xc6, 0x5d, 0xd0, 0x77, 0x64, 0x9a, 0x44, 0x5a,
0x47, 0xa3, 0xad, 0x78, 0x31, 0xb8, 0x86, 0x9f, 0xa1, 0xb7, 0x60, 0x39, 0x5a, 0xa8, 0x45, 0xa6,
0x56, 0xa5, 0x5b, 0xde, 0x8c, 0xd4, 0x61, 0xf5, 0x0c, 0xf5, 0x19, 0x5c, 0x7e, 0x62, 0x7b, 0xd8,
0xef, 0x85, 0xb5, 0x44, 0x0b, 0x86, 0x90, 0xd7, 0xa0, 0x1e, 0x6e, 0x7c, 0xea, 0x15, 0x84, 0xe1,
0xa9, 0x0e, 0x74, 0xb7, 0x74, 0xf7, 0x28, 0xc8, 0x23, 0xaf, 0xb3, 0x9a, 0x8f, 0x97, 0x48, 0xf0,
0x40, 0x94, 0x40, 0x69, 0xf8, 0x00, 0xbb, 0xd8, 0x1e, 0xe0, 0x4d, 0x67, 0x70, 0x14, 0x29, 0x0d,
0x56, 0xa2, 0xa5, 0xc1, 0xf3, 0x96, 0x1a, 0xab, 0x3f, 0x2f, 0xc0, 0xea, 0xc3, 0x91, 0x8f, 0xdd,
0x30, 0xf2, 0x3f, 0x4b, 0x12, 0x23, 0xcc, 0x2a, 0x14, 0xe6, 0xc8, 0x2a, 0xa4, 0xaa, 0xdc, 0x8b,
0xe9, 0x2a, 0x77, 0x59, 0x0e, 0xa4, 0x34, 0x67, 0x0e, 0xe4, 0x21, 0xc0, 0xd8, 0x75, 0xc6, 0xd8,
0xf5, 0x4d, 0x1c, 0x84, 0x6f, 0x39, 0xdc, 0x97, 0x48, 0xa7, 0xdb, 0x9f, 0x8a, 0x32, 0xce, 0xbd,
0xd3, 0x31, 0x46, 0x4b, 0x50, 0xdc, 0xc6, 0x27, 0xed, 0x73, 0x08, 0xa0, 0xb2, 0xed, 0xb8, 0x96,
0x3e, 0x6a, 0x2b, 0xa8, 0x0e, 0x4b, 0xfc, 0xd6, 0xaa, 0x5d, 0x40, 0x4d, 0xa8, 0x3d, 0x0a, 0x32,
0xff, 0xed, 0xe2, 0xed, 0x3f, 0x53, 0x60, 0x25, 0x75, 0xaf, 0x82, 0x5a, 0x00, 0x4f, 0xec, 0x01,
0xbf, 0x70, 0x6a, 0x9f, 0x43, 0x0d, 0xa8, 0x06, 0xd7, 0x4f, 0x6c, 0xbc, 0x3d, 0x87, 0x62, 0xb7,
0x0b, 0xa8, 0x0d, 0x0d, 0xd6, 0x71, 0x32, 0x18, 0x60, 0xcf, 0x6b, 0x17, 0x05, 0x64, 0x43, 0x37,
0x47, 0x13, 0x17, 0xb7, 0x4b, 0x84, 0xe6, 0x9e, 0xc3, 0x0b, 0xd9, 0xdb, 0x65, 0x84, 0xa0, 0x15,
0x54, 0xb5, 0xf3, 0x4e, 0x95, 0x08, 0x2c, 0xe8, 0xb6, 0x74, 0xfb, 0x69, 0x34, 0x3b, 0x4e, 0x97,
0x77, 0x11, 0xce, 0x3f, 0xb1, 0x0d, 0x7c, 0x60, 0xda, 0xd8, 0x08, 0x3f, 0xb5, 0xcf, 0xa1, 0xf3,
0xb0, 0xbc, 0x85, 0xdd, 0x21, 0x8e, 0x00, 0x0b, 0x68, 0x05, 0x9a, 0x5b, 0xe6, 0xf3, 0x08, 0xa8,
0xa8, 0x96, 0xaa, 0x4a, 0x5b, 0xb9, 0xff, 0xbb, 0x57, 0xa0, 0x46, 0x0e, 0xe5, 0x91, 0xe3, 0xb8,
0x06, 0x1a, 0x01, 0xa2, 0xef, 0x3e, 0xac, 0xb1, 0x63, 0x8b, 0xd7, 0x54, 0xe8, 0x6e, 0xfc, 0x1c,
0x78, 0x23, 0x8d, 0xc8, 0xb9, 0xb3, 0xfb, 0xa6, 0x14, 0x3f, 0x81, 0xac, 0x9e, 0x43, 0x16, 0xa5,
0xb6, 0x67, 0x5a, 0x78, 0xcf, 0x1c, 0x1c, 0x05, 0x9e, 0xc5, 0xfb, 0x19, 0x7e, 0x44, 0x1a, 0x35,
0xa0, 0x77, 0x43, 0x4a, 0x8f, 0x3d, 0xcc, 0x09, 0xac, 0x8c, 0x7a, 0x0e, 0x3d, 0x83, 0x0b, 0x8f,
0x71, 0xc4, 0x49, 0x0b, 0x08, 0xde, 0xcf, 0x26, 0x98, 0x42, 0x3e, 0x23, 0xc9, 0x4d, 0x28, 0x53,
0x76, 0x43, 0x32, 0x3f, 0x2e, 0xfa, 0xf0, 0xb9, 0x7b, 0x3d, 0x1b, 0x41, 0x8c, 0xf6, 0x7d, 0x58,
0x4e, 0x3c, 0x97, 0x44, 0x32, 0xad, 0x2e, 0x7f, 0xf8, 0xda, 0xbd, 0x9d, 0x07, 0x55, 0xd0, 0x1a,
0x42, 0x2b, 0xfe, 0x5e, 0x04, 0xc9, 0x32, 0xbb, 0xd2, 0x97, 0x6e, 0xdd, 0x77, 0x72, 0x60, 0x0a,
0x42, 0x16, 0xb4, 0x93, 0xcf, 0xf7, 0xd0, 0xed, 0xa9, 0x03, 0xc4, 0x99, 0xed, 0xdd, 0x5c, 0xb8,
0x82, 0xdc, 0x29, 0x65, 0x82, 0xd4, 0x8b, 0xb0, 0x24, 0x8f, 0x07, 0xc3, 0x64, 0x3d, 0x55, 0xeb,
0xde, 0xcb, 0x8d, 0x2f, 0x48, 0xff, 0x36, 0x2b, 0x4b, 0x91, 0xbd, 0xaa, 0x42, 0x1f, 0xc8, 0x87,
0x9b, 0xf2, 0x1c, 0xac, 0x7b, 0xff, 0x2c, 0x5d, 0xc4, 0x24, 0x7e, 0x48, 0xeb, 0x49, 0x24, 0xef,
0x92, 0x92, 0x72, 0x17, 0x8c, 0x97, 0xfd, 0xe4, 0xaa, 0xfb, 0xc1, 0x19, 0x7a, 0x88, 0x09, 0x38,
0xc9, 0xf7, 0x91, 0x81, 0x18, 0xde, 0x9b, 0xc9, 0x35, 0xf3, 0xc9, 0xe0, 0xf7, 0x60, 0x39, 0xe1,
0xe7, 0xa0, 0xfc, 0xbe, 0x50, 0x77, 0x9a, 0x33, 0xca, 0x44, 0x32, 0x51, 0x9e, 0x83, 0x32, 0xb8,
0x5f, 0x52, 0xc2, 0xd3, 0xbd, 0x9d, 0x07, 0x55, 0x2c, 0xc4, 0xa3, 0xea, 0x32, 0x51, 0x74, 0x81,
0xee, 0xc8, 0xc7, 0x90, 0x17, 0x97, 0x74, 0xdf, 0xcb, 0x89, 0x2d, 0x88, 0x1e, 0xc3, 0x79, 0x49,
0x6d, 0x0c, 0x7a, 0x6f, 0xea, 0x61, 0x25, 0x8b, 0x82, 0xba, 0x77, 0xf3, 0xa2, 0x0b, 0xba, 0xbf,
0x05, 0x68, 0xf7, 0xd0, 0x39, 0x79, 0xe4, 0xd8, 0x07, 0xe6, 0x70, 0xe2, 0xea, 0xcc, 0x4b, 0xc8,
0xb2, 0x0d, 0x69, 0xd4, 0x0c, 0x1e, 0x9d, 0xda, 0x43, 0x10, 0xef, 0x03, 0x3c, 0xc6, 0xfe, 0x16,
0xf6, 0x5d, 0x22, 0x18, 0x6f, 0x65, 0x99, 0x3f, 0x8e, 0x10, 0x90, 0x7a, 0x7b, 0x26, 0x5e, 0xc4,
0x14, 0xb5, 0xb7, 0x74, 0x7b, 0xa2, 0x8f, 0x22, 0xc5, 0xfd, 0x77, 0xa4, 0xdd, 0x93, 0x68, 0x19,
0x07, 0x99, 0x89, 0x2d, 0x48, 0x9e, 0x08, 0xd3, 0x1e, 0xb9, 0x8a, 0x9b, 0x6e, 0xda, 0xd3, 0x75,
0x1e, 0x49, 0xb5, 0x37, 0x05, 0x5f, 0x10, 0xfe, 0x52, 0xa1, 0xe5, 0x55, 0x09, 0x84, 0xa7, 0xa6,
0x7f, 0xb8, 0x33, 0xd2, 0x6d, 0x2f, 0xcf, 0x14, 0x28, 0xe2, 0x19, 0xa6, 0xc0, 0xf1, 0xc5, 0x14,
0x0c, 0x68, 0xc6, 0x6e, 0xc8, 0x90, 0xac, 0x1a, 0x5e, 0x76, 0x5b, 0xd8, 0xbd, 0x35, 0x1b, 0x51,
0x50, 0x39, 0x84, 0x66, 0x20, 0x4a, 0x6c, 0x73, 0xdf, 0xc9, 0x9a, 0x69, 0x88, 0x93, 0xa1, 0x09,
0xe4, 0xa8, 0x51, 0x4d, 0x90, 0xbe, 0x00, 0x40, 0xf9, 0x2e, 0x8e, 0xa6, 0x69, 0x82, 0xec, 0x5b,
0x05, 0xa6, 0xea, 0x12, 0x97, 0x6d, 0x72, 0x3d, 0x2a, 0xbd, 0x3b, 0x94, 0xaa, 0xba, 0x8c, 0xbb,
0x3b, 0xf5, 0x1c, 0x7a, 0x0a, 0x15, 0xfe, 0x6f, 0x1f, 0x6f, 0x4e, 0x4f, 0xda, 0xf1, 0xd1, 0x6f,
0xce, 0xc0, 0x12, 0x03, 0x1f, 0xc1, 0xc5, 0x8c, 0x94, 0x9d, 0xd4, 0x04, 0x4f, 0x4f, 0xef, 0xcd,
0x32, 0x0e, 0x82, 0x58, 0x2a, 0x27, 0x37, 0x85, 0x58, 0x56, 0xfe, 0x6e, 0x16, 0x31, 0x1d, 0x50,
0xfa, 0xfd, 0xae, 0x94, 0x27, 0x32, 0x9f, 0xf9, 0xe6, 0x20, 0x91, 0x7e, 0x82, 0x2b, 0x25, 0x91,
0xf9, 0x52, 0x77, 0x16, 0x89, 0x3e, 0xac, 0xa4, 0x92, 0x36, 0xe8, 0xdd, 0x0c, 0x73, 0x2d, 0x4b,
0xed, 0xcc, 0x22, 0x30, 0x84, 0xd7, 0xa4, 0x09, 0x0a, 0xa9, 0xfb, 0x31, 0x2d, 0x95, 0x31, 0x8b,
0xd0, 0x00, 0xce, 0x4b, 0xd2, 0x12, 0x52, 0xc3, 0x99, 0x9d, 0xbe, 0x98, 0x45, 0xe4, 0x00, 0xba,
0x6b, 0xae, 0xa3, 0x1b, 0x03, 0xdd, 0xf3, 0x69, 0xaa, 0x80, 0xc4, 0x82, 0x81, 0xff, 0x27, 0x0f,
0x0e, 0xa4, 0x09, 0x85, 0x59, 0x74, 0xf6, 0xa1, 0x4e, 0x19, 0x92, 0xfd, 0x9b, 0x04, 0x92, 0x5b,
0xba, 0x08, 0x46, 0x86, 0xfa, 0x94, 0x21, 0x06, 0xa2, 0x79, 0xff, 0xab, 0x1a, 0x54, 0x83, 0x07,
0x09, 0x5f, 0x73, 0x20, 0xfa, 0x0a, 0x22, 0xc3, 0xef, 0xc1, 0x72, 0xe2, 0x71, 0xb0, 0xf4, 0xb8,
0xe4, 0x0f, 0x88, 0x67, 0x1d, 0xd7, 0x53, 0xfe, 0xd7, 0x55, 0xc2, 0x49, 0x7c, 0x3b, 0x2b, 0xba,
0x4c, 0xfa, 0x87, 0x33, 0x06, 0xfe, 0xbf, 0xed, 0x95, 0x6d, 0x03, 0x44, 0xfc, 0xb1, 0xe9, 0x65,
0x7b, 0xc4, 0xc5, 0x98, 0xb5, 0x5b, 0x96, 0xd4, 0xe5, 0x7a, 0x27, 0x4f, 0x85, 0x54, 0xb6, 0xd1,
0xcc, 0x76, 0xb4, 0x9e, 0x40, 0x23, 0x5a, 0x50, 0x8b, 0xa4, 0x7f, 0x94, 0x94, 0xae, 0xb8, 0x9d,
0xb5, 0x8a, 0xad, 0x33, 0xda, 0xe2, 0x19, 0xc3, 0x79, 0xc4, 0x88, 0x24, 0x6f, 0x6a, 0x32, 0x8c,
0x48, 0xc6, 0xfd, 0x90, 0xd4, 0x77, 0xc9, 0xbe, 0xfe, 0x61, 0x49, 0x86, 0xe4, 0xf5, 0x83, 0x34,
0xc9, 0x90, 0x71, 0xa1, 0x23, 0x4d, 0x32, 0x64, 0xdd, 0x67, 0xa8, 0xe7, 0xd6, 0x3e, 0xfc, 0xee,
0x07, 0x43, 0xd3, 0x3f, 0x9c, 0xec, 0x93, 0xd5, 0xdf, 0x63, 0x5d, 0xdf, 0x33, 0x1d, 0xfe, 0xeb,
0x5e, 0xc0, 0xee, 0xf7, 0xe8, 0x68, 0xf7, 0xc8, 0x68, 0xe3, 0xfd, 0xfd, 0x0a, 0x6d, 0x7d, 0xf8,
0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd8, 0x75, 0x90, 0x7f, 0x7c, 0x4f, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@ -5209,7 +5284,7 @@ type DataCoordClient interface {
SaveImportSegment(ctx context.Context, in *SaveImportSegmentRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
UnsetIsImportingState(ctx context.Context, in *UnsetIsImportingStateRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
MarkSegmentsDropped(ctx context.Context, in *MarkSegmentsDroppedRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
BroadcastAlteredCollection(ctx context.Context, in *milvuspb.AlterCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
BroadcastAlteredCollection(ctx context.Context, in *AlterCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
CheckHealth(ctx context.Context, in *milvuspb.CheckHealthRequest, opts ...grpc.CallOption) (*milvuspb.CheckHealthResponse, error)
}
@ -5509,7 +5584,7 @@ func (c *dataCoordClient) MarkSegmentsDropped(ctx context.Context, in *MarkSegme
return out, nil
}
func (c *dataCoordClient) BroadcastAlteredCollection(ctx context.Context, in *milvuspb.AlterCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
func (c *dataCoordClient) BroadcastAlteredCollection(ctx context.Context, in *AlterCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
out := new(commonpb.Status)
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/BroadcastAlteredCollection", in, out, opts...)
if err != nil {
@ -5563,7 +5638,7 @@ type DataCoordServer interface {
SaveImportSegment(context.Context, *SaveImportSegmentRequest) (*commonpb.Status, error)
UnsetIsImportingState(context.Context, *UnsetIsImportingStateRequest) (*commonpb.Status, error)
MarkSegmentsDropped(context.Context, *MarkSegmentsDroppedRequest) (*commonpb.Status, error)
BroadcastAlteredCollection(context.Context, *milvuspb.AlterCollectionRequest) (*commonpb.Status, error)
BroadcastAlteredCollection(context.Context, *AlterCollectionRequest) (*commonpb.Status, error)
CheckHealth(context.Context, *milvuspb.CheckHealthRequest) (*milvuspb.CheckHealthResponse, error)
}
@ -5667,7 +5742,7 @@ func (*UnimplementedDataCoordServer) UnsetIsImportingState(ctx context.Context,
func (*UnimplementedDataCoordServer) MarkSegmentsDropped(ctx context.Context, req *MarkSegmentsDroppedRequest) (*commonpb.Status, error) {
return nil, status.Errorf(codes.Unimplemented, "method MarkSegmentsDropped not implemented")
}
func (*UnimplementedDataCoordServer) BroadcastAlteredCollection(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
func (*UnimplementedDataCoordServer) BroadcastAlteredCollection(ctx context.Context, req *AlterCollectionRequest) (*commonpb.Status, error) {
return nil, status.Errorf(codes.Unimplemented, "method BroadcastAlteredCollection not implemented")
}
func (*UnimplementedDataCoordServer) CheckHealth(ctx context.Context, req *milvuspb.CheckHealthRequest) (*milvuspb.CheckHealthResponse, error) {
@ -6255,7 +6330,7 @@ func _DataCoord_MarkSegmentsDropped_Handler(srv interface{}, ctx context.Context
}
func _DataCoord_BroadcastAlteredCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(milvuspb.AlterCollectionRequest)
in := new(AlterCollectionRequest)
if err := dec(in); err != nil {
return nil, err
}
@ -6267,7 +6342,7 @@ func _DataCoord_BroadcastAlteredCollection_Handler(srv interface{}, ctx context.
FullMethod: "/milvus.proto.data.DataCoord/BroadcastAlteredCollection",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DataCoordServer).BroadcastAlteredCollection(ctx, req.(*milvuspb.AlterCollectionRequest))
return srv.(DataCoordServer).BroadcastAlteredCollection(ctx, req.(*AlterCollectionRequest))
}
return interceptor(ctx, in, info, handler)
}

View File

@ -127,7 +127,7 @@ func (coord *DataCoordMock) MarkSegmentsDropped(ctx context.Context, req *datapb
panic("implement me")
}
func (coord *DataCoordMock) BroadcastAlteredCollection(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
func (coord *DataCoordMock) BroadcastAlteredCollection(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error) {
panic("implement me")
}

View File

@ -5,6 +5,9 @@ import (
"errors"
"fmt"
"github.com/milvus-io/milvus/internal/metastore/model"
"github.com/milvus-io/milvus/internal/util/typeutil"
"github.com/milvus-io/milvus-proto/go-api/milvuspb"
"github.com/milvus-io/milvus/internal/proto/indexpb"
@ -234,7 +237,30 @@ func (b *ServerBroker) GetSegmentIndexState(ctx context.Context, collID UniqueID
func (b *ServerBroker) BroadcastAlteredCollection(ctx context.Context, req *milvuspb.AlterCollectionRequest) error {
log.Info("broadcasting request to alter collection", zap.String("collection name", req.GetCollectionName()), zap.Int64("collection id", req.GetCollectionID()))
resp, err := b.s.dataCoord.BroadcastAlteredCollection(ctx, req)
colMeta, err := b.s.meta.GetCollectionByID(ctx, req.GetCollectionID(), typeutil.MaxTimestamp)
if err != nil {
return err
}
partitionIDs := make([]int64, len(colMeta.Partitions))
for _, p := range colMeta.Partitions {
partitionIDs = append(partitionIDs, p.PartitionID)
}
dcReq := &datapb.AlterCollectionRequest{
CollectionID: req.GetCollectionID(),
Schema: &schemapb.CollectionSchema{
Name: colMeta.Name,
Description: colMeta.Description,
AutoID: colMeta.AutoID,
Fields: model.MarshalFieldModels(colMeta.Fields),
},
PartitionIDs: partitionIDs,
StartPositions: colMeta.StartPositions,
Properties: req.GetProperties(),
}
resp, err := b.s.dataCoord.BroadcastAlteredCollection(ctx, dcReq)
if err != nil {
return err
}

View File

@ -2,8 +2,11 @@ package rootcoord
import (
"context"
"errors"
"testing"
"github.com/milvus-io/milvus/internal/metastore/model"
"github.com/milvus-io/milvus-proto/go-api/milvuspb"
"github.com/milvus-io/milvus/internal/proto/indexpb"
@ -280,8 +283,43 @@ func TestServerBroker_GetSegmentIndexState(t *testing.T) {
}
func TestServerBroker_BroadcastAlteredCollection(t *testing.T) {
collMeta := &model.Collection{
CollectionID: 1,
StartPositions: []*commonpb.KeyDataPair{
{
Key: "0",
Data: []byte("0"),
},
},
Partitions: []*model.Partition{
{
PartitionID: 2,
PartitionName: "test_partition_name_1",
PartitionCreatedTimestamp: 0,
},
},
}
t.Run("get meta fail", func(t *testing.T) {
c := newTestCore(withInvalidDataCoord())
c.meta = &mockMetaTable{
GetCollectionByIDFunc: func(ctx context.Context, collectionID UniqueID, ts Timestamp) (*model.Collection, error) {
return nil, errors.New("err")
},
}
b := newServerBroker(c)
ctx := context.Background()
err := b.BroadcastAlteredCollection(ctx, &milvuspb.AlterCollectionRequest{})
assert.Error(t, err)
})
t.Run("failed to execute", func(t *testing.T) {
c := newTestCore(withInvalidDataCoord())
c.meta = &mockMetaTable{
GetCollectionByIDFunc: func(ctx context.Context, collectionID UniqueID, ts Timestamp) (*model.Collection, error) {
return collMeta, nil
},
}
b := newServerBroker(c)
ctx := context.Background()
err := b.BroadcastAlteredCollection(ctx, &milvuspb.AlterCollectionRequest{})
@ -290,6 +328,11 @@ func TestServerBroker_BroadcastAlteredCollection(t *testing.T) {
t.Run("non success error code on execute", func(t *testing.T) {
c := newTestCore(withFailedDataCoord())
c.meta = &mockMetaTable{
GetCollectionByIDFunc: func(ctx context.Context, collectionID UniqueID, ts Timestamp) (*model.Collection, error) {
return collMeta, nil
},
}
b := newServerBroker(c)
ctx := context.Background()
err := b.BroadcastAlteredCollection(ctx, &milvuspb.AlterCollectionRequest{})
@ -298,9 +341,18 @@ func TestServerBroker_BroadcastAlteredCollection(t *testing.T) {
t.Run("success", func(t *testing.T) {
c := newTestCore(withValidDataCoord())
c.meta = &mockMetaTable{
GetCollectionByIDFunc: func(ctx context.Context, collectionID UniqueID, ts Timestamp) (*model.Collection, error) {
return collMeta, nil
},
}
b := newServerBroker(c)
ctx := context.Background()
err := b.BroadcastAlteredCollection(ctx, &milvuspb.AlterCollectionRequest{})
req := &milvuspb.AlterCollectionRequest{
CollectionID: 1,
}
err := b.BroadcastAlteredCollection(ctx, req)
assert.NoError(t, err)
})
}

View File

@ -162,7 +162,7 @@ type mockDataCoord struct {
FlushFunc func(ctx context.Context, req *datapb.FlushRequest) (*datapb.FlushResponse, error)
ImportFunc func(ctx context.Context, req *datapb.ImportTaskRequest) (*datapb.ImportTaskResponse, error)
UnsetIsImportingStateFunc func(ctx context.Context, req *datapb.UnsetIsImportingStateRequest) (*commonpb.Status, error)
broadCastAlteredCollectionFunc func(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error)
broadCastAlteredCollectionFunc func(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error)
}
func newMockDataCoord() *mockDataCoord {
@ -197,7 +197,7 @@ func (m *mockDataCoord) UnsetIsImportingState(ctx context.Context, req *datapb.U
return m.UnsetIsImportingStateFunc(ctx, req)
}
func (m *mockDataCoord) BroadcastAlteredCollection(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
func (m *mockDataCoord) BroadcastAlteredCollection(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error) {
return m.broadCastAlteredCollectionFunc(ctx, req)
}
@ -623,7 +623,7 @@ func withInvalidDataCoord() Opt {
dc.UnsetIsImportingStateFunc = func(ctx context.Context, req *datapb.UnsetIsImportingStateRequest) (*commonpb.Status, error) {
return nil, errors.New("error mock UnsetIsImportingState")
}
dc.broadCastAlteredCollectionFunc = func(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
dc.broadCastAlteredCollectionFunc = func(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error) {
return nil, errors.New("error mock broadCastAlteredCollection")
}
return withDataCoord(dc)
@ -664,7 +664,7 @@ func withFailedDataCoord() Opt {
Reason: "mock UnsetIsImportingState error",
}, nil
}
dc.broadCastAlteredCollectionFunc = func(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
dc.broadCastAlteredCollectionFunc = func(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error) {
return failStatus(commonpb.ErrorCode_UnexpectedError, "mock broadcast altered collection error"), nil
}
return withDataCoord(dc)
@ -702,7 +702,7 @@ func withValidDataCoord() Opt {
dc.UnsetIsImportingStateFunc = func(ctx context.Context, req *datapb.UnsetIsImportingStateRequest) (*commonpb.Status, error) {
return succStatus(), nil
}
dc.broadCastAlteredCollectionFunc = func(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error) {
dc.broadCastAlteredCollectionFunc = func(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error) {
return succStatus(), nil
}
return withDataCoord(dc)

View File

@ -327,7 +327,7 @@ type DataCoord interface {
// MarkSegmentsDropped marks the given segments as `dropped` state.
MarkSegmentsDropped(ctx context.Context, req *datapb.MarkSegmentsDroppedRequest) (*commonpb.Status, error)
BroadcastAlteredCollection(ctx context.Context, req *milvuspb.AlterCollectionRequest) (*commonpb.Status, error)
BroadcastAlteredCollection(ctx context.Context, req *datapb.AlterCollectionRequest) (*commonpb.Status, error)
CheckHealth(ctx context.Context, req *milvuspb.CheckHealthRequest) (*milvuspb.CheckHealthResponse, error)
}

View File

@ -169,7 +169,7 @@ func (m *GrpcDataCoordClient) MarkSegmentsDropped(context.Context, *datapb.MarkS
return &commonpb.Status{}, m.Err
}
func (m *GrpcDataCoordClient) BroadcastAlteredCollection(ctx context.Context, in *milvuspb.AlterCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
func (m *GrpcDataCoordClient) BroadcastAlteredCollection(ctx context.Context, in *datapb.AlterCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
return &commonpb.Status{}, m.Err
}