Add rpc to notify channel operation (#27172)

- Add NotifyChannelOperation
- Add CheckChannelOperationProgress

See also: #25309

Signed-off-by: yangxuan <xuan.yang@zilliz.com>
pull/27341/head
XuanYang-cn 2023-09-25 14:05:27 +08:00 committed by GitHub
parent e1da980ba3
commit 676024ff38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 726 additions and 313 deletions

View File

@ -295,6 +295,14 @@ func (c *mockDataNodeClient) FlushChannels(ctx context.Context, req *datapb.Flus
return &commonpb.Status{ErrorCode: commonpb.ErrorCode_Success}, nil
}
func (c *mockDataNodeClient) NotifyChannelOperation(ctx context.Context, req *datapb.ChannelOperationsRequest) (*commonpb.Status, error) {
return merr.Status(nil), nil
}
func (c *mockDataNodeClient) CheckChannelOperationProgress(ctx context.Context, req *datapb.ChannelWatchInfo) (*datapb.ChannelOperationProgressResponse, error) {
return &datapb.ChannelOperationProgressResponse{Status: merr.Status(nil)}, nil
}
func (c *mockDataNodeClient) Stop() error {
c.state = commonpb.StateCode_Abnormal
return nil

View File

@ -306,7 +306,8 @@ func (_c *MockAllocator_Start_Call) RunAndReturn(run func() error) *MockAllocato
func NewMockAllocator(t interface {
mock.TestingT
Cleanup(func())
}) *MockAllocator {
},
) *MockAllocator {
mock := &MockAllocator{}
mock.Mock.Test(t)

View File

@ -406,6 +406,18 @@ func (node *DataNode) SyncSegments(ctx context.Context, req *datapb.SyncSegments
return merr.Status(nil), nil
}
func (node *DataNode) NotifyChannelOperation(ctx context.Context, req *datapb.ChannelOperationsRequest) (*commonpb.Status, error) {
log.Warn("DataNode NotifyChannelOperation is unimplemented")
return merr.Status(merr.ErrServiceUnavailable), nil
}
func (node *DataNode) CheckChannelOperationProgress(ctx context.Context, req *datapb.ChannelWatchInfo) (*datapb.ChannelOperationProgressResponse, error) {
log.Warn("DataNode CheckChannelOperationProgress is unimplemented")
return &datapb.ChannelOperationProgressResponse{
Status: merr.Status(merr.ErrServiceUnavailable),
}, nil
}
// Import data files(json, numpy, etc.) on MinIO/S3 storage, read and parse them into sealed segments
func (node *DataNode) Import(ctx context.Context, req *datapb.ImportTaskRequest) (*commonpb.Status, error) {
logFields := []zap.Field{

View File

@ -841,3 +841,14 @@ func (s *DataNodeServicesSuite) TestFlushChannels() {
s.Assert().True(fgService.channel.getFlushTs() == flushTs)
}
func (s *DataNodeServicesSuite) TestRPCWatch() {
ctx := context.Background()
status, err := s.node.NotifyChannelOperation(ctx, nil)
s.NoError(err)
s.NotNil(status)
resp, err := s.node.CheckChannelOperationProgress(ctx, nil)
s.NoError(err)
s.NotNil(resp)
}

View File

@ -236,3 +236,15 @@ func (c *Client) FlushChannels(ctx context.Context, req *datapb.FlushChannelsReq
return client.FlushChannels(ctx, req)
})
}
func (c *Client) NotifyChannelOperation(ctx context.Context, req *datapb.ChannelOperationsRequest) (*commonpb.Status, error) {
return wrapGrpcCall(ctx, c, func(client datapb.DataNodeClient) (*commonpb.Status, error) {
return client.NotifyChannelOperation(ctx, req)
})
}
func (c *Client) CheckChannelOperationProgress(ctx context.Context, req *datapb.ChannelWatchInfo) (*datapb.ChannelOperationProgressResponse, error) {
return wrapGrpcCall(ctx, c, func(client datapb.DataNodeClient) (*datapb.ChannelOperationProgressResponse, error) {
return client.CheckChannelOperationProgress(ctx, req)
})
}

View File

@ -92,6 +92,12 @@ func Test_NewClient(t *testing.T) {
r11, err := client.GetCompactionState(ctx, nil)
retCheck(retNotNil, r11, err)
r12, err := client.NotifyChannelOperation(ctx, nil)
retCheck(retNotNil, r12, err)
r13, err := client.CheckChannelOperationProgress(ctx, nil)
retCheck(retNotNil, r13, err)
}
client.grpcClient = &mock.GRPCClientBase[datapb.DataNodeClient]{

View File

@ -401,3 +401,11 @@ func (s *Server) SyncSegments(ctx context.Context, request *datapb.SyncSegmentsR
func (s *Server) FlushChannels(ctx context.Context, req *datapb.FlushChannelsRequest) (*commonpb.Status, error) {
return s.datanode.FlushChannels(ctx, req)
}
func (s *Server) NotifyChannelOperation(ctx context.Context, req *datapb.ChannelOperationsRequest) (*commonpb.Status, error) {
return s.datanode.NotifyChannelOperation(ctx, req)
}
func (s *Server) CheckChannelOperationProgress(ctx context.Context, req *datapb.ChannelWatchInfo) (*datapb.ChannelOperationProgressResponse, error) {
return s.datanode.CheckChannelOperationProgress(ctx, req)
}

View File

@ -153,6 +153,14 @@ func (m *MockDataNode) FlushChannels(ctx context.Context, req *datapb.FlushChann
return m.status, m.err
}
func (m *MockDataNode) NotifyChannelOperation(ctx context.Context, req *datapb.ChannelOperationsRequest) (*commonpb.Status, error) {
return m.status, m.err
}
func (m *MockDataNode) CheckChannelOperationProgress(ctx context.Context, req *datapb.ChannelWatchInfo) (*datapb.ChannelOperationProgressResponse, error) {
return &datapb.ChannelOperationProgressResponse{}, m.err
}
// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
type mockDataCoord struct {
types.DataCoord
@ -330,6 +338,24 @@ func Test_NewServer(t *testing.T) {
assert.NotNil(t, resp)
})
t.Run("NotifyChannelOperation", func(t *testing.T) {
server.datanode = &MockDataNode{
status: &commonpb.Status{},
}
resp, err := server.NotifyChannelOperation(ctx, nil)
assert.NoError(t, err)
assert.NotNil(t, resp)
})
t.Run("CheckChannelOperationProgress", func(t *testing.T) {
server.datanode = &MockDataNode{
status: &commonpb.Status{},
}
resp, err := server.CheckChannelOperationProgress(ctx, nil)
assert.NoError(t, err)
assert.NotNil(t, resp)
})
err = server.Stop()
assert.NoError(t, err)
}

View File

@ -87,6 +87,61 @@ func (_c *MockDataNode_AddImportSegment_Call) RunAndReturn(run func(context.Cont
return _c
}
// CheckChannelOperationProgress provides a mock function with given fields: ctx, req
func (_m *MockDataNode) CheckChannelOperationProgress(ctx context.Context, req *datapb.ChannelWatchInfo) (*datapb.ChannelOperationProgressResponse, error) {
ret := _m.Called(ctx, req)
var r0 *datapb.ChannelOperationProgressResponse
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, *datapb.ChannelWatchInfo) (*datapb.ChannelOperationProgressResponse, error)); ok {
return rf(ctx, req)
}
if rf, ok := ret.Get(0).(func(context.Context, *datapb.ChannelWatchInfo) *datapb.ChannelOperationProgressResponse); ok {
r0 = rf(ctx, req)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*datapb.ChannelOperationProgressResponse)
}
}
if rf, ok := ret.Get(1).(func(context.Context, *datapb.ChannelWatchInfo) error); ok {
r1 = rf(ctx, req)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// MockDataNode_CheckChannelOperationProgress_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CheckChannelOperationProgress'
type MockDataNode_CheckChannelOperationProgress_Call struct {
*mock.Call
}
// CheckChannelOperationProgress is a helper method to define mock.On call
// - ctx context.Context
// - req *datapb.ChannelWatchInfo
func (_e *MockDataNode_Expecter) CheckChannelOperationProgress(ctx interface{}, req interface{}) *MockDataNode_CheckChannelOperationProgress_Call {
return &MockDataNode_CheckChannelOperationProgress_Call{Call: _e.mock.On("CheckChannelOperationProgress", ctx, req)}
}
func (_c *MockDataNode_CheckChannelOperationProgress_Call) Run(run func(ctx context.Context, req *datapb.ChannelWatchInfo)) *MockDataNode_CheckChannelOperationProgress_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(*datapb.ChannelWatchInfo))
})
return _c
}
func (_c *MockDataNode_CheckChannelOperationProgress_Call) Return(_a0 *datapb.ChannelOperationProgressResponse, _a1 error) *MockDataNode_CheckChannelOperationProgress_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *MockDataNode_CheckChannelOperationProgress_Call) RunAndReturn(run func(context.Context, *datapb.ChannelWatchInfo) (*datapb.ChannelOperationProgressResponse, error)) *MockDataNode_CheckChannelOperationProgress_Call {
_c.Call.Return(run)
return _c
}
// Compaction provides a mock function with given fields: ctx, req
func (_m *MockDataNode) Compaction(ctx context.Context, req *datapb.CompactionPlan) (*commonpb.Status, error) {
ret := _m.Called(ctx, req)
@ -648,6 +703,61 @@ func (_c *MockDataNode_Init_Call) RunAndReturn(run func() error) *MockDataNode_I
return _c
}
// NotifyChannelOperation provides a mock function with given fields: ctx, req
func (_m *MockDataNode) NotifyChannelOperation(ctx context.Context, req *datapb.ChannelOperationsRequest) (*commonpb.Status, error) {
ret := _m.Called(ctx, req)
var r0 *commonpb.Status
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, *datapb.ChannelOperationsRequest) (*commonpb.Status, error)); ok {
return rf(ctx, req)
}
if rf, ok := ret.Get(0).(func(context.Context, *datapb.ChannelOperationsRequest) *commonpb.Status); ok {
r0 = rf(ctx, req)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*commonpb.Status)
}
}
if rf, ok := ret.Get(1).(func(context.Context, *datapb.ChannelOperationsRequest) error); ok {
r1 = rf(ctx, req)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// MockDataNode_NotifyChannelOperation_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'NotifyChannelOperation'
type MockDataNode_NotifyChannelOperation_Call struct {
*mock.Call
}
// NotifyChannelOperation is a helper method to define mock.On call
// - ctx context.Context
// - req *datapb.ChannelOperationsRequest
func (_e *MockDataNode_Expecter) NotifyChannelOperation(ctx interface{}, req interface{}) *MockDataNode_NotifyChannelOperation_Call {
return &MockDataNode_NotifyChannelOperation_Call{Call: _e.mock.On("NotifyChannelOperation", ctx, req)}
}
func (_c *MockDataNode_NotifyChannelOperation_Call) Run(run func(ctx context.Context, req *datapb.ChannelOperationsRequest)) *MockDataNode_NotifyChannelOperation_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(*datapb.ChannelOperationsRequest))
})
return _c
}
func (_c *MockDataNode_NotifyChannelOperation_Call) Return(_a0 *commonpb.Status, _a1 error) *MockDataNode_NotifyChannelOperation_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *MockDataNode_NotifyChannelOperation_Call) RunAndReturn(run func(context.Context, *datapb.ChannelOperationsRequest) (*commonpb.Status, error)) *MockDataNode_NotifyChannelOperation_Call {
_c.Call.Return(run)
return _c
}
// Register provides a mock function with given fields:
func (_m *MockDataNode) Register() error {
ret := _m.Called()

View File

@ -83,7 +83,7 @@ service DataCoord {
rpc GetIndexBuildProgress(index.GetIndexBuildProgressRequest) returns (index.GetIndexBuildProgressResponse) {}
rpc GcConfirm(GcConfirmRequest) returns (GcConfirmResponse) {}
rpc ReportDataNodeTtMsgs(ReportDataNodeTtMsgsRequest) returns (common.Status) {}
}
@ -110,6 +110,8 @@ service DataNode {
rpc AddImportSegment(AddImportSegmentRequest) returns(AddImportSegmentResponse) {}
rpc FlushChannels(FlushChannelsRequest) returns(common.Status) {}
rpc NotifyChannelOperation(ChannelOperationsRequest) returns(common.Status) {}
rpc CheckChannelOperationProgress(ChannelWatchInfo) returns(ChannelOperationProgressResponse) {}
}
message FlushRequest {
@ -438,8 +440,9 @@ message ChannelWatchInfo {
int64 timeoutTs = 4;
// the schema of the collection to watch, to avoid get schema rpc issues.
schema.CollectionSchema schema = 5;
// watch progress
// watch progress, deprecated
int32 progress = 6;
int64 opID = 7;
}
enum CompactionType {
@ -512,7 +515,7 @@ message WatchChannelsRequest {
int64 collectionID = 1;
repeated string channelNames = 2;
repeated common.KeyDataPair start_positions = 3;
schema.CollectionSchema schema = 4;
schema.CollectionSchema schema = 4;
uint64 create_timestamp = 5;
}
@ -694,3 +697,14 @@ message GetFlushStateRequest {
string collection_name = 4;
int64 collectionID = 5;
}
message ChannelOperationsRequest {
repeated ChannelWatchInfo infos = 1;
}
message ChannelOperationProgressResponse {
common.Status status = 1;
int64 opID = 2;
ChannelWatchState state = 3;
int32 progress = 4;
}

View File

@ -2844,8 +2844,9 @@ type ChannelWatchInfo struct {
TimeoutTs int64 `protobuf:"varint,4,opt,name=timeoutTs,proto3" json:"timeoutTs,omitempty"`
// the schema of the collection to watch, to avoid get schema rpc issues.
Schema *schemapb.CollectionSchema `protobuf:"bytes,5,opt,name=schema,proto3" json:"schema,omitempty"`
// watch progress
// watch progress, deprecated
Progress int32 `protobuf:"varint,6,opt,name=progress,proto3" json:"progress,omitempty"`
OpID int64 `protobuf:"varint,7,opt,name=opID,proto3" json:"opID,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -2918,6 +2919,13 @@ func (m *ChannelWatchInfo) GetProgress() int32 {
return 0
}
func (m *ChannelWatchInfo) GetOpID() int64 {
if m != nil {
return m.OpID
}
return 0
}
type CompactionStateRequest struct {
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
@ -5117,6 +5125,108 @@ func (m *GetFlushStateRequest) GetCollectionID() int64 {
return 0
}
type ChannelOperationsRequest struct {
Infos []*ChannelWatchInfo `protobuf:"bytes,1,rep,name=infos,proto3" json:"infos,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ChannelOperationsRequest) Reset() { *m = ChannelOperationsRequest{} }
func (m *ChannelOperationsRequest) String() string { return proto.CompactTextString(m) }
func (*ChannelOperationsRequest) ProtoMessage() {}
func (*ChannelOperationsRequest) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{79}
}
func (m *ChannelOperationsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ChannelOperationsRequest.Unmarshal(m, b)
}
func (m *ChannelOperationsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ChannelOperationsRequest.Marshal(b, m, deterministic)
}
func (m *ChannelOperationsRequest) XXX_Merge(src proto.Message) {
xxx_messageInfo_ChannelOperationsRequest.Merge(m, src)
}
func (m *ChannelOperationsRequest) XXX_Size() int {
return xxx_messageInfo_ChannelOperationsRequest.Size(m)
}
func (m *ChannelOperationsRequest) XXX_DiscardUnknown() {
xxx_messageInfo_ChannelOperationsRequest.DiscardUnknown(m)
}
var xxx_messageInfo_ChannelOperationsRequest proto.InternalMessageInfo
func (m *ChannelOperationsRequest) GetInfos() []*ChannelWatchInfo {
if m != nil {
return m.Infos
}
return nil
}
type ChannelOperationProgressResponse struct {
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
OpID int64 `protobuf:"varint,2,opt,name=opID,proto3" json:"opID,omitempty"`
State ChannelWatchState `protobuf:"varint,3,opt,name=state,proto3,enum=milvus.proto.data.ChannelWatchState" json:"state,omitempty"`
Progress int32 `protobuf:"varint,4,opt,name=progress,proto3" json:"progress,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *ChannelOperationProgressResponse) Reset() { *m = ChannelOperationProgressResponse{} }
func (m *ChannelOperationProgressResponse) String() string { return proto.CompactTextString(m) }
func (*ChannelOperationProgressResponse) ProtoMessage() {}
func (*ChannelOperationProgressResponse) Descriptor() ([]byte, []int) {
return fileDescriptor_82cd95f524594f49, []int{80}
}
func (m *ChannelOperationProgressResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ChannelOperationProgressResponse.Unmarshal(m, b)
}
func (m *ChannelOperationProgressResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_ChannelOperationProgressResponse.Marshal(b, m, deterministic)
}
func (m *ChannelOperationProgressResponse) XXX_Merge(src proto.Message) {
xxx_messageInfo_ChannelOperationProgressResponse.Merge(m, src)
}
func (m *ChannelOperationProgressResponse) XXX_Size() int {
return xxx_messageInfo_ChannelOperationProgressResponse.Size(m)
}
func (m *ChannelOperationProgressResponse) XXX_DiscardUnknown() {
xxx_messageInfo_ChannelOperationProgressResponse.DiscardUnknown(m)
}
var xxx_messageInfo_ChannelOperationProgressResponse proto.InternalMessageInfo
func (m *ChannelOperationProgressResponse) GetStatus() *commonpb.Status {
if m != nil {
return m.Status
}
return nil
}
func (m *ChannelOperationProgressResponse) GetOpID() int64 {
if m != nil {
return m.OpID
}
return 0
}
func (m *ChannelOperationProgressResponse) GetState() ChannelWatchState {
if m != nil {
return m.State
}
return ChannelWatchState_Uncomplete
}
func (m *ChannelOperationProgressResponse) GetProgress() int32 {
if m != nil {
return m.Progress
}
return 0
}
func init() {
proto.RegisterEnum("milvus.proto.data.SegmentType", SegmentType_name, SegmentType_value)
proto.RegisterEnum("milvus.proto.data.ChannelWatchState", ChannelWatchState_name, ChannelWatchState_value)
@ -5201,319 +5311,328 @@ func init() {
proto.RegisterType((*GcConfirmResponse)(nil), "milvus.proto.data.GcConfirmResponse")
proto.RegisterType((*ReportDataNodeTtMsgsRequest)(nil), "milvus.proto.data.ReportDataNodeTtMsgsRequest")
proto.RegisterType((*GetFlushStateRequest)(nil), "milvus.proto.data.GetFlushStateRequest")
proto.RegisterType((*ChannelOperationsRequest)(nil), "milvus.proto.data.ChannelOperationsRequest")
proto.RegisterType((*ChannelOperationProgressResponse)(nil), "milvus.proto.data.ChannelOperationProgressResponse")
}
func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) }
var fileDescriptor_82cd95f524594f49 = []byte{
// 4911 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x3c, 0x4b, 0x6f, 0x1c, 0x47,
0x7a, 0xea, 0x79, 0x71, 0xe6, 0x1b, 0x72, 0x38, 0x2c, 0xc9, 0xd4, 0x68, 0x64, 0x3d, 0xdc, 0x92,
0x6c, 0x5a, 0xb6, 0x29, 0x9b, 0xca, 0x62, 0xbd, 0xf6, 0xda, 0xbb, 0x22, 0x69, 0xc9, 0x93, 0x88,
0x5a, 0x6e, 0x93, 0x92, 0x03, 0x6f, 0x80, 0x41, 0x73, 0xba, 0x38, 0xec, 0x65, 0x4f, 0xf7, 0xb8,
0xbb, 0x87, 0x14, 0x1d, 0x20, 0xeb, 0x4d, 0x36, 0x01, 0xf2, 0x40, 0x12, 0xe4, 0x01, 0x24, 0xb7,
0x24, 0x87, 0x60, 0x93, 0x60, 0x4f, 0x49, 0xb0, 0x40, 0x10, 0x64, 0xaf, 0x1b, 0xe4, 0x10, 0x04,
0x01, 0x82, 0xe4, 0x90, 0x1f, 0x90, 0x73, 0xfe, 0x40, 0x50, 0x8f, 0xae, 0x7e, 0x55, 0xf7, 0x34,
0x39, 0x92, 0x05, 0x64, 0x6f, 0x53, 0xd5, 0x5f, 0x55, 0x7d, 0xf5, 0xd5, 0xf7, 0xfe, 0xaa, 0x06,
0xda, 0x86, 0xee, 0xeb, 0xfd, 0x81, 0xe3, 0xb8, 0xc6, 0xea, 0xd8, 0x75, 0x7c, 0x07, 0x2d, 0x8d,
0x4c, 0xeb, 0x68, 0xe2, 0xb1, 0xd6, 0x2a, 0xf9, 0xdc, 0x9d, 0x1f, 0x38, 0xa3, 0x91, 0x63, 0xb3,
0xae, 0x6e, 0xcb, 0xb4, 0x7d, 0xec, 0xda, 0xba, 0xc5, 0xdb, 0xf3, 0xd1, 0x01, 0xdd, 0x79, 0x6f,
0x70, 0x80, 0x47, 0x3a, 0x6f, 0x35, 0x46, 0xde, 0x90, 0xff, 0x5c, 0x32, 0x6d, 0x03, 0x3f, 0x8d,
0x2e, 0xa5, 0xce, 0x41, 0xf5, 0xa3, 0xd1, 0xd8, 0x3f, 0x51, 0xff, 0x4e, 0x81, 0xf9, 0xfb, 0xd6,
0xc4, 0x3b, 0xd0, 0xf0, 0x67, 0x13, 0xec, 0xf9, 0xe8, 0x6d, 0xa8, 0xec, 0xe9, 0x1e, 0xee, 0x28,
0xd7, 0x95, 0x95, 0xe6, 0xda, 0xcb, 0xab, 0x31, 0x9c, 0x38, 0x36, 0x5b, 0xde, 0x70, 0x5d, 0xf7,
0xb0, 0x46, 0x21, 0x11, 0x82, 0x8a, 0xb1, 0xd7, 0xdb, 0xec, 0x94, 0xae, 0x2b, 0x2b, 0x65, 0x8d,
0xfe, 0x46, 0x57, 0x01, 0x3c, 0x3c, 0x1c, 0x61, 0xdb, 0xef, 0x6d, 0x7a, 0x9d, 0xf2, 0xf5, 0xf2,
0x4a, 0x59, 0x8b, 0xf4, 0x20, 0x15, 0xe6, 0x07, 0x8e, 0x65, 0xe1, 0x81, 0x6f, 0x3a, 0x76, 0x6f,
0xb3, 0x53, 0xa1, 0x63, 0x63, 0x7d, 0xa8, 0x0b, 0x75, 0xd3, 0xeb, 0x8d, 0xc6, 0x8e, 0xeb, 0x77,
0xaa, 0xd7, 0x95, 0x95, 0xba, 0x26, 0xda, 0xea, 0xf7, 0x4b, 0xb0, 0xc0, 0xd1, 0xf6, 0xc6, 0x8e,
0xed, 0x61, 0x74, 0x17, 0x6a, 0x9e, 0xaf, 0xfb, 0x13, 0x8f, 0x63, 0x7e, 0x59, 0x8a, 0xf9, 0x0e,
0x05, 0xd1, 0x38, 0xa8, 0x14, 0xf5, 0x24, 0x6a, 0x65, 0x09, 0x6a, 0xf1, 0xed, 0x55, 0x52, 0xdb,
0x5b, 0x81, 0xc5, 0x7d, 0x82, 0xdd, 0x4e, 0x08, 0x54, 0xa5, 0x40, 0xc9, 0x6e, 0x32, 0x93, 0x6f,
0x8e, 0xf0, 0xb7, 0xf6, 0x77, 0xb0, 0x6e, 0x75, 0x6a, 0x74, 0xad, 0x48, 0x0f, 0xba, 0x04, 0x75,
0x3a, 0xa4, 0xef, 0x7b, 0x9d, 0xb9, 0xeb, 0xca, 0x4a, 0x45, 0x9b, 0xa3, 0xed, 0x5d, 0x4f, 0xfd,
0x1e, 0x5c, 0xa0, 0x24, 0xd8, 0x38, 0xd0, 0x6d, 0x1b, 0x5b, 0xde, 0xd9, 0x4f, 0x30, 0xba, 0x48,
0x29, 0xb6, 0x08, 0x39, 0x84, 0x01, 0x9f, 0x9f, 0x1e, 0x63, 0x43, 0x13, 0x6d, 0xf5, 0xdf, 0x14,
0x68, 0x8b, 0xad, 0x04, 0xab, 0x5f, 0x80, 0xea, 0xc0, 0x99, 0xd8, 0x3e, 0x5d, 0x7e, 0x41, 0x63,
0x0d, 0xf4, 0x0a, 0xcc, 0xf3, 0x61, 0x7d, 0x5b, 0x1f, 0x61, 0xba, 0x4a, 0x43, 0x6b, 0xf2, 0xbe,
0x47, 0xfa, 0x08, 0x17, 0xa2, 0xfb, 0x75, 0x68, 0x8e, 0x75, 0xd7, 0x37, 0x63, 0x5c, 0x13, 0xed,
0xca, 0x63, 0x1a, 0xb2, 0x82, 0x49, 0x7f, 0xed, 0xea, 0xde, 0x61, 0x6f, 0x93, 0x53, 0x3b, 0xd6,
0xa7, 0xfe, 0x99, 0x02, 0xcb, 0xf7, 0x3c, 0xcf, 0x1c, 0xda, 0xa9, 0x9d, 0x2d, 0x43, 0xcd, 0x76,
0x0c, 0xdc, 0xdb, 0xa4, 0x5b, 0x2b, 0x6b, 0xbc, 0x85, 0x2e, 0x43, 0x63, 0x8c, 0xb1, 0xdb, 0x77,
0x1d, 0x2b, 0xd8, 0x58, 0x9d, 0x74, 0x68, 0x8e, 0x85, 0xd1, 0xb7, 0x61, 0xc9, 0x4b, 0x4c, 0xc4,
0x08, 0xd9, 0x5c, 0xbb, 0xb1, 0x9a, 0x92, 0xf7, 0xd5, 0xe4, 0xa2, 0x5a, 0x7a, 0xb4, 0xfa, 0x45,
0x09, 0xce, 0x0b, 0x38, 0x86, 0x2b, 0xf9, 0x4d, 0x28, 0xef, 0xe1, 0xa1, 0x40, 0x8f, 0x35, 0x8a,
0x50, 0x5e, 0x1c, 0x59, 0x39, 0x7a, 0x64, 0x45, 0x44, 0x34, 0x71, 0x1e, 0xd5, 0xf4, 0x79, 0x5c,
0x83, 0x26, 0x7e, 0x3a, 0x36, 0x5d, 0xdc, 0x27, 0x4c, 0x4d, 0x49, 0x5e, 0xd1, 0x80, 0x75, 0xed,
0x9a, 0xa3, 0xa8, 0xdc, 0xce, 0x15, 0x96, 0x5b, 0xf5, 0x2f, 0x14, 0xb8, 0x98, 0x3a, 0x25, 0xae,
0x08, 0x34, 0x68, 0xd3, 0x9d, 0x87, 0x94, 0x21, 0x2a, 0x81, 0x10, 0xfc, 0xd5, 0x3c, 0x82, 0x87,
0xe0, 0x5a, 0x6a, 0x7c, 0x04, 0xc9, 0x52, 0x71, 0x24, 0x0f, 0xe1, 0xe2, 0x03, 0xec, 0xf3, 0x05,
0xc8, 0x37, 0x3c, 0x83, 0x88, 0xc6, 0x35, 0x4e, 0x29, 0xa9, 0x71, 0xd4, 0xbf, 0x2c, 0x09, 0x59,
0xa4, 0x4b, 0xf5, 0xec, 0x7d, 0x07, 0xbd, 0x0c, 0x0d, 0x01, 0xc2, 0xb9, 0x22, 0xec, 0x40, 0x5f,
0x85, 0x2a, 0xc1, 0x94, 0xb1, 0x44, 0x6b, 0xed, 0x15, 0xf9, 0x9e, 0x22, 0x73, 0x6a, 0x0c, 0x1e,
0x6d, 0x42, 0xcb, 0xf3, 0x75, 0xd7, 0xef, 0x8f, 0x1d, 0x8f, 0x9e, 0x33, 0x65, 0x9c, 0xe6, 0xda,
0x95, 0xf8, 0x0c, 0xc4, 0x00, 0x6d, 0x79, 0xc3, 0x6d, 0x0e, 0xa4, 0x2d, 0xd0, 0x41, 0x41, 0x13,
0x7d, 0x13, 0xe6, 0xb1, 0x6d, 0x84, 0x73, 0x54, 0x8a, 0xcc, 0xd1, 0xc4, 0xb6, 0x21, 0x66, 0x08,
0x4f, 0xa5, 0x5a, 0xfc, 0x54, 0x7e, 0x47, 0x81, 0x4e, 0xfa, 0x58, 0x66, 0x31, 0x22, 0xef, 0xb3,
0x41, 0x98, 0x1d, 0x4b, 0xae, 0x5c, 0x8b, 0xa3, 0xd1, 0xf8, 0x10, 0xf5, 0x8f, 0x15, 0x78, 0x29,
0x44, 0x87, 0x7e, 0x7a, 0x5e, 0x3c, 0x82, 0x6e, 0x43, 0xdb, 0xb4, 0x07, 0xd6, 0xc4, 0xc0, 0x8f,
0xed, 0x8f, 0xb1, 0x6e, 0xf9, 0x07, 0x27, 0xf4, 0xe4, 0xea, 0x5a, 0xaa, 0x5f, 0xfd, 0xaf, 0x12,
0x2c, 0x27, 0xf1, 0x9a, 0x85, 0x48, 0x3f, 0x07, 0x55, 0xd3, 0xde, 0x77, 0x02, 0x1a, 0x5d, 0xcd,
0x11, 0x45, 0xb2, 0x16, 0x03, 0x46, 0x0e, 0xa0, 0x40, 0x79, 0x0d, 0x0e, 0xf0, 0xe0, 0x70, 0xec,
0x98, 0x54, 0x4d, 0x91, 0x29, 0xbe, 0x29, 0x99, 0x42, 0x8e, 0xf1, 0x2a, 0xb7, 0x90, 0x1b, 0x62,
0x8a, 0x8f, 0x6c, 0xdf, 0x3d, 0xd1, 0x96, 0x06, 0xc9, 0xfe, 0xee, 0x00, 0x96, 0xe5, 0xc0, 0xa8,
0x0d, 0xe5, 0x43, 0x7c, 0x42, 0xb7, 0xdc, 0xd0, 0xc8, 0x4f, 0x74, 0x17, 0xaa, 0x47, 0xba, 0x35,
0xc1, 0x5c, 0x27, 0x4c, 0xe1, 0x5c, 0x06, 0xfb, 0x5e, 0xe9, 0x5d, 0x45, 0x1d, 0xc1, 0xe5, 0x07,
0xd8, 0xef, 0xd9, 0x1e, 0x76, 0xfd, 0x75, 0xd3, 0xb6, 0x9c, 0xe1, 0xb6, 0xee, 0x1f, 0xcc, 0xa0,
0x1c, 0x62, 0x72, 0x5e, 0x4a, 0xc8, 0xb9, 0xfa, 0x43, 0x05, 0x5e, 0x96, 0xaf, 0xc7, 0x0f, 0xb4,
0x0b, 0xf5, 0x7d, 0x13, 0x5b, 0x06, 0xe1, 0x1a, 0x85, 0x72, 0x8d, 0x68, 0x13, 0x25, 0x31, 0x26,
0xc0, 0xfc, 0xdc, 0x12, 0x4a, 0x42, 0xf8, 0xa3, 0x3b, 0xbe, 0x6b, 0xda, 0xc3, 0x87, 0xa6, 0xe7,
0x6b, 0x0c, 0x3e, 0xc2, 0x25, 0xe5, 0xe2, 0xc2, 0xf9, 0x5b, 0x0a, 0x5c, 0x7d, 0x80, 0xfd, 0x0d,
0x61, 0x63, 0xc8, 0x77, 0xd3, 0xf3, 0xcd, 0x81, 0xf7, 0x6c, 0xfd, 0xd3, 0x02, 0xce, 0x86, 0xfa,
0x7b, 0x0a, 0x5c, 0xcb, 0x44, 0x86, 0x93, 0x8e, 0xeb, 0xd0, 0xc0, 0xc2, 0xc8, 0x75, 0xe8, 0x2f,
0xe0, 0x93, 0x27, 0xe4, 0xf0, 0xb7, 0x75, 0xd3, 0x65, 0x3a, 0xf4, 0x8c, 0x16, 0xe5, 0x47, 0x0a,
0x5c, 0x79, 0x80, 0xfd, 0xed, 0xc0, 0xbe, 0xbe, 0x40, 0xea, 0x10, 0x98, 0x88, 0x9d, 0x0f, 0x9c,
0xe0, 0x58, 0x9f, 0xfa, 0xbb, 0xec, 0x38, 0xa5, 0xf8, 0xbe, 0x10, 0x02, 0x5e, 0xa5, 0x92, 0x10,
0x51, 0x11, 0x5c, 0xd8, 0x39, 0xf9, 0xd4, 0x1f, 0x54, 0x61, 0xfe, 0x09, 0xd7, 0x0a, 0xd4, 0x82,
0x26, 0x29, 0xa1, 0xc8, 0x9d, 0xa0, 0x88, 0x37, 0x25, 0x73, 0xb0, 0xd6, 0x61, 0xc1, 0xc3, 0xf8,
0xf0, 0x94, 0xf6, 0x72, 0x9e, 0x8c, 0x11, 0xc6, 0xee, 0x21, 0x2c, 0x4d, 0x6c, 0xea, 0x95, 0x63,
0x83, 0x6f, 0x80, 0x11, 0x7d, 0xba, 0x32, 0x4d, 0x0f, 0x44, 0x1f, 0xf3, 0x00, 0x25, 0x32, 0x57,
0xb5, 0xd0, 0x5c, 0xc9, 0x61, 0xa8, 0x07, 0x6d, 0xc3, 0x75, 0xc6, 0x63, 0x6c, 0xf4, 0xbd, 0x60,
0xaa, 0x5a, 0xb1, 0xa9, 0xf8, 0x38, 0x31, 0xd5, 0xdb, 0x70, 0x3e, 0x89, 0x69, 0xcf, 0x20, 0x7e,
0x21, 0xe1, 0x2c, 0xd9, 0x27, 0xf4, 0x26, 0x2c, 0xa5, 0xe1, 0xeb, 0x14, 0x3e, 0xfd, 0x01, 0xbd,
0x05, 0x28, 0x81, 0x2a, 0x01, 0x6f, 0x30, 0xf0, 0x38, 0x32, 0x1c, 0x9c, 0x06, 0xce, 0x71, 0x70,
0x60, 0xe0, 0xfc, 0x4b, 0x04, 0xbc, 0x47, 0xac, 0x6b, 0x0c, 0xdc, 0xeb, 0x34, 0x8b, 0x11, 0x22,
0x3e, 0x99, 0xa7, 0xfe, 0xa6, 0x02, 0xcb, 0x9f, 0xe8, 0xfe, 0xe0, 0x60, 0x73, 0x34, 0x7b, 0x70,
0xf7, 0x01, 0x34, 0x8e, 0x44, 0x08, 0xc7, 0xb4, 0xf8, 0x35, 0x09, 0x42, 0x51, 0xb6, 0xd7, 0xc2,
0x11, 0x24, 0x20, 0x62, 0x61, 0x66, 0x80, 0xdd, 0x97, 0xaf, 0x6a, 0xa6, 0x44, 0xdb, 0xea, 0x53,
0x00, 0x8e, 0xdc, 0x96, 0x37, 0x3c, 0x03, 0x5e, 0xef, 0xc2, 0x1c, 0x9f, 0x8d, 0xeb, 0x92, 0x69,
0x07, 0x16, 0x80, 0xab, 0xff, 0x54, 0x83, 0x66, 0xe4, 0x03, 0x6a, 0x41, 0x49, 0x28, 0x89, 0x92,
0x64, 0x77, 0xa5, 0xe9, 0x31, 0x54, 0x39, 0x1d, 0x43, 0xdd, 0x82, 0x96, 0x49, 0x8d, 0x77, 0x9f,
0x9f, 0x0a, 0xf5, 0x95, 0x1b, 0xda, 0x02, 0xeb, 0xe5, 0x2c, 0x82, 0xae, 0x42, 0xd3, 0x9e, 0x8c,
0xfa, 0xce, 0x7e, 0xdf, 0x75, 0x8e, 0x3d, 0x1e, 0x8c, 0x35, 0xec, 0xc9, 0xe8, 0x5b, 0xfb, 0x9a,
0x73, 0xec, 0x85, 0xfe, 0x7e, 0xed, 0x94, 0xfe, 0xfe, 0x55, 0x68, 0x8e, 0xf4, 0xa7, 0x64, 0xd6,
0xbe, 0x3d, 0x19, 0xd1, 0x38, 0xad, 0xac, 0x35, 0x46, 0xfa, 0x53, 0xcd, 0x39, 0x7e, 0x34, 0x19,
0xa1, 0x15, 0x68, 0x5b, 0xba, 0xe7, 0xf7, 0xa3, 0x81, 0x5e, 0x9d, 0x06, 0x7a, 0x2d, 0xd2, 0xff,
0x51, 0x18, 0xec, 0xa5, 0x23, 0x87, 0xc6, 0xd9, 0x22, 0x07, 0x63, 0x64, 0x85, 0x73, 0x40, 0xa1,
0xc8, 0xc1, 0x18, 0x59, 0x62, 0x86, 0x77, 0x61, 0x6e, 0x8f, 0x3a, 0x42, 0x79, 0x22, 0x7a, 0x9f,
0xf8, 0x40, 0xcc, 0x5f, 0xd2, 0x02, 0x70, 0xf4, 0x75, 0x68, 0x50, 0xfb, 0x43, 0xc7, 0xce, 0x17,
0x1a, 0x1b, 0x0e, 0x20, 0xa3, 0x0d, 0x6c, 0xf9, 0x3a, 0x1d, 0xbd, 0x50, 0x6c, 0xb4, 0x18, 0x40,
0xf4, 0xe3, 0xc0, 0xc5, 0xba, 0x8f, 0x8d, 0xf5, 0x93, 0x0d, 0x67, 0x34, 0xd6, 0x29, 0x0b, 0x75,
0x5a, 0xd4, 0x85, 0x97, 0x7d, 0x42, 0xaf, 0x42, 0x6b, 0x20, 0x5a, 0xf7, 0x5d, 0x67, 0xd4, 0x59,
0xa4, 0xd2, 0x93, 0xe8, 0x45, 0x57, 0x00, 0x02, 0xcd, 0xa8, 0xfb, 0x9d, 0x36, 0x3d, 0xbb, 0x06,
0xef, 0xb9, 0x47, 0xb3, 0x37, 0xa6, 0xd7, 0x67, 0x79, 0x12, 0xd3, 0x1e, 0x76, 0x96, 0xe8, 0x8a,
0xcd, 0x20, 0xb1, 0x62, 0xda, 0x43, 0x74, 0x11, 0xe6, 0x4c, 0xaf, 0xbf, 0xaf, 0x1f, 0xe2, 0x0e,
0xa2, 0x5f, 0x6b, 0xa6, 0x77, 0x5f, 0x3f, 0xa4, 0xbe, 0x29, 0x5f, 0x0c, 0x1b, 0x9d, 0xf3, 0xf4,
0x53, 0xd8, 0xa1, 0x7e, 0x0e, 0x17, 0x42, 0x8e, 0x8b, 0x1c, 0x71, 0x9a, 0x51, 0x94, 0x33, 0x30,
0x4a, 0xbe, 0x5f, 0xfc, 0x3f, 0x15, 0x58, 0xde, 0xd1, 0x8f, 0xf0, 0xf3, 0x77, 0xc1, 0x0b, 0x69,
0xb9, 0x87, 0xb0, 0x44, 0xbd, 0xee, 0xb5, 0x08, 0x3e, 0x39, 0x06, 0x3e, 0xca, 0x23, 0xe9, 0x81,
0xe8, 0x1b, 0xc4, 0x29, 0xc1, 0x83, 0xc3, 0x6d, 0x12, 0xc1, 0x04, 0xc6, 0xfd, 0x8a, 0x64, 0x9e,
0x0d, 0x01, 0xa5, 0x45, 0x47, 0xa0, 0x6d, 0x58, 0x8c, 0x9f, 0x40, 0x60, 0xd6, 0x5f, 0xcb, 0x0d,
0x6f, 0x43, 0xea, 0x6b, 0xad, 0xd8, 0x61, 0x78, 0xa8, 0x03, 0x73, 0xdc, 0x26, 0x53, 0x15, 0x52,
0xd7, 0x82, 0x26, 0xda, 0x86, 0xf3, 0x6c, 0x07, 0x3b, 0x5c, 0x52, 0xd8, 0xe6, 0xeb, 0x85, 0x36,
0x2f, 0x1b, 0x1a, 0x17, 0xb4, 0xc6, 0x69, 0x05, 0xad, 0x03, 0x73, 0x9c, 0xf9, 0xa9, 0x6e, 0xa9,
0x6b, 0x41, 0x93, 0x1c, 0x73, 0x28, 0x06, 0x4d, 0xc6, 0xcd, 0xa2, 0x83, 0x8c, 0x0b, 0x34, 0xf4,
0x3c, 0xd5, 0xd0, 0x41, 0x53, 0xfd, 0x75, 0x05, 0x20, 0xa4, 0xf4, 0x94, 0xc4, 0xcc, 0xd7, 0xa0,
0x2e, 0xd8, 0xbe, 0x50, 0x6c, 0x29, 0xc0, 0x93, 0x36, 0xa0, 0x9c, 0xb0, 0x01, 0xea, 0xbf, 0x28,
0x30, 0xbf, 0x49, 0xf6, 0xf9, 0xd0, 0x19, 0x52, 0x8b, 0x75, 0x0b, 0x5a, 0x2e, 0x1e, 0x38, 0xae,
0xd1, 0xc7, 0xb6, 0xef, 0x9a, 0x98, 0x05, 0xf5, 0x15, 0x6d, 0x81, 0xf5, 0x7e, 0xc4, 0x3a, 0x09,
0x18, 0x51, 0xeb, 0x9e, 0xaf, 0x8f, 0xc6, 0xfd, 0x7d, 0xa2, 0x48, 0x58, 0x9e, 0x78, 0x41, 0xf4,
0x52, 0x3d, 0xf2, 0x0a, 0xcc, 0x87, 0x60, 0xbe, 0x43, 0xd7, 0xaf, 0x68, 0x4d, 0xd1, 0xb7, 0xeb,
0xa0, 0x9b, 0xd0, 0xa2, 0x84, 0xee, 0x5b, 0xce, 0xb0, 0x4f, 0x42, 0x45, 0x6e, 0xcc, 0xe6, 0x0d,
0x8e, 0x16, 0x39, 0xc0, 0x38, 0x94, 0x67, 0x7e, 0x8e, 0xb9, 0x39, 0x13, 0x50, 0x3b, 0xe6, 0xe7,
0x58, 0xfd, 0x35, 0x05, 0x16, 0xb8, 0xf5, 0xdb, 0x11, 0x09, 0x7d, 0x9a, 0xe5, 0x64, 0x61, 0x3a,
0xfd, 0x8d, 0xde, 0x8b, 0xe7, 0xb9, 0x6e, 0x4a, 0x85, 0x80, 0x4e, 0x42, 0x7d, 0xae, 0x98, 0xe9,
0x2b, 0x12, 0x27, 0x7e, 0x41, 0x68, 0xaa, 0xfb, 0xfa, 0x23, 0xc7, 0x60, 0x69, 0xb7, 0x0e, 0xcc,
0xe9, 0x86, 0xe1, 0x62, 0xcf, 0xe3, 0x78, 0x04, 0x4d, 0xf2, 0xe5, 0x08, 0xbb, 0x5e, 0x70, 0xb0,
0x65, 0x2d, 0x68, 0xa2, 0xaf, 0x27, 0xf2, 0xec, 0xcd, 0xb5, 0xeb, 0xd9, 0x78, 0xf2, 0xa8, 0x26,
0xcc, 0xc4, 0xff, 0x7d, 0x09, 0x5a, 0x5c, 0x06, 0xd7, 0xb9, 0xa1, 0xca, 0x67, 0xb1, 0x75, 0x98,
0xdf, 0x0f, 0x79, 0x3f, 0x2f, 0x2b, 0x13, 0x15, 0x91, 0xd8, 0x98, 0x69, 0xbc, 0x16, 0x37, 0x95,
0x95, 0x99, 0x4c, 0x65, 0xf5, 0xb4, 0x12, 0x9c, 0x76, 0x99, 0x6a, 0x12, 0x97, 0x49, 0xfd, 0x25,
0x68, 0x46, 0x26, 0xa0, 0x1a, 0x8a, 0x25, 0x3e, 0x38, 0xc5, 0x82, 0x26, 0xba, 0x1b, 0x3a, 0x0c,
0x8c, 0x54, 0x97, 0x24, 0xb8, 0x24, 0x7c, 0x05, 0xf5, 0x27, 0x0a, 0xd4, 0xf8, 0xcc, 0xd7, 0xa0,
0xc9, 0xe5, 0x8b, 0xba, 0x50, 0x6c, 0x76, 0xe0, 0x5d, 0xc4, 0x87, 0x7a, 0x76, 0x02, 0x76, 0x09,
0xea, 0x09, 0xd1, 0x9a, 0xe3, 0x6a, 0x31, 0xf8, 0x14, 0x91, 0x27, 0xf2, 0x89, 0x88, 0x12, 0xba,
0x00, 0x55, 0xcb, 0x19, 0x8a, 0xa2, 0x08, 0x6b, 0xa8, 0x3f, 0x55, 0x68, 0x0e, 0x5b, 0xc3, 0x03,
0xe7, 0x08, 0xbb, 0x27, 0xb3, 0xa7, 0x01, 0xdf, 0x8f, 0xb0, 0x79, 0xc1, 0x58, 0x44, 0x0c, 0x40,
0xef, 0x87, 0x87, 0x50, 0x96, 0x65, 0x0b, 0xa2, 0xa6, 0x88, 0x33, 0x69, 0x78, 0x18, 0xbf, 0xaf,
0xd0, 0x84, 0x66, 0x7c, 0x2b, 0x67, 0xb5, 0xf6, 0xcf, 0xc4, 0xaf, 0x57, 0xff, 0x59, 0x81, 0x4b,
0x19, 0xd4, 0x7d, 0xb2, 0xf6, 0x02, 0xe8, 0xfb, 0x1e, 0xd4, 0x45, 0xe4, 0x5a, 0x2e, 0x14, 0xb9,
0x0a, 0x78, 0xf5, 0x8f, 0x58, 0x5a, 0x5d, 0x42, 0xde, 0x27, 0x6b, 0xcf, 0x89, 0xc0, 0xc9, 0x0c,
0x54, 0x59, 0x92, 0x81, 0xfa, 0x57, 0x05, 0xba, 0x61, 0xc6, 0xc7, 0x5b, 0x3f, 0x99, 0xb5, 0x0e,
0xf3, 0x6c, 0x22, 0xba, 0xaf, 0x89, 0x92, 0x01, 0xd1, 0x8b, 0x85, 0x62, 0xb1, 0xa0, 0x60, 0x60,
0xd3, 0xe4, 0x71, 0x7a, 0x43, 0xb3, 0x48, 0x65, 0x37, 0x72, 0xf0, 0xac, 0x6c, 0x10, 0x1e, 0xec,
0x4f, 0x18, 0x93, 0xde, 0x8f, 0xa7, 0x7d, 0x5e, 0x34, 0x01, 0xa3, 0xa5, 0x8c, 0x03, 0x5e, 0xca,
0xa8, 0x24, 0x4a, 0x19, 0xbc, 0x5f, 0x1d, 0x51, 0x16, 0x48, 0x6d, 0xe0, 0x79, 0x11, 0xec, 0x37,
0x14, 0xe8, 0xf0, 0x55, 0x58, 0x79, 0xde, 0x19, 0x8d, 0x2d, 0xec, 0x63, 0xe3, 0xcb, 0x4e, 0x4e,
0xfc, 0x49, 0x09, 0xda, 0x51, 0xc7, 0x86, 0xfa, 0x26, 0x5f, 0x81, 0x2a, 0xcd, 0xed, 0x70, 0x0c,
0xa6, 0x6a, 0x07, 0x06, 0x4d, 0x2c, 0x23, 0xf5, 0xe6, 0x77, 0xbd, 0xc0, 0x71, 0xe1, 0xcd, 0xd0,
0xbb, 0x2a, 0x9f, 0xde, 0xbb, 0x7a, 0x19, 0x1a, 0xc4, 0x72, 0x39, 0x13, 0x32, 0x2f, 0xab, 0x2f,
0x87, 0x1d, 0xe8, 0x03, 0xa8, 0xb1, 0x1b, 0x2d, 0xbc, 0xbc, 0x77, 0x2b, 0x3e, 0x35, 0xbf, 0xed,
0x12, 0x49, 0xcf, 0xd3, 0x0e, 0x8d, 0x0f, 0x22, 0x67, 0x34, 0x76, 0x9d, 0x21, 0x75, 0xc3, 0x88,
0x51, 0xab, 0x6a, 0xa2, 0xad, 0xfe, 0x3c, 0x2c, 0x87, 0x51, 0x32, 0x43, 0xe9, 0xac, 0x0c, 0xad,
0xfe, 0x87, 0x02, 0xe7, 0x77, 0x4e, 0xec, 0x41, 0x52, 0x34, 0x96, 0xa1, 0x36, 0xb6, 0xf4, 0x30,
0x69, 0xcc, 0x5b, 0xb4, 0x20, 0x1f, 0xc4, 0xbf, 0xc4, 0x84, 0x33, 0x7a, 0x36, 0x45, 0xdf, 0xae,
0x33, 0xd5, 0xb3, 0xba, 0x25, 0xc2, 0x7a, 0x6c, 0x30, 0x67, 0x81, 0x25, 0xc5, 0x16, 0x44, 0x2f,
0x75, 0x16, 0x3e, 0x00, 0xa0, 0xfe, 0x54, 0xff, 0x34, 0x3e, 0x14, 0x1d, 0xf1, 0x90, 0x58, 0xcc,
0xbf, 0x2d, 0x41, 0x27, 0x42, 0xa5, 0x2f, 0xdb, 0xbd, 0xcc, 0x08, 0x0a, 0xcb, 0xcf, 0x28, 0x28,
0xac, 0xcc, 0xee, 0x52, 0x56, 0x65, 0x2e, 0xe5, 0xf7, 0xcb, 0xd0, 0x0a, 0xa9, 0xb6, 0x6d, 0xe9,
0x76, 0x26, 0x27, 0xec, 0x40, 0xcb, 0x8b, 0x51, 0x95, 0xd3, 0xe9, 0x0d, 0x99, 0x0c, 0x65, 0x1c,
0x84, 0x96, 0x98, 0x02, 0x5d, 0xa1, 0x87, 0xee, 0xfa, 0x2c, 0x0d, 0xc7, 0xfc, 0xc3, 0x06, 0x13,
0x56, 0x73, 0x84, 0xd1, 0x9b, 0x80, 0xb8, 0x84, 0xf5, 0x4d, 0xbb, 0xef, 0xe1, 0x81, 0x63, 0x1b,
0x4c, 0xf6, 0xaa, 0x5a, 0x9b, 0x7f, 0xe9, 0xd9, 0x3b, 0xac, 0x1f, 0x7d, 0x05, 0x2a, 0xfe, 0xc9,
0x98, 0x39, 0x8b, 0x2d, 0xa9, 0xbb, 0x15, 0xe2, 0xb5, 0x7b, 0x32, 0xc6, 0x1a, 0x05, 0x0f, 0x2e,
0x35, 0xf9, 0xae, 0x7e, 0xc4, 0x3d, 0xef, 0x8a, 0x16, 0xe9, 0x89, 0xc6, 0xc9, 0x73, 0xb1, 0x38,
0x99, 0x71, 0x76, 0x20, 0xd0, 0x7d, 0xdf, 0xb7, 0x68, 0x22, 0x91, 0x72, 0x76, 0xd0, 0xbb, 0xeb,
0x5b, 0x64, 0x93, 0xbe, 0xe3, 0xeb, 0x16, 0x93, 0x8f, 0x06, 0xd7, 0x1c, 0xa4, 0x87, 0x46, 0xb9,
0xff, 0x4e, 0x34, 0x9f, 0x40, 0x4c, 0xc3, 0xde, 0xc4, 0xca, 0x96, 0xc7, 0xfc, 0xcc, 0xcd, 0x34,
0x51, 0xfc, 0x06, 0x34, 0x39, 0x57, 0x9c, 0x82, 0xab, 0x80, 0x0d, 0x79, 0x98, 0xc3, 0xe6, 0xd5,
0x67, 0xc4, 0xe6, 0xb5, 0x33, 0xe4, 0x3e, 0xe4, 0x67, 0xa3, 0xfe, 0x50, 0x81, 0x97, 0x52, 0x5a,
0x33, 0x97, 0xb4, 0xf9, 0x91, 0x37, 0xd7, 0xa6, 0xc9, 0x29, 0xb9, 0x6d, 0x78, 0x1f, 0x6a, 0x2e,
0x9d, 0x9d, 0x17, 0xcb, 0x6e, 0xe4, 0x32, 0x1f, 0x43, 0x44, 0xe3, 0x43, 0xd4, 0x3f, 0x50, 0xe0,
0x62, 0x1a, 0xd5, 0x19, 0x0c, 0xfe, 0x3a, 0xcc, 0xb1, 0xa9, 0x03, 0x19, 0x5d, 0xc9, 0x97, 0xd1,
0x90, 0x38, 0x5a, 0x30, 0x50, 0xdd, 0x81, 0xe5, 0xc0, 0x2f, 0x08, 0x49, 0xbf, 0x85, 0x7d, 0x3d,
0x27, 0xee, 0xbc, 0x06, 0x4d, 0x16, 0xc0, 0xb0, 0x78, 0x8e, 0xd5, 0x16, 0x61, 0x4f, 0x24, 0xfa,
0xd4, 0x3f, 0x2c, 0xc1, 0x05, 0x6a, 0x58, 0x93, 0x85, 0xa2, 0x22, 0x95, 0x4b, 0x55, 0xdc, 0x0d,
0x7b, 0xa4, 0x8f, 0xf8, 0xfd, 0x95, 0x86, 0x16, 0xeb, 0x43, 0xbd, 0x74, 0x1e, 0x50, 0x9a, 0x9f,
0x08, 0x4b, 0xb5, 0x9b, 0xba, 0xaf, 0xd3, 0x4a, 0x6d, 0x32, 0x01, 0x18, 0x1a, 0xf4, 0xca, 0x59,
0x0c, 0xfa, 0xeb, 0xd0, 0x66, 0x39, 0xee, 0xbe, 0x08, 0x77, 0xa9, 0x62, 0xaa, 0x68, 0x8b, 0xac,
0x7f, 0x37, 0xe8, 0x56, 0x1f, 0xc2, 0x4b, 0x09, 0xa2, 0xcc, 0x70, 0xf8, 0xea, 0x5f, 0x29, 0xe4,
0xe4, 0x62, 0x57, 0x86, 0xce, 0xee, 0xff, 0x5e, 0x11, 0xc5, 0xac, 0xbe, 0x69, 0x24, 0xf5, 0x8d,
0x81, 0x3e, 0x84, 0x86, 0x8d, 0x8f, 0xfb, 0x51, 0x97, 0xaa, 0x40, 0x70, 0x50, 0xb7, 0xf1, 0x31,
0xfd, 0xa5, 0x3e, 0x82, 0x8b, 0x29, 0x54, 0x67, 0xd9, 0xfb, 0x3f, 0x28, 0x70, 0x69, 0xd3, 0x75,
0xc6, 0x4f, 0x4c, 0xd7, 0x9f, 0xe8, 0x56, 0xbc, 0x5e, 0x7e, 0x86, 0xed, 0x17, 0xb8, 0x8e, 0xf8,
0x71, 0x2a, 0x0c, 0x7d, 0x53, 0x22, 0x6c, 0x69, 0xa4, 0xf8, 0xa6, 0x23, 0xae, 0xf8, 0x7f, 0x97,
0x65, 0xc8, 0x73, 0xb8, 0x29, 0x2e, 0x4c, 0x91, 0x38, 0x45, 0x9a, 0xb2, 0x2f, 0x9f, 0x35, 0x65,
0x9f, 0x61, 0x09, 0x2a, 0xcf, 0xc8, 0x12, 0x9c, 0x3a, 0x87, 0xb6, 0x01, 0xf1, 0x72, 0x0a, 0x35,
0xe4, 0xa7, 0x2d, 0xc1, 0x7c, 0x00, 0x10, 0x56, 0x15, 0xf8, 0x15, 0xcf, 0x29, 0x33, 0x44, 0x06,
0x90, 0x33, 0x12, 0xb6, 0x96, 0xbb, 0x02, 0x91, 0x6c, 0xf6, 0xb7, 0xa1, 0x2b, 0xe3, 0xcd, 0x59,
0xf8, 0xfd, 0x3f, 0x4b, 0x00, 0x3d, 0x71, 0x21, 0xf8, 0x6c, 0xc6, 0xe2, 0x06, 0x44, 0xdc, 0x95,
0x50, 0xca, 0xa3, 0xbc, 0x63, 0x10, 0x41, 0x10, 0x01, 0x2d, 0x81, 0x49, 0x05, 0xb9, 0x06, 0x9d,
0x27, 0x22, 0x2b, 0x8c, 0x15, 0x92, 0xfa, 0xf9, 0x32, 0x34, 0x5c, 0xe7, 0xb8, 0x4f, 0x84, 0xcb,
0x08, 0x6e, 0x3c, 0xbb, 0xce, 0x31, 0x11, 0x39, 0x03, 0x5d, 0x84, 0x39, 0x5f, 0xf7, 0x0e, 0xc9,
0xfc, 0x2c, 0xaf, 0x57, 0x23, 0xcd, 0x9e, 0x81, 0x2e, 0x40, 0x75, 0xdf, 0xb4, 0x30, 0xbb, 0x5c,
0xd1, 0xd0, 0x58, 0x03, 0x7d, 0x35, 0xb8, 0xa4, 0x57, 0x2f, 0x7c, 0x19, 0x87, 0xdd, 0xd3, 0xbb,
0x01, 0x0b, 0x84, 0x93, 0x08, 0x12, 0x4c, 0xac, 0xdb, 0x3c, 0xa7, 0xcf, 0x3b, 0x09, 0xaa, 0xea,
0x4f, 0x15, 0x58, 0x0c, 0x49, 0x4b, 0x75, 0x13, 0x51, 0x77, 0x54, 0xd5, 0x6d, 0x38, 0x06, 0xd3,
0x22, 0xad, 0x0c, 0xbb, 0xc2, 0x06, 0x32, 0x85, 0x16, 0x0e, 0xc9, 0x0b, 0xc4, 0xc9, 0xe6, 0x09,
0x65, 0x4c, 0x23, 0x48, 0x0d, 0xd5, 0x5c, 0xe7, 0xb8, 0x67, 0x08, 0x92, 0xb1, 0x3b, 0xcf, 0x2c,
0xec, 0x24, 0x24, 0xdb, 0xa0, 0xd7, 0x9e, 0x6f, 0xc0, 0x02, 0x76, 0x5d, 0xc7, 0xed, 0x8f, 0xb0,
0xe7, 0xe9, 0x43, 0xcc, 0xbd, 0xfc, 0x79, 0xda, 0xb9, 0xc5, 0xfa, 0xd4, 0x7f, 0xac, 0x40, 0x2b,
0xdc, 0x4a, 0x50, 0xfa, 0x37, 0x8d, 0xa0, 0xf4, 0x6f, 0x92, 0xf3, 0x05, 0x97, 0x69, 0x49, 0xc1,
0x01, 0xeb, 0xa5, 0x8e, 0xa2, 0x35, 0x78, 0x6f, 0xcf, 0x20, 0xc6, 0x9d, 0x10, 0xc8, 0x76, 0x0c,
0x1c, 0x72, 0x00, 0x04, 0x5d, 0x9c, 0x01, 0x62, 0x8c, 0x54, 0x29, 0xc0, 0x48, 0xd5, 0x02, 0x8c,
0x54, 0x93, 0x30, 0xd2, 0x32, 0xd4, 0xf6, 0x26, 0x83, 0x43, 0xec, 0x73, 0xbf, 0x8f, 0xb7, 0xe2,
0x0c, 0x56, 0x4f, 0x30, 0x98, 0xe0, 0xa3, 0x46, 0x94, 0x8f, 0x2e, 0x43, 0x23, 0xb0, 0xd4, 0x1e,
0xad, 0xa0, 0x95, 0xb5, 0x3a, 0x37, 0xd1, 0x1e, 0x7a, 0x37, 0x70, 0x0a, 0x9b, 0x54, 0xa2, 0x54,
0x89, 0x42, 0x4a, 0x70, 0x49, 0xe0, 0x12, 0xbe, 0x06, 0x8b, 0x11, 0x72, 0x50, 0x3e, 0x63, 0x65,
0xb6, 0x48, 0xcc, 0x40, 0x2d, 0xc8, 0x2d, 0x68, 0x85, 0x24, 0xa1, 0x70, 0x0b, 0x2c, 0x54, 0x13,
0xbd, 0x14, 0x4c, 0xb0, 0x7b, 0xeb, 0x94, 0xec, 0x7e, 0x09, 0xea, 0x3c, 0xc6, 0xf2, 0x3a, 0x8b,
0xf1, 0x74, 0x48, 0x21, 0x49, 0xf8, 0x2e, 0xa0, 0x70, 0x8b, 0xb3, 0x39, 0xa6, 0x09, 0x1e, 0x2a,
0x25, 0x79, 0x48, 0xfd, 0x6b, 0x05, 0x96, 0xa2, 0x8b, 0x9d, 0xd5, 0x70, 0x7f, 0x08, 0x4d, 0x56,
0xe8, 0xec, 0x13, 0x15, 0x22, 0xaf, 0x4b, 0x26, 0x0e, 0x4f, 0x83, 0xf0, 0x69, 0x05, 0x21, 0xcc,
0xb1, 0xe3, 0x1e, 0x9a, 0xf6, 0xb0, 0x4f, 0x30, 0x13, 0xe9, 0x5a, 0xde, 0xf9, 0x88, 0xf4, 0xa9,
0xbf, 0xad, 0xc0, 0xd5, 0xc7, 0x63, 0x43, 0xf7, 0x71, 0xc4, 0x83, 0x99, 0xf5, 0x86, 0xa3, 0xb8,
0x62, 0x58, 0xca, 0x39, 0xe6, 0xc8, 0x7a, 0x1e, 0xbf, 0x62, 0x48, 0xfc, 0x3e, 0x8e, 0x4d, 0xea,
0x4e, 0xf0, 0xd9, 0xb1, 0xe9, 0x42, 0xfd, 0x88, 0x4f, 0x17, 0x3c, 0x16, 0x09, 0xda, 0xb1, 0xc2,
0x6f, 0xf9, 0x54, 0x85, 0x5f, 0x75, 0x0b, 0x2e, 0x69, 0xd8, 0xc3, 0xb6, 0x11, 0xdb, 0xc8, 0x99,
0x93, 0x5a, 0x63, 0xe8, 0xca, 0xa6, 0x9b, 0x85, 0x53, 0x99, 0xe3, 0xdb, 0x77, 0xc9, 0xb4, 0x3e,
0x57, 0xd6, 0xc4, 0xdf, 0xa2, 0xeb, 0xf8, 0xea, 0xdf, 0x94, 0xe0, 0xe2, 0x3d, 0xc3, 0xe0, 0x7a,
0x9e, 0xbb, 0x72, 0xcf, 0xcb, 0xcb, 0x4e, 0x7a, 0xa1, 0xe5, 0xb4, 0x17, 0xfa, 0xac, 0x74, 0x2f,
0xb7, 0x42, 0xf6, 0x64, 0x14, 0x98, 0x60, 0x97, 0xdd, 0x9a, 0x7a, 0x9f, 0x97, 0x47, 0xfb, 0x96,
0x33, 0xa4, 0x66, 0x78, 0xba, 0x73, 0x56, 0x0f, 0x92, 0x73, 0xea, 0x18, 0x3a, 0x69, 0x62, 0xcd,
0xa8, 0x47, 0x02, 0x8a, 0x8c, 0x1d, 0x96, 0xe4, 0x9d, 0x27, 0x9e, 0x18, 0xed, 0xda, 0x76, 0x3c,
0xf5, 0x7f, 0x4b, 0xd0, 0xd9, 0xd1, 0x8f, 0xf0, 0xcf, 0xce, 0x01, 0x7d, 0x0a, 0x17, 0x3c, 0xfd,
0x08, 0xf7, 0x23, 0x01, 0x78, 0xdf, 0xc5, 0x9f, 0x71, 0x27, 0xf6, 0x75, 0x59, 0x1a, 0x5e, 0x7a,
0x9b, 0x48, 0x5b, 0xf2, 0x62, 0xfd, 0x1a, 0xfe, 0x0c, 0xbd, 0x0a, 0x8b, 0xd1, 0x2b, 0x6c, 0x04,
0xb5, 0x3a, 0x25, 0xf9, 0x42, 0xe4, 0x9a, 0x5a, 0xcf, 0x50, 0x3f, 0x83, 0x97, 0x1f, 0xdb, 0x1e,
0xf6, 0x7b, 0xe1, 0x55, 0xab, 0x19, 0xe3, 0xcf, 0x6b, 0xd0, 0x0c, 0x09, 0x9f, 0x7a, 0x25, 0x62,
0x78, 0xaa, 0x03, 0xdd, 0x2d, 0xdd, 0x3d, 0x0c, 0xd2, 0xd9, 0x9b, 0xec, 0xe6, 0xcb, 0x73, 0x5c,
0x70, 0x5f, 0xdc, 0x01, 0xd3, 0xf0, 0x3e, 0x76, 0xb1, 0x3d, 0xc0, 0x0f, 0x9d, 0xc1, 0x21, 0x71,
0x48, 0x7c, 0xf6, 0x50, 0x4f, 0x89, 0xf8, 0xae, 0x9b, 0x91, 0x77, 0x78, 0xa5, 0xd8, 0x3b, 0xbc,
0x29, 0x6f, 0x4e, 0xd5, 0x1f, 0x95, 0x60, 0xf9, 0x9e, 0xe5, 0x63, 0x37, 0xcc, 0x30, 0x9c, 0x26,
0x59, 0x12, 0x66, 0x2f, 0x4a, 0x67, 0xc9, 0x5e, 0x14, 0xa8, 0x56, 0xca, 0x72, 0x2d, 0x95, 0x33,
0xe6, 0x5a, 0xee, 0x01, 0x8c, 0x5d, 0x67, 0x8c, 0x5d, 0xdf, 0xc4, 0x41, 0xec, 0x57, 0xc0, 0xc1,
0x89, 0x0c, 0x52, 0x3f, 0x85, 0xf6, 0x83, 0xc1, 0x86, 0x63, 0xef, 0x9b, 0xee, 0x28, 0x20, 0x54,
0x4a, 0xe8, 0x94, 0x02, 0x42, 0x57, 0x4a, 0x09, 0x9d, 0x6a, 0xc2, 0x52, 0x64, 0xee, 0x19, 0x15,
0xd7, 0x70, 0xd0, 0xdf, 0x37, 0x6d, 0x93, 0xde, 0x2c, 0x2b, 0x51, 0x07, 0x15, 0x86, 0x83, 0xfb,
0xbc, 0x47, 0xfd, 0x81, 0x02, 0x97, 0x35, 0x4c, 0x84, 0x27, 0xb8, 0xa4, 0xb3, 0xeb, 0x6f, 0x79,
0xc3, 0x19, 0x1c, 0x8a, 0xbb, 0x50, 0x19, 0x79, 0xc3, 0x8c, 0x02, 0x3b, 0x31, 0xd1, 0xb1, 0x85,
0x34, 0x0a, 0xac, 0xfe, 0x58, 0x81, 0x0b, 0x41, 0x19, 0x32, 0x26, 0xc2, 0x71, 0xb6, 0x55, 0x52,
0xaf, 0xb6, 0x72, 0x1e, 0xe7, 0x5e, 0x84, 0x39, 0x63, 0x2f, 0xaa, 0x20, 0x6b, 0xc6, 0x1e, 0xd5,
0x8d, 0x12, 0x4f, 0xb9, 0x22, 0xf5, 0x94, 0x93, 0x8c, 0x5f, 0x4d, 0x33, 0xfe, 0xed, 0x0f, 0xc5,
0x1d, 0xe7, 0xdd, 0x93, 0x31, 0x46, 0x73, 0x50, 0x7e, 0x84, 0x8f, 0xdb, 0xe7, 0x10, 0x40, 0xed,
0x91, 0xe3, 0x8e, 0x74, 0xab, 0xad, 0xa0, 0x26, 0xcc, 0xf1, 0x02, 0x6b, 0xbb, 0x84, 0x16, 0xa0,
0xb1, 0x11, 0x14, 0xa2, 0xda, 0xe5, 0xdb, 0x7f, 0xaa, 0xc0, 0x52, 0xaa, 0x04, 0x88, 0x5a, 0x00,
0x8f, 0xed, 0x01, 0xaf, 0x8d, 0xb6, 0xcf, 0xa1, 0x79, 0xa8, 0x07, 0x95, 0x52, 0x36, 0xdf, 0xae,
0x43, 0xa1, 0xdb, 0x25, 0xd4, 0x86, 0x79, 0x36, 0x70, 0x32, 0x18, 0x60, 0xcf, 0x6b, 0x97, 0x45,
0xcf, 0x7d, 0xdd, 0xb4, 0x26, 0x2e, 0x6e, 0x57, 0xc8, 0x9a, 0xbb, 0x8e, 0x86, 0x2d, 0xac, 0x7b,
0xb8, 0x5d, 0x45, 0x08, 0x5a, 0xbc, 0x11, 0x0c, 0xaa, 0x45, 0xfa, 0x82, 0x61, 0x73, 0xb7, 0x3f,
0x89, 0x16, 0x6b, 0xe8, 0xf6, 0x2e, 0xc2, 0xf9, 0xc7, 0xb6, 0x81, 0xf7, 0x4d, 0x1b, 0x1b, 0xe1,
0xa7, 0xf6, 0x39, 0x74, 0x1e, 0x16, 0xb7, 0xb0, 0x3b, 0xc4, 0x91, 0xce, 0x12, 0x5a, 0x82, 0x85,
0x2d, 0xf3, 0x69, 0xa4, 0xab, 0xac, 0x56, 0xea, 0x4a, 0x5b, 0x59, 0xfb, 0xf1, 0x2d, 0x68, 0x10,
0x36, 0xd8, 0x70, 0x1c, 0xd7, 0x40, 0x16, 0x20, 0xfa, 0x92, 0x68, 0x34, 0x76, 0x6c, 0xf1, 0xea,
0x10, 0xad, 0x26, 0x38, 0x87, 0x35, 0xd2, 0x80, 0x9c, 0x53, 0xba, 0x37, 0xa5, 0xf0, 0x09, 0x60,
0xf5, 0x1c, 0x1a, 0xd1, 0xd5, 0x76, 0xcd, 0x11, 0xde, 0x35, 0x07, 0x87, 0x81, 0x73, 0xf9, 0x76,
0xc6, 0xd3, 0xad, 0x34, 0x68, 0xb0, 0xde, 0x0d, 0xe9, 0x7a, 0xec, 0xa9, 0x57, 0x20, 0xb4, 0xea,
0x39, 0xf4, 0x19, 0x65, 0xec, 0xd0, 0x53, 0x0f, 0x16, 0x5c, 0xcb, 0x5e, 0x30, 0x05, 0x7c, 0xca,
0x25, 0x1f, 0x42, 0x95, 0xb2, 0x1b, 0x92, 0xd5, 0xaf, 0xa3, 0x7f, 0x67, 0xd0, 0xbd, 0x9e, 0x0d,
0x20, 0x66, 0xfb, 0x2e, 0x2c, 0x26, 0x1e, 0x13, 0x23, 0x99, 0x75, 0x97, 0x3f, 0x0b, 0xef, 0xde,
0x2e, 0x02, 0x2a, 0xd6, 0x1a, 0x42, 0x2b, 0xfe, 0x02, 0x09, 0xad, 0x14, 0x78, 0xc7, 0xc8, 0x56,
0x7a, 0xbd, 0xf0, 0x8b, 0x47, 0xca, 0x04, 0xed, 0xe4, 0x33, 0x57, 0x74, 0x3b, 0x77, 0x82, 0x38,
0xb3, 0xbd, 0x51, 0x08, 0x56, 0x2c, 0x77, 0x42, 0x99, 0x20, 0xf5, 0xc6, 0x30, 0xc9, 0xe3, 0xc1,
0x34, 0x59, 0x8f, 0x1f, 0xbb, 0x77, 0x0a, 0xc3, 0x8b, 0xa5, 0x7f, 0x95, 0x5d, 0x52, 0x93, 0xbd,
0xd3, 0x43, 0xef, 0xc8, 0xa7, 0xcb, 0x79, 0x60, 0xd8, 0x5d, 0x3b, 0xcd, 0x10, 0x81, 0xc4, 0xf7,
0xe8, 0xed, 0x32, 0xc9, 0x4b, 0xb7, 0xa4, 0xdc, 0x05, 0xf3, 0x65, 0x3f, 0xe2, 0xeb, 0xbe, 0x73,
0x8a, 0x11, 0x02, 0x01, 0x27, 0xf9, 0x8e, 0x38, 0x10, 0xc3, 0x3b, 0x53, 0xb9, 0xe6, 0x6c, 0x32,
0xf8, 0x1d, 0x58, 0x4c, 0xf8, 0xbb, 0xa8, 0xb8, 0x4f, 0xdc, 0xcd, 0xb3, 0xed, 0x4c, 0x24, 0x13,
0xb7, 0xc9, 0x50, 0x06, 0xf7, 0x4b, 0x6e, 0x9c, 0x75, 0x6f, 0x17, 0x01, 0x15, 0x1b, 0x19, 0xc3,
0x52, 0xe2, 0xe3, 0x93, 0x35, 0xf4, 0x46, 0xe1, 0xd5, 0x9e, 0xac, 0x75, 0xdf, 0x2c, 0xbe, 0xde,
0x93, 0x35, 0xf5, 0x1c, 0xf2, 0xa8, 0x82, 0x4e, 0xdc, 0x48, 0x42, 0x19, 0xb3, 0xc8, 0x6f, 0x5e,
0x75, 0xdf, 0x2a, 0x08, 0x2d, 0xb6, 0x79, 0x04, 0xe7, 0x25, 0x17, 0xc7, 0xd0, 0x5b, 0xb9, 0xec,
0x91, 0xbc, 0x31, 0xd7, 0x5d, 0x2d, 0x0a, 0x1e, 0x31, 0x0f, 0xed, 0x00, 0xaf, 0x7b, 0x96, 0xc5,
0x8c, 0xff, 0x9b, 0x59, 0x96, 0x2f, 0x06, 0x96, 0xb1, 0xd5, 0x4c, 0x68, 0xb1, 0xe4, 0x2f, 0x03,
0xda, 0x39, 0x70, 0x8e, 0xa9, 0x7f, 0x39, 0x9c, 0xb8, 0x3a, 0x73, 0x89, 0xb3, 0x0c, 0x60, 0x1a,
0x34, 0x43, 0x10, 0x73, 0x47, 0x88, 0xc5, 0xfb, 0x00, 0x0f, 0xb0, 0xbf, 0x85, 0x7d, 0x97, 0x48,
0xff, 0xab, 0x59, 0xb8, 0x73, 0x80, 0x60, 0xa9, 0xd7, 0xa6, 0xc2, 0x45, 0x09, 0xba, 0xa5, 0xdb,
0x13, 0xdd, 0x8a, 0x3c, 0xf4, 0x91, 0x13, 0x34, 0x09, 0x96, 0x4f, 0xd0, 0x34, 0xb4, 0x58, 0xf2,
0x58, 0xf8, 0x2f, 0x91, 0xfa, 0x76, 0xbe, 0xff, 0x92, 0xbe, 0x5b, 0x95, 0xd4, 0xed, 0x39, 0xf0,
0x62, 0xe1, 0x2f, 0x14, 0x7a, 0xdd, 0x31, 0x01, 0xf0, 0x89, 0xe9, 0x1f, 0x6c, 0x5b, 0xba, 0xed,
0x15, 0x41, 0x81, 0x02, 0x9e, 0x02, 0x05, 0x0e, 0x2f, 0x50, 0x30, 0x60, 0x21, 0x56, 0x4b, 0x46,
0xb2, 0x07, 0x30, 0xb2, 0x12, 0x7c, 0x77, 0x65, 0x3a, 0xa0, 0x58, 0x65, 0x1f, 0x16, 0x62, 0xd1,
0x81, 0x74, 0x15, 0x59, 0xfc, 0x90, 0x54, 0x76, 0x09, 0xe9, 0x48, 0x12, 0xd4, 0x03, 0x94, 0x2e,
0x99, 0xa1, 0x62, 0x05, 0xd6, 0x3c, 0xd5, 0x93, 0x5d, 0x87, 0x63, 0xda, 0x3c, 0x51, 0x94, 0x96,
0x9b, 0x0a, 0x69, 0x8d, 0x5d, 0xaa, 0xcd, 0x33, 0x6a, 0xdc, 0xea, 0x39, 0xf4, 0x09, 0xd4, 0xf8,
0xdf, 0xfd, 0xdc, 0xcc, 0x4f, 0x4e, 0xf3, 0xd9, 0x6f, 0x4d, 0x81, 0x12, 0x13, 0x1f, 0xc2, 0xc5,
0x8c, 0xd4, 0xb4, 0xd4, 0xcb, 0xc8, 0x4f, 0x63, 0x4f, 0xb3, 0x7f, 0x62, 0xb1, 0x54, 0xe6, 0x39,
0x67, 0xb1, 0xac, 0x2c, 0xf5, 0xb4, 0xc5, 0xfa, 0xb0, 0x94, 0xca, 0xec, 0x49, 0x0d, 0x60, 0x56,
0xfe, 0x6f, 0xda, 0x02, 0x43, 0x78, 0x49, 0x9a, 0xc5, 0x92, 0xfa, 0x26, 0x79, 0xf9, 0xae, 0x69,
0x0b, 0x0d, 0xe0, 0xbc, 0x24, 0x77, 0x25, 0xb5, 0x71, 0xd9, 0x39, 0xae, 0x69, 0x8b, 0xec, 0x43,
0x77, 0xdd, 0x75, 0x74, 0x63, 0xa0, 0x7b, 0x3e, 0xcd, 0x27, 0x91, 0x40, 0x31, 0x70, 0x0e, 0xe5,
0x91, 0x83, 0x34, 0xeb, 0x34, 0x6d, 0x9d, 0x3d, 0x68, 0xd2, 0xa3, 0x64, 0x7f, 0xc9, 0x82, 0xe4,
0x16, 0x22, 0x02, 0x91, 0xa1, 0x76, 0x64, 0x80, 0x82, 0xa9, 0x77, 0xa1, 0xb9, 0x41, 0x0b, 0x73,
0x3d, 0xdb, 0xc0, 0x4f, 0x93, 0xd6, 0x8a, 0xbe, 0x4b, 0x5f, 0x8d, 0x00, 0x14, 0xa6, 0xd0, 0x02,
0xf5, 0xd9, 0x0d, 0xfc, 0x94, 0x9d, 0xf3, 0x8a, 0x6c, 0xde, 0x18, 0x48, 0x46, 0x8c, 0x23, 0x85,
0x8c, 0xd8, 0xf9, 0x0b, 0x51, 0x4f, 0x56, 0x2c, 0x77, 0x27, 0x63, 0x92, 0x14, 0x64, 0xb0, 0xea,
0xdb, 0xc5, 0x07, 0x44, 0xed, 0x42, 0x80, 0x57, 0x8f, 0x56, 0x05, 0x5f, 0xcb, 0x43, 0x3d, 0xea,
0x9e, 0xae, 0x4c, 0x07, 0x14, 0xab, 0x6c, 0x43, 0x83, 0x70, 0x27, 0x3b, 0x9e, 0x9b, 0xb2, 0x81,
0xe2, 0x73, 0xf1, 0xc3, 0xd9, 0xc4, 0xde, 0xc0, 0x35, 0xf7, 0xf8, 0xa1, 0x4b, 0xd1, 0x89, 0x81,
0xe4, 0x1e, 0x4e, 0x02, 0x52, 0x60, 0x3e, 0xa1, 0x3e, 0x83, 0x20, 0x1d, 0x57, 0x95, 0x6f, 0x4d,
0x3b, 0xdf, 0xb8, 0x9a, 0x5c, 0x2d, 0x0a, 0x2e, 0x96, 0xfd, 0x15, 0x1a, 0x07, 0xd1, 0xef, 0xeb,
0x13, 0xd3, 0x32, 0xb6, 0xf9, 0x9d, 0x6f, 0xf4, 0x76, 0xde, 0x54, 0x31, 0xd0, 0x4c, 0xf7, 0x2f,
0x67, 0x84, 0x58, 0xff, 0x17, 0xa1, 0x21, 0x32, 0x9b, 0x48, 0x76, 0x69, 0x31, 0x99, 0x53, 0xed,
0xde, 0xcc, 0x07, 0x12, 0x33, 0x63, 0xb8, 0x20, 0xcb, 0x63, 0x4a, 0x43, 0xec, 0x9c, 0x84, 0xe7,
0x14, 0xfe, 0x58, 0xfb, 0x73, 0x80, 0x7a, 0x30, 0xf0, 0x4b, 0x4e, 0x5c, 0xbd, 0x80, 0x4c, 0xd2,
0x77, 0x60, 0x31, 0xf1, 0x4f, 0x1b, 0x52, 0x0d, 0x2e, 0xff, 0x37, 0x8e, 0x69, 0xa2, 0xf6, 0x09,
0xff, 0x93, 0x4a, 0x11, 0xe2, 0xbd, 0x96, 0x95, 0x8d, 0x4a, 0x46, 0x77, 0x53, 0x26, 0xfe, 0xff,
0x1d, 0xe0, 0x3c, 0x02, 0x88, 0x84, 0x36, 0xf9, 0xb7, 0xce, 0x89, 0xb7, 0x3e, 0x8d, 0x5a, 0x23,
0x69, 0xf4, 0xf2, 0x7a, 0x91, 0x1b, 0xbc, 0xd9, 0x1e, 0x68, 0x76, 0xcc, 0xf2, 0x18, 0xe6, 0xa3,
0xef, 0x41, 0x90, 0xf4, 0x6f, 0x07, 0xd3, 0x0f, 0x46, 0xa6, 0xed, 0x62, 0xeb, 0x94, 0x8e, 0xed,
0x94, 0xe9, 0x3c, 0x40, 0xe9, 0x0a, 0xbf, 0x34, 0x10, 0xc8, 0xbc, 0x57, 0x20, 0x0d, 0x04, 0xb2,
0xaf, 0x0d, 0xb0, 0xa4, 0x64, 0xb2, 0x6c, 0x2d, 0x4d, 0x4a, 0x66, 0x5c, 0x04, 0x90, 0x26, 0x25,
0xb3, 0xea, 0xe0, 0x11, 0xf9, 0xcb, 0x0d, 0xdd, 0x64, 0xff, 0xa1, 0x3a, 0x85, 0x78, 0xeb, 0x77,
0x3f, 0x7d, 0x67, 0x68, 0xfa, 0x07, 0x93, 0x3d, 0xf2, 0xe5, 0x0e, 0x03, 0x7d, 0xcb, 0x74, 0xf8,
0xaf, 0x3b, 0x81, 0x1c, 0xdd, 0xa1, 0xa3, 0xef, 0x90, 0x65, 0xc6, 0x7b, 0x7b, 0x35, 0xda, 0xba,
0xfb, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x50, 0x64, 0x9a, 0xa4, 0xf9, 0x57, 0x00, 0x00,
// 5014 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7c, 0xcb, 0x6f, 0x1c, 0x47,
0x7a, 0xb8, 0x7a, 0x5e, 0x9c, 0xf9, 0x66, 0x38, 0x1c, 0x96, 0x64, 0x72, 0x34, 0xb2, 0x1e, 0x6e,
0x49, 0x36, 0x2d, 0xdb, 0x94, 0x4d, 0xfd, 0x16, 0xeb, 0xc7, 0xda, 0xbb, 0x22, 0x69, 0xc9, 0xf3,
0x8b, 0x48, 0x73, 0x9b, 0x94, 0x1c, 0x78, 0x03, 0x0c, 0x9a, 0xd3, 0xc5, 0x61, 0x2f, 0x67, 0xba,
0xc7, 0xdd, 0x3d, 0xa4, 0xe8, 0x00, 0x59, 0x6f, 0xe2, 0x04, 0xc8, 0x03, 0x49, 0x90, 0xc7, 0x21,
0xb7, 0x20, 0x87, 0x60, 0xf3, 0xd8, 0x53, 0x12, 0x2c, 0x10, 0x04, 0xd9, 0x43, 0x2e, 0x1b, 0xe4,
0x10, 0x04, 0x01, 0x82, 0xe4, 0x90, 0x3f, 0x20, 0xe7, 0xfc, 0x03, 0x41, 0x3d, 0xba, 0xfa, 0x55,
0xdd, 0xd3, 0xe4, 0x48, 0x36, 0x90, 0xdc, 0xa6, 0xaa, 0xbf, 0xaa, 0xfa, 0xea, 0xab, 0xef, 0xfd,
0x55, 0x0d, 0xb4, 0x0c, 0xdd, 0xd3, 0x7b, 0x7d, 0xdb, 0x76, 0x8c, 0xd5, 0xb1, 0x63, 0x7b, 0x36,
0x5a, 0x1c, 0x99, 0xc3, 0xe3, 0x89, 0xcb, 0x5a, 0xab, 0xe4, 0x73, 0xa7, 0xd1, 0xb7, 0x47, 0x23,
0xdb, 0x62, 0x5d, 0x9d, 0xa6, 0x69, 0x79, 0xd8, 0xb1, 0xf4, 0x21, 0x6f, 0x37, 0xc2, 0x03, 0x3a,
0x0d, 0xb7, 0x7f, 0x88, 0x47, 0x3a, 0x6f, 0xd5, 0x46, 0xee, 0x80, 0xff, 0x5c, 0x34, 0x2d, 0x03,
0x3f, 0x0d, 0x2f, 0xa5, 0xce, 0x41, 0xf9, 0xc3, 0xd1, 0xd8, 0x3b, 0x55, 0xff, 0x5a, 0x81, 0xc6,
0x83, 0xe1, 0xc4, 0x3d, 0xd4, 0xf0, 0x67, 0x13, 0xec, 0x7a, 0xe8, 0x4d, 0x28, 0xed, 0xeb, 0x2e,
0x6e, 0x2b, 0x37, 0x94, 0x95, 0xfa, 0xda, 0x8b, 0xab, 0x11, 0x9c, 0x38, 0x36, 0x5b, 0xee, 0x60,
0x5d, 0x77, 0xb1, 0x46, 0x21, 0x11, 0x82, 0x92, 0xb1, 0xdf, 0xdd, 0x6c, 0x17, 0x6e, 0x28, 0x2b,
0x45, 0x8d, 0xfe, 0x46, 0xd7, 0x00, 0x5c, 0x3c, 0x18, 0x61, 0xcb, 0xeb, 0x6e, 0xba, 0xed, 0xe2,
0x8d, 0xe2, 0x4a, 0x51, 0x0b, 0xf5, 0x20, 0x15, 0x1a, 0x7d, 0x7b, 0x38, 0xc4, 0x7d, 0xcf, 0xb4,
0xad, 0xee, 0x66, 0xbb, 0x44, 0xc7, 0x46, 0xfa, 0x50, 0x07, 0xaa, 0xa6, 0xdb, 0x1d, 0x8d, 0x6d,
0xc7, 0x6b, 0x97, 0x6f, 0x28, 0x2b, 0x55, 0x4d, 0xb4, 0xd5, 0x1f, 0x16, 0x60, 0x9e, 0xa3, 0xed,
0x8e, 0x6d, 0xcb, 0xc5, 0xe8, 0x1e, 0x54, 0x5c, 0x4f, 0xf7, 0x26, 0x2e, 0xc7, 0xfc, 0x8a, 0x14,
0xf3, 0x5d, 0x0a, 0xa2, 0x71, 0x50, 0x29, 0xea, 0x71, 0xd4, 0x8a, 0x12, 0xd4, 0xa2, 0xdb, 0x2b,
0x25, 0xb6, 0xb7, 0x02, 0x0b, 0x07, 0x04, 0xbb, 0xdd, 0x00, 0xa8, 0x4c, 0x81, 0xe2, 0xdd, 0x64,
0x26, 0xcf, 0x1c, 0xe1, 0x8f, 0x0f, 0x76, 0xb1, 0x3e, 0x6c, 0x57, 0xe8, 0x5a, 0xa1, 0x1e, 0x74,
0x19, 0xaa, 0x74, 0x48, 0xcf, 0x73, 0xdb, 0x73, 0x37, 0x94, 0x95, 0x92, 0x36, 0x47, 0xdb, 0x7b,
0xae, 0xfa, 0x03, 0xb8, 0x44, 0x49, 0xb0, 0x71, 0xa8, 0x5b, 0x16, 0x1e, 0xba, 0xe7, 0x3f, 0xc1,
0xf0, 0x22, 0x85, 0xc8, 0x22, 0xe4, 0x10, 0xfa, 0x7c, 0x7e, 0x7a, 0x8c, 0x35, 0x4d, 0xb4, 0xd5,
0x7f, 0x51, 0xa0, 0x25, 0xb6, 0xe2, 0xaf, 0x7e, 0x09, 0xca, 0x7d, 0x7b, 0x62, 0x79, 0x74, 0xf9,
0x79, 0x8d, 0x35, 0xd0, 0x4b, 0xd0, 0xe0, 0xc3, 0x7a, 0x96, 0x3e, 0xc2, 0x74, 0x95, 0x9a, 0x56,
0xe7, 0x7d, 0xdb, 0xfa, 0x08, 0xe7, 0xa2, 0xfb, 0x0d, 0xa8, 0x8f, 0x75, 0xc7, 0x33, 0x23, 0x5c,
0x13, 0xee, 0xca, 0x62, 0x1a, 0xb2, 0x82, 0x49, 0x7f, 0xed, 0xe9, 0xee, 0x51, 0x77, 0x93, 0x53,
0x3b, 0xd2, 0xa7, 0xfe, 0xb1, 0x02, 0x4b, 0xf7, 0x5d, 0xd7, 0x1c, 0x58, 0x89, 0x9d, 0x2d, 0x41,
0xc5, 0xb2, 0x0d, 0xdc, 0xdd, 0xa4, 0x5b, 0x2b, 0x6a, 0xbc, 0x85, 0xae, 0x40, 0x6d, 0x8c, 0xb1,
0xd3, 0x73, 0xec, 0xa1, 0xbf, 0xb1, 0x2a, 0xe9, 0xd0, 0xec, 0x21, 0x46, 0xdf, 0x85, 0x45, 0x37,
0x36, 0x11, 0x23, 0x64, 0x7d, 0xed, 0xe6, 0x6a, 0x42, 0xde, 0x57, 0xe3, 0x8b, 0x6a, 0xc9, 0xd1,
0xea, 0x17, 0x05, 0xb8, 0x28, 0xe0, 0x18, 0xae, 0xe4, 0x37, 0xa1, 0xbc, 0x8b, 0x07, 0x02, 0x3d,
0xd6, 0xc8, 0x43, 0x79, 0x71, 0x64, 0xc5, 0xf0, 0x91, 0xe5, 0x11, 0xd1, 0xd8, 0x79, 0x94, 0x93,
0xe7, 0x71, 0x1d, 0xea, 0xf8, 0xe9, 0xd8, 0x74, 0x70, 0x8f, 0x30, 0x35, 0x25, 0x79, 0x49, 0x03,
0xd6, 0xb5, 0x67, 0x8e, 0xc2, 0x72, 0x3b, 0x97, 0x5b, 0x6e, 0xd5, 0x3f, 0x51, 0x60, 0x39, 0x71,
0x4a, 0x5c, 0x11, 0x68, 0xd0, 0xa2, 0x3b, 0x0f, 0x28, 0x43, 0x54, 0x02, 0x21, 0xf8, 0xcb, 0x59,
0x04, 0x0f, 0xc0, 0xb5, 0xc4, 0xf8, 0x10, 0x92, 0x85, 0xfc, 0x48, 0x1e, 0xc1, 0xf2, 0x43, 0xec,
0xf1, 0x05, 0xc8, 0x37, 0x3c, 0x83, 0x88, 0x46, 0x35, 0x4e, 0x21, 0xae, 0x71, 0xd4, 0x3f, 0x2d,
0x08, 0x59, 0xa4, 0x4b, 0x75, 0xad, 0x03, 0x1b, 0xbd, 0x08, 0x35, 0x01, 0xc2, 0xb9, 0x22, 0xe8,
0x40, 0xdf, 0x84, 0x32, 0xc1, 0x94, 0xb1, 0x44, 0x73, 0xed, 0x25, 0xf9, 0x9e, 0x42, 0x73, 0x6a,
0x0c, 0x1e, 0x6d, 0x42, 0xd3, 0xf5, 0x74, 0xc7, 0xeb, 0x8d, 0x6d, 0x97, 0x9e, 0x33, 0x65, 0x9c,
0xfa, 0xda, 0xd5, 0xe8, 0x0c, 0xc4, 0x00, 0x6d, 0xb9, 0x83, 0x1d, 0x0e, 0xa4, 0xcd, 0xd3, 0x41,
0x7e, 0x13, 0x7d, 0x07, 0x1a, 0xd8, 0x32, 0x82, 0x39, 0x4a, 0x79, 0xe6, 0xa8, 0x63, 0xcb, 0x10,
0x33, 0x04, 0xa7, 0x52, 0xce, 0x7f, 0x2a, 0xbf, 0xa5, 0x40, 0x3b, 0x79, 0x2c, 0xb3, 0x18, 0x91,
0xf7, 0xd8, 0x20, 0xcc, 0x8e, 0x25, 0x53, 0xae, 0xc5, 0xd1, 0x68, 0x7c, 0x88, 0xfa, 0x87, 0x0a,
0xbc, 0x10, 0xa0, 0x43, 0x3f, 0x3d, 0x2f, 0x1e, 0x41, 0x77, 0xa0, 0x65, 0x5a, 0xfd, 0xe1, 0xc4,
0xc0, 0x8f, 0xad, 0x8f, 0xb0, 0x3e, 0xf4, 0x0e, 0x4f, 0xe9, 0xc9, 0x55, 0xb5, 0x44, 0xbf, 0xfa,
0x1f, 0x05, 0x58, 0x8a, 0xe3, 0x35, 0x0b, 0x91, 0xfe, 0x1f, 0x94, 0x4d, 0xeb, 0xc0, 0xf6, 0x69,
0x74, 0x2d, 0x43, 0x14, 0xc9, 0x5a, 0x0c, 0x18, 0xd9, 0x80, 0x7c, 0xe5, 0xd5, 0x3f, 0xc4, 0xfd,
0xa3, 0xb1, 0x6d, 0x52, 0x35, 0x45, 0xa6, 0xf8, 0x8e, 0x64, 0x0a, 0x39, 0xc6, 0xab, 0xdc, 0x42,
0x6e, 0x88, 0x29, 0x3e, 0xb4, 0x3c, 0xe7, 0x54, 0x5b, 0xec, 0xc7, 0xfb, 0x3b, 0x7d, 0x58, 0x92,
0x03, 0xa3, 0x16, 0x14, 0x8f, 0xf0, 0x29, 0xdd, 0x72, 0x4d, 0x23, 0x3f, 0xd1, 0x3d, 0x28, 0x1f,
0xeb, 0xc3, 0x09, 0xe6, 0x3a, 0x61, 0x0a, 0xe7, 0x32, 0xd8, 0x77, 0x0b, 0x6f, 0x2b, 0xea, 0x08,
0xae, 0x3c, 0xc4, 0x5e, 0xd7, 0x72, 0xb1, 0xe3, 0xad, 0x9b, 0xd6, 0xd0, 0x1e, 0xec, 0xe8, 0xde,
0xe1, 0x0c, 0xca, 0x21, 0x22, 0xe7, 0x85, 0x98, 0x9c, 0xab, 0x3f, 0x52, 0xe0, 0x45, 0xf9, 0x7a,
0xfc, 0x40, 0x3b, 0x50, 0x3d, 0x30, 0xf1, 0xd0, 0x20, 0x5c, 0xa3, 0x50, 0xae, 0x11, 0x6d, 0xa2,
0x24, 0xc6, 0x04, 0x98, 0x9f, 0x5b, 0x4c, 0x49, 0x08, 0x7f, 0x74, 0xd7, 0x73, 0x4c, 0x6b, 0xf0,
0xc8, 0x74, 0x3d, 0x8d, 0xc1, 0x87, 0xb8, 0xa4, 0x98, 0x5f, 0x38, 0x7f, 0x43, 0x81, 0x6b, 0x0f,
0xb1, 0xb7, 0x21, 0x6c, 0x0c, 0xf9, 0x6e, 0xba, 0x9e, 0xd9, 0x77, 0x9f, 0xad, 0x7f, 0x9a, 0xc3,
0xd9, 0x50, 0x7f, 0x47, 0x81, 0xeb, 0xa9, 0xc8, 0x70, 0xd2, 0x71, 0x1d, 0xea, 0x5b, 0x18, 0xb9,
0x0e, 0xfd, 0x39, 0x7c, 0xfa, 0x84, 0x1c, 0xfe, 0x8e, 0x6e, 0x3a, 0x4c, 0x87, 0x9e, 0xd3, 0xa2,
0xfc, 0x58, 0x81, 0xab, 0x0f, 0xb1, 0xb7, 0xe3, 0xdb, 0xd7, 0xaf, 0x91, 0x3a, 0x04, 0x26, 0x64,
0xe7, 0x7d, 0x27, 0x38, 0xd2, 0xa7, 0xfe, 0x36, 0x3b, 0x4e, 0x29, 0xbe, 0x5f, 0x0b, 0x01, 0xaf,
0x51, 0x49, 0x08, 0xa9, 0x08, 0x2e, 0xec, 0x9c, 0x7c, 0xea, 0x97, 0x65, 0x68, 0x3c, 0xe1, 0x5a,
0x81, 0x5a, 0xd0, 0x38, 0x25, 0x14, 0xb9, 0x13, 0x14, 0xf2, 0xa6, 0x64, 0x0e, 0xd6, 0x3a, 0xcc,
0xbb, 0x18, 0x1f, 0x9d, 0xd1, 0x5e, 0x36, 0xc8, 0x18, 0x61, 0xec, 0x1e, 0xc1, 0xe2, 0xc4, 0xa2,
0x5e, 0x39, 0x36, 0xf8, 0x06, 0x18, 0xd1, 0xa7, 0x2b, 0xd3, 0xe4, 0x40, 0xf4, 0x11, 0x0f, 0x50,
0x42, 0x73, 0x95, 0x73, 0xcd, 0x15, 0x1f, 0x86, 0xba, 0xd0, 0x32, 0x1c, 0x7b, 0x3c, 0xc6, 0x46,
0xcf, 0xf5, 0xa7, 0xaa, 0xe4, 0x9b, 0x8a, 0x8f, 0x13, 0x53, 0xbd, 0x09, 0x17, 0xe3, 0x98, 0x76,
0x0d, 0xe2, 0x17, 0x12, 0xce, 0x92, 0x7d, 0x42, 0xaf, 0xc3, 0x62, 0x12, 0xbe, 0x4a, 0xe1, 0x93,
0x1f, 0xd0, 0x1b, 0x80, 0x62, 0xa8, 0x12, 0xf0, 0x1a, 0x03, 0x8f, 0x22, 0xc3, 0xc1, 0x69, 0xe0,
0x1c, 0x05, 0x07, 0x06, 0xce, 0xbf, 0x84, 0xc0, 0xbb, 0xc4, 0xba, 0x46, 0xc0, 0xdd, 0x76, 0x3d,
0x1f, 0x21, 0xa2, 0x93, 0xb9, 0xea, 0xaf, 0x2b, 0xb0, 0xf4, 0x89, 0xee, 0xf5, 0x0f, 0x37, 0x47,
0xb3, 0x07, 0x77, 0xef, 0x43, 0xed, 0x58, 0x84, 0x70, 0x4c, 0x8b, 0x5f, 0x97, 0x20, 0x14, 0x66,
0x7b, 0x2d, 0x18, 0x41, 0x02, 0x22, 0x16, 0x66, 0xfa, 0xd8, 0x7d, 0xf5, 0xaa, 0x66, 0x4a, 0xb4,
0xad, 0x3e, 0x05, 0xe0, 0xc8, 0x6d, 0xb9, 0x83, 0x73, 0xe0, 0xf5, 0x36, 0xcc, 0xf1, 0xd9, 0xb8,
0x2e, 0x99, 0x76, 0x60, 0x3e, 0xb8, 0xfa, 0xf7, 0x15, 0xa8, 0x87, 0x3e, 0xa0, 0x26, 0x14, 0x84,
0x92, 0x28, 0x48, 0x76, 0x57, 0x98, 0x1e, 0x43, 0x15, 0x93, 0x31, 0xd4, 0x6d, 0x68, 0x9a, 0xd4,
0x78, 0xf7, 0xf8, 0xa9, 0x50, 0x5f, 0xb9, 0xa6, 0xcd, 0xb3, 0x5e, 0xce, 0x22, 0xe8, 0x1a, 0xd4,
0xad, 0xc9, 0xa8, 0x67, 0x1f, 0xf4, 0x1c, 0xfb, 0xc4, 0xe5, 0xc1, 0x58, 0xcd, 0x9a, 0x8c, 0x3e,
0x3e, 0xd0, 0xec, 0x13, 0x37, 0xf0, 0xf7, 0x2b, 0x67, 0xf4, 0xf7, 0xaf, 0x41, 0x7d, 0xa4, 0x3f,
0x25, 0xb3, 0xf6, 0xac, 0xc9, 0x88, 0xc6, 0x69, 0x45, 0xad, 0x36, 0xd2, 0x9f, 0x6a, 0xf6, 0xc9,
0xf6, 0x64, 0x84, 0x56, 0xa0, 0x35, 0xd4, 0x5d, 0xaf, 0x17, 0x0e, 0xf4, 0xaa, 0x34, 0xd0, 0x6b,
0x92, 0xfe, 0x0f, 0x83, 0x60, 0x2f, 0x19, 0x39, 0xd4, 0xce, 0x17, 0x39, 0x18, 0xa3, 0x61, 0x30,
0x07, 0xe4, 0x8a, 0x1c, 0x8c, 0xd1, 0x50, 0xcc, 0xf0, 0x36, 0xcc, 0xed, 0x53, 0x47, 0x28, 0x4b,
0x44, 0x1f, 0x10, 0x1f, 0x88, 0xf9, 0x4b, 0x9a, 0x0f, 0x8e, 0xbe, 0x05, 0x35, 0x6a, 0x7f, 0xe8,
0xd8, 0x46, 0xae, 0xb1, 0xc1, 0x00, 0x32, 0xda, 0xc0, 0x43, 0x4f, 0xa7, 0xa3, 0xe7, 0xf3, 0x8d,
0x16, 0x03, 0x88, 0x7e, 0xec, 0x3b, 0x58, 0xf7, 0xb0, 0xb1, 0x7e, 0xba, 0x61, 0x8f, 0xc6, 0x3a,
0x65, 0xa1, 0x76, 0x93, 0xba, 0xf0, 0xb2, 0x4f, 0xe8, 0x65, 0x68, 0xf6, 0x45, 0xeb, 0x81, 0x63,
0x8f, 0xda, 0x0b, 0x54, 0x7a, 0x62, 0xbd, 0xe8, 0x2a, 0x80, 0xaf, 0x19, 0x75, 0xaf, 0xdd, 0xa2,
0x67, 0x57, 0xe3, 0x3d, 0xf7, 0x69, 0xf6, 0xc6, 0x74, 0x7b, 0x2c, 0x4f, 0x62, 0x5a, 0x83, 0xf6,
0x22, 0x5d, 0xb1, 0xee, 0x27, 0x56, 0x4c, 0x6b, 0x80, 0x96, 0x61, 0xce, 0x74, 0x7b, 0x07, 0xfa,
0x11, 0x6e, 0x23, 0xfa, 0xb5, 0x62, 0xba, 0x0f, 0xf4, 0x23, 0xea, 0x9b, 0xf2, 0xc5, 0xb0, 0xd1,
0xbe, 0x48, 0x3f, 0x05, 0x1d, 0xea, 0xe7, 0x70, 0x29, 0xe0, 0xb8, 0xd0, 0x11, 0x27, 0x19, 0x45,
0x39, 0x07, 0xa3, 0x64, 0xfb, 0xc5, 0xff, 0x55, 0x82, 0xa5, 0x5d, 0xfd, 0x18, 0x3f, 0x7f, 0x17,
0x3c, 0x97, 0x96, 0x7b, 0x04, 0x8b, 0xd4, 0xeb, 0x5e, 0x0b, 0xe1, 0x93, 0x61, 0xe0, 0xc3, 0x3c,
0x92, 0x1c, 0x88, 0xbe, 0x4d, 0x9c, 0x12, 0xdc, 0x3f, 0xda, 0x21, 0x11, 0x8c, 0x6f, 0xdc, 0xaf,
0x4a, 0xe6, 0xd9, 0x10, 0x50, 0x5a, 0x78, 0x04, 0xda, 0x81, 0x85, 0xe8, 0x09, 0xf8, 0x66, 0xfd,
0x95, 0xcc, 0xf0, 0x36, 0xa0, 0xbe, 0xd6, 0x8c, 0x1c, 0x86, 0x8b, 0xda, 0x30, 0xc7, 0x6d, 0x32,
0x55, 0x21, 0x55, 0xcd, 0x6f, 0xa2, 0x1d, 0xb8, 0xc8, 0x76, 0xb0, 0xcb, 0x25, 0x85, 0x6d, 0xbe,
0x9a, 0x6b, 0xf3, 0xb2, 0xa1, 0x51, 0x41, 0xab, 0x9d, 0x55, 0xd0, 0xda, 0x30, 0xc7, 0x99, 0x9f,
0xea, 0x96, 0xaa, 0xe6, 0x37, 0xc9, 0x31, 0x07, 0x62, 0x50, 0x67, 0xdc, 0x2c, 0x3a, 0xc8, 0x38,
0x5f, 0x43, 0x37, 0xa8, 0x86, 0xf6, 0x9b, 0xea, 0xaf, 0x2a, 0x00, 0x01, 0xa5, 0xa7, 0x24, 0x66,
0xde, 0x81, 0xaa, 0x60, 0xfb, 0x5c, 0xb1, 0xa5, 0x00, 0x8f, 0xdb, 0x80, 0x62, 0xcc, 0x06, 0xa8,
0xff, 0xa4, 0x40, 0x63, 0x93, 0xec, 0xf3, 0x91, 0x3d, 0xa0, 0x16, 0xeb, 0x36, 0x34, 0x1d, 0xdc,
0xb7, 0x1d, 0xa3, 0x87, 0x2d, 0xcf, 0x31, 0x31, 0x0b, 0xea, 0x4b, 0xda, 0x3c, 0xeb, 0xfd, 0x90,
0x75, 0x12, 0x30, 0xa2, 0xd6, 0x5d, 0x4f, 0x1f, 0x8d, 0x7b, 0x07, 0x44, 0x91, 0xb0, 0x3c, 0xf1,
0xbc, 0xe8, 0xa5, 0x7a, 0xe4, 0x25, 0x68, 0x04, 0x60, 0x9e, 0x4d, 0xd7, 0x2f, 0x69, 0x75, 0xd1,
0xb7, 0x67, 0xa3, 0x5b, 0xd0, 0xa4, 0x84, 0xee, 0x0d, 0xed, 0x41, 0x8f, 0x84, 0x8a, 0xdc, 0x98,
0x35, 0x0c, 0x8e, 0x16, 0x39, 0xc0, 0x28, 0x94, 0x6b, 0x7e, 0x8e, 0xb9, 0x39, 0x13, 0x50, 0xbb,
0xe6, 0xe7, 0x58, 0xfd, 0x15, 0x05, 0xe6, 0xb9, 0xf5, 0xdb, 0x15, 0x09, 0x7d, 0x9a, 0xe5, 0x64,
0x61, 0x3a, 0xfd, 0x8d, 0xde, 0x8d, 0xe6, 0xb9, 0x6e, 0x49, 0x85, 0x80, 0x4e, 0x42, 0x7d, 0xae,
0x88, 0xe9, 0xcb, 0x13, 0x27, 0x7e, 0x41, 0x68, 0xaa, 0x7b, 0xfa, 0xb6, 0x6d, 0xb0, 0xb4, 0x5b,
0x1b, 0xe6, 0x74, 0xc3, 0x70, 0xb0, 0xeb, 0x72, 0x3c, 0xfc, 0x26, 0xf9, 0x72, 0x8c, 0x1d, 0xd7,
0x3f, 0xd8, 0xa2, 0xe6, 0x37, 0xd1, 0xb7, 0x62, 0x79, 0xf6, 0xfa, 0xda, 0x8d, 0x74, 0x3c, 0x79,
0x54, 0x13, 0x64, 0xe2, 0xff, 0xa6, 0x00, 0x4d, 0x2e, 0x83, 0xeb, 0xdc, 0x50, 0x65, 0xb3, 0xd8,
0x3a, 0x34, 0x0e, 0x02, 0xde, 0xcf, 0xca, 0xca, 0x84, 0x45, 0x24, 0x32, 0x66, 0x1a, 0xaf, 0x45,
0x4d, 0x65, 0x69, 0x26, 0x53, 0x59, 0x3e, 0xab, 0x04, 0x27, 0x5d, 0xa6, 0x8a, 0xc4, 0x65, 0x52,
0x7f, 0x01, 0xea, 0xa1, 0x09, 0xa8, 0x86, 0x62, 0x89, 0x0f, 0x4e, 0x31, 0xbf, 0x89, 0xee, 0x05,
0x0e, 0x03, 0x23, 0xd5, 0x65, 0x09, 0x2e, 0x31, 0x5f, 0x41, 0xfd, 0xa9, 0x02, 0x15, 0x3e, 0xf3,
0x75, 0xa8, 0x73, 0xf9, 0xa2, 0x2e, 0x14, 0x9b, 0x1d, 0x78, 0x17, 0xf1, 0xa1, 0x9e, 0x9d, 0x80,
0x5d, 0x86, 0x6a, 0x4c, 0xb4, 0xe6, 0xb8, 0x5a, 0xf4, 0x3f, 0x85, 0xe4, 0x89, 0x7c, 0x22, 0xa2,
0x84, 0x2e, 0x41, 0x79, 0x68, 0x0f, 0x44, 0x51, 0x84, 0x35, 0xd4, 0x9f, 0x29, 0x34, 0x87, 0xad,
0xe1, 0xbe, 0x7d, 0x8c, 0x9d, 0xd3, 0xd9, 0xd3, 0x80, 0xef, 0x85, 0xd8, 0x3c, 0x67, 0x2c, 0x22,
0x06, 0xa0, 0xf7, 0x82, 0x43, 0x28, 0xca, 0xb2, 0x05, 0x61, 0x53, 0xc4, 0x99, 0x34, 0x38, 0x8c,
0xdf, 0x55, 0x68, 0x42, 0x33, 0xba, 0x95, 0xf3, 0x5a, 0xfb, 0x67, 0xe2, 0xd7, 0xab, 0xff, 0xa8,
0xc0, 0xe5, 0x14, 0xea, 0x3e, 0x59, 0xfb, 0x1a, 0xe8, 0xfb, 0x2e, 0x54, 0x45, 0xe4, 0x5a, 0xcc,
0x15, 0xb9, 0x0a, 0x78, 0xf5, 0x0f, 0x58, 0x5a, 0x5d, 0x42, 0xde, 0x27, 0x6b, 0xcf, 0x89, 0xc0,
0xf1, 0x0c, 0x54, 0x51, 0x92, 0x81, 0xfa, 0x67, 0x05, 0x3a, 0x41, 0xc6, 0xc7, 0x5d, 0x3f, 0x9d,
0xb5, 0x0e, 0xf3, 0x6c, 0x22, 0xba, 0x77, 0x44, 0xc9, 0x80, 0xe8, 0xc5, 0x5c, 0xb1, 0x98, 0x5f,
0x30, 0xb0, 0x68, 0xf2, 0x38, 0xb9, 0xa1, 0x59, 0xa4, 0xb2, 0x13, 0x3a, 0x78, 0x56, 0x36, 0x08,
0x0e, 0xf6, 0xa7, 0x8c, 0x49, 0x1f, 0x44, 0xd3, 0x3e, 0x5f, 0x37, 0x01, 0xc3, 0xa5, 0x8c, 0x43,
0x5e, 0xca, 0x28, 0xc5, 0x4a, 0x19, 0xbc, 0x5f, 0x1d, 0x51, 0x16, 0x48, 0x6c, 0xe0, 0x79, 0x11,
0xec, 0xd7, 0x14, 0x68, 0xf3, 0x55, 0x58, 0x79, 0xde, 0x1e, 0x8d, 0x87, 0xd8, 0xc3, 0xc6, 0x57,
0x9d, 0x9c, 0xf8, 0xcb, 0x02, 0xb4, 0xc2, 0x8e, 0x0d, 0xf5, 0x4d, 0xbe, 0x01, 0x65, 0x9a, 0xdb,
0xe1, 0x18, 0x4c, 0xd5, 0x0e, 0x0c, 0x9a, 0x58, 0x46, 0xea, 0xcd, 0xef, 0xb9, 0xbe, 0xe3, 0xc2,
0x9b, 0x81, 0x77, 0x55, 0x3c, 0xbb, 0x77, 0xf5, 0x22, 0xd4, 0x88, 0xe5, 0xb2, 0x27, 0x64, 0x5e,
0x56, 0x5f, 0x0e, 0x3a, 0xd0, 0xfb, 0x50, 0x61, 0x37, 0x5a, 0x78, 0x79, 0xef, 0x76, 0x74, 0x6a,
0x7e, 0xdb, 0x25, 0x94, 0x9e, 0xa7, 0x1d, 0x1a, 0x1f, 0x44, 0xce, 0x68, 0xec, 0xd8, 0x03, 0xea,
0x86, 0x11, 0xa3, 0x56, 0xd6, 0x44, 0x9b, 0xb8, 0x89, 0xf6, 0xb8, 0xbb, 0xc9, 0x53, 0x19, 0xf4,
0xb7, 0xfa, 0xff, 0x61, 0x29, 0x88, 0x9c, 0x19, 0x9a, 0xe7, 0x65, 0x72, 0xf5, 0xdf, 0x14, 0xb8,
0xb8, 0x7b, 0x6a, 0xf5, 0xe3, 0xe2, 0xb2, 0x04, 0x95, 0xf1, 0x50, 0x0f, 0x12, 0xc9, 0xbc, 0x45,
0x8b, 0xf4, 0x7e, 0x4c, 0x4c, 0xcc, 0x3a, 0xa3, 0x71, 0x5d, 0xf4, 0xed, 0xd9, 0x53, 0xbd, 0xad,
0xdb, 0x22, 0xd4, 0xc7, 0x06, 0x73, 0x20, 0x58, 0xa2, 0x6c, 0x5e, 0xf4, 0x52, 0x07, 0xe2, 0x7d,
0x00, 0xea, 0x63, 0xf5, 0xce, 0xe2, 0x57, 0xd1, 0x11, 0x8f, 0x88, 0x15, 0xfd, 0xab, 0x02, 0xb4,
0x43, 0x54, 0xfa, 0xaa, 0x5d, 0xce, 0x94, 0x40, 0xb1, 0xf8, 0x8c, 0x02, 0xc5, 0xd2, 0xec, 0x6e,
0x66, 0x59, 0xe6, 0x66, 0xfe, 0xb0, 0x08, 0xcd, 0x80, 0x6a, 0x3b, 0x43, 0xdd, 0x4a, 0xe5, 0x84,
0x5d, 0x68, 0xba, 0x11, 0xaa, 0x72, 0x3a, 0xbd, 0x26, 0x93, 0xab, 0x94, 0x83, 0xd0, 0x62, 0x53,
0xa0, 0xab, 0xf4, 0xd0, 0x1d, 0x8f, 0xa5, 0xe6, 0x98, 0xcf, 0x58, 0x63, 0x02, 0x6c, 0x8e, 0x30,
0x7a, 0x1d, 0x10, 0x97, 0xba, 0x9e, 0x69, 0xf5, 0x5c, 0xdc, 0xb7, 0x2d, 0x83, 0xc9, 0x63, 0x59,
0x6b, 0xf1, 0x2f, 0x5d, 0x6b, 0x97, 0xf5, 0xa3, 0x6f, 0x40, 0xc9, 0x3b, 0x1d, 0x33, 0x07, 0xb2,
0x29, 0x75, 0xc1, 0x02, 0xbc, 0xf6, 0x4e, 0xc7, 0x58, 0xa3, 0xe0, 0xfe, 0x45, 0x27, 0xcf, 0xd1,
0x8f, 0xb9, 0x37, 0x5e, 0xd2, 0x42, 0x3d, 0xe1, 0xd8, 0x79, 0x2e, 0x12, 0x3b, 0x33, 0xce, 0xf6,
0x85, 0xbc, 0xe7, 0x79, 0x43, 0x9a, 0x5c, 0xa4, 0x9c, 0xed, 0xf7, 0xee, 0x79, 0x43, 0xb2, 0x49,
0xcf, 0xf6, 0xf4, 0x21, 0x93, 0x8f, 0x1a, 0xd7, 0x26, 0xa4, 0x87, 0x46, 0xbe, 0xff, 0x4a, 0xb4,
0xa1, 0x40, 0x4c, 0xc3, 0xee, 0x64, 0x98, 0x2e, 0x8f, 0xd9, 0xd9, 0x9c, 0x69, 0xa2, 0xf8, 0x6d,
0xa8, 0x73, 0xae, 0x38, 0x03, 0x57, 0x01, 0x1b, 0xf2, 0x28, 0x83, 0xcd, 0xcb, 0xcf, 0x88, 0xcd,
0x2b, 0xe7, 0xc8, 0x87, 0xc8, 0xcf, 0x46, 0xfd, 0x91, 0x02, 0x2f, 0x24, 0xb4, 0x66, 0x26, 0x69,
0xb3, 0xa3, 0x71, 0xae, 0x4d, 0xe3, 0x53, 0x72, 0x7b, 0xf1, 0x1e, 0x54, 0x1c, 0x3a, 0x3b, 0x2f,
0xa0, 0xdd, 0xcc, 0x64, 0x3e, 0x86, 0x88, 0xc6, 0x87, 0xa8, 0xbf, 0xa7, 0xc0, 0x72, 0x12, 0xd5,
0x19, 0x9c, 0x80, 0x75, 0x98, 0x63, 0x53, 0xfb, 0x32, 0xba, 0x92, 0x2d, 0xa3, 0x01, 0x71, 0x34,
0x7f, 0xa0, 0xba, 0x0b, 0x4b, 0xbe, 0xaf, 0x10, 0x90, 0x7e, 0x0b, 0x7b, 0x7a, 0x46, 0x2c, 0x7a,
0x1d, 0xea, 0x2c, 0xa8, 0x61, 0x31, 0x1e, 0xab, 0x37, 0xc2, 0xbe, 0x48, 0xfe, 0xa9, 0xbf, 0x5f,
0x80, 0x4b, 0xd4, 0xd8, 0xc6, 0x8b, 0x47, 0x79, 0xaa, 0x99, 0xaa, 0xb8, 0x2f, 0xb6, 0xad, 0x8f,
0xf8, 0x9d, 0x96, 0x9a, 0x16, 0xe9, 0x43, 0xdd, 0x64, 0x6e, 0x50, 0x9a, 0xb3, 0x08, 0xca, 0xb7,
0x9b, 0xba, 0xa7, 0xd3, 0xea, 0x6d, 0x3c, 0x29, 0x18, 0x18, 0xf9, 0xd2, 0x79, 0x8c, 0xfc, 0xab,
0xd0, 0x62, 0x79, 0xef, 0x9e, 0x08, 0x81, 0xa9, 0x62, 0x2a, 0x69, 0x0b, 0xac, 0x7f, 0xcf, 0xef,
0x56, 0x1f, 0xc1, 0x0b, 0x31, 0xa2, 0xcc, 0x70, 0xf8, 0xea, 0x9f, 0x29, 0xe4, 0xe4, 0x22, 0xd7,
0x88, 0xce, 0xef, 0x13, 0x5f, 0x15, 0x05, 0xae, 0x9e, 0x69, 0xc4, 0xf5, 0x8d, 0x81, 0x3e, 0x80,
0x9a, 0x85, 0x4f, 0x7a, 0x61, 0x37, 0x2b, 0x47, 0xc0, 0x50, 0xb5, 0xf0, 0x09, 0xfd, 0xa5, 0x6e,
0xc3, 0x72, 0x02, 0xd5, 0x59, 0xf6, 0xfe, 0xb7, 0x0a, 0x5c, 0xde, 0x74, 0xec, 0xf1, 0x13, 0xd3,
0xf1, 0x26, 0xfa, 0x30, 0x5a, 0x43, 0x3f, 0xc7, 0xf6, 0x73, 0x5c, 0x51, 0xfc, 0x28, 0x11, 0x9a,
0xbe, 0x2e, 0x11, 0xb6, 0x24, 0x52, 0x7c, 0xd3, 0x21, 0xf7, 0xfc, 0x3f, 0x8b, 0x32, 0xe4, 0x39,
0xdc, 0x14, 0x17, 0x26, 0x4f, 0xec, 0x22, 0x4d, 0xe3, 0x17, 0xcf, 0x9b, 0xc6, 0x4f, 0xb1, 0x04,
0xa5, 0x67, 0x64, 0x09, 0xce, 0x9c, 0x57, 0xdb, 0x80, 0x68, 0x89, 0x85, 0x1a, 0xf2, 0xb3, 0x96,
0x65, 0xde, 0x07, 0x08, 0x2a, 0x0d, 0xfc, 0xda, 0xe7, 0x94, 0x19, 0x42, 0x03, 0xc8, 0x19, 0x09,
0x5b, 0xcb, 0x5d, 0x81, 0x50, 0x86, 0xfb, 0xbb, 0xd0, 0x91, 0xf1, 0xe6, 0x2c, 0xfc, 0xfe, 0xef,
0x05, 0x80, 0xae, 0xb8, 0x24, 0x7c, 0x3e, 0x63, 0x71, 0x13, 0x42, 0xee, 0x4a, 0x20, 0xe5, 0x61,
0xde, 0x31, 0x88, 0x20, 0x88, 0x20, 0x97, 0xc0, 0x24, 0x02, 0x5f, 0x83, 0xce, 0x13, 0x92, 0x15,
0xc6, 0x0a, 0x71, 0xfd, 0x7c, 0x05, 0x6a, 0x8e, 0x7d, 0xd2, 0x23, 0xc2, 0x65, 0xf8, 0xb7, 0xa0,
0x1d, 0xfb, 0x84, 0x88, 0x9c, 0x81, 0x96, 0x61, 0xce, 0xd3, 0xdd, 0x23, 0x32, 0x3f, 0xcb, 0xf5,
0x55, 0x48, 0xb3, 0x6b, 0xa0, 0x4b, 0x50, 0x3e, 0x30, 0x87, 0x98, 0x5d, 0xb8, 0xa8, 0x69, 0xac,
0x81, 0xbe, 0xe9, 0x5f, 0xdc, 0xab, 0xe6, 0xbe, 0xa0, 0xc3, 0xee, 0xee, 0xdd, 0x84, 0x79, 0xc2,
0x49, 0x04, 0x09, 0x26, 0xd6, 0x2d, 0x9e, 0xe7, 0xe7, 0x9d, 0x04, 0x55, 0xf5, 0x67, 0x0a, 0x2c,
0x04, 0xa4, 0xa5, 0xba, 0x89, 0xa8, 0x3b, 0xaa, 0xea, 0x36, 0x6c, 0x83, 0x69, 0x91, 0x66, 0x8a,
0x5d, 0x61, 0x03, 0x99, 0x42, 0x0b, 0x86, 0x64, 0x05, 0xe7, 0x64, 0xf3, 0x84, 0x32, 0xa6, 0xe1,
0xa7, 0x8b, 0x2a, 0x8e, 0x7d, 0xd2, 0x35, 0x04, 0xc9, 0xd8, 0x3d, 0x68, 0x16, 0x8a, 0x12, 0x92,
0x6d, 0xd0, 0xab, 0xd0, 0x37, 0x61, 0x1e, 0x3b, 0x8e, 0xed, 0xf4, 0x46, 0xd8, 0x75, 0xf5, 0x01,
0xe6, 0x5e, 0x7e, 0x83, 0x76, 0x6e, 0xb1, 0x3e, 0xf5, 0xef, 0x4a, 0xd0, 0x0c, 0xb6, 0xe2, 0x5f,
0x07, 0x30, 0x0d, 0xff, 0x3a, 0x80, 0x49, 0xce, 0x17, 0x1c, 0xa6, 0x25, 0x05, 0x07, 0xac, 0x17,
0xda, 0x8a, 0x56, 0xe3, 0xbd, 0x5d, 0x83, 0x18, 0x77, 0x42, 0x20, 0xcb, 0x36, 0x70, 0xc0, 0x01,
0xe0, 0x77, 0x71, 0x06, 0x88, 0x30, 0x52, 0x29, 0x07, 0x23, 0x95, 0x73, 0x30, 0x52, 0x45, 0xc2,
0x48, 0x4b, 0x50, 0xd9, 0x9f, 0xf4, 0x8f, 0xb0, 0xc7, 0xfd, 0x3e, 0xde, 0x8a, 0x32, 0x58, 0x35,
0xc6, 0x60, 0x82, 0x8f, 0x6a, 0x61, 0x3e, 0xba, 0x02, 0x35, 0xdf, 0x52, 0xbb, 0xb4, 0xaa, 0x56,
0xd4, 0xaa, 0xdc, 0x44, 0xbb, 0xe8, 0x6d, 0xdf, 0x29, 0xac, 0x53, 0x89, 0x52, 0x25, 0x0a, 0x29,
0xc6, 0x25, 0xbe, 0x4b, 0xf8, 0x0a, 0x2c, 0x84, 0xc8, 0x41, 0xf9, 0x8c, 0x95, 0xde, 0x42, 0x31,
0x03, 0xb5, 0x20, 0xb7, 0xa1, 0x19, 0x90, 0x84, 0xc2, 0xcd, 0xb3, 0x50, 0x4d, 0xf4, 0x52, 0x30,
0xc1, 0xee, 0xcd, 0x33, 0xb2, 0xfb, 0x65, 0xa8, 0xf2, 0x18, 0xcb, 0x6d, 0x2f, 0x44, 0x53, 0x24,
0xb9, 0x24, 0xe1, 0xfb, 0x80, 0x82, 0x2d, 0xce, 0xe6, 0x98, 0xc6, 0x78, 0xa8, 0x10, 0xe7, 0x21,
0xf5, 0xcf, 0x15, 0x58, 0x0c, 0x2f, 0x76, 0x5e, 0xc3, 0xfd, 0x01, 0xd4, 0x59, 0xf1, 0xb3, 0x47,
0x54, 0x88, 0xbc, 0x56, 0x19, 0x3b, 0x3c, 0x0d, 0x82, 0xe7, 0x16, 0x84, 0x30, 0x27, 0xb6, 0x73,
0x64, 0x5a, 0x83, 0x1e, 0xc1, 0x4c, 0xa4, 0x70, 0x79, 0xe7, 0x36, 0xe9, 0x53, 0x7f, 0x53, 0x81,
0x6b, 0x8f, 0xc7, 0x86, 0xee, 0xe1, 0x90, 0x07, 0x33, 0xeb, 0xad, 0x47, 0x71, 0xed, 0xb0, 0x90,
0x71, 0xcc, 0xa1, 0xf5, 0x5c, 0x7e, 0xed, 0x90, 0xf8, 0x7d, 0x1c, 0x9b, 0xc4, 0x3d, 0xe1, 0xf3,
0x63, 0xd3, 0x81, 0xea, 0x31, 0x9f, 0xce, 0x7f, 0x40, 0xe2, 0xb7, 0x23, 0xc5, 0xe0, 0xe2, 0x99,
0x8a, 0xc1, 0xea, 0x16, 0x5c, 0xd6, 0xb0, 0x8b, 0x2d, 0x23, 0xb2, 0x91, 0x73, 0x27, 0xb5, 0xc6,
0xd0, 0x91, 0x4d, 0x37, 0x0b, 0xa7, 0x32, 0xc7, 0xb7, 0xe7, 0x90, 0x69, 0x3d, 0xae, 0xac, 0x89,
0xbf, 0x45, 0xd7, 0xf1, 0xd4, 0xbf, 0x28, 0xc0, 0xf2, 0x7d, 0xc3, 0xe0, 0x7a, 0x9e, 0xbb, 0x72,
0xcf, 0xcb, 0xcb, 0x8e, 0x7b, 0xa1, 0xc5, 0xa4, 0x17, 0xfa, 0xac, 0x74, 0x2f, 0xb7, 0x42, 0xd6,
0x64, 0xe4, 0x9b, 0x60, 0x87, 0xdd, 0xa4, 0x7a, 0x8f, 0x97, 0x4c, 0x7b, 0x43, 0x7b, 0x40, 0xcd,
0xf0, 0x74, 0xe7, 0xac, 0xea, 0x27, 0xe7, 0xd4, 0x31, 0xb4, 0x93, 0xc4, 0x9a, 0x51, 0x8f, 0xf8,
0x14, 0x19, 0xdb, 0x2c, 0xf1, 0xdb, 0x20, 0x9e, 0x18, 0xed, 0xda, 0xb1, 0x5d, 0xf5, 0xbf, 0x0b,
0xd0, 0xde, 0xd5, 0x8f, 0xf1, 0xff, 0x9d, 0x03, 0xfa, 0x14, 0x2e, 0xb9, 0xfa, 0x31, 0xee, 0x85,
0x02, 0xf0, 0x9e, 0x83, 0x3f, 0xe3, 0x4e, 0xec, 0xab, 0xb2, 0xd4, 0xbc, 0xf4, 0x86, 0x91, 0xb6,
0xe8, 0x46, 0xfa, 0x35, 0xfc, 0x19, 0x7a, 0x19, 0x16, 0xc2, 0xd7, 0xda, 0x08, 0x6a, 0x55, 0x4a,
0xf2, 0xf9, 0xd0, 0xd5, 0xb5, 0xae, 0xa1, 0x7e, 0x06, 0x2f, 0x3e, 0xb6, 0x5c, 0xec, 0x75, 0x83,
0xeb, 0x57, 0x33, 0xc6, 0x9f, 0xd7, 0xa1, 0x1e, 0x10, 0x3e, 0xf1, 0x72, 0xc4, 0x70, 0x55, 0x1b,
0x3a, 0x5b, 0xba, 0x73, 0xe4, 0xa7, 0xb3, 0x37, 0xd9, 0x6d, 0x98, 0xe7, 0xb8, 0xe0, 0x81, 0xb8,
0x17, 0xa6, 0xe1, 0x03, 0xec, 0x60, 0xab, 0x8f, 0x1f, 0xd9, 0xfd, 0x23, 0xe2, 0x90, 0x78, 0xec,
0xf1, 0x9e, 0x12, 0xf2, 0x5d, 0x37, 0x43, 0x6f, 0xf3, 0x0a, 0x91, 0xb7, 0x79, 0x53, 0xde, 0xa1,
0xaa, 0x3f, 0x2e, 0xc0, 0xd2, 0xfd, 0xa1, 0x87, 0x9d, 0x20, 0xc3, 0x70, 0x96, 0x64, 0x49, 0x90,
0xbd, 0x28, 0x9c, 0x27, 0x7b, 0x91, 0xa3, 0x82, 0x29, 0xcb, 0xb5, 0x94, 0xce, 0x99, 0x6b, 0xb9,
0x0f, 0x30, 0x76, 0xec, 0x31, 0x76, 0x3c, 0x13, 0xfb, 0xb1, 0x5f, 0x0e, 0x07, 0x27, 0x34, 0x48,
0xfd, 0x14, 0x5a, 0x0f, 0xfb, 0x1b, 0xb6, 0x75, 0x60, 0x3a, 0x23, 0x9f, 0x50, 0x09, 0xa1, 0x53,
0x72, 0x08, 0x5d, 0x21, 0x21, 0x74, 0xaa, 0x09, 0x8b, 0xa1, 0xb9, 0x67, 0x54, 0x5c, 0x83, 0x7e,
0xef, 0xc0, 0xb4, 0x4c, 0x7a, 0xdb, 0xac, 0x40, 0x1d, 0x54, 0x18, 0xf4, 0x1f, 0xf0, 0x1e, 0xf5,
0x4b, 0x05, 0xae, 0x68, 0x98, 0x08, 0x8f, 0x7f, 0x71, 0x67, 0xcf, 0xdb, 0x72, 0x07, 0x33, 0x38,
0x14, 0xf7, 0xa0, 0x34, 0x72, 0x07, 0x29, 0x45, 0x77, 0x62, 0xa2, 0x23, 0x0b, 0x69, 0x14, 0x58,
0xfd, 0x89, 0x02, 0x97, 0xfc, 0xd2, 0x64, 0x44, 0x84, 0xa3, 0x6c, 0xab, 0x24, 0x5e, 0x72, 0x65,
0x3c, 0xd8, 0x5d, 0x86, 0x39, 0x63, 0x3f, 0xac, 0x20, 0x2b, 0xc6, 0x3e, 0xd5, 0x8d, 0x12, 0x4f,
0xb9, 0x24, 0xf5, 0x94, 0xe3, 0x8c, 0x5f, 0x96, 0xdc, 0x79, 0x7a, 0x0c, 0x6d, 0xee, 0xa0, 0x7c,
0x3c, 0xc6, 0x8e, 0x4e, 0xf9, 0xcb, 0x47, 0xfe, 0x1d, 0xdf, 0x85, 0x56, 0x52, 0x9f, 0xc3, 0xc5,
0xcb, 0x92, 0xdc, 0x89, 0x56, 0xff, 0x41, 0x81, 0x1b, 0xf1, 0x79, 0x77, 0x78, 0xd1, 0x6e, 0xe6,
0x97, 0xde, 0xb4, 0xe2, 0x57, 0x08, 0x2a, 0x7e, 0x33, 0x95, 0x2e, 0xc3, 0xd5, 0xc5, 0x52, 0xb4,
0xba, 0x78, 0xe7, 0x03, 0x71, 0x29, 0x7c, 0xef, 0x74, 0x8c, 0xd1, 0x1c, 0x14, 0xb7, 0xf1, 0x49,
0xeb, 0x02, 0x02, 0xa8, 0x6c, 0xdb, 0xce, 0x48, 0x1f, 0xb6, 0x14, 0x54, 0x87, 0x39, 0x5e, 0x91,
0x6e, 0x15, 0xd0, 0x3c, 0xd4, 0x36, 0xfc, 0x2a, 0x5d, 0xab, 0x78, 0xe7, 0x8f, 0x14, 0x58, 0x4c,
0x2c, 0x8c, 0x9a, 0x00, 0x8f, 0xad, 0x3e, 0x2f, 0x26, 0xb7, 0x2e, 0xa0, 0x06, 0x54, 0xfd, 0xd2,
0x32, 0x9b, 0x6f, 0xcf, 0xa6, 0xd0, 0xad, 0x02, 0x6a, 0x41, 0x83, 0x0d, 0x9c, 0xf4, 0xfb, 0xd8,
0x75, 0x5b, 0x45, 0xd1, 0xf3, 0x40, 0x37, 0x87, 0x13, 0x07, 0xb7, 0x4a, 0x64, 0xcd, 0x3d, 0x5b,
0xc3, 0x43, 0xac, 0xbb, 0xb8, 0x55, 0x46, 0x08, 0x9a, 0xbc, 0xe1, 0x0f, 0xaa, 0x84, 0xfa, 0xfc,
0x61, 0x73, 0x77, 0x3e, 0x09, 0x57, 0xb2, 0xe8, 0xf6, 0x96, 0xe1, 0xe2, 0x63, 0xcb, 0xc0, 0x07,
0xa6, 0x85, 0x8d, 0xe0, 0x53, 0xeb, 0x02, 0xba, 0x08, 0x0b, 0x5b, 0xd8, 0x19, 0xe0, 0x50, 0x67,
0x01, 0x2d, 0xc2, 0xfc, 0x96, 0xf9, 0x34, 0xd4, 0x55, 0x54, 0x4b, 0x55, 0xa5, 0xa5, 0xac, 0xfd,
0xe4, 0x36, 0xd4, 0x88, 0x8c, 0x6c, 0xd8, 0xb6, 0x63, 0xa0, 0x21, 0x20, 0xfa, 0xf4, 0x6a, 0x34,
0xb6, 0x2d, 0xf1, 0x4c, 0x13, 0xad, 0xc6, 0xc4, 0x8a, 0x35, 0x92, 0x80, 0x9c, 0x13, 0x3b, 0xb7,
0xa4, 0xf0, 0x31, 0x60, 0xf5, 0x02, 0x1a, 0xd1, 0xd5, 0xf6, 0xcc, 0x11, 0xde, 0x33, 0xfb, 0x47,
0xbe, 0xe7, 0xfd, 0x66, 0xca, 0x5b, 0xb7, 0x24, 0xa8, 0xbf, 0xde, 0x4d, 0xe9, 0x7a, 0xec, 0x6d,
0x9c, 0xcf, 0xbe, 0xea, 0x05, 0xf4, 0x19, 0x95, 0xfa, 0x20, 0x8c, 0xf1, 0x17, 0x5c, 0x4b, 0x5f,
0x30, 0x01, 0x7c, 0xc6, 0x25, 0x1f, 0x41, 0x99, 0xb2, 0x1b, 0x92, 0x15, 0xfc, 0xc3, 0xff, 0xff,
0xd0, 0xb9, 0x91, 0x0e, 0x20, 0x66, 0xfb, 0x3e, 0x2c, 0xc4, 0x5e, 0x5f, 0x23, 0x99, 0xeb, 0x23,
0x7f, 0x47, 0xdf, 0xb9, 0x93, 0x07, 0x54, 0xac, 0x35, 0x80, 0x66, 0xf4, 0xc9, 0x16, 0x5a, 0xc9,
0xf1, 0xf0, 0x93, 0xad, 0xf4, 0x6a, 0xee, 0x27, 0xa2, 0x94, 0x09, 0x5a, 0xf1, 0x77, 0xc1, 0xe8,
0x4e, 0xe6, 0x04, 0x51, 0x66, 0x7b, 0x2d, 0x17, 0xac, 0x58, 0xee, 0x94, 0x32, 0x41, 0xe2, 0x51,
0x66, 0x9c, 0xc7, 0xfd, 0x69, 0xd2, 0x5e, 0x8b, 0x76, 0xee, 0xe6, 0x86, 0x17, 0x4b, 0xff, 0x32,
0xbb, 0xd5, 0x27, 0x7b, 0xd8, 0x88, 0xde, 0x92, 0x4f, 0x97, 0xf1, 0x22, 0xb3, 0xb3, 0x76, 0x96,
0x21, 0x02, 0x89, 0x1f, 0xd0, 0xeb, 0x78, 0x92, 0xa7, 0x81, 0x71, 0xb9, 0xf3, 0xe7, 0x4b, 0x7f,
0xf5, 0xd8, 0x79, 0xeb, 0x0c, 0x23, 0x04, 0x02, 0x76, 0xfc, 0xe1, 0xb5, 0x2f, 0x86, 0x77, 0xa7,
0x72, 0xcd, 0xf9, 0x64, 0xf0, 0x7b, 0xb0, 0x10, 0x0b, 0x06, 0x50, 0xfe, 0x80, 0xa1, 0x93, 0x65,
0xe5, 0x98, 0x48, 0xc6, 0xae, 0xdf, 0xa1, 0x14, 0xee, 0x97, 0x5c, 0xd1, 0xeb, 0xdc, 0xc9, 0x03,
0x2a, 0x36, 0x32, 0x86, 0xc5, 0xd8, 0xc7, 0x27, 0x6b, 0xe8, 0xb5, 0xdc, 0xab, 0x3d, 0x59, 0xeb,
0xbc, 0x9e, 0x7f, 0xbd, 0x27, 0x6b, 0xea, 0x05, 0xe4, 0x52, 0x05, 0x1d, 0xbb, 0xc2, 0x85, 0x52,
0x66, 0x91, 0x5f, 0x55, 0xeb, 0xbc, 0x91, 0x13, 0x5a, 0x6c, 0xf3, 0x18, 0x2e, 0x4a, 0x6e, 0xda,
0xa1, 0x37, 0x32, 0xd9, 0x23, 0x7e, 0xc5, 0xb0, 0xb3, 0x9a, 0x17, 0x3c, 0x64, 0x1e, 0x5a, 0x3e,
0x5e, 0xf7, 0x87, 0x43, 0x66, 0xfc, 0x5f, 0x4f, 0xb3, 0x7c, 0x11, 0xb0, 0x94, 0xad, 0xa6, 0x42,
0x8b, 0x25, 0x7f, 0x11, 0xd0, 0xee, 0xa1, 0x7d, 0x42, 0x9d, 0xef, 0xc1, 0x84, 0xfb, 0x73, 0xa9,
0x06, 0x30, 0x09, 0x9a, 0x22, 0x88, 0x99, 0x23, 0xc4, 0xe2, 0x3d, 0x80, 0x87, 0xd8, 0xdb, 0xc2,
0x9e, 0x43, 0xa4, 0xff, 0xe5, 0x34, 0xdc, 0x39, 0x80, 0xbf, 0xd4, 0x2b, 0x53, 0xe1, 0xc2, 0x04,
0xdd, 0xd2, 0xad, 0x89, 0x3e, 0x0c, 0xbd, 0x8c, 0x92, 0x13, 0x34, 0x0e, 0x96, 0x4d, 0xd0, 0x24,
0xb4, 0x58, 0xf2, 0x44, 0xf8, 0x2f, 0xa1, 0xe2, 0x7f, 0xb6, 0xff, 0x92, 0xbc, 0x78, 0x16, 0xd7,
0xed, 0x19, 0xf0, 0x62, 0xe1, 0x2f, 0x14, 0x7a, 0x3f, 0x34, 0x06, 0xf0, 0x89, 0xe9, 0x1d, 0xee,
0x0c, 0x75, 0xcb, 0xcd, 0x83, 0x02, 0x05, 0x3c, 0x03, 0x0a, 0x1c, 0x5e, 0xa0, 0x60, 0xc0, 0x7c,
0xa4, 0xd0, 0x8e, 0x64, 0x2f, 0x86, 0x64, 0xf7, 0x13, 0x3a, 0x2b, 0xd3, 0x01, 0xc5, 0x2a, 0x07,
0x30, 0x1f, 0x09, 0x9d, 0xa4, 0xab, 0xc8, 0x82, 0xab, 0xb8, 0xb2, 0x8b, 0x49, 0x47, 0x9c, 0xa0,
0x2e, 0xa0, 0x64, 0x3d, 0x11, 0xe5, 0xab, 0x3e, 0x67, 0xa9, 0x9e, 0xf4, 0x22, 0x25, 0xd3, 0xe6,
0xb1, 0x8a, 0xbd, 0xdc, 0x54, 0x48, 0x2f, 0x20, 0x48, 0xb5, 0x79, 0xca, 0x05, 0x00, 0xf5, 0x02,
0xfa, 0x04, 0x2a, 0xfc, 0xff, 0x91, 0x6e, 0x65, 0x67, 0xee, 0xf9, 0xec, 0xb7, 0xa7, 0x40, 0x89,
0x89, 0x8f, 0x60, 0x39, 0x25, 0x6f, 0x2f, 0xf5, 0x32, 0xb2, 0x73, 0xfc, 0xd3, 0xec, 0x9f, 0x58,
0x2c, 0x91, 0x96, 0xcf, 0x58, 0x2c, 0x2d, 0x85, 0x3f, 0x6d, 0xb1, 0x1e, 0x2c, 0x26, 0xd2, 0x9e,
0x52, 0x03, 0x98, 0x96, 0x1c, 0x9d, 0xb6, 0xc0, 0x00, 0x5e, 0x90, 0xa6, 0xf8, 0xa4, 0xbe, 0x49,
0x56, 0x32, 0x70, 0xda, 0x42, 0x7d, 0xb8, 0x28, 0x49, 0xec, 0x49, 0x6d, 0x5c, 0x7a, 0x02, 0x70,
0xda, 0x22, 0x07, 0xd0, 0x59, 0x77, 0x6c, 0xdd, 0xe8, 0xeb, 0xae, 0x47, 0x93, 0x6d, 0x24, 0x50,
0xf4, 0x9d, 0x43, 0x79, 0xe4, 0x20, 0x4d, 0xc9, 0x4d, 0x5b, 0x67, 0x1f, 0xea, 0xf4, 0x28, 0xd9,
0x7f, 0xd8, 0x20, 0xb9, 0x85, 0x08, 0x41, 0xa4, 0xa8, 0x1d, 0x19, 0xa0, 0x60, 0xea, 0x3d, 0xa8,
0x6f, 0xd0, 0xaa, 0x65, 0xd7, 0x32, 0xf0, 0xd3, 0xb8, 0xb5, 0xa2, 0x0f, 0xf9, 0x57, 0x43, 0x00,
0xb9, 0x29, 0x34, 0x4f, 0x7d, 0x76, 0x03, 0x3f, 0x65, 0xe7, 0xbc, 0x22, 0x9b, 0x37, 0x02, 0x92,
0x12, 0xe3, 0x48, 0x21, 0x43, 0x76, 0xfe, 0x52, 0xd8, 0x93, 0x15, 0xcb, 0xdd, 0x4d, 0x99, 0x24,
0x01, 0xe9, 0xaf, 0xfa, 0x66, 0xfe, 0x01, 0x61, 0xbb, 0xe0, 0xe3, 0xd5, 0xa5, 0x25, 0xd3, 0x57,
0xb2, 0x50, 0x0f, 0xbb, 0xa7, 0x2b, 0xd3, 0x01, 0xc5, 0x2a, 0x3b, 0x50, 0x23, 0xdc, 0xc9, 0x8e,
0xe7, 0x96, 0x6c, 0xa0, 0xf8, 0x9c, 0xff, 0x70, 0x36, 0xb1, 0xdb, 0x77, 0xcc, 0x7d, 0x7e, 0xe8,
0x52, 0x74, 0x22, 0x20, 0x99, 0x87, 0x13, 0x83, 0x14, 0x98, 0x4f, 0xa8, 0xcf, 0x20, 0x48, 0xc7,
0x55, 0xe5, 0x1b, 0xd3, 0xce, 0x37, 0xaa, 0x26, 0x57, 0xf3, 0x82, 0x8b, 0x65, 0x7f, 0x89, 0xc6,
0x41, 0xf4, 0xfb, 0xfa, 0xc4, 0x1c, 0x1a, 0x7e, 0xbe, 0x0d, 0xbd, 0x99, 0x35, 0x55, 0x04, 0x34,
0xd5, 0xfd, 0xcb, 0x18, 0x21, 0xd6, 0xff, 0x79, 0xa8, 0x89, 0xb4, 0x2f, 0x92, 0x25, 0x0b, 0xe3,
0x09, 0xe7, 0xce, 0xad, 0x6c, 0x20, 0x31, 0x33, 0x86, 0x4b, 0xb2, 0x24, 0xaf, 0x34, 0xc4, 0xce,
0xc8, 0x06, 0x4f, 0xe1, 0x8f, 0xb5, 0x2f, 0x1b, 0x50, 0xf5, 0x07, 0x7e, 0xc5, 0x89, 0xab, 0xaf,
0x21, 0x93, 0xf4, 0x3d, 0x58, 0x88, 0xfd, 0x35, 0x89, 0x54, 0x83, 0xcb, 0xff, 0xbe, 0x64, 0x9a,
0xa8, 0x7d, 0xc2, 0xff, 0xd5, 0x53, 0x84, 0x78, 0xaf, 0xa4, 0x65, 0xa3, 0xe2, 0xd1, 0xdd, 0x94,
0x89, 0xff, 0x77, 0x07, 0x38, 0xdb, 0x00, 0xa1, 0xd0, 0x26, 0xfb, 0x4a, 0x3e, 0xf1, 0xd6, 0xa7,
0x51, 0x6b, 0x24, 0x8d, 0x5e, 0x5e, 0xcd, 0x73, 0xbd, 0x39, 0xdd, 0x03, 0x4d, 0x8f, 0x59, 0x1e,
0x43, 0x23, 0xfc, 0x58, 0x06, 0x49, 0xff, 0xa7, 0x31, 0xf9, 0x9a, 0x66, 0xda, 0x2e, 0xb6, 0xce,
0xe8, 0xd8, 0x4e, 0x99, 0xce, 0x05, 0x94, 0xbc, 0xfe, 0x20, 0x0d, 0x04, 0x52, 0x2f, 0x5d, 0x48,
0x03, 0x81, 0xf4, 0x3b, 0x15, 0x2c, 0x29, 0x19, 0xaf, 0xe9, 0x4b, 0x93, 0x92, 0x29, 0xb7, 0x24,
0xa4, 0x49, 0xc9, 0xb4, 0x4b, 0x02, 0x21, 0xf9, 0xcb, 0x0c, 0xdd, 0x64, 0x7f, 0x3a, 0x3b, 0x8d,
0x78, 0x06, 0x2c, 0x6d, 0xdb, 0x9e, 0x79, 0x70, 0x1a, 0xaf, 0xee, 0x48, 0xdd, 0xe6, 0xb4, 0xd2,
0xd2, 0x74, 0x29, 0xbf, 0x4a, 0xbd, 0xb6, 0xb4, 0x12, 0x12, 0xca, 0x53, 0x8b, 0xea, 0xdc, 0xcb,
0x81, 0x51, 0xd2, 0x8e, 0xad, 0xdf, 0xfb, 0xf4, 0xad, 0x81, 0xe9, 0x1d, 0x4e, 0xf6, 0x09, 0x5a,
0x77, 0xd9, 0x14, 0x6f, 0x98, 0x36, 0xff, 0x75, 0xd7, 0x57, 0x15, 0x77, 0xe9, 0xac, 0x77, 0xc9,
0xac, 0xe3, 0xfd, 0xfd, 0x0a, 0x6d, 0xdd, 0xfb, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd5, 0x84,
0xc1, 0x41, 0x0d, 0x5a, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@ -7171,6 +7290,8 @@ type DataNodeClient interface {
ResendSegmentStats(ctx context.Context, in *ResendSegmentStatsRequest, opts ...grpc.CallOption) (*ResendSegmentStatsResponse, error)
AddImportSegment(ctx context.Context, in *AddImportSegmentRequest, opts ...grpc.CallOption) (*AddImportSegmentResponse, error)
FlushChannels(ctx context.Context, in *FlushChannelsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
NotifyChannelOperation(ctx context.Context, in *ChannelOperationsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
CheckChannelOperationProgress(ctx context.Context, in *ChannelWatchInfo, opts ...grpc.CallOption) (*ChannelOperationProgressResponse, error)
}
type dataNodeClient struct {
@ -7298,6 +7419,24 @@ func (c *dataNodeClient) FlushChannels(ctx context.Context, in *FlushChannelsReq
return out, nil
}
func (c *dataNodeClient) NotifyChannelOperation(ctx context.Context, in *ChannelOperationsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
out := new(commonpb.Status)
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/NotifyChannelOperation", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *dataNodeClient) CheckChannelOperationProgress(ctx context.Context, in *ChannelWatchInfo, opts ...grpc.CallOption) (*ChannelOperationProgressResponse, error) {
out := new(ChannelOperationProgressResponse)
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/CheckChannelOperationProgress", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
// DataNodeServer is the server API for DataNode service.
type DataNodeServer interface {
GetComponentStates(context.Context, *milvuspb.GetComponentStatesRequest) (*milvuspb.ComponentStates, error)
@ -7315,6 +7454,8 @@ type DataNodeServer interface {
ResendSegmentStats(context.Context, *ResendSegmentStatsRequest) (*ResendSegmentStatsResponse, error)
AddImportSegment(context.Context, *AddImportSegmentRequest) (*AddImportSegmentResponse, error)
FlushChannels(context.Context, *FlushChannelsRequest) (*commonpb.Status, error)
NotifyChannelOperation(context.Context, *ChannelOperationsRequest) (*commonpb.Status, error)
CheckChannelOperationProgress(context.Context, *ChannelWatchInfo) (*ChannelOperationProgressResponse, error)
}
// UnimplementedDataNodeServer can be embedded to have forward compatible implementations.
@ -7360,6 +7501,12 @@ func (*UnimplementedDataNodeServer) AddImportSegment(ctx context.Context, req *A
func (*UnimplementedDataNodeServer) FlushChannels(ctx context.Context, req *FlushChannelsRequest) (*commonpb.Status, error) {
return nil, status.Errorf(codes.Unimplemented, "method FlushChannels not implemented")
}
func (*UnimplementedDataNodeServer) NotifyChannelOperation(ctx context.Context, req *ChannelOperationsRequest) (*commonpb.Status, error) {
return nil, status.Errorf(codes.Unimplemented, "method NotifyChannelOperation not implemented")
}
func (*UnimplementedDataNodeServer) CheckChannelOperationProgress(ctx context.Context, req *ChannelWatchInfo) (*ChannelOperationProgressResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CheckChannelOperationProgress not implemented")
}
func RegisterDataNodeServer(s *grpc.Server, srv DataNodeServer) {
s.RegisterService(&_DataNode_serviceDesc, srv)
@ -7599,6 +7746,42 @@ func _DataNode_FlushChannels_Handler(srv interface{}, ctx context.Context, dec f
return interceptor(ctx, in, info, handler)
}
func _DataNode_NotifyChannelOperation_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ChannelOperationsRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DataNodeServer).NotifyChannelOperation(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/milvus.proto.data.DataNode/NotifyChannelOperation",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DataNodeServer).NotifyChannelOperation(ctx, req.(*ChannelOperationsRequest))
}
return interceptor(ctx, in, info, handler)
}
func _DataNode_CheckChannelOperationProgress_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ChannelWatchInfo)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(DataNodeServer).CheckChannelOperationProgress(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/milvus.proto.data.DataNode/CheckChannelOperationProgress",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(DataNodeServer).CheckChannelOperationProgress(ctx, req.(*ChannelWatchInfo))
}
return interceptor(ctx, in, info, handler)
}
var _DataNode_serviceDesc = grpc.ServiceDesc{
ServiceName: "milvus.proto.data.DataNode",
HandlerType: (*DataNodeServer)(nil),
@ -7655,6 +7838,14 @@ var _DataNode_serviceDesc = grpc.ServiceDesc{
MethodName: "FlushChannels",
Handler: _DataNode_FlushChannels_Handler,
},
{
MethodName: "NotifyChannelOperation",
Handler: _DataNode_NotifyChannelOperation_Handler,
},
{
MethodName: "CheckChannelOperationProgress",
Handler: _DataNode_CheckChannelOperationProgress_Handler,
},
},
Streams: []grpc.StreamDesc{},
Metadata: "data_coord.proto",

View File

@ -104,6 +104,12 @@ type DataNode interface {
// FlushChannels notifies DataNode to sync all the segments belongs to the target channels.
FlushChannels(ctx context.Context, req *datapb.FlushChannelsRequest) (*commonpb.Status, error)
// NotifyChannelOperation notifies channel operations to DataNode, including WatchChannel operation
// and RelaseChannel Operation
NotifyChannelOperation(ctx context.Context, req *datapb.ChannelOperationsRequest) (*commonpb.Status, error)
// CheckChannelOperationProgress checks progress of the channel operation in DataNode.
CheckChannelOperationProgress(ctx context.Context, req *datapb.ChannelWatchInfo) (*datapb.ChannelOperationProgressResponse, error)
}
// DataNodeComponent is used by grpc server of DataNode

View File

@ -84,3 +84,11 @@ func (m *GrpcDataNodeClient) SyncSegments(ctx context.Context, in *datapb.SyncSe
func (m *GrpcDataNodeClient) FlushChannels(ctx context.Context, in *datapb.FlushChannelsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
return &commonpb.Status{}, m.Err
}
func (m *GrpcDataNodeClient) NotifyChannelOperation(ctx context.Context, in *datapb.ChannelOperationsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
return &commonpb.Status{}, m.Err
}
func (m *GrpcDataNodeClient) CheckChannelOperationProgress(ctx context.Context, req *datapb.ChannelWatchInfo, opts ...grpc.CallOption) (*datapb.ChannelOperationProgressResponse, error) {
return &datapb.ChannelOperationProgressResponse{}, m.Err
}