mirror of https://github.com/milvus-io/milvus.git
Fix failed bulkload segment marked as sealed (#21799)
Signed-off-by: xiaofan-luan <xiaofan.luan@zilliz.com>pull/21890/head
parent
a04238c25f
commit
f1daef22a1
|
@ -352,8 +352,11 @@ func (m *meta) SetState(segmentID UniqueID, targetState commonpb.SegmentState) e
|
|||
log.Warn("meta update: setting segment state - segment not found",
|
||||
zap.Int64("segment ID", segmentID),
|
||||
zap.Any("target state", targetState))
|
||||
// TODO: Should probably return error instead.
|
||||
return nil
|
||||
// idempotent drop
|
||||
if targetState == commonpb.SegmentState_Dropped {
|
||||
return nil
|
||||
}
|
||||
return fmt.Errorf("segment is not exist with ID = %d", segmentID)
|
||||
}
|
||||
// Persist segment updates first.
|
||||
clonedSegment := curSegInfo.Clone()
|
||||
|
|
|
@ -78,7 +78,7 @@ type Manager interface {
|
|||
DropSegment(ctx context.Context, segmentID UniqueID)
|
||||
// SealAllSegments seals all segments of collection with collectionID and return sealed segments.
|
||||
// If segIDs is not empty, also seals segments in segIDs.
|
||||
SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID) ([]UniqueID, error)
|
||||
SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID, isImporting bool) ([]UniqueID, error)
|
||||
// GetFlushableSegments returns flushable segment ids
|
||||
GetFlushableSegments(ctx context.Context, channel string, ts Timestamp) ([]UniqueID, error)
|
||||
// ExpireAllocations notifies segment status to expire old allocations
|
||||
|
@ -261,7 +261,7 @@ func (s *SegmentManager) AllocSegment(ctx context.Context, collectionID UniqueID
|
|||
requestRows, int64(maxCountPerSegment))
|
||||
|
||||
// create new segments and add allocations
|
||||
expireTs, err := s.genExpireTs(ctx)
|
||||
expireTs, err := s.genExpireTs(ctx, false)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -296,7 +296,7 @@ func (s *SegmentManager) allocSegmentForImport(ctx context.Context, collectionID
|
|||
|
||||
// create new segments and add allocations to meta
|
||||
// to avoid mixing up with growing segments, the segment state is "Importing"
|
||||
expireTs, err := s.genExpireTs(ctx)
|
||||
expireTs, err := s.genExpireTs(ctx, true)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -329,13 +329,17 @@ func isGrowing(segment *SegmentInfo) bool {
|
|||
return segment.GetState() == commonpb.SegmentState_Growing
|
||||
}
|
||||
|
||||
func (s *SegmentManager) genExpireTs(ctx context.Context) (Timestamp, error) {
|
||||
func (s *SegmentManager) genExpireTs(ctx context.Context, isImported bool) (Timestamp, error) {
|
||||
ts, err := s.allocator.allocTimestamp(ctx)
|
||||
if err != nil {
|
||||
return 0, err
|
||||
}
|
||||
physicalTs, logicalTs := tsoutil.ParseTS(ts)
|
||||
expirePhysicalTs := physicalTs.Add(time.Duration(Params.DataCoordCfg.SegAssignmentExpiration.GetAsFloat()) * time.Millisecond)
|
||||
// for imported segment, clean up ImportTaskExpiration
|
||||
if isImported {
|
||||
expirePhysicalTs = physicalTs.Add(time.Duration(Params.RootCoordCfg.ImportTaskExpiration.GetAsFloat()) * time.Second)
|
||||
}
|
||||
expireTs := tsoutil.ComposeTS(expirePhysicalTs.UnixNano()/int64(time.Millisecond), int64(logicalTs))
|
||||
return expireTs, nil
|
||||
}
|
||||
|
@ -416,7 +420,7 @@ func (s *SegmentManager) DropSegment(ctx context.Context, segmentID UniqueID) {
|
|||
}
|
||||
|
||||
// SealAllSegments seals all segments of collection with collectionID and return sealed segments
|
||||
func (s *SegmentManager) SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID) ([]UniqueID, error) {
|
||||
func (s *SegmentManager) SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID, isImport bool) ([]UniqueID, error) {
|
||||
_, sp := otel.Tracer(typeutil.DataCoordRole).Start(ctx, "Seal-Segments")
|
||||
defer sp.End()
|
||||
s.mu.Lock()
|
||||
|
@ -435,12 +439,13 @@ func (s *SegmentManager) SealAllSegments(ctx context.Context, collectionID Uniqu
|
|||
if info.CollectionID != collectionID {
|
||||
continue
|
||||
}
|
||||
// idempotent sealed
|
||||
if info.State == commonpb.SegmentState_Sealed {
|
||||
ret = append(ret, id)
|
||||
continue
|
||||
}
|
||||
if info.State == commonpb.SegmentState_Flushing ||
|
||||
info.State == commonpb.SegmentState_Flushed {
|
||||
// segment can be sealed only if it is growing or if it's importing
|
||||
if (!isImport && info.State != commonpb.SegmentState_Growing) || (isImport && info.State != commonpb.SegmentState_Importing) {
|
||||
continue
|
||||
}
|
||||
if err := s.meta.SetState(id, commonpb.SegmentState_Sealed); err != nil {
|
||||
|
@ -462,7 +467,7 @@ func (s *SegmentManager) GetFlushableSegments(ctx context.Context, channel strin
|
|||
return nil, err
|
||||
}
|
||||
|
||||
s.dropEmptySealedSegment(t, channel)
|
||||
s.cleanupSealedSegment(t, channel)
|
||||
|
||||
ret := make([]UniqueID, 0, len(s.segments))
|
||||
for _, id := range s.segments {
|
||||
|
@ -501,7 +506,7 @@ func (s *SegmentManager) ExpireAllocations(channel string, ts Timestamp) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
func (s *SegmentManager) dropEmptySealedSegment(ts Timestamp, channel string) {
|
||||
func (s *SegmentManager) cleanupSealedSegment(ts Timestamp, channel string) {
|
||||
valids := make([]int64, 0, len(s.segments))
|
||||
for _, id := range s.segments {
|
||||
segment := s.meta.GetSegment(id)
|
||||
|
@ -511,10 +516,18 @@ func (s *SegmentManager) dropEmptySealedSegment(ts Timestamp, channel string) {
|
|||
}
|
||||
|
||||
if isEmptySealedSegment(segment, ts) {
|
||||
log.Info("remove empty sealed segment", zap.Any("segment", id))
|
||||
log.Info("remove empty sealed segment", zap.Int64("collection", segment.CollectionID), zap.Any("segment", id))
|
||||
s.meta.SetState(id, commonpb.SegmentState_Dropped)
|
||||
continue
|
||||
}
|
||||
|
||||
// clean up importing segment since the task failed.
|
||||
if segment.GetState() == commonpb.SegmentState_Importing && segment.GetLastExpireTime() < ts {
|
||||
log.Info("cleanup staled importing segment", zap.Int64("collection", segment.CollectionID), zap.Int64("segment", id))
|
||||
s.meta.SetState(id, commonpb.SegmentState_Dropped)
|
||||
continue
|
||||
}
|
||||
|
||||
valids = append(valids, id)
|
||||
}
|
||||
s.segments = valids
|
||||
|
@ -533,9 +546,7 @@ func (s *SegmentManager) tryToSealSegment(ts Timestamp, channel string) error {
|
|||
continue
|
||||
}
|
||||
channelInfo[info.InsertChannel] = append(channelInfo[info.InsertChannel], info)
|
||||
if info.State == commonpb.SegmentState_Sealed ||
|
||||
info.State == commonpb.SegmentState_Flushing ||
|
||||
info.State == commonpb.SegmentState_Flushed {
|
||||
if info.State != commonpb.SegmentState_Growing {
|
||||
continue
|
||||
}
|
||||
// change shouldSeal to segment seal policy logic
|
||||
|
@ -552,9 +563,7 @@ func (s *SegmentManager) tryToSealSegment(ts Timestamp, channel string) error {
|
|||
for _, policy := range s.channelSealPolicies {
|
||||
vs := policy(channel, segmentInfos, ts)
|
||||
for _, info := range vs {
|
||||
if info.State == commonpb.SegmentState_Sealed ||
|
||||
info.State == commonpb.SegmentState_Flushing ||
|
||||
info.State == commonpb.SegmentState_Flushed {
|
||||
if info.State != commonpb.SegmentState_Growing {
|
||||
continue
|
||||
}
|
||||
if err := s.meta.SetState(info.GetID(), commonpb.SegmentState_Sealed); err != nil {
|
||||
|
|
|
@ -247,7 +247,7 @@ func TestSaveSegmentsToMeta(t *testing.T) {
|
|||
allocations, err := segmentManager.AllocSegment(context.Background(), collID, 0, "c1", 1000)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 1, len(allocations))
|
||||
_, err = segmentManager.SealAllSegments(context.Background(), collID, nil)
|
||||
_, err = segmentManager.SealAllSegments(context.Background(), collID, nil, false)
|
||||
assert.Nil(t, err)
|
||||
segment := meta.GetSegment(allocations[0].SegmentID)
|
||||
assert.NotNil(t, segment)
|
||||
|
@ -269,7 +269,7 @@ func TestSaveSegmentsToMetaWithSpecificSegments(t *testing.T) {
|
|||
allocations, err := segmentManager.AllocSegment(context.Background(), collID, 0, "c1", 1000)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 1, len(allocations))
|
||||
_, err = segmentManager.SealAllSegments(context.Background(), collID, []int64{allocations[0].SegmentID})
|
||||
_, err = segmentManager.SealAllSegments(context.Background(), collID, []int64{allocations[0].SegmentID}, false)
|
||||
assert.Nil(t, err)
|
||||
segment := meta.GetSegment(allocations[0].SegmentID)
|
||||
assert.NotNil(t, segment)
|
||||
|
@ -364,6 +364,37 @@ func TestExpireAllocation(t *testing.T) {
|
|||
assert.EqualValues(t, 0, len(segment.allocations))
|
||||
}
|
||||
|
||||
func TestCleanExpiredBulkloadSegment(t *testing.T) {
|
||||
t.Run("expiredBulkloadSegment", func(t *testing.T) {
|
||||
Params.Init()
|
||||
mockAllocator := newMockAllocator()
|
||||
meta, err := newMemoryMeta()
|
||||
assert.Nil(t, err)
|
||||
|
||||
schema := newTestSchema()
|
||||
collID, err := mockAllocator.allocID(context.Background())
|
||||
assert.Nil(t, err)
|
||||
meta.AddCollection(&collectionInfo{ID: collID, Schema: schema})
|
||||
ms := newMockRootCoordService()
|
||||
segmentManager := newSegmentManager(meta, mockAllocator, ms)
|
||||
allocation, err := segmentManager.allocSegmentForImport(context.TODO(), collID, 0, "c1", 2, 1)
|
||||
assert.Nil(t, err)
|
||||
|
||||
ids, err := segmentManager.GetFlushableSegments(context.TODO(), "c1", allocation.ExpireTime)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, len(ids), 0)
|
||||
|
||||
assert.EqualValues(t, len(segmentManager.segments), 1)
|
||||
|
||||
ids, err = segmentManager.GetFlushableSegments(context.TODO(), "c1", allocation.ExpireTime+1)
|
||||
assert.Nil(t, err)
|
||||
assert.Empty(t, ids)
|
||||
assert.EqualValues(t, len(ids), 0)
|
||||
|
||||
assert.EqualValues(t, len(segmentManager.segments), 0)
|
||||
})
|
||||
}
|
||||
|
||||
func TestGetFlushableSegments(t *testing.T) {
|
||||
t.Run("get flushable segments between small interval", func(t *testing.T) {
|
||||
Params.Init()
|
||||
|
@ -380,7 +411,7 @@ func TestGetFlushableSegments(t *testing.T) {
|
|||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 1, len(allocations))
|
||||
|
||||
ids, err := segmentManager.SealAllSegments(context.TODO(), collID, nil)
|
||||
ids, err := segmentManager.SealAllSegments(context.TODO(), collID, nil, false)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 1, len(ids))
|
||||
assert.EqualValues(t, allocations[0].SegmentID, ids[0])
|
||||
|
|
|
@ -252,6 +252,50 @@ func TestFlush(t *testing.T) {
|
|||
assert.EqualValues(t, segID, ids[0])
|
||||
})
|
||||
|
||||
t.Run("bulkload segment", func(t *testing.T) {
|
||||
svr := newTestServer(t, nil)
|
||||
defer closeTestServer(t, svr)
|
||||
schema := newTestSchema()
|
||||
svr.meta.AddCollection(&collectionInfo{ID: 0, Schema: schema, Partitions: []int64{}})
|
||||
|
||||
allocations, err := svr.segmentManager.allocSegmentForImport(context.TODO(), 0, 1, "channel-1", 1, 100)
|
||||
assert.Nil(t, err)
|
||||
expireTs := allocations.ExpireTime
|
||||
segID := allocations.SegmentID
|
||||
|
||||
resp, err := svr.Flush(context.TODO(), req)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
assert.EqualValues(t, 0, len(resp.SegmentIDs))
|
||||
// should not flush anything since this is a normal flush
|
||||
svr.meta.SetCurrentRows(segID, 1)
|
||||
ids, err := svr.segmentManager.GetFlushableSegments(context.TODO(), "channel-1", expireTs)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 0, len(ids))
|
||||
|
||||
req := &datapb.FlushRequest{
|
||||
Base: &commonpb.MsgBase{
|
||||
MsgType: commonpb.MsgType_Flush,
|
||||
MsgID: 0,
|
||||
Timestamp: 0,
|
||||
SourceID: 0,
|
||||
},
|
||||
DbID: 0,
|
||||
CollectionID: 0,
|
||||
IsImport: true,
|
||||
}
|
||||
|
||||
resp, err = svr.Flush(context.TODO(), req)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
assert.EqualValues(t, 1, len(resp.SegmentIDs))
|
||||
|
||||
ids, err = svr.segmentManager.GetFlushableSegments(context.TODO(), "channel-1", expireTs)
|
||||
assert.Nil(t, err)
|
||||
assert.EqualValues(t, 1, len(ids))
|
||||
assert.EqualValues(t, segID, ids[0])
|
||||
})
|
||||
|
||||
t.Run("closed server", func(t *testing.T) {
|
||||
svr := newTestServer(t, nil)
|
||||
closeTestServer(t, svr)
|
||||
|
@ -1164,7 +1208,7 @@ func (s *spySegmentManager) DropSegment(ctx context.Context, segmentID UniqueID)
|
|||
}
|
||||
|
||||
// SealAllSegments seals all segments of collection with collectionID and return sealed segments
|
||||
func (s *spySegmentManager) SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID) ([]UniqueID, error) {
|
||||
func (s *spySegmentManager) SealAllSegments(ctx context.Context, collectionID UniqueID, segIDs []UniqueID, isImport bool) ([]UniqueID, error) {
|
||||
panic("not implemented") // TODO: Implement
|
||||
}
|
||||
|
||||
|
@ -3391,29 +3435,6 @@ func TestDataCoord_UnsetIsImportingState(t *testing.T) {
|
|||
})
|
||||
}
|
||||
|
||||
func TestDataCoord_MarkSegmentsDropped(t *testing.T) {
|
||||
t.Run("normal case", func(t *testing.T) {
|
||||
svr := newTestServer(t, nil)
|
||||
defer closeTestServer(t, svr)
|
||||
seg := buildSegment(100, 100, 100, "ch1", false)
|
||||
svr.meta.AddSegment(seg)
|
||||
|
||||
status, err := svr.MarkSegmentsDropped(context.Background(), &datapb.MarkSegmentsDroppedRequest{
|
||||
SegmentIds: []int64{100},
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, status.GetErrorCode())
|
||||
|
||||
// Trying to mark dropped of a segment that does not exist.
|
||||
status, err = svr.MarkSegmentsDropped(context.Background(), &datapb.MarkSegmentsDroppedRequest{
|
||||
SegmentIds: []int64{999},
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
// Returning success as SetState will succeed if segment does not exist. This should probably get fixed.
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, status.GetErrorCode())
|
||||
})
|
||||
}
|
||||
|
||||
func TestDataCoordServer_UpdateChannelCheckpoint(t *testing.T) {
|
||||
mockVChannel := "fake-by-dev-rootcoord-dml-1-testchannelcp-v0"
|
||||
mockPChannel := "fake-by-dev-rootcoord-dml-1"
|
||||
|
|
|
@ -73,7 +73,10 @@ func (s *Server) GetStatisticsChannel(ctx context.Context) (*milvuspb.StringResp
|
|||
// this api only guarantees all the segments requested is sealed
|
||||
// these segments will be flushed only after the Flush policy is fulfilled
|
||||
func (s *Server) Flush(ctx context.Context, req *datapb.FlushRequest) (*datapb.FlushResponse, error) {
|
||||
log.Info("receive flush request", zap.Int64("dbID", req.GetDbID()), zap.Int64("collectionID", req.GetCollectionID()))
|
||||
log.Info("receive flush request",
|
||||
zap.Int64("dbID", req.GetDbID()),
|
||||
zap.Int64("collectionID", req.GetCollectionID()),
|
||||
zap.Bool("isImporting", req.GetIsImport()))
|
||||
ctx, sp := otel.Tracer(typeutil.DataCoordRole).Start(ctx, "DataCoord-Flush")
|
||||
defer sp.End()
|
||||
resp := &datapb.FlushResponse{
|
||||
|
@ -97,7 +100,7 @@ func (s *Server) Flush(ctx context.Context, req *datapb.FlushRequest) (*datapb.F
|
|||
}
|
||||
timeOfSeal, _ := tsoutil.ParseTS(ts)
|
||||
|
||||
sealedSegmentIDs, err := s.segmentManager.SealAllSegments(ctx, req.GetCollectionID(), req.GetSegmentIDs())
|
||||
sealedSegmentIDs, err := s.segmentManager.SealAllSegments(ctx, req.GetCollectionID(), req.GetSegmentIDs(), req.GetIsImport())
|
||||
if err != nil {
|
||||
resp.Status.Reason = fmt.Sprintf("failed to flush %d, %s", req.CollectionID, err)
|
||||
return resp, nil
|
||||
|
@ -1165,6 +1168,7 @@ func (s *Server) Import(ctx context.Context, itr *datapb.ImportTaskRequest) (*da
|
|||
nodes := s.sessionManager.getLiveNodeIDs()
|
||||
if len(nodes) == 0 {
|
||||
log.Error("import failed as all DataNodes are offline")
|
||||
resp.Status.Reason = "no data node available"
|
||||
return resp, nil
|
||||
}
|
||||
log.Info("available DataNodes are", zap.Int64s("node ID", nodes))
|
||||
|
@ -1277,6 +1281,7 @@ func (s *Server) SaveImportSegment(ctx context.Context, req *datapb.SaveImportSe
|
|||
zap.Error(err))
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_UnexpectedError,
|
||||
Reason: err.Error(),
|
||||
}, nil
|
||||
}
|
||||
resp, err := cli.AddImportSegment(ctx,
|
||||
|
@ -1296,6 +1301,7 @@ func (s *Server) SaveImportSegment(ctx context.Context, req *datapb.SaveImportSe
|
|||
log.Error("failed to add segment", zap.Int64("DataNode ID", nodeID), zap.Error(err))
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_UnexpectedError,
|
||||
Reason: err.Error(),
|
||||
}, nil
|
||||
}
|
||||
log.Info("succeed to add segment", zap.Int64("DataNode ID", nodeID), zap.Any("add segment req", req))
|
||||
|
@ -1308,6 +1314,7 @@ func (s *Server) SaveImportSegment(ctx context.Context, req *datapb.SaveImportSe
|
|||
log.Error("failed to SaveBinlogPaths", zap.Error(err))
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_UnexpectedError,
|
||||
Reason: err.Error(),
|
||||
}, nil
|
||||
}
|
||||
return &commonpb.Status{
|
||||
|
@ -1320,17 +1327,18 @@ func (s *Server) SaveImportSegment(ctx context.Context, req *datapb.SaveImportSe
|
|||
func (s *Server) UnsetIsImportingState(ctx context.Context, req *datapb.UnsetIsImportingStateRequest) (*commonpb.Status, error) {
|
||||
log.Info("unsetting isImport state of segments",
|
||||
zap.Int64s("segments", req.GetSegmentIds()))
|
||||
failure := false
|
||||
var reportErr error
|
||||
for _, segID := range req.GetSegmentIds() {
|
||||
if err := s.meta.UnsetIsImporting(segID); err != nil {
|
||||
// Fail-open.
|
||||
log.Error("failed to unset segment is importing state", zap.Int64("segment ID", segID))
|
||||
failure = true
|
||||
reportErr = err
|
||||
}
|
||||
}
|
||||
if failure {
|
||||
if reportErr != nil {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_UnexpectedError,
|
||||
Reason: reportErr.Error(),
|
||||
}, nil
|
||||
}
|
||||
return &commonpb.Status{
|
||||
|
@ -1340,9 +1348,9 @@ func (s *Server) UnsetIsImportingState(ctx context.Context, req *datapb.UnsetIsI
|
|||
|
||||
// MarkSegmentsDropped marks the given segments as `Dropped`.
|
||||
// An error status will be returned and error will be logged, if we failed to mark *all* segments.
|
||||
// Deprecated, do not use it
|
||||
func (s *Server) MarkSegmentsDropped(ctx context.Context, req *datapb.MarkSegmentsDroppedRequest) (*commonpb.Status, error) {
|
||||
log.Info("marking segments dropped",
|
||||
zap.Int64s("segments", req.GetSegmentIds()))
|
||||
log.Info("marking segments dropped", zap.Int64s("segments", req.GetSegmentIds()))
|
||||
failure := false
|
||||
for _, segID := range req.GetSegmentIds() {
|
||||
if err := s.meta.SetState(segID, commonpb.SegmentState_Dropped); err != nil {
|
||||
|
|
|
@ -109,6 +109,7 @@ message FlushRequest {
|
|||
int64 dbID = 2;
|
||||
repeated int64 segmentIDs = 3;
|
||||
int64 collectionID = 4;
|
||||
bool isImport = 5;
|
||||
}
|
||||
|
||||
message FlushResponse {
|
||||
|
|
|
@ -168,6 +168,7 @@ type FlushRequest struct {
|
|||
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
||||
SegmentIDs []int64 `protobuf:"varint,3,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
|
||||
CollectionID int64 `protobuf:"varint,4,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
||||
IsImport bool `protobuf:"varint,5,opt,name=isImport,proto3" json:"isImport,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
|
@ -226,6 +227,13 @@ func (m *FlushRequest) GetCollectionID() int64 {
|
|||
return 0
|
||||
}
|
||||
|
||||
func (m *FlushRequest) GetIsImport() bool {
|
||||
if m != nil {
|
||||
return m.IsImport
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
type FlushResponse struct {
|
||||
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
||||
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
||||
|
@ -4961,299 +4969,299 @@ func init() {
|
|||
func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) }
|
||||
|
||||
var fileDescriptor_82cd95f524594f49 = []byte{
|
||||
// 4664 bytes of a gzipped FileDescriptorProto
|
||||
// 4667 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x7c, 0x4b, 0x8c, 0x1c, 0x49,
|
||||
0x5a, 0xb0, 0xb3, 0x5e, 0x5d, 0xf5, 0xd5, 0xa3, 0xab, 0xc3, 0x9e, 0x76, 0xb9, 0x66, 0xfc, 0x4a,
|
||||
0xdb, 0xe3, 0x1e, 0x8f, 0xc7, 0xf6, 0x78, 0xfe, 0xd1, 0xfa, 0x5f, 0xef, 0xcc, 0xe2, 0xee, 0x76,
|
||||
0x7b, 0x0a, 0xdc, 0xbd, 0xbd, 0xd9, 0xed, 0x31, 0x9a, 0x45, 0x2a, 0x65, 0x57, 0x46, 0x57, 0xe7,
|
||||
0x76, 0x55, 0x66, 0x39, 0x33, 0xab, 0xdb, 0xbd, 0x48, 0xec, 0x00, 0x12, 0xd2, 0x20, 0x04, 0x08,
|
||||
0x09, 0x01, 0x37, 0xc4, 0x69, 0x59, 0xb4, 0x08, 0x69, 0xc5, 0x85, 0x0b, 0xd7, 0x11, 0x1c, 0x56,
|
||||
0x09, 0x21, 0x6e, 0x88, 0xd3, 0xb2, 0x68, 0x11, 0xd2, 0xc2, 0x85, 0x0b, 0xd7, 0x11, 0x1c, 0x56,
|
||||
0x08, 0x89, 0x23, 0x47, 0xe0, 0x8e, 0xc4, 0x89, 0x03, 0x8a, 0x47, 0x46, 0xbe, 0x22, 0xab, 0xb2,
|
||||
0xab, 0xec, 0xb1, 0x04, 0xb7, 0x8a, 0x2f, 0xbf, 0xf8, 0xe2, 0x8b, 0x88, 0xef, 0x1d, 0x11, 0x05,
|
||||
0xab, 0xec, 0xb1, 0x04, 0xb7, 0x8a, 0xc8, 0x2f, 0xbe, 0xf8, 0x22, 0xbe, 0xf7, 0x17, 0x11, 0x05,
|
||||
0x4d, 0x43, 0xf7, 0xf4, 0x6e, 0xcf, 0xb6, 0x1d, 0xe3, 0xce, 0xc8, 0xb1, 0x3d, 0x1b, 0x2d, 0x0d,
|
||||
0xcd, 0xc1, 0xd1, 0xd8, 0x65, 0xad, 0x3b, 0xe4, 0x73, 0xbb, 0xd6, 0xb3, 0x87, 0x43, 0xdb, 0x62,
|
||||
0xa0, 0x76, 0xc3, 0xb4, 0x3c, 0xec, 0x58, 0xfa, 0x80, 0xb7, 0x6b, 0xe1, 0x0e, 0xed, 0x9a, 0xdb,
|
||||
0x3b, 0xc0, 0x43, 0x9d, 0xb7, 0x96, 0x4c, 0xcb, 0xc0, 0x2f, 0xc3, 0xf4, 0xd5, 0x05, 0x28, 0x3e,
|
||||
0x1e, 0x8e, 0xbc, 0x13, 0xf5, 0x4f, 0x15, 0xa8, 0x6d, 0x0c, 0xc6, 0xee, 0x81, 0x86, 0x5f, 0x8c,
|
||||
0xb1, 0xeb, 0xa1, 0x7b, 0x50, 0xd8, 0xd3, 0x5d, 0xdc, 0x52, 0xae, 0x28, 0x2b, 0xd5, 0xfb, 0xef,
|
||||
0xdc, 0x89, 0x30, 0xc2, 0x59, 0xd8, 0x74, 0xfb, 0xab, 0xba, 0x8b, 0x35, 0x8a, 0x89, 0x10, 0x14,
|
||||
0x8c, 0xbd, 0xce, 0x7a, 0x2b, 0x77, 0x45, 0x59, 0xc9, 0x6b, 0xf4, 0x37, 0xba, 0x04, 0xe0, 0xe2,
|
||||
0xfe, 0x10, 0x5b, 0x5e, 0x67, 0xdd, 0x6d, 0xe5, 0xaf, 0xe4, 0x57, 0xf2, 0x5a, 0x08, 0x82, 0x54,
|
||||
0xa8, 0xf5, 0xec, 0xc1, 0x00, 0xf7, 0x3c, 0xd3, 0xb6, 0x3a, 0xeb, 0xad, 0x02, 0xed, 0x1b, 0x81,
|
||||
0xa9, 0xff, 0xa6, 0x40, 0x9d, 0xb3, 0xe6, 0x8e, 0x6c, 0xcb, 0xc5, 0xe8, 0x23, 0x28, 0xb9, 0x9e,
|
||||
0xee, 0x8d, 0x5d, 0xce, 0xdd, 0xdb, 0x52, 0xee, 0x76, 0x28, 0x8a, 0xc6, 0x51, 0xa5, 0xec, 0xc5,
|
||||
0x87, 0xcf, 0x27, 0x87, 0x8f, 0x4d, 0xa1, 0x90, 0x98, 0xc2, 0x0a, 0x2c, 0xee, 0x13, 0xee, 0x76,
|
||||
0x02, 0xa4, 0x22, 0x45, 0x8a, 0x83, 0x09, 0x25, 0xcf, 0x1c, 0xe2, 0xef, 0xed, 0xef, 0x60, 0x7d,
|
||||
0xd0, 0x2a, 0xd1, 0xb1, 0x42, 0x10, 0xf5, 0x9f, 0x14, 0x68, 0x0a, 0x74, 0x7f, 0x1f, 0xce, 0x41,
|
||||
0xb1, 0x67, 0x8f, 0x2d, 0x8f, 0x4e, 0xb5, 0xae, 0xb1, 0x06, 0xba, 0x0a, 0xb5, 0xde, 0x81, 0x6e,
|
||||
0x59, 0x78, 0xd0, 0xb5, 0xf4, 0x21, 0xa6, 0x93, 0xaa, 0x68, 0x55, 0x0e, 0xdb, 0xd2, 0x87, 0x38,
|
||||
0xd3, 0xdc, 0xae, 0x40, 0x75, 0xa4, 0x3b, 0x9e, 0x19, 0x59, 0xfd, 0x30, 0x08, 0xb5, 0xa1, 0x6c,
|
||||
0xba, 0x9d, 0xe1, 0xc8, 0x76, 0xbc, 0x56, 0xf1, 0x8a, 0xb2, 0x52, 0xd6, 0x44, 0x9b, 0x8c, 0x60,
|
||||
0xd2, 0x5f, 0xbb, 0xba, 0x7b, 0xd8, 0x59, 0xe7, 0x33, 0x8a, 0xc0, 0xd4, 0x3f, 0x57, 0x60, 0xf9,
|
||||
0x91, 0xeb, 0x9a, 0x7d, 0x2b, 0x31, 0xb3, 0x65, 0x28, 0x59, 0xb6, 0x81, 0x3b, 0xeb, 0x74, 0x6a,
|
||||
0x79, 0x8d, 0xb7, 0xd0, 0xdb, 0x50, 0x19, 0x61, 0xec, 0x74, 0x1d, 0x7b, 0xe0, 0x4f, 0xac, 0x4c,
|
||||
0x00, 0x9a, 0x3d, 0xc0, 0xe8, 0xfb, 0xb0, 0xe4, 0xc6, 0x08, 0x31, 0xb9, 0xaa, 0xde, 0xbf, 0x76,
|
||||
0x27, 0xa1, 0x2c, 0x77, 0xe2, 0x83, 0x6a, 0xc9, 0xde, 0xea, 0x97, 0x39, 0x38, 0x2b, 0xf0, 0x18,
|
||||
0xaf, 0xe4, 0x37, 0x59, 0x79, 0x17, 0xf7, 0x05, 0x7b, 0xac, 0x91, 0x65, 0xe5, 0xc5, 0x96, 0xe5,
|
||||
0xc3, 0x5b, 0x96, 0x41, 0xd4, 0xe3, 0xfb, 0x51, 0x4c, 0xee, 0xc7, 0x65, 0xa8, 0xe2, 0x97, 0x23,
|
||||
0xd3, 0xc1, 0x5d, 0x22, 0x38, 0x74, 0xc9, 0x0b, 0x1a, 0x30, 0xd0, 0xae, 0x39, 0x0c, 0xeb, 0xc6,
|
||||
0x42, 0x66, 0xdd, 0x50, 0xff, 0x42, 0x81, 0xf3, 0x89, 0x5d, 0xe2, 0xca, 0xa6, 0x41, 0x93, 0xce,
|
||||
0x3c, 0x58, 0x19, 0xa2, 0x76, 0x64, 0xc1, 0xdf, 0x9d, 0xb4, 0xe0, 0x01, 0xba, 0x96, 0xe8, 0x1f,
|
||||
0x62, 0x32, 0x97, 0x9d, 0xc9, 0x43, 0x38, 0xff, 0x04, 0x7b, 0x7c, 0x00, 0xf2, 0x0d, 0xbb, 0xb3,
|
||||
0x1b, 0xab, 0xa8, 0x56, 0xe7, 0xe2, 0x5a, 0xad, 0xfe, 0x4d, 0x4e, 0xe8, 0x22, 0x1d, 0xaa, 0x63,
|
||||
0xed, 0xdb, 0xe8, 0x1d, 0xa8, 0x08, 0x14, 0x2e, 0x15, 0x01, 0x00, 0x7d, 0x0b, 0x8a, 0x84, 0x53,
|
||||
0x26, 0x12, 0x8d, 0xfb, 0x57, 0xe5, 0x73, 0x0a, 0xd1, 0xd4, 0x18, 0x3e, 0xea, 0x40, 0xc3, 0xf5,
|
||||
0x74, 0xc7, 0xeb, 0x8e, 0x6c, 0x97, 0xee, 0x33, 0x15, 0x9c, 0xea, 0x7d, 0x35, 0x4a, 0x41, 0x58,
|
||||
0xfa, 0x4d, 0xb7, 0xbf, 0xcd, 0x31, 0xb5, 0x3a, 0xed, 0xe9, 0x37, 0xd1, 0x63, 0xa8, 0x61, 0xcb,
|
||||
0x08, 0x08, 0x15, 0x32, 0x13, 0xaa, 0x62, 0xcb, 0x10, 0x64, 0x82, 0xfd, 0x29, 0x66, 0xdf, 0x9f,
|
||||
0xdf, 0x53, 0xa0, 0x95, 0xdc, 0xa0, 0x79, 0x4c, 0xf6, 0x43, 0xd6, 0x09, 0xb3, 0x0d, 0x9a, 0xa8,
|
||||
0xe1, 0x62, 0x93, 0x34, 0xde, 0x45, 0xfd, 0x63, 0x05, 0xde, 0x0a, 0xd8, 0xa1, 0x9f, 0x5e, 0x97,
|
||||
0xb4, 0xa0, 0x5b, 0xd0, 0x34, 0xad, 0xde, 0x60, 0x6c, 0xe0, 0x67, 0xd6, 0x67, 0x58, 0x1f, 0x78,
|
||||
0x07, 0x27, 0x74, 0x0f, 0xcb, 0x5a, 0x02, 0xae, 0xfe, 0x6b, 0x0e, 0x96, 0xe3, 0x7c, 0xcd, 0xb3,
|
||||
0x48, 0xff, 0x0f, 0x8a, 0xa6, 0xb5, 0x6f, 0xfb, 0x6b, 0x74, 0x69, 0x82, 0x52, 0x92, 0xb1, 0x18,
|
||||
0x32, 0xb2, 0x01, 0xf9, 0x66, 0xac, 0x77, 0x80, 0x7b, 0x87, 0x23, 0xdb, 0xa4, 0x06, 0x8b, 0x90,
|
||||
0xf8, 0x25, 0x09, 0x09, 0x39, 0xc7, 0x77, 0xd6, 0x18, 0x8d, 0x35, 0x41, 0xe2, 0xb1, 0xe5, 0x39,
|
||||
0x27, 0xda, 0x52, 0x2f, 0x0e, 0x6f, 0x1f, 0xc0, 0xb2, 0x1c, 0x19, 0x35, 0x21, 0x7f, 0x88, 0x4f,
|
||||
0xe8, 0x94, 0x2b, 0x1a, 0xf9, 0x89, 0x1e, 0x40, 0xf1, 0x48, 0x1f, 0x8c, 0x31, 0xb7, 0x0e, 0x59,
|
||||
0xc4, 0x97, 0x75, 0xf8, 0x76, 0xee, 0x81, 0xa2, 0x0e, 0xe1, 0xed, 0x27, 0xd8, 0xeb, 0x58, 0x2e,
|
||||
0x76, 0xbc, 0x55, 0xd3, 0x1a, 0xd8, 0xfd, 0x6d, 0xdd, 0x3b, 0x98, 0xc3, 0x56, 0x44, 0xd4, 0x3e,
|
||||
0x17, 0x53, 0x7b, 0xf5, 0x27, 0x0a, 0xbc, 0x23, 0x1f, 0x8f, 0xef, 0x6a, 0x1b, 0xca, 0xfb, 0x26,
|
||||
0x1e, 0x18, 0x44, 0x74, 0x14, 0x2a, 0x3a, 0xa2, 0x4d, 0x6c, 0xc6, 0x88, 0x20, 0xf3, 0xcd, 0xbb,
|
||||
0x9a, 0x32, 0xd3, 0x1d, 0xcf, 0x31, 0xad, 0xfe, 0x53, 0xd3, 0xf5, 0x34, 0x86, 0x1f, 0x12, 0x95,
|
||||
0x7c, 0x76, 0x0d, 0xfd, 0x5d, 0x05, 0x2e, 0x3d, 0xc1, 0xde, 0x9a, 0x70, 0x39, 0xe4, 0xbb, 0xe9,
|
||||
0x7a, 0x66, 0xcf, 0x7d, 0xb5, 0x61, 0x5f, 0x86, 0xd8, 0x43, 0xfd, 0x03, 0x05, 0x2e, 0xa7, 0x32,
|
||||
0xc3, 0x97, 0x8e, 0x9b, 0x54, 0xdf, 0xe1, 0xc8, 0x4d, 0xea, 0xaf, 0xe0, 0x93, 0xcf, 0xc9, 0xe6,
|
||||
0x6f, 0xeb, 0xa6, 0xc3, 0x4c, 0xea, 0x8c, 0x0e, 0xe6, 0x67, 0x0a, 0x5c, 0x7c, 0x82, 0xbd, 0x6d,
|
||||
0xdf, 0xdd, 0xbe, 0xc1, 0xd5, 0x21, 0x38, 0x21, 0xb7, 0xef, 0xc7, 0x9d, 0x11, 0x98, 0xfa, 0xfb,
|
||||
0x6c, 0x3b, 0xa5, 0xfc, 0xbe, 0x91, 0x05, 0xbc, 0x44, 0x35, 0x21, 0x64, 0x27, 0xb8, 0xc6, 0xf3,
|
||||
0xe5, 0x53, 0xbf, 0x2a, 0x42, 0xed, 0x73, 0x6e, 0x1a, 0xa8, 0x43, 0x8d, 0xaf, 0x84, 0x22, 0x8f,
|
||||
0x89, 0x42, 0xc1, 0x95, 0x2c, 0xde, 0x7a, 0x02, 0x75, 0x17, 0xe3, 0xc3, 0x59, 0xdc, 0x67, 0x8d,
|
||||
0x74, 0x14, 0x6e, 0xef, 0x29, 0x2c, 0x8d, 0x2d, 0x1a, 0xb5, 0x63, 0x83, 0xcf, 0x82, 0xad, 0xfc,
|
||||
0x74, 0xb3, 0x9a, 0xec, 0x88, 0x3e, 0xe3, 0x89, 0x41, 0x88, 0x56, 0x31, 0x13, 0xad, 0x78, 0x37,
|
||||
0xd4, 0x81, 0xa6, 0xe1, 0xd8, 0xa3, 0x11, 0x36, 0xba, 0xae, 0x4f, 0xaa, 0x94, 0x8d, 0x14, 0xef,
|
||||
0x27, 0x48, 0xdd, 0x83, 0xb3, 0x71, 0x4e, 0x3b, 0x06, 0x89, 0x15, 0x89, 0x78, 0xc9, 0x3e, 0xa1,
|
||||
0xdb, 0xb0, 0x94, 0xc4, 0x2f, 0x53, 0xfc, 0xe4, 0x07, 0xf4, 0x01, 0xa0, 0x18, 0xab, 0x04, 0xbd,
|
||||
0xc2, 0xd0, 0xa3, 0xcc, 0x70, 0x74, 0x9a, 0x94, 0x46, 0xd1, 0x81, 0xa1, 0xf3, 0x2f, 0x21, 0xf4,
|
||||
0x0e, 0xf1, 0xb3, 0x11, 0x74, 0xb7, 0x55, 0xcd, 0xb6, 0x10, 0x51, 0x62, 0xae, 0xfa, 0x95, 0x02,
|
||||
0xcb, 0xcf, 0x75, 0xaf, 0x77, 0xb0, 0x3e, 0xe4, 0x52, 0x3a, 0x87, 0x96, 0x7f, 0x02, 0x95, 0x23,
|
||||
0x2e, 0x91, 0xbe, 0x29, 0xbf, 0x2c, 0x61, 0x28, 0x2c, 0xfb, 0x5a, 0xd0, 0x83, 0x24, 0x49, 0xe7,
|
||||
0x36, 0x42, 0xc9, 0xe2, 0x1b, 0xb0, 0x37, 0x53, 0xb2, 0x5c, 0xf5, 0x25, 0x00, 0x67, 0x6e, 0xd3,
|
||||
0xed, 0xcf, 0xc0, 0xd7, 0x03, 0x58, 0xe0, 0xd4, 0xb8, 0x41, 0x99, 0xb6, 0x61, 0x3e, 0xba, 0xfa,
|
||||
0xd3, 0x12, 0x54, 0x43, 0x1f, 0x50, 0x03, 0x72, 0xc2, 0x52, 0xe4, 0x24, 0xb3, 0xcb, 0x4d, 0xcf,
|
||||
0xab, 0xf2, 0xc9, 0xbc, 0xea, 0x06, 0x34, 0x4c, 0xea, 0xc1, 0xbb, 0x7c, 0x57, 0x68, 0xe8, 0x5c,
|
||||
0xd1, 0xea, 0x0c, 0xca, 0x45, 0x04, 0x5d, 0x82, 0xaa, 0x35, 0x1e, 0x76, 0xed, 0xfd, 0xae, 0x63,
|
||||
0x1f, 0xbb, 0x3c, 0x41, 0xab, 0x58, 0xe3, 0xe1, 0xf7, 0xf6, 0x35, 0xfb, 0xd8, 0x0d, 0x72, 0x80,
|
||||
0xd2, 0x29, 0x73, 0x80, 0x4b, 0x50, 0x1d, 0xea, 0x2f, 0x09, 0xd5, 0xae, 0x35, 0x1e, 0xd2, 0xdc,
|
||||
0x2d, 0xaf, 0x55, 0x86, 0xfa, 0x4b, 0xcd, 0x3e, 0xde, 0x1a, 0x0f, 0xd1, 0x0a, 0x34, 0x07, 0xba,
|
||||
0xeb, 0x75, 0xc3, 0xc9, 0x5f, 0x99, 0x26, 0x7f, 0x0d, 0x02, 0x7f, 0x1c, 0x24, 0x80, 0xc9, 0x6c,
|
||||
0xa2, 0x32, 0x47, 0x36, 0x61, 0x0c, 0x07, 0x01, 0x21, 0xc8, 0x9e, 0x4d, 0x18, 0xc3, 0x81, 0x20,
|
||||
0xf3, 0x00, 0x16, 0xf6, 0x68, 0x5c, 0x34, 0x49, 0x59, 0x37, 0x48, 0x48, 0xc4, 0xc2, 0x27, 0xcd,
|
||||
0x47, 0x47, 0xdf, 0x81, 0x0a, 0x75, 0x47, 0xb4, 0x6f, 0x2d, 0x53, 0xdf, 0xa0, 0x03, 0xe9, 0x6d,
|
||||
0xe0, 0x81, 0xa7, 0xd3, 0xde, 0xf5, 0x6c, 0xbd, 0x45, 0x07, 0x62, 0x29, 0x7b, 0x0e, 0xd6, 0x3d,
|
||||
0x6c, 0xac, 0x9e, 0xac, 0xd9, 0xc3, 0x91, 0x4e, 0x85, 0xa9, 0xd5, 0xa0, 0x61, 0xbd, 0xec, 0x13,
|
||||
0x7a, 0x17, 0x1a, 0x3d, 0xd1, 0xda, 0x70, 0xec, 0x61, 0x6b, 0x91, 0xea, 0x51, 0x0c, 0x8a, 0x2e,
|
||||
0x02, 0xf8, 0x36, 0x52, 0xf7, 0x5a, 0x4d, 0xba, 0x8b, 0x15, 0x0e, 0x79, 0x44, 0x6b, 0x3b, 0xa6,
|
||||
0xdb, 0x65, 0x55, 0x14, 0xd3, 0xea, 0xb7, 0x96, 0xe8, 0x88, 0x55, 0xbf, 0xec, 0x62, 0x5a, 0x7d,
|
||||
0x74, 0x1e, 0x16, 0x4c, 0xb7, 0xbb, 0xaf, 0x1f, 0xe2, 0x16, 0xa2, 0x5f, 0x4b, 0xa6, 0xbb, 0xa1,
|
||||
0x1f, 0x62, 0xf5, 0xc7, 0x70, 0x2e, 0x90, 0xae, 0xd0, 0x4e, 0x26, 0x85, 0x42, 0x99, 0x55, 0x28,
|
||||
0x26, 0x47, 0xc3, 0xbf, 0x28, 0xc0, 0xf2, 0x8e, 0x7e, 0x84, 0x5f, 0x7f, 0xe0, 0x9d, 0xc9, 0xac,
|
||||
0x3d, 0x85, 0x25, 0x1a, 0x6b, 0xdf, 0x0f, 0xf1, 0x33, 0xc1, 0xa3, 0x87, 0x45, 0x21, 0xd9, 0x11,
|
||||
0x7d, 0x97, 0x84, 0x22, 0xb8, 0x77, 0xb8, 0x4d, 0x92, 0x17, 0xdf, 0x9b, 0x5f, 0x94, 0xd0, 0x59,
|
||||
0x13, 0x58, 0x5a, 0xb8, 0x07, 0xda, 0x86, 0xc5, 0xe8, 0x36, 0xf8, 0x7e, 0xfc, 0xe6, 0xc4, 0xcc,
|
||||
0x36, 0x58, 0x7d, 0xad, 0x11, 0xd9, 0x0c, 0x17, 0xb5, 0x60, 0x81, 0x3b, 0x61, 0x6a, 0x33, 0xca,
|
||||
0x9a, 0xdf, 0x44, 0xdb, 0x70, 0x96, 0xcd, 0x60, 0x87, 0x2b, 0x04, 0x9b, 0x7c, 0x39, 0xd3, 0xe4,
|
||||
0x65, 0x5d, 0xa3, 0xfa, 0x54, 0x39, 0xad, 0x3e, 0xb5, 0x60, 0x81, 0xcb, 0x38, 0xb5, 0x23, 0x65,
|
||||
0xcd, 0x6f, 0x92, 0x6d, 0x0e, 0xa4, 0xbd, 0x4a, 0xbf, 0x05, 0x00, 0x92, 0xb4, 0x40, 0xb0, 0x9e,
|
||||
0x53, 0x6a, 0x30, 0x9f, 0x42, 0x59, 0x48, 0x78, 0xf6, 0xe4, 0x51, 0xf4, 0x89, 0xdb, 0xf7, 0x7c,
|
||||
0xcc, 0xbe, 0xab, 0xff, 0xa8, 0x40, 0x6d, 0x9d, 0x4c, 0xe9, 0xa9, 0xdd, 0xa7, 0xde, 0xe8, 0x06,
|
||||
0x34, 0x1c, 0xdc, 0xb3, 0x1d, 0xa3, 0x8b, 0x2d, 0xcf, 0x31, 0x31, 0x4b, 0xdd, 0x0b, 0x5a, 0x9d,
|
||||
0x41, 0x1f, 0x33, 0x20, 0x41, 0x23, 0x26, 0xdb, 0xf5, 0xf4, 0xe1, 0xa8, 0xbb, 0x4f, 0x4c, 0x43,
|
||||
0x8e, 0xa1, 0x09, 0x28, 0xb5, 0x0c, 0x57, 0xa1, 0x16, 0xa0, 0x79, 0x36, 0x1d, 0xbf, 0xa0, 0x55,
|
||||
0x05, 0x6c, 0xd7, 0x46, 0xd7, 0xa1, 0x41, 0xd7, 0xb4, 0x3b, 0xb0, 0xfb, 0x5d, 0x92, 0x0b, 0x72,
|
||||
0x47, 0x55, 0x33, 0x38, 0x5b, 0x64, 0xaf, 0xa2, 0x58, 0xae, 0xf9, 0x23, 0xcc, 0x5d, 0x95, 0xc0,
|
||||
0xda, 0x31, 0x7f, 0x84, 0xd5, 0x7f, 0x50, 0xa0, 0xbe, 0xae, 0x7b, 0xfa, 0x96, 0x6d, 0xe0, 0xdd,
|
||||
0x19, 0x1d, 0x7b, 0x86, 0x7a, 0xe8, 0x3b, 0x50, 0x11, 0x33, 0xe0, 0x53, 0x0a, 0x00, 0x68, 0x03,
|
||||
0x1a, 0x7e, 0x2c, 0xd7, 0x65, 0xb9, 0x4a, 0x21, 0x35, 0x80, 0x0a, 0x79, 0x4e, 0x57, 0xab, 0xfb,
|
||||
0xdd, 0x68, 0x53, 0xdd, 0x80, 0x5a, 0xf8, 0x33, 0x19, 0x75, 0x27, 0x2e, 0x28, 0x02, 0x40, 0xa4,
|
||||
0x71, 0x6b, 0x3c, 0x24, 0x7b, 0xca, 0x0d, 0x8b, 0xdf, 0x54, 0x7f, 0x5b, 0x81, 0x3a, 0x77, 0xf7,
|
||||
0x3b, 0xe2, 0xe4, 0x80, 0x4e, 0x8d, 0x55, 0x28, 0xe8, 0x6f, 0xf4, 0xed, 0x68, 0xb1, 0xef, 0xba,
|
||||
0xd4, 0x08, 0x50, 0x22, 0x34, 0xc8, 0x8c, 0xf8, 0xfa, 0x2c, 0xd9, 0xf1, 0x97, 0x44, 0xd0, 0xf8,
|
||||
0xd6, 0x50, 0x41, 0x6b, 0xc1, 0x82, 0x6e, 0x18, 0x0e, 0x76, 0x5d, 0xce, 0x87, 0xdf, 0x24, 0x5f,
|
||||
0x8e, 0xb0, 0xe3, 0xfa, 0x22, 0x9f, 0xd7, 0xfc, 0x26, 0xfa, 0x0e, 0x94, 0x45, 0x54, 0xca, 0x4a,
|
||||
0x3b, 0x57, 0xd2, 0xf9, 0xe4, 0xb9, 0x9c, 0xe8, 0xa1, 0xfe, 0x6d, 0x0e, 0x1a, 0x7c, 0xc1, 0x56,
|
||||
0xb9, 0x3f, 0x9e, 0xac, 0x7c, 0xab, 0x50, 0xdb, 0x0f, 0x74, 0x7f, 0x52, 0x41, 0x2a, 0x6c, 0x22,
|
||||
0x22, 0x7d, 0xa6, 0x29, 0x60, 0x34, 0x22, 0x28, 0xcc, 0x15, 0x11, 0x14, 0x4f, 0x6b, 0xc1, 0x92,
|
||||
0x31, 0x62, 0x49, 0x12, 0x23, 0xaa, 0xbf, 0x06, 0xd5, 0x10, 0x01, 0x6a, 0xa1, 0x59, 0xb9, 0x87,
|
||||
0xaf, 0x98, 0xdf, 0x44, 0x1f, 0x05, 0x71, 0x11, 0x5b, 0xaa, 0x0b, 0x12, 0x5e, 0x62, 0x21, 0x91,
|
||||
0xfa, 0xf7, 0x0a, 0x94, 0x38, 0xe5, 0xcb, 0x50, 0xe5, 0x46, 0x87, 0xc6, 0x8c, 0x8c, 0x3a, 0x70,
|
||||
0x10, 0x09, 0x1a, 0x5f, 0x9d, 0xd5, 0xb9, 0x00, 0xe5, 0x98, 0xbd, 0x59, 0xe0, 0x6e, 0xc1, 0xff,
|
||||
0x14, 0x32, 0x32, 0xe4, 0x13, 0xb1, 0x2f, 0xe8, 0x1c, 0x14, 0x07, 0x76, 0x5f, 0x9c, 0x0c, 0xb1,
|
||||
0x86, 0xfa, 0xb5, 0x42, 0x0b, 0xf9, 0x1a, 0xee, 0xd9, 0x47, 0xd8, 0x39, 0x99, 0xbf, 0x02, 0xfa,
|
||||
0x30, 0x24, 0xe6, 0x19, 0x93, 0x2f, 0xd1, 0x01, 0x3d, 0x0c, 0x36, 0x21, 0x2f, 0xab, 0x91, 0x84,
|
||||
0xed, 0x0e, 0x17, 0xd2, 0x60, 0x33, 0xfe, 0x50, 0xa1, 0xb5, 0xdc, 0xe8, 0x54, 0x66, 0x8d, 0x76,
|
||||
0x5e, 0x49, 0x22, 0xa3, 0xfe, 0x42, 0x81, 0x76, 0x50, 0x84, 0x71, 0x57, 0x4f, 0xe6, 0x3d, 0x29,
|
||||
0x79, 0x35, 0xf9, 0xd5, 0xff, 0x17, 0xa5, 0x7c, 0xa2, 0xb4, 0x99, 0x32, 0x23, 0xbf, 0x90, 0x6f,
|
||||
0xd1, 0x7a, 0x6e, 0x72, 0x42, 0xf3, 0x88, 0x4c, 0x1b, 0xca, 0xa2, 0x80, 0xc0, 0xca, 0xf9, 0xa2,
|
||||
0x4d, 0x34, 0xec, 0xc2, 0x13, 0xec, 0x6d, 0x44, 0x8b, 0x30, 0x6f, 0x7a, 0x01, 0xc3, 0x47, 0x0c,
|
||||
0x07, 0xfc, 0x88, 0xa1, 0x10, 0x3b, 0x62, 0xe0, 0x70, 0x75, 0x48, 0x45, 0x20, 0x31, 0x81, 0xd7,
|
||||
0xb5, 0x60, 0xbf, 0xa3, 0x40, 0x8b, 0x8f, 0x42, 0xc7, 0x24, 0x29, 0xd1, 0x00, 0x7b, 0xd8, 0xf8,
|
||||
0xa6, 0x4b, 0x05, 0xff, 0xad, 0x40, 0x33, 0xec, 0x75, 0xa9, 0xe3, 0xfc, 0x18, 0x8a, 0xb4, 0xd2,
|
||||
0xc2, 0x39, 0x98, 0x6a, 0x1a, 0x18, 0x36, 0x31, 0xdb, 0x34, 0xd4, 0xde, 0x15, 0x01, 0x02, 0x6f,
|
||||
0x06, 0xae, 0x3f, 0x7f, 0x7a, 0xd7, 0xcf, 0x43, 0x21, 0x7b, 0x4c, 0xe8, 0xb2, 0x13, 0xe0, 0x00,
|
||||
0x80, 0x3e, 0x81, 0x12, 0xbb, 0xb0, 0xc1, 0x8f, 0xdd, 0x6e, 0x44, 0x49, 0xf3, 0xcb, 0x1c, 0xa1,
|
||||
0x8a, 0x39, 0x05, 0x68, 0xbc, 0x93, 0xfa, 0xcb, 0xb0, 0x1c, 0x64, 0xa3, 0x6c, 0xd8, 0x59, 0x85,
|
||||
0x56, 0xfd, 0x17, 0x05, 0xce, 0xee, 0x9c, 0x58, 0xbd, 0xb8, 0xf8, 0x2f, 0x43, 0x69, 0x34, 0xd0,
|
||||
0x83, 0x5a, 0x2d, 0x6f, 0xd1, 0x30, 0x90, 0x8d, 0x8d, 0x0d, 0xe2, 0x43, 0xd8, 0x9a, 0x55, 0x05,
|
||||
0x6c, 0xd7, 0x9e, 0xea, 0xda, 0x6f, 0x88, 0xf4, 0x19, 0x1b, 0xcc, 0x5b, 0xb1, 0x32, 0x54, 0x5d,
|
||||
0x40, 0xa9, 0xb7, 0xfa, 0x04, 0x80, 0x3a, 0xf4, 0xee, 0x69, 0x9c, 0x38, 0xed, 0xf1, 0x94, 0x98,
|
||||
0xec, 0x9f, 0xe7, 0xa0, 0x15, 0x5a, 0xa5, 0x6f, 0x3a, 0xbe, 0x49, 0xc9, 0xca, 0xf2, 0xaf, 0x28,
|
||||
0x2b, 0x2b, 0xcc, 0x1f, 0xd3, 0x14, 0x65, 0x31, 0xcd, 0x6f, 0xe6, 0xa1, 0x11, 0xac, 0xda, 0xf6,
|
||||
0x40, 0xb7, 0x52, 0x25, 0x61, 0x47, 0xc4, 0xf3, 0xd1, 0x75, 0x7a, 0x5f, 0xa6, 0x27, 0x29, 0x1b,
|
||||
0xa1, 0xc5, 0x48, 0xa0, 0x8b, 0x74, 0xd3, 0x1d, 0x8f, 0x15, 0xbe, 0x78, 0x0e, 0xc1, 0x14, 0xd2,
|
||||
0x1c, 0x62, 0x74, 0x1b, 0x10, 0xd7, 0xa2, 0xae, 0x69, 0x75, 0x5d, 0xdc, 0xb3, 0x2d, 0x83, 0xe9,
|
||||
0x57, 0x51, 0x6b, 0xf2, 0x2f, 0x1d, 0x6b, 0x87, 0xc1, 0xd1, 0xc7, 0x50, 0xf0, 0x4e, 0x46, 0x2c,
|
||||
0x5a, 0x69, 0x48, 0xfd, 0x7d, 0xc0, 0xd7, 0xee, 0xc9, 0x08, 0x6b, 0x14, 0xdd, 0xbf, 0xbe, 0xe3,
|
||||
0x39, 0xfa, 0x11, 0x0f, 0xfd, 0x0a, 0x5a, 0x08, 0x42, 0x2c, 0x86, 0xbf, 0x86, 0x0b, 0x2c, 0x44,
|
||||
0xe2, 0x4d, 0x26, 0xd9, 0xbe, 0xd2, 0x76, 0x3d, 0x6f, 0x40, 0x4b, 0x77, 0x54, 0xb2, 0x7d, 0xe8,
|
||||
0xae, 0x37, 0x20, 0x93, 0xf4, 0x6c, 0x4f, 0x1f, 0x30, 0xfd, 0xa8, 0x70, 0xeb, 0x40, 0x20, 0x34,
|
||||
0x31, 0xf9, 0xe7, 0x1c, 0x34, 0x03, 0xc6, 0x34, 0xec, 0x8e, 0x07, 0xe9, 0xfa, 0x38, 0xb9, 0x74,
|
||||
0x32, 0x4d, 0x15, 0xbf, 0x0b, 0x55, 0x2e, 0x15, 0xa7, 0x90, 0x2a, 0x60, 0x5d, 0x9e, 0x4e, 0x10,
|
||||
0xf3, 0xe2, 0x2b, 0x12, 0xf3, 0xd2, 0x0c, 0xc5, 0x07, 0xf9, 0xde, 0xa8, 0x3f, 0x51, 0xe0, 0xad,
|
||||
0x84, 0xd5, 0x9c, 0xb8, 0xb4, 0x93, 0x53, 0x3f, 0x6e, 0x4d, 0xe3, 0x24, 0xb9, 0xfd, 0x7f, 0x08,
|
||||
0x25, 0x87, 0x52, 0xe7, 0x67, 0x54, 0xd7, 0x26, 0x0a, 0x1f, 0x63, 0x44, 0xe3, 0x5d, 0xd4, 0x3f,
|
||||
0x52, 0xe0, 0x7c, 0x92, 0xd5, 0x39, 0x9c, 0xfa, 0x2a, 0x2c, 0x30, 0xd2, 0xbe, 0x8e, 0xae, 0x4c,
|
||||
0xd6, 0xd1, 0x60, 0x71, 0x34, 0xbf, 0xa3, 0xba, 0x03, 0xcb, 0xbe, 0xef, 0x0f, 0x96, 0x7e, 0x13,
|
||||
0x7b, 0xfa, 0x84, 0xc4, 0xe7, 0x32, 0x54, 0x59, 0x04, 0xcd, 0x12, 0x0a, 0x56, 0x32, 0x80, 0x3d,
|
||||
0x51, 0x69, 0x53, 0xff, 0x43, 0x81, 0x73, 0xd4, 0x79, 0xc6, 0x8f, 0x66, 0xb2, 0x1c, 0x18, 0xaa,
|
||||
0xa2, 0x22, 0xb1, 0xa5, 0x0f, 0xf9, 0xdd, 0x91, 0x8a, 0x16, 0x81, 0xa1, 0x4e, 0xb2, 0x10, 0x27,
|
||||
0x4d, 0x90, 0x83, 0x13, 0x52, 0x92, 0x8c, 0xd3, 0x03, 0xd2, 0x78, 0x05, 0x2e, 0x70, 0xda, 0x85,
|
||||
0x59, 0x9c, 0xf6, 0x53, 0x78, 0x2b, 0x36, 0xd3, 0x39, 0x76, 0x54, 0xfd, 0x4b, 0x85, 0x6c, 0x47,
|
||||
0xe4, 0x0e, 0xce, 0xec, 0x81, 0xeb, 0x45, 0x71, 0x26, 0xd4, 0x35, 0x8d, 0xb8, 0x11, 0x31, 0xd0,
|
||||
0xa7, 0x50, 0xb1, 0xf0, 0x71, 0x37, 0x1c, 0x0b, 0x65, 0x88, 0xea, 0xcb, 0x16, 0x3e, 0xa6, 0xbf,
|
||||
0xd4, 0x2d, 0x38, 0x9f, 0x60, 0x75, 0x9e, 0xb9, 0xff, 0x9d, 0x02, 0x17, 0xd6, 0x1d, 0x7b, 0xf4,
|
||||
0xb9, 0xe9, 0x78, 0x63, 0x7d, 0x10, 0x3d, 0x7b, 0x7e, 0x3d, 0x95, 0xad, 0xcf, 0x42, 0x51, 0x31,
|
||||
0x93, 0x9f, 0xdb, 0x12, 0x0d, 0x4a, 0x32, 0xc5, 0x27, 0x1d, 0x8a, 0xa1, 0xff, 0x3d, 0x2f, 0x63,
|
||||
0x9e, 0xe3, 0x4d, 0x89, 0x4b, 0xb2, 0x24, 0x18, 0xd2, 0x42, 0x78, 0x7e, 0xd6, 0x42, 0x78, 0x8a,
|
||||
0x79, 0x2f, 0xbc, 0x22, 0xf3, 0x7e, 0xea, 0xca, 0xcc, 0x67, 0x10, 0x3d, 0xa4, 0xa0, 0xde, 0x79,
|
||||
0xa6, 0xd3, 0x8d, 0x55, 0x80, 0xa0, 0x60, 0xcf, 0xaf, 0x50, 0x66, 0x21, 0x13, 0xea, 0x45, 0x76,
|
||||
0x4b, 0xb8, 0x52, 0xee, 0xe9, 0x43, 0x25, 0xe4, 0xef, 0x43, 0x5b, 0x26, 0xa5, 0xf3, 0x48, 0xfe,
|
||||
0xcf, 0x73, 0x00, 0x1d, 0x71, 0xeb, 0x76, 0x36, 0x5f, 0x70, 0x0d, 0x42, 0xd1, 0x48, 0xa0, 0xef,
|
||||
0x61, 0x29, 0x32, 0x88, 0x4a, 0x88, 0x9c, 0x94, 0xe0, 0x24, 0xf2, 0x54, 0x83, 0xd2, 0x09, 0x69,
|
||||
0x0d, 0x13, 0x8a, 0xb8, 0xf9, 0x7d, 0x1b, 0x2a, 0x8e, 0x7d, 0xdc, 0x25, 0x6a, 0x66, 0xf8, 0xd7,
|
||||
0x8a, 0x1d, 0xfb, 0x98, 0x28, 0x9f, 0x81, 0xce, 0xc3, 0x82, 0xa7, 0xbb, 0x87, 0x84, 0x3e, 0xab,
|
||||
0x1b, 0x95, 0x48, 0xb3, 0x63, 0xa0, 0x73, 0x50, 0xdc, 0x37, 0x07, 0x98, 0xdd, 0x56, 0xa8, 0x68,
|
||||
0xac, 0x81, 0xbe, 0xe5, 0xdf, 0x7f, 0x2b, 0x67, 0xbe, 0xe2, 0x42, 0xf1, 0xd5, 0xaf, 0x15, 0x58,
|
||||
0x0c, 0x56, 0x8d, 0x1a, 0x20, 0x62, 0xd3, 0xa8, 0x3d, 0x5b, 0xb3, 0x0d, 0x66, 0x2a, 0x1a, 0x29,
|
||||
0x1e, 0x81, 0x75, 0x64, 0x56, 0x2b, 0xe8, 0x32, 0x29, 0x4d, 0x26, 0xf3, 0x22, 0x93, 0x36, 0x0d,
|
||||
0xff, 0x22, 0x7c, 0xc9, 0xb1, 0x8f, 0x3b, 0x86, 0x58, 0x0d, 0x76, 0x67, 0x98, 0x25, 0x85, 0x64,
|
||||
0x35, 0xd6, 0xe8, 0xb5, 0xe1, 0x6b, 0x50, 0xc7, 0x8e, 0x63, 0x3b, 0xdd, 0x21, 0x76, 0x5d, 0xbd,
|
||||
0x8f, 0x79, 0x7c, 0x5e, 0xa3, 0xc0, 0x4d, 0x06, 0x53, 0xff, 0xa4, 0x00, 0x8d, 0x60, 0x2a, 0xfe,
|
||||
0x31, 0xb9, 0x69, 0xf8, 0xc7, 0xe4, 0x26, 0xd9, 0x3a, 0x70, 0x98, 0x29, 0x14, 0x9b, 0xbb, 0x9a,
|
||||
0x6b, 0x29, 0x5a, 0x85, 0x43, 0x3b, 0x06, 0x71, 0xcb, 0x44, 0xc9, 0x2c, 0xdb, 0xc0, 0xc1, 0xe6,
|
||||
0x82, 0x0f, 0xe2, 0x7b, 0x1b, 0x91, 0x91, 0x42, 0x06, 0x19, 0x29, 0x66, 0x90, 0x91, 0x92, 0x44,
|
||||
0x46, 0x96, 0xa1, 0xb4, 0x37, 0xee, 0x1d, 0x62, 0x8f, 0x47, 0x6c, 0xbc, 0x15, 0x95, 0x9d, 0x72,
|
||||
0x4c, 0x76, 0x84, 0x88, 0x54, 0xc2, 0x22, 0xf2, 0x36, 0x54, 0xd8, 0x79, 0x6d, 0xd7, 0x73, 0xe9,
|
||||
0xe1, 0x53, 0x5e, 0x2b, 0x33, 0xc0, 0xae, 0x8b, 0x1e, 0xf8, 0xe1, 0x5c, 0x55, 0xa6, 0xec, 0xd4,
|
||||
0xea, 0xc4, 0xa4, 0xc4, 0x0f, 0xe6, 0x6e, 0xc2, 0x62, 0x68, 0x39, 0xa8, 0x8f, 0xa8, 0x51, 0x56,
|
||||
0x43, 0xd1, 0x3e, 0x75, 0x13, 0x37, 0xa0, 0x11, 0x2c, 0x09, 0xc5, 0xab, 0xb3, 0x24, 0x4b, 0x40,
|
||||
0x29, 0x9a, 0x90, 0xe4, 0xc6, 0xe9, 0x24, 0x19, 0x5d, 0x80, 0x32, 0xcf, 0x8e, 0xdc, 0xd6, 0x62,
|
||||
0xa4, 0x58, 0xa1, 0xfe, 0x10, 0x50, 0xc0, 0xfd, 0x7c, 0xd1, 0x62, 0x4c, 0x3c, 0x72, 0x71, 0xf1,
|
||||
0x50, 0x7f, 0xaa, 0xc0, 0x52, 0x78, 0xb0, 0x59, 0x1d, 0xef, 0xa7, 0x50, 0x65, 0xc7, 0x7f, 0x5d,
|
||||
0xa2, 0xf8, 0xbc, 0x08, 0x74, 0x71, 0xe2, 0xbe, 0x68, 0x10, 0xbc, 0x3a, 0x20, 0xe2, 0x75, 0x6c,
|
||||
0x3b, 0x87, 0xa6, 0xd5, 0xef, 0x12, 0xce, 0x7c, 0x75, 0xab, 0x71, 0xe0, 0x16, 0x81, 0xa9, 0x5f,
|
||||
0x29, 0x70, 0xe9, 0xd9, 0xc8, 0xd0, 0x3d, 0x1c, 0x8a, 0x40, 0xe6, 0xbd, 0xed, 0xf7, 0xb1, 0x7f,
|
||||
0xdd, 0x2e, 0x97, 0xed, 0x08, 0x8b, 0x61, 0xab, 0x7f, 0x2d, 0x78, 0x49, 0x5c, 0x91, 0x9d, 0x9d,
|
||||
0x97, 0x36, 0x94, 0x8f, 0x38, 0x39, 0xff, 0x15, 0x85, 0xdf, 0x8e, 0x1c, 0x93, 0xe6, 0x4f, 0x7f,
|
||||
0x4c, 0xaa, 0x6e, 0xc2, 0x05, 0x0d, 0xbb, 0xd8, 0x32, 0x22, 0xb3, 0x99, 0xb9, 0xd8, 0x34, 0x82,
|
||||
0xb6, 0x8c, 0xdc, 0x3c, 0xc2, 0xca, 0x62, 0xd7, 0xae, 0x43, 0xc8, 0x7a, 0xdc, 0x14, 0x93, 0x90,
|
||||
0x89, 0x8e, 0xe3, 0xa9, 0x7f, 0x95, 0x83, 0xf3, 0x8f, 0x0c, 0x83, 0x5b, 0x71, 0x1e, 0x8d, 0xbd,
|
||||
0xae, 0x40, 0x39, 0x1e, 0x48, 0xe6, 0x93, 0x81, 0xe4, 0xab, 0xb2, 0xac, 0xdc, 0xc7, 0x58, 0xe3,
|
||||
0xa1, 0xef, 0x3b, 0x1d, 0x76, 0x7f, 0xe8, 0x21, 0x3f, 0x37, 0x23, 0x09, 0x3d, 0xf5, 0x9f, 0xd3,
|
||||
0xe3, 0xab, 0xb2, 0x5f, 0x34, 0x53, 0x47, 0xd0, 0x4a, 0x2e, 0xd6, 0x9c, 0xa6, 0xc4, 0x5f, 0x91,
|
||||
0x91, 0xcd, 0x0a, 0xac, 0x35, 0x12, 0x42, 0x51, 0xd0, 0xb6, 0xed, 0xaa, 0xff, 0x99, 0x83, 0xd6,
|
||||
0x8e, 0x7e, 0x84, 0xff, 0xef, 0x6c, 0xd0, 0x17, 0x70, 0xce, 0xd5, 0x8f, 0x70, 0x37, 0x94, 0x18,
|
||||
0x77, 0x1d, 0xfc, 0x82, 0x87, 0xa0, 0xef, 0xc9, 0x2c, 0x89, 0xf4, 0x9a, 0x8d, 0xb6, 0xe4, 0x46,
|
||||
0xe0, 0x1a, 0x7e, 0x81, 0xde, 0x85, 0xc5, 0xf0, 0x3d, 0x2e, 0xc2, 0x5a, 0x99, 0x2e, 0x79, 0x3d,
|
||||
0x74, 0x4d, 0xab, 0x63, 0xa8, 0x2f, 0xe0, 0x9d, 0x67, 0x96, 0x8b, 0xbd, 0x4e, 0x70, 0xd5, 0x68,
|
||||
0xce, 0x14, 0xf2, 0x32, 0x54, 0x83, 0x85, 0x4f, 0xbc, 0x9c, 0x30, 0x5c, 0xd5, 0x86, 0xf6, 0xa6,
|
||||
0xee, 0x1c, 0xfa, 0x65, 0xe6, 0x75, 0x76, 0x25, 0xe4, 0x35, 0x0e, 0xb8, 0x2f, 0x6e, 0x48, 0x69,
|
||||
0x78, 0x1f, 0x3b, 0xd8, 0xea, 0xe1, 0xa7, 0x76, 0xef, 0x90, 0x84, 0x1b, 0x1e, 0x7b, 0xc6, 0xa6,
|
||||
0x84, 0x82, 0xce, 0xf5, 0xd0, 0x2b, 0xb5, 0x5c, 0xe4, 0x95, 0xda, 0x94, 0x97, 0x8d, 0xea, 0xcf,
|
||||
0x72, 0xb0, 0xfc, 0x68, 0xe0, 0x61, 0x27, 0xc8, 0xfc, 0x4f, 0x53, 0xc4, 0x08, 0xaa, 0x0a, 0xb9,
|
||||
0x19, 0xaa, 0x0a, 0x89, 0xeb, 0xe3, 0xf9, 0xe4, 0xf5, 0x71, 0x59, 0x0d, 0xa4, 0x30, 0x63, 0x0d,
|
||||
0xe4, 0x11, 0xc0, 0xc8, 0xb1, 0x47, 0xd8, 0xf1, 0x4c, 0xec, 0xa7, 0x6f, 0x19, 0xc2, 0x97, 0x50,
|
||||
0x27, 0xf5, 0x0b, 0x68, 0x3e, 0xe9, 0xad, 0xd9, 0xd6, 0xbe, 0xe9, 0x0c, 0xfd, 0x85, 0x4a, 0x28,
|
||||
0x9d, 0x92, 0x41, 0xe9, 0x72, 0x09, 0xa5, 0x53, 0x4d, 0x58, 0x0a, 0xd1, 0x9e, 0xd3, 0x70, 0xf5,
|
||||
0x7b, 0xdd, 0x7d, 0xd3, 0x32, 0xe9, 0x95, 0xab, 0x1c, 0x0d, 0x3f, 0xa1, 0xdf, 0xdb, 0xe0, 0x90,
|
||||
0x5b, 0x9f, 0x8a, 0xcb, 0xaa, 0xbb, 0x27, 0x23, 0x8c, 0x16, 0x20, 0xbf, 0x85, 0x8f, 0x9b, 0x67,
|
||||
0x10, 0x40, 0x69, 0xcb, 0x76, 0x86, 0xfa, 0xa0, 0xa9, 0xa0, 0x2a, 0x2c, 0xf0, 0xb3, 0xb9, 0x66,
|
||||
0x0e, 0xd5, 0xa1, 0xb2, 0xe6, 0x9f, 0x6f, 0x34, 0xf3, 0xb7, 0xfe, 0x4c, 0x81, 0xa5, 0xc4, 0xe9,
|
||||
0x11, 0x6a, 0x00, 0x3c, 0xb3, 0x7a, 0xfc, 0x58, 0xad, 0x79, 0x06, 0xd5, 0xa0, 0xec, 0x1f, 0xb2,
|
||||
0x31, 0x7a, 0xbb, 0x36, 0xc5, 0x6e, 0xe6, 0x50, 0x13, 0x6a, 0xac, 0xe3, 0xb8, 0xd7, 0xc3, 0xae,
|
||||
0xdb, 0xcc, 0x0b, 0xc8, 0x86, 0x6e, 0x0e, 0xc6, 0x0e, 0x6e, 0x16, 0xc8, 0x98, 0xbb, 0xb6, 0x86,
|
||||
0x07, 0x58, 0x77, 0x71, 0xb3, 0x88, 0x10, 0x34, 0x78, 0xc3, 0xef, 0x54, 0x0a, 0xc1, 0xfc, 0x6e,
|
||||
0x0b, 0xb7, 0x9e, 0x87, 0xcf, 0x00, 0xe8, 0xf4, 0xce, 0xc3, 0xd9, 0x67, 0x96, 0x81, 0xf7, 0x4d,
|
||||
0x0b, 0x1b, 0xc1, 0xa7, 0xe6, 0x19, 0x74, 0x16, 0x16, 0x37, 0xb1, 0xd3, 0xc7, 0x21, 0x60, 0x0e,
|
||||
0x2d, 0x41, 0x7d, 0xd3, 0x7c, 0x19, 0x02, 0xe5, 0xd5, 0x42, 0x59, 0x69, 0x2a, 0xf7, 0xff, 0xeb,
|
||||
0x2a, 0x54, 0x88, 0x6c, 0xad, 0xd9, 0xb6, 0x63, 0xa0, 0x01, 0x20, 0xfa, 0x2e, 0x64, 0x38, 0xb2,
|
||||
0x2d, 0xf1, 0x90, 0x0c, 0xdd, 0x89, 0x6e, 0x0f, 0x6f, 0x24, 0x11, 0xb9, 0xec, 0xb4, 0xaf, 0x4b,
|
||||
0xf1, 0x63, 0xc8, 0xea, 0x19, 0x34, 0xa4, 0xa3, 0xed, 0x9a, 0x43, 0xbc, 0x6b, 0xf6, 0x0e, 0xfd,
|
||||
0x00, 0xe9, 0x5e, 0x4a, 0x38, 0x94, 0x44, 0xf5, 0xc7, 0xbb, 0x26, 0x1d, 0x8f, 0x3d, 0xdc, 0xf1,
|
||||
0x65, 0x4e, 0x3d, 0x83, 0x5e, 0xc0, 0xb9, 0x27, 0x38, 0x14, 0x6b, 0xfa, 0x03, 0xde, 0x4f, 0x1f,
|
||||
0x30, 0x81, 0x7c, 0xca, 0x21, 0x9f, 0x42, 0x91, 0x8a, 0x1b, 0x92, 0x85, 0xa3, 0xe1, 0x37, 0xdf,
|
||||
0xed, 0x2b, 0xe9, 0x08, 0x82, 0xda, 0x0f, 0x61, 0x31, 0xf6, 0x52, 0x14, 0xc9, 0x9c, 0x93, 0xfc,
|
||||
0xcd, 0x6f, 0xfb, 0x56, 0x16, 0x54, 0x31, 0x56, 0x1f, 0x1a, 0xd1, 0xf7, 0x24, 0x68, 0x25, 0xc3,
|
||||
0xd3, 0x34, 0x36, 0xd2, 0x7b, 0x99, 0x1f, 0xb1, 0x51, 0x21, 0x68, 0xc6, 0x5f, 0x2e, 0xa2, 0x5b,
|
||||
0x13, 0x09, 0x44, 0x85, 0xed, 0xfd, 0x4c, 0xb8, 0x62, 0xb8, 0x13, 0x2a, 0x04, 0x89, 0x17, 0x63,
|
||||
0x71, 0x19, 0xf7, 0xc9, 0xa4, 0x3d, 0x65, 0x6b, 0xdf, 0xcd, 0x8c, 0x2f, 0x86, 0xfe, 0x2d, 0x76,
|
||||
0xf9, 0x46, 0xf6, 0xea, 0x0a, 0x7d, 0x28, 0x27, 0x37, 0xe1, 0xb9, 0x58, 0xfb, 0xfe, 0x69, 0xba,
|
||||
0x08, 0x26, 0x7e, 0x4c, 0x6f, 0xcd, 0x48, 0xde, 0x2d, 0xc5, 0xf5, 0xce, 0xa7, 0x97, 0xfe, 0x24,
|
||||
0xab, 0xfd, 0xe1, 0x29, 0x7a, 0x08, 0x06, 0xec, 0xf8, 0xd3, 0x50, 0x5f, 0x0d, 0xef, 0x4e, 0x95,
|
||||
0x9a, 0xd9, 0x74, 0xf0, 0x07, 0xb0, 0x18, 0x0b, 0xd7, 0x50, 0xf6, 0x90, 0xae, 0x3d, 0xc9, 0x35,
|
||||
0x31, 0x95, 0x8c, 0x5d, 0x42, 0x42, 0x29, 0xd2, 0x2f, 0xb9, 0xa8, 0xd4, 0xbe, 0x95, 0x05, 0x55,
|
||||
0x4c, 0xc4, 0xa5, 0xe6, 0x32, 0x76, 0xb5, 0x04, 0xdd, 0x96, 0xd3, 0x90, 0x5f, 0xa1, 0x69, 0x7f,
|
||||
0x90, 0x11, 0x5b, 0x0c, 0x7a, 0x04, 0x67, 0x25, 0x37, 0x80, 0xd0, 0x07, 0x13, 0x37, 0x2b, 0x7e,
|
||||
0xf5, 0xa9, 0x7d, 0x27, 0x2b, 0xba, 0x18, 0xf7, 0xd7, 0x01, 0xed, 0x1c, 0xd8, 0xc7, 0x34, 0x72,
|
||||
0xe8, 0x8f, 0x1d, 0x9d, 0x05, 0x3b, 0x69, 0xbe, 0x21, 0x89, 0x9a, 0x22, 0xa3, 0x13, 0x7b, 0x88,
|
||||
0xc1, 0xbb, 0x00, 0x4f, 0xb0, 0xb7, 0x89, 0x3d, 0x87, 0x28, 0xc6, 0xbb, 0x69, 0xee, 0x8f, 0x23,
|
||||
0xf8, 0x43, 0xdd, 0x9c, 0x8a, 0x17, 0x72, 0x45, 0xcd, 0x4d, 0xdd, 0x1a, 0xeb, 0x83, 0xd0, 0x13,
|
||||
0x86, 0xdb, 0xd2, 0xee, 0x71, 0xb4, 0x94, 0x8d, 0x4c, 0xc5, 0x16, 0x43, 0x1e, 0x0b, 0xd7, 0x1e,
|
||||
0x3a, 0x51, 0x9c, 0xec, 0xda, 0x93, 0xb7, 0x59, 0xe2, 0x66, 0x6f, 0x02, 0xbe, 0x18, 0xf8, 0x4b,
|
||||
0x85, 0x5e, 0x22, 0x8b, 0x21, 0x3c, 0x37, 0xbd, 0x83, 0xed, 0x81, 0x6e, 0xb9, 0x59, 0x58, 0xa0,
|
||||
0x88, 0xa7, 0x60, 0x81, 0xe3, 0x0b, 0x16, 0x0c, 0xa8, 0x47, 0x0e, 0xfa, 0x90, 0xec, 0xce, 0xbf,
|
||||
0xec, 0xd0, 0xb3, 0xbd, 0x32, 0x1d, 0x51, 0x8c, 0x72, 0x00, 0x75, 0x5f, 0x95, 0xd8, 0xe2, 0xbe,
|
||||
0x97, 0xc6, 0x69, 0x80, 0x93, 0x62, 0x09, 0xe4, 0xa8, 0x61, 0x4b, 0x90, 0x3c, 0xc7, 0x40, 0xd9,
|
||||
0xce, 0xbf, 0x26, 0x59, 0x82, 0xf4, 0xc3, 0x11, 0x66, 0xea, 0x62, 0x67, 0x86, 0x72, 0x3b, 0x2a,
|
||||
0x3d, 0x02, 0x95, 0x9a, 0xba, 0x94, 0x23, 0x48, 0xf5, 0x0c, 0x7a, 0x0e, 0x25, 0xfe, 0x47, 0x27,
|
||||
0xd7, 0x27, 0xd7, 0x1e, 0x39, 0xf5, 0x1b, 0x53, 0xb0, 0x04, 0xe1, 0x43, 0x38, 0x9f, 0x52, 0x79,
|
||||
0x94, 0xba, 0xe0, 0xc9, 0x55, 0xca, 0x69, 0xce, 0x41, 0x0c, 0x96, 0x28, 0x2d, 0x4e, 0x18, 0x2c,
|
||||
0xad, 0x0c, 0x39, 0x6d, 0xb0, 0x2e, 0x2c, 0x25, 0xaa, 0x36, 0xe8, 0xfd, 0x14, 0x47, 0x27, 0xab,
|
||||
0xed, 0x4c, 0x1b, 0xa0, 0x0f, 0x6f, 0x49, 0x2b, 0x14, 0x52, 0xc7, 0x3d, 0xa9, 0x96, 0x31, 0x6d,
|
||||
0xa0, 0x1e, 0x9c, 0x95, 0xd4, 0x25, 0xa4, 0x2e, 0x27, 0xbd, 0x7e, 0x31, 0x6d, 0x90, 0x7d, 0x68,
|
||||
0xaf, 0x3a, 0xb6, 0x6e, 0xf4, 0x74, 0xd7, 0xa3, 0xb5, 0x02, 0x92, 0x45, 0xf9, 0x91, 0x93, 0x3c,
|
||||
0xac, 0x96, 0x56, 0x14, 0xa6, 0x8d, 0xb3, 0x07, 0x55, 0xba, 0x95, 0xec, 0x2f, 0x28, 0x90, 0xdc,
|
||||
0x47, 0x84, 0x30, 0x52, 0x0c, 0x8f, 0x0c, 0x51, 0x08, 0xf5, 0x2e, 0x54, 0xd7, 0xe8, 0x91, 0x4a,
|
||||
0xc7, 0x32, 0xf0, 0xcb, 0xb8, 0xbf, 0xa2, 0xaf, 0x6f, 0xef, 0x84, 0x10, 0x32, 0xaf, 0x50, 0x9d,
|
||||
0x06, 0xb4, 0x06, 0x7e, 0xc9, 0xf6, 0x79, 0x45, 0x46, 0x37, 0x82, 0x92, 0x92, 0x00, 0x48, 0x31,
|
||||
0x43, 0x9e, 0xfe, 0x5c, 0x38, 0xcc, 0x13, 0xc3, 0xdd, 0x4d, 0x21, 0x92, 0xc0, 0xf4, 0x47, 0xbd,
|
||||
0x97, 0xbd, 0x43, 0xd8, 0x33, 0xf8, 0x7c, 0x75, 0xe8, 0x79, 0xce, 0xcd, 0x49, 0xac, 0x87, 0x63,
|
||||
0xb7, 0x95, 0xe9, 0x88, 0x62, 0x94, 0x6d, 0xa8, 0x10, 0xe9, 0x64, 0xdb, 0x73, 0x5d, 0xd6, 0x51,
|
||||
0x7c, 0xce, 0xbe, 0x39, 0xeb, 0xd8, 0xed, 0x39, 0xe6, 0x1e, 0xdf, 0x74, 0x29, 0x3b, 0x11, 0x94,
|
||||
0x89, 0x9b, 0x13, 0xc3, 0x14, 0x9c, 0xff, 0x06, 0x8d, 0xd6, 0x29, 0x74, 0x75, 0x6c, 0x0e, 0x8c,
|
||||
0x6d, 0xc7, 0xee, 0xd3, 0x97, 0x2f, 0xf7, 0x26, 0x4d, 0x3f, 0x82, 0x9a, 0x1a, 0x89, 0x4d, 0xe8,
|
||||
0x21, 0xc6, 0xff, 0x55, 0xa8, 0x88, 0xf2, 0x11, 0x92, 0xdd, 0xd8, 0x8a, 0x17, 0xae, 0xda, 0xd7,
|
||||
0x27, 0x23, 0xf9, 0x94, 0xef, 0x7f, 0x5d, 0x81, 0xb2, 0xff, 0xca, 0xe7, 0x1b, 0xae, 0x7b, 0xbc,
|
||||
0x81, 0x42, 0xc4, 0x0f, 0x60, 0x31, 0xf6, 0xe2, 0x5e, 0x6a, 0xe3, 0xe4, 0xaf, 0xf2, 0xa7, 0x09,
|
||||
0xe3, 0x73, 0xfe, 0x27, 0x71, 0x22, 0x27, 0xb9, 0x99, 0x56, 0xcc, 0x88, 0xa7, 0x23, 0x53, 0x08,
|
||||
0xff, 0xef, 0x4e, 0x02, 0xb6, 0x00, 0x42, 0xe1, 0xff, 0xe4, 0xbb, 0xb0, 0x24, 0xa2, 0x9d, 0xb6,
|
||||
0x5a, 0x43, 0x69, 0x84, 0xff, 0x5e, 0x96, 0x7b, 0x85, 0xe9, 0x31, 0x5a, 0x7a, 0x5c, 0xff, 0x0c,
|
||||
0x6a, 0xe1, 0x5b, 0xea, 0x48, 0xfa, 0x97, 0x64, 0xc9, 0x6b, 0xec, 0xd3, 0x66, 0xb1, 0x79, 0xca,
|
||||
0xd0, 0x6f, 0x0a, 0x39, 0x17, 0x50, 0xf2, 0x7c, 0x53, 0x1a, 0x2a, 0xa7, 0x9e, 0xaa, 0x4a, 0x43,
|
||||
0xe5, 0xf4, 0x43, 0x53, 0x56, 0xd3, 0x8a, 0x1f, 0xda, 0x49, 0x6b, 0x5a, 0x29, 0xc7, 0xa0, 0xd2,
|
||||
0x9a, 0x56, 0xda, 0x29, 0xa0, 0x7a, 0x66, 0xf5, 0xa3, 0x2f, 0x3e, 0xec, 0x9b, 0xde, 0xc1, 0x78,
|
||||
0x8f, 0xcc, 0xfe, 0x2e, 0xeb, 0xfa, 0x81, 0x69, 0xf3, 0x5f, 0x77, 0x7d, 0x71, 0xbf, 0x4b, 0xa9,
|
||||
0xdd, 0x25, 0xd4, 0x46, 0x7b, 0x7b, 0x25, 0xda, 0xfa, 0xe8, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff,
|
||||
0x4a, 0x84, 0x21, 0x10, 0xf9, 0x52, 0x00, 0x00,
|
||||
0x5d, 0xed, 0x86, 0x69, 0x79, 0xd8, 0xb1, 0xf4, 0x01, 0x6f, 0xd7, 0xc2, 0x03, 0xda, 0x35, 0xb7,
|
||||
0x77, 0x80, 0x87, 0x3a, 0x6f, 0x2d, 0x99, 0x96, 0x81, 0x5f, 0x86, 0xf1, 0xab, 0x0b, 0x50, 0x7c,
|
||||
0x3c, 0x1c, 0x79, 0x27, 0xea, 0xdf, 0x28, 0x50, 0xdb, 0x18, 0x8c, 0xdd, 0x03, 0x0d, 0xbf, 0x18,
|
||||
0x63, 0xd7, 0x43, 0xf7, 0xa0, 0xb0, 0xa7, 0xbb, 0xb8, 0xa5, 0x5c, 0x51, 0x56, 0xaa, 0xf7, 0xdf,
|
||||
0xb9, 0x13, 0x21, 0x84, 0x93, 0xb0, 0xe9, 0xf6, 0x57, 0x75, 0x17, 0x6b, 0x14, 0x12, 0x21, 0x28,
|
||||
0x18, 0x7b, 0x9d, 0xf5, 0x56, 0xee, 0x8a, 0xb2, 0x92, 0xd7, 0xe8, 0x6f, 0x74, 0x09, 0xc0, 0xc5,
|
||||
0xfd, 0x21, 0xb6, 0xbc, 0xce, 0xba, 0xdb, 0xca, 0x5f, 0xc9, 0xaf, 0xe4, 0xb5, 0x50, 0x0f, 0x52,
|
||||
0xa1, 0xd6, 0xb3, 0x07, 0x03, 0xdc, 0xf3, 0x4c, 0xdb, 0xea, 0xac, 0xb7, 0x0a, 0x74, 0x6c, 0xa4,
|
||||
0x0f, 0xb5, 0xa1, 0x6c, 0xba, 0x9d, 0xe1, 0xc8, 0x76, 0xbc, 0x56, 0xf1, 0x8a, 0xb2, 0x52, 0xd6,
|
||||
0x44, 0x5b, 0xfd, 0x37, 0x05, 0xea, 0x9c, 0x6c, 0x77, 0x64, 0x5b, 0x2e, 0x46, 0x1f, 0x41, 0xc9,
|
||||
0xf5, 0x74, 0x6f, 0xec, 0x72, 0xca, 0xdf, 0x96, 0x52, 0xbe, 0x43, 0x41, 0x34, 0x0e, 0x2a, 0x25,
|
||||
0x3d, 0x4e, 0x5a, 0x5e, 0x42, 0x5a, 0x74, 0x79, 0x85, 0xc4, 0xf2, 0x56, 0x60, 0x71, 0x9f, 0x50,
|
||||
0xb7, 0x13, 0x00, 0x15, 0x29, 0x50, 0xbc, 0x9b, 0x60, 0xf2, 0xcc, 0x21, 0xfe, 0xde, 0xfe, 0x0e,
|
||||
0xd6, 0x07, 0xad, 0x12, 0x9d, 0x2b, 0xd4, 0xa3, 0xfe, 0x93, 0x02, 0x4d, 0x01, 0xee, 0xf3, 0xe8,
|
||||
0x1c, 0x14, 0x7b, 0xf6, 0xd8, 0xf2, 0xe8, 0x52, 0xeb, 0x1a, 0x6b, 0xa0, 0xab, 0x50, 0xeb, 0x1d,
|
||||
0xe8, 0x96, 0x85, 0x07, 0x5d, 0x4b, 0x1f, 0x62, 0xba, 0xa8, 0x8a, 0x56, 0xe5, 0x7d, 0x5b, 0xfa,
|
||||
0x10, 0x67, 0x5a, 0xdb, 0x15, 0xa8, 0x8e, 0x74, 0xc7, 0x33, 0x23, 0x9c, 0x09, 0x77, 0x4d, 0x62,
|
||||
0x0c, 0x99, 0xc1, 0xa4, 0xbf, 0x76, 0x75, 0xf7, 0xb0, 0xb3, 0xce, 0x57, 0x14, 0xe9, 0x53, 0xff,
|
||||
0x4c, 0x81, 0xe5, 0x47, 0xae, 0x6b, 0xf6, 0xad, 0xc4, 0xca, 0x96, 0xa1, 0x64, 0xd9, 0x06, 0xee,
|
||||
0xac, 0xd3, 0xa5, 0xe5, 0x35, 0xde, 0x42, 0x6f, 0x43, 0x65, 0x84, 0xb1, 0xd3, 0x75, 0xec, 0x81,
|
||||
0xbf, 0xb0, 0x32, 0xe9, 0xd0, 0xec, 0x01, 0x46, 0xdf, 0x87, 0x25, 0x37, 0x86, 0x88, 0xc9, 0x5c,
|
||||
0xf5, 0xfe, 0xb5, 0x3b, 0x09, 0x45, 0xba, 0x13, 0x9f, 0x54, 0x4b, 0x8e, 0x56, 0xbf, 0xcc, 0xc1,
|
||||
0x59, 0x01, 0xc7, 0x68, 0x25, 0xbf, 0xc9, 0xce, 0xbb, 0xb8, 0x2f, 0xc8, 0x63, 0x8d, 0x2c, 0x3b,
|
||||
0x2f, 0x58, 0x96, 0x0f, 0xb3, 0x2c, 0x8b, 0x1a, 0xc4, 0xf8, 0x51, 0x4c, 0xf2, 0xe3, 0x32, 0x54,
|
||||
0xf1, 0xcb, 0x91, 0xe9, 0xe0, 0x2e, 0x11, 0x1c, 0xba, 0xe5, 0x05, 0x0d, 0x58, 0xd7, 0xae, 0x39,
|
||||
0x0c, 0xeb, 0xc6, 0x42, 0x66, 0xdd, 0x50, 0xff, 0x5c, 0x81, 0xf3, 0x09, 0x2e, 0x71, 0x65, 0xd3,
|
||||
0xa0, 0x49, 0x57, 0x1e, 0xec, 0x0c, 0x51, 0x3b, 0xb2, 0xe1, 0xef, 0x4e, 0xda, 0xf0, 0x00, 0x5c,
|
||||
0x4b, 0x8c, 0x0f, 0x11, 0x99, 0xcb, 0x4e, 0xe4, 0x21, 0x9c, 0x7f, 0x82, 0x3d, 0x3e, 0x01, 0xf9,
|
||||
0x86, 0xdd, 0xd9, 0x0d, 0x59, 0x54, 0xab, 0x73, 0x71, 0xad, 0x56, 0xff, 0x3a, 0x27, 0x74, 0x91,
|
||||
0x4e, 0xd5, 0xb1, 0xf6, 0x6d, 0xf4, 0x0e, 0x54, 0x04, 0x08, 0x97, 0x8a, 0xa0, 0x03, 0x7d, 0x0b,
|
||||
0x8a, 0x84, 0x52, 0x26, 0x12, 0x8d, 0xfb, 0x57, 0xe5, 0x6b, 0x0a, 0xe1, 0xd4, 0x18, 0x3c, 0xea,
|
||||
0x40, 0xc3, 0xf5, 0x74, 0xc7, 0xeb, 0x8e, 0x6c, 0x97, 0xf2, 0x99, 0x0a, 0x4e, 0xf5, 0xbe, 0x1a,
|
||||
0xc5, 0x20, 0xbc, 0xc0, 0xa6, 0xdb, 0xdf, 0xe6, 0x90, 0x5a, 0x9d, 0x8e, 0xf4, 0x9b, 0xe8, 0x31,
|
||||
0xd4, 0xb0, 0x65, 0x04, 0x88, 0x0a, 0x99, 0x11, 0x55, 0xb1, 0x65, 0x08, 0x34, 0x01, 0x7f, 0x8a,
|
||||
0xd9, 0xf9, 0xf3, 0x7b, 0x0a, 0xb4, 0x92, 0x0c, 0x9a, 0xc7, 0x64, 0x3f, 0x64, 0x83, 0x30, 0x63,
|
||||
0xd0, 0x44, 0x0d, 0x17, 0x4c, 0xd2, 0xf8, 0x10, 0xf5, 0x8f, 0x15, 0x78, 0x2b, 0x20, 0x87, 0x7e,
|
||||
0x7a, 0x5d, 0xd2, 0x82, 0x6e, 0x41, 0xd3, 0xb4, 0x7a, 0x83, 0xb1, 0x81, 0x9f, 0x59, 0x9f, 0x61,
|
||||
0x7d, 0xe0, 0x1d, 0x9c, 0x50, 0x1e, 0x96, 0xb5, 0x44, 0xbf, 0xfa, 0xaf, 0x39, 0x58, 0x8e, 0xd3,
|
||||
0x35, 0xcf, 0x26, 0xfd, 0x3f, 0x28, 0x9a, 0xd6, 0xbe, 0xed, 0xef, 0xd1, 0xa5, 0x09, 0x4a, 0x49,
|
||||
0xe6, 0x62, 0xc0, 0xc8, 0x06, 0xe4, 0x9b, 0xb1, 0xde, 0x01, 0xee, 0x1d, 0x8e, 0x6c, 0x93, 0x1a,
|
||||
0x2c, 0x82, 0xe2, 0x97, 0x24, 0x28, 0xe4, 0x14, 0xdf, 0x59, 0x63, 0x38, 0xd6, 0x04, 0x8a, 0xc7,
|
||||
0x96, 0xe7, 0x9c, 0x68, 0x4b, 0xbd, 0x78, 0x7f, 0xfb, 0x00, 0x96, 0xe5, 0xc0, 0xa8, 0x09, 0xf9,
|
||||
0x43, 0x7c, 0x42, 0x97, 0x5c, 0xd1, 0xc8, 0x4f, 0xf4, 0x00, 0x8a, 0x47, 0xfa, 0x60, 0x8c, 0xb9,
|
||||
0x75, 0xc8, 0x22, 0xbe, 0x6c, 0xc0, 0xb7, 0x73, 0x0f, 0x14, 0x75, 0x08, 0x6f, 0x3f, 0xc1, 0x5e,
|
||||
0xc7, 0x72, 0xb1, 0xe3, 0xad, 0x9a, 0xd6, 0xc0, 0xee, 0x6f, 0xeb, 0xde, 0xc1, 0x1c, 0xb6, 0x22,
|
||||
0xa2, 0xf6, 0xb9, 0x98, 0xda, 0xab, 0x3f, 0x51, 0xe0, 0x1d, 0xf9, 0x7c, 0x9c, 0xab, 0x6d, 0x28,
|
||||
0xef, 0x9b, 0x78, 0x60, 0x10, 0xd1, 0x51, 0xa8, 0xe8, 0x88, 0x36, 0xb1, 0x19, 0x23, 0x02, 0xcc,
|
||||
0x99, 0x77, 0x35, 0x65, 0xa5, 0x3b, 0x9e, 0x63, 0x5a, 0xfd, 0xa7, 0xa6, 0xeb, 0x69, 0x0c, 0x3e,
|
||||
0x24, 0x2a, 0xf9, 0xec, 0x1a, 0xfa, 0xbb, 0x0a, 0x5c, 0x7a, 0x82, 0xbd, 0x35, 0xe1, 0x72, 0xc8,
|
||||
0x77, 0xd3, 0xf5, 0xcc, 0x9e, 0xfb, 0x6a, 0x43, 0xc2, 0x0c, 0xb1, 0x87, 0xfa, 0x07, 0x0a, 0x5c,
|
||||
0x4e, 0x25, 0x86, 0x6f, 0x1d, 0x37, 0xa9, 0xbe, 0xc3, 0x91, 0x9b, 0xd4, 0x5f, 0xc1, 0x27, 0x9f,
|
||||
0x13, 0xe6, 0x6f, 0xeb, 0xa6, 0xc3, 0x4c, 0xea, 0x8c, 0x0e, 0xe6, 0x67, 0x0a, 0x5c, 0x7c, 0x82,
|
||||
0xbd, 0x6d, 0xdf, 0xdd, 0xbe, 0xc1, 0xdd, 0x21, 0x30, 0x21, 0xb7, 0xef, 0xc7, 0x9d, 0x91, 0x3e,
|
||||
0xf5, 0xf7, 0x19, 0x3b, 0xa5, 0xf4, 0xbe, 0x91, 0x0d, 0xbc, 0x44, 0x35, 0x21, 0x64, 0x27, 0xb8,
|
||||
0xc6, 0xf3, 0xed, 0x53, 0xbf, 0x2a, 0x42, 0xed, 0x73, 0x6e, 0x1a, 0xa8, 0x43, 0x8d, 0xef, 0x84,
|
||||
0x22, 0x8f, 0x89, 0x42, 0xc1, 0x95, 0x2c, 0xde, 0x7a, 0x02, 0x75, 0x17, 0xe3, 0xc3, 0x59, 0xdc,
|
||||
0x67, 0x8d, 0x0c, 0x14, 0x6e, 0xef, 0x29, 0x2c, 0x8d, 0x2d, 0x1a, 0xb5, 0x63, 0x83, 0xaf, 0x82,
|
||||
0xed, 0xfc, 0x74, 0xb3, 0x9a, 0x1c, 0x88, 0x3e, 0xe3, 0x89, 0x41, 0x08, 0x57, 0x31, 0x13, 0xae,
|
||||
0xf8, 0x30, 0xd4, 0x81, 0xa6, 0xe1, 0xd8, 0xa3, 0x11, 0x36, 0xba, 0xae, 0x8f, 0xaa, 0x94, 0x0d,
|
||||
0x15, 0x1f, 0x27, 0x50, 0xdd, 0x83, 0xb3, 0x71, 0x4a, 0x3b, 0x06, 0x89, 0x15, 0x89, 0x78, 0xc9,
|
||||
0x3e, 0xa1, 0xdb, 0xb0, 0x94, 0x84, 0x2f, 0x53, 0xf8, 0xe4, 0x07, 0xf4, 0x01, 0xa0, 0x18, 0xa9,
|
||||
0x04, 0xbc, 0xc2, 0xc0, 0xa3, 0xc4, 0x70, 0x70, 0x9a, 0xb0, 0x46, 0xc1, 0x81, 0x81, 0xf3, 0x2f,
|
||||
0x21, 0xf0, 0x0e, 0xf1, 0xb3, 0x11, 0x70, 0xb7, 0x55, 0xcd, 0xb6, 0x11, 0x51, 0x64, 0xae, 0xfa,
|
||||
0x95, 0x02, 0xcb, 0xcf, 0x75, 0xaf, 0x77, 0xb0, 0x3e, 0xe4, 0x52, 0x3a, 0x87, 0x96, 0x7f, 0x02,
|
||||
0x95, 0x23, 0x2e, 0x91, 0xbe, 0x29, 0xbf, 0x2c, 0x21, 0x28, 0x2c, 0xfb, 0x5a, 0x30, 0x82, 0x24,
|
||||
0x49, 0xe7, 0x36, 0x42, 0xc9, 0xe2, 0x1b, 0xb0, 0x37, 0x53, 0xb2, 0x5c, 0xf5, 0x25, 0x00, 0x27,
|
||||
0x6e, 0xd3, 0xed, 0xcf, 0x40, 0xd7, 0x03, 0x58, 0xe0, 0xd8, 0xb8, 0x41, 0x99, 0xc6, 0x30, 0x1f,
|
||||
0x5c, 0xfd, 0x69, 0x09, 0xaa, 0xa1, 0x0f, 0xa8, 0x01, 0x39, 0x61, 0x29, 0x72, 0x92, 0xd5, 0xe5,
|
||||
0xa6, 0xe7, 0x55, 0xf9, 0x64, 0x5e, 0x75, 0x03, 0x1a, 0x26, 0xf5, 0xe0, 0x5d, 0xce, 0x15, 0x1a,
|
||||
0x3a, 0x57, 0xb4, 0x3a, 0xeb, 0xe5, 0x22, 0x82, 0x2e, 0x41, 0xd5, 0x1a, 0x0f, 0xbb, 0xf6, 0x7e,
|
||||
0xd7, 0xb1, 0x8f, 0x5d, 0x9e, 0xa0, 0x55, 0xac, 0xf1, 0xf0, 0x7b, 0xfb, 0x9a, 0x7d, 0xec, 0x06,
|
||||
0x39, 0x40, 0xe9, 0x94, 0x39, 0xc0, 0x25, 0xa8, 0x0e, 0xf5, 0x97, 0x04, 0x6b, 0xd7, 0x1a, 0x0f,
|
||||
0x69, 0xee, 0x96, 0xd7, 0x2a, 0x43, 0xfd, 0xa5, 0x66, 0x1f, 0x6f, 0x8d, 0x87, 0x68, 0x05, 0x9a,
|
||||
0x03, 0xdd, 0xf5, 0xba, 0xe1, 0xe4, 0xaf, 0x4c, 0x93, 0xbf, 0x06, 0xe9, 0x7f, 0x1c, 0x24, 0x80,
|
||||
0xc9, 0x6c, 0xa2, 0x32, 0x47, 0x36, 0x61, 0x0c, 0x07, 0x01, 0x22, 0xc8, 0x9e, 0x4d, 0x18, 0xc3,
|
||||
0x81, 0x40, 0xf3, 0x00, 0x16, 0xf6, 0x68, 0x5c, 0x34, 0x49, 0x59, 0x37, 0x48, 0x48, 0xc4, 0xc2,
|
||||
0x27, 0xcd, 0x07, 0x47, 0xdf, 0x81, 0x0a, 0x75, 0x47, 0x74, 0x6c, 0x2d, 0xd3, 0xd8, 0x60, 0x00,
|
||||
0x19, 0x6d, 0xe0, 0x81, 0xa7, 0xd3, 0xd1, 0xf5, 0x6c, 0xa3, 0xc5, 0x00, 0x62, 0x29, 0x7b, 0x0e,
|
||||
0xd6, 0x3d, 0x6c, 0xac, 0x9e, 0xac, 0xd9, 0xc3, 0x91, 0x4e, 0x85, 0xa9, 0xd5, 0xa0, 0x61, 0xbd,
|
||||
0xec, 0x13, 0x7a, 0x17, 0x1a, 0x3d, 0xd1, 0xda, 0x70, 0xec, 0x61, 0x6b, 0x91, 0xea, 0x51, 0xac,
|
||||
0x17, 0x5d, 0x04, 0xf0, 0x6d, 0xa4, 0xee, 0xb5, 0x9a, 0x94, 0x8b, 0x15, 0xde, 0xf3, 0x88, 0xd6,
|
||||
0x76, 0x4c, 0xb7, 0xcb, 0xaa, 0x28, 0xa6, 0xd5, 0x6f, 0x2d, 0xd1, 0x19, 0xab, 0x7e, 0xd9, 0xc5,
|
||||
0xb4, 0xfa, 0xe8, 0x3c, 0x2c, 0x98, 0x6e, 0x77, 0x5f, 0x3f, 0xc4, 0x2d, 0x44, 0xbf, 0x96, 0x4c,
|
||||
0x77, 0x43, 0x3f, 0xc4, 0xea, 0x8f, 0xe1, 0x5c, 0x20, 0x5d, 0x21, 0x4e, 0x26, 0x85, 0x42, 0x99,
|
||||
0x55, 0x28, 0x26, 0x47, 0xc3, 0xbf, 0x28, 0xc0, 0xf2, 0x8e, 0x7e, 0x84, 0x5f, 0x7f, 0xe0, 0x9d,
|
||||
0xc9, 0xac, 0x3d, 0x85, 0x25, 0x1a, 0x6b, 0xdf, 0x0f, 0xd1, 0x33, 0xc1, 0xa3, 0x87, 0x45, 0x21,
|
||||
0x39, 0x10, 0x7d, 0x97, 0x84, 0x22, 0xb8, 0x77, 0xb8, 0x4d, 0x92, 0x17, 0xdf, 0x9b, 0x5f, 0x94,
|
||||
0xe0, 0x59, 0x13, 0x50, 0x5a, 0x78, 0x04, 0xda, 0x86, 0xc5, 0x28, 0x1b, 0x7c, 0x3f, 0x7e, 0x73,
|
||||
0x62, 0x66, 0x1b, 0xec, 0xbe, 0xd6, 0x88, 0x30, 0xc3, 0x45, 0x2d, 0x58, 0xe0, 0x4e, 0x98, 0xda,
|
||||
0x8c, 0xb2, 0xe6, 0x37, 0xd1, 0x36, 0x9c, 0x65, 0x2b, 0xd8, 0xe1, 0x0a, 0xc1, 0x16, 0x5f, 0xce,
|
||||
0xb4, 0x78, 0xd9, 0xd0, 0xa8, 0x3e, 0x55, 0x4e, 0xab, 0x4f, 0x2d, 0x58, 0xe0, 0x32, 0x4e, 0xed,
|
||||
0x48, 0x59, 0xf3, 0x9b, 0x84, 0xcd, 0x81, 0xb4, 0x57, 0xe9, 0xb7, 0xa0, 0x83, 0x24, 0x2d, 0x10,
|
||||
0xec, 0xe7, 0x94, 0x1a, 0xcc, 0xa7, 0x50, 0x16, 0x12, 0x9e, 0x3d, 0x79, 0x14, 0x63, 0xe2, 0xf6,
|
||||
0x3d, 0x1f, 0xb3, 0xef, 0xea, 0x3f, 0x2a, 0x50, 0x5b, 0x27, 0x4b, 0x7a, 0x6a, 0xf7, 0xa9, 0x37,
|
||||
0xba, 0x01, 0x0d, 0x07, 0xf7, 0x6c, 0xc7, 0xe8, 0x62, 0xcb, 0x73, 0x4c, 0xcc, 0x52, 0xf7, 0x82,
|
||||
0x56, 0x67, 0xbd, 0x8f, 0x59, 0x27, 0x01, 0x23, 0x26, 0xdb, 0xf5, 0xf4, 0xe1, 0xa8, 0xbb, 0x4f,
|
||||
0x4c, 0x43, 0x8e, 0x81, 0x89, 0x5e, 0x6a, 0x19, 0xae, 0x42, 0x2d, 0x00, 0xf3, 0x6c, 0x3a, 0x7f,
|
||||
0x41, 0xab, 0x8a, 0xbe, 0x5d, 0x1b, 0x5d, 0x87, 0x06, 0xdd, 0xd3, 0xee, 0xc0, 0xee, 0x77, 0x49,
|
||||
0x2e, 0xc8, 0x1d, 0x55, 0xcd, 0xe0, 0x64, 0x11, 0x5e, 0x45, 0xa1, 0x5c, 0xf3, 0x47, 0x98, 0xbb,
|
||||
0x2a, 0x01, 0xb5, 0x63, 0xfe, 0x08, 0xab, 0xff, 0xa0, 0x40, 0x7d, 0x5d, 0xf7, 0xf4, 0x2d, 0xdb,
|
||||
0xc0, 0xbb, 0x33, 0x3a, 0xf6, 0x0c, 0xf5, 0xd0, 0x77, 0xa0, 0x22, 0x56, 0xc0, 0x97, 0x14, 0x74,
|
||||
0xa0, 0x0d, 0x68, 0xf8, 0xb1, 0x5c, 0x97, 0xe5, 0x2a, 0x85, 0xd4, 0x00, 0x2a, 0xe4, 0x39, 0x5d,
|
||||
0xad, 0xee, 0x0f, 0xa3, 0x4d, 0x75, 0x03, 0x6a, 0xe1, 0xcf, 0x64, 0xd6, 0x9d, 0xb8, 0xa0, 0x88,
|
||||
0x0e, 0x22, 0x8d, 0x5b, 0xe3, 0x21, 0xe1, 0x29, 0x37, 0x2c, 0x7e, 0x53, 0xfd, 0x6d, 0x05, 0xea,
|
||||
0xdc, 0xdd, 0xef, 0x88, 0x93, 0x03, 0xba, 0x34, 0x56, 0xa1, 0xa0, 0xbf, 0xd1, 0xb7, 0xa3, 0xc5,
|
||||
0xbe, 0xeb, 0x52, 0x23, 0x40, 0x91, 0xd0, 0x20, 0x33, 0xe2, 0xeb, 0xb3, 0x64, 0xc7, 0x5f, 0x12,
|
||||
0x41, 0xe3, 0xac, 0xa1, 0x82, 0xd6, 0x82, 0x05, 0xdd, 0x30, 0x1c, 0xec, 0xba, 0x9c, 0x0e, 0xbf,
|
||||
0x49, 0xbe, 0x1c, 0x61, 0xc7, 0xf5, 0x45, 0x3e, 0xaf, 0xf9, 0x4d, 0xf4, 0x1d, 0x28, 0x8b, 0xa8,
|
||||
0x94, 0x95, 0x76, 0xae, 0xa4, 0xd3, 0xc9, 0x73, 0x39, 0x31, 0x42, 0xfd, 0xdb, 0x1c, 0x34, 0xf8,
|
||||
0x86, 0xad, 0x72, 0x7f, 0x3c, 0x59, 0xf9, 0x56, 0xa1, 0xb6, 0x1f, 0xe8, 0xfe, 0xa4, 0x82, 0x54,
|
||||
0xd8, 0x44, 0x44, 0xc6, 0x4c, 0x53, 0xc0, 0x68, 0x44, 0x50, 0x98, 0x2b, 0x22, 0x28, 0x9e, 0xd6,
|
||||
0x82, 0x25, 0x63, 0xc4, 0x92, 0x24, 0x46, 0x54, 0x7f, 0x0d, 0xaa, 0x21, 0x04, 0xd4, 0x42, 0xb3,
|
||||
0x72, 0x0f, 0xdf, 0x31, 0xbf, 0x89, 0x3e, 0x0a, 0xe2, 0x22, 0xb6, 0x55, 0x17, 0x24, 0xb4, 0xc4,
|
||||
0x42, 0x22, 0xf5, 0xef, 0x15, 0x28, 0x71, 0xcc, 0x97, 0xa1, 0xca, 0x8d, 0x0e, 0x8d, 0x19, 0x19,
|
||||
0x76, 0xe0, 0x5d, 0x24, 0x68, 0x7c, 0x75, 0x56, 0xe7, 0x02, 0x94, 0x63, 0xf6, 0x66, 0x81, 0xbb,
|
||||
0x05, 0xff, 0x53, 0xc8, 0xc8, 0x90, 0x4f, 0xc4, 0xbe, 0xa0, 0x73, 0x50, 0x1c, 0xd8, 0x7d, 0x71,
|
||||
0x32, 0xc4, 0x1a, 0xea, 0xd7, 0x0a, 0x2d, 0xe4, 0x6b, 0xb8, 0x67, 0x1f, 0x61, 0xe7, 0x64, 0xfe,
|
||||
0x0a, 0xe8, 0xc3, 0x90, 0x98, 0x67, 0x4c, 0xbe, 0xc4, 0x00, 0xf4, 0x30, 0x60, 0x42, 0x5e, 0x56,
|
||||
0x23, 0x09, 0xdb, 0x1d, 0x2e, 0xa4, 0x01, 0x33, 0xfe, 0x50, 0xa1, 0xb5, 0xdc, 0xe8, 0x52, 0x66,
|
||||
0x8d, 0x76, 0x5e, 0x49, 0x22, 0xa3, 0xfe, 0x42, 0x81, 0x76, 0x50, 0x84, 0x71, 0x57, 0x4f, 0xe6,
|
||||
0x3d, 0x29, 0x79, 0x35, 0xf9, 0xd5, 0xff, 0x17, 0xa5, 0x7c, 0xa2, 0xb4, 0x99, 0x32, 0x23, 0xbf,
|
||||
0x90, 0x6f, 0xd1, 0x7a, 0x6e, 0x72, 0x41, 0xf3, 0x88, 0x4c, 0x1b, 0xca, 0xa2, 0x80, 0xc0, 0xca,
|
||||
0xf9, 0xa2, 0x4d, 0x34, 0xec, 0xc2, 0x13, 0xec, 0x6d, 0x44, 0x8b, 0x30, 0x6f, 0x7a, 0x03, 0xc3,
|
||||
0x47, 0x0c, 0x07, 0xfc, 0x88, 0xa1, 0x10, 0x3b, 0x62, 0xe0, 0xfd, 0xea, 0x90, 0x8a, 0x40, 0x62,
|
||||
0x01, 0xaf, 0x6b, 0xc3, 0x7e, 0x47, 0x81, 0x16, 0x9f, 0x85, 0xce, 0x49, 0x52, 0xa2, 0x01, 0xf6,
|
||||
0xb0, 0xf1, 0x4d, 0x97, 0x0a, 0xfe, 0x5b, 0x81, 0x66, 0xd8, 0xeb, 0x52, 0xc7, 0xf9, 0x31, 0x14,
|
||||
0x69, 0xa5, 0x85, 0x53, 0x30, 0xd5, 0x34, 0x30, 0x68, 0x62, 0xb6, 0x69, 0xa8, 0xbd, 0x2b, 0x02,
|
||||
0x04, 0xde, 0x0c, 0x5c, 0x7f, 0xfe, 0xf4, 0xae, 0x9f, 0x87, 0x42, 0xf6, 0x98, 0xe0, 0x65, 0x27,
|
||||
0xc0, 0x41, 0x07, 0xfa, 0x04, 0x4a, 0xec, 0x32, 0x07, 0x3f, 0x76, 0xbb, 0x11, 0x45, 0xcd, 0x2f,
|
||||
0x7a, 0x84, 0x2a, 0xe6, 0xb4, 0x43, 0xe3, 0x83, 0xd4, 0x5f, 0x86, 0xe5, 0x20, 0x1b, 0x65, 0xd3,
|
||||
0xce, 0x2a, 0xb4, 0xea, 0xbf, 0x28, 0x70, 0x76, 0xe7, 0xc4, 0xea, 0xc5, 0xc5, 0x7f, 0x19, 0x4a,
|
||||
0xa3, 0x81, 0x1e, 0xd4, 0x6a, 0x79, 0x8b, 0x86, 0x81, 0x6c, 0x6e, 0x6c, 0x10, 0x1f, 0xc2, 0xf6,
|
||||
0xac, 0x2a, 0xfa, 0x76, 0xed, 0xa9, 0xae, 0xfd, 0x86, 0x48, 0x9f, 0xb1, 0xc1, 0xbc, 0x15, 0x2b,
|
||||
0x43, 0xd5, 0x45, 0x2f, 0xf5, 0x56, 0x9f, 0x00, 0x50, 0x87, 0xde, 0x3d, 0x8d, 0x13, 0xa7, 0x23,
|
||||
0x9e, 0x12, 0x93, 0xfd, 0xf3, 0x1c, 0xb4, 0x42, 0xbb, 0xf4, 0x4d, 0xc7, 0x37, 0x29, 0x59, 0x59,
|
||||
0xfe, 0x15, 0x65, 0x65, 0x85, 0xf9, 0x63, 0x9a, 0xa2, 0x2c, 0xa6, 0xf9, 0xcd, 0x3c, 0x34, 0x82,
|
||||
0x5d, 0xdb, 0x1e, 0xe8, 0x56, 0xaa, 0x24, 0xec, 0x88, 0x78, 0x3e, 0xba, 0x4f, 0xef, 0xcb, 0xf4,
|
||||
0x24, 0x85, 0x11, 0x5a, 0x0c, 0x05, 0xba, 0x48, 0x99, 0xee, 0x78, 0xac, 0xf0, 0xc5, 0x73, 0x08,
|
||||
0xa6, 0x90, 0xe6, 0x10, 0xa3, 0xdb, 0x80, 0xb8, 0x16, 0x75, 0x4d, 0xab, 0xeb, 0xe2, 0x9e, 0x6d,
|
||||
0x19, 0x4c, 0xbf, 0x8a, 0x5a, 0x93, 0x7f, 0xe9, 0x58, 0x3b, 0xac, 0x1f, 0x7d, 0x0c, 0x05, 0xef,
|
||||
0x64, 0xc4, 0xa2, 0x95, 0x86, 0xd4, 0xdf, 0x07, 0x74, 0xed, 0x9e, 0x8c, 0xb0, 0x46, 0xc1, 0xfd,
|
||||
0xeb, 0x3b, 0x9e, 0xa3, 0x1f, 0xf1, 0xd0, 0xaf, 0xa0, 0x85, 0x7a, 0x88, 0xc5, 0xf0, 0xf7, 0x70,
|
||||
0x81, 0x85, 0x48, 0xbc, 0xc9, 0x24, 0xdb, 0x57, 0xda, 0xae, 0xe7, 0x0d, 0x68, 0xe9, 0x8e, 0x4a,
|
||||
0xb6, 0xdf, 0xbb, 0xeb, 0x0d, 0xc8, 0x22, 0x3d, 0xdb, 0xd3, 0x07, 0x4c, 0x3f, 0x2a, 0xdc, 0x3a,
|
||||
0x90, 0x1e, 0x9a, 0x98, 0xfc, 0x73, 0x0e, 0x9a, 0x01, 0x61, 0x1a, 0x76, 0xc7, 0x83, 0x74, 0x7d,
|
||||
0x9c, 0x5c, 0x3a, 0x99, 0xa6, 0x8a, 0xdf, 0x85, 0x2a, 0x97, 0x8a, 0x53, 0x48, 0x15, 0xb0, 0x21,
|
||||
0x4f, 0x27, 0x88, 0x79, 0xf1, 0x15, 0x89, 0x79, 0x69, 0x86, 0xe2, 0x83, 0x9c, 0x37, 0xea, 0x4f,
|
||||
0x14, 0x78, 0x2b, 0x61, 0x35, 0x27, 0x6e, 0xed, 0xe4, 0xd4, 0x8f, 0x5b, 0xd3, 0x38, 0x4a, 0x6e,
|
||||
0xff, 0x1f, 0x42, 0xc9, 0xa1, 0xd8, 0xf9, 0x19, 0xd5, 0xb5, 0x89, 0xc2, 0xc7, 0x08, 0xd1, 0xf8,
|
||||
0x10, 0xf5, 0x8f, 0x14, 0x38, 0x9f, 0x24, 0x75, 0x0e, 0xa7, 0xbe, 0x0a, 0x0b, 0x0c, 0xb5, 0xaf,
|
||||
0xa3, 0x2b, 0x93, 0x75, 0x34, 0xd8, 0x1c, 0xcd, 0x1f, 0xa8, 0xee, 0xc0, 0xb2, 0xef, 0xfb, 0x83,
|
||||
0xad, 0xdf, 0xc4, 0x9e, 0x3e, 0x21, 0xf1, 0xb9, 0x0c, 0x55, 0x16, 0x41, 0xb3, 0x84, 0x82, 0x95,
|
||||
0x0c, 0x60, 0x4f, 0x54, 0xda, 0xd4, 0xff, 0x50, 0xe0, 0x1c, 0x75, 0x9e, 0xf1, 0xa3, 0x99, 0x2c,
|
||||
0x07, 0x86, 0xaa, 0xa8, 0x48, 0x6c, 0xe9, 0x43, 0x7e, 0x77, 0xa4, 0xa2, 0x45, 0xfa, 0x50, 0x27,
|
||||
0x59, 0x88, 0x93, 0x26, 0xc8, 0xc1, 0x09, 0x29, 0x49, 0xc6, 0xe9, 0x01, 0x69, 0xbc, 0x02, 0x17,
|
||||
0x38, 0xed, 0xc2, 0x2c, 0x4e, 0xfb, 0x29, 0xbc, 0x15, 0x5b, 0xe9, 0x1c, 0x1c, 0x55, 0xff, 0x42,
|
||||
0x21, 0xec, 0x88, 0xdc, 0xc1, 0x99, 0x3d, 0x70, 0xbd, 0x28, 0xce, 0x84, 0xba, 0xa6, 0x11, 0x37,
|
||||
0x22, 0x06, 0xfa, 0x14, 0x2a, 0x16, 0x3e, 0xee, 0x86, 0x63, 0xa1, 0x0c, 0x51, 0x7d, 0xd9, 0xc2,
|
||||
0xc7, 0xf4, 0x97, 0xba, 0x05, 0xe7, 0x13, 0xa4, 0xce, 0xb3, 0xf6, 0xbf, 0x53, 0xe0, 0xc2, 0xba,
|
||||
0x63, 0x8f, 0x3e, 0x37, 0x1d, 0x6f, 0xac, 0x0f, 0xa2, 0x67, 0xcf, 0xaf, 0xa7, 0xb2, 0xf5, 0x59,
|
||||
0x28, 0x2a, 0x66, 0xf2, 0x73, 0x5b, 0xa2, 0x41, 0x49, 0xa2, 0xf8, 0xa2, 0x43, 0x31, 0xf4, 0xbf,
|
||||
0xe7, 0x65, 0xc4, 0x73, 0xb8, 0x29, 0x71, 0x49, 0x96, 0x04, 0x43, 0x5a, 0x08, 0xcf, 0xcf, 0x5a,
|
||||
0x08, 0x4f, 0x31, 0xef, 0x85, 0x57, 0x64, 0xde, 0x4f, 0x5d, 0x99, 0xf9, 0x0c, 0xa2, 0x87, 0x14,
|
||||
0xd4, 0x3b, 0xcf, 0x74, 0xba, 0xb1, 0x0a, 0x10, 0x14, 0xec, 0xf9, 0x15, 0xca, 0x2c, 0x68, 0x42,
|
||||
0xa3, 0x08, 0xb7, 0x84, 0x2b, 0xe5, 0x9e, 0x3e, 0x54, 0x42, 0xfe, 0x3e, 0xb4, 0x65, 0x52, 0x3a,
|
||||
0x8f, 0xe4, 0xff, 0x3c, 0x07, 0xd0, 0x11, 0xb7, 0x6e, 0x67, 0xf3, 0x05, 0xd7, 0x20, 0x14, 0x8d,
|
||||
0x04, 0xfa, 0x1e, 0x96, 0x22, 0x83, 0xa8, 0x84, 0xc8, 0x49, 0x09, 0x4c, 0x22, 0x4f, 0x35, 0x28,
|
||||
0x9e, 0x90, 0xd6, 0x30, 0xa1, 0x88, 0x9b, 0xdf, 0xb7, 0xa1, 0xe2, 0xd8, 0xc7, 0x5d, 0xa2, 0x66,
|
||||
0x86, 0x7f, 0xad, 0xd8, 0xb1, 0x8f, 0x89, 0xf2, 0x19, 0xe8, 0x3c, 0x2c, 0x78, 0xba, 0x7b, 0x48,
|
||||
0xf0, 0xb3, 0xba, 0x51, 0x89, 0x34, 0x3b, 0x06, 0x3a, 0x07, 0xc5, 0x7d, 0x73, 0x80, 0xd9, 0x6d,
|
||||
0x85, 0x8a, 0xc6, 0x1a, 0xe8, 0x5b, 0xfe, 0xfd, 0xb7, 0x72, 0xe6, 0x2b, 0x2e, 0x14, 0x5e, 0xfd,
|
||||
0x5a, 0x81, 0xc5, 0x60, 0xd7, 0xa8, 0x01, 0x22, 0x36, 0x8d, 0xda, 0xb3, 0x35, 0xdb, 0x60, 0xa6,
|
||||
0xa2, 0x91, 0xe2, 0x11, 0xd8, 0x40, 0x66, 0xb5, 0x82, 0x21, 0x93, 0xd2, 0x64, 0xb2, 0x2e, 0xb2,
|
||||
0x68, 0xd3, 0xf0, 0x2f, 0xc9, 0x97, 0x1c, 0xfb, 0xb8, 0x63, 0x88, 0xdd, 0x60, 0x77, 0x86, 0x59,
|
||||
0x52, 0x48, 0x76, 0x63, 0x8d, 0x5e, 0x1b, 0xbe, 0x06, 0x75, 0xec, 0x38, 0xb6, 0xd3, 0x1d, 0x62,
|
||||
0xd7, 0xd5, 0xfb, 0x98, 0xc7, 0xe7, 0x35, 0xda, 0xb9, 0xc9, 0xfa, 0xd4, 0x3f, 0x29, 0x40, 0x23,
|
||||
0x58, 0x8a, 0x7f, 0x4c, 0x6e, 0x1a, 0xfe, 0x31, 0xb9, 0x49, 0x58, 0x07, 0x0e, 0x33, 0x85, 0x82,
|
||||
0xb9, 0xab, 0xb9, 0x96, 0xa2, 0x55, 0x78, 0x6f, 0xc7, 0x20, 0x6e, 0x99, 0x28, 0x99, 0x65, 0x1b,
|
||||
0x38, 0x60, 0x2e, 0xf8, 0x5d, 0x9c, 0xb7, 0x11, 0x19, 0x29, 0x64, 0x90, 0x91, 0x62, 0x06, 0x19,
|
||||
0x29, 0x49, 0x64, 0x64, 0x19, 0x4a, 0x7b, 0xe3, 0xde, 0x21, 0xf6, 0x78, 0xc4, 0xc6, 0x5b, 0x51,
|
||||
0xd9, 0x29, 0xc7, 0x64, 0x47, 0x88, 0x48, 0x25, 0x2c, 0x22, 0x6f, 0x43, 0x85, 0x9d, 0xd7, 0x76,
|
||||
0x3d, 0x97, 0x1e, 0x3e, 0xe5, 0xb5, 0x32, 0xeb, 0xd8, 0x75, 0xd1, 0x03, 0x3f, 0x9c, 0xab, 0xca,
|
||||
0x94, 0x9d, 0x5a, 0x9d, 0x98, 0x94, 0xf8, 0xc1, 0xdc, 0x4d, 0x58, 0x0c, 0x6d, 0x07, 0xf5, 0x11,
|
||||
0x35, 0x4a, 0x6a, 0x28, 0xda, 0xa7, 0x6e, 0xe2, 0x06, 0x34, 0x82, 0x2d, 0xa1, 0x70, 0x75, 0x96,
|
||||
0x64, 0x89, 0x5e, 0x0a, 0x26, 0x24, 0xb9, 0x71, 0x3a, 0x49, 0x46, 0x17, 0xa0, 0xcc, 0xb3, 0x23,
|
||||
0xb7, 0xb5, 0x18, 0x29, 0x56, 0xa8, 0x3f, 0x04, 0x14, 0x50, 0x3f, 0x5f, 0xb4, 0x18, 0x13, 0x8f,
|
||||
0x5c, 0x5c, 0x3c, 0xd4, 0x9f, 0x2a, 0xb0, 0x14, 0x9e, 0x6c, 0x56, 0xc7, 0xfb, 0x29, 0x54, 0xd9,
|
||||
0xf1, 0x5f, 0x97, 0x28, 0x3e, 0x2f, 0x02, 0x5d, 0x9c, 0xc8, 0x17, 0x0d, 0x82, 0x57, 0x07, 0x44,
|
||||
0xbc, 0x8e, 0x6d, 0xe7, 0xd0, 0xb4, 0xfa, 0x5d, 0x42, 0x99, 0xaf, 0x6e, 0x35, 0xde, 0xb9, 0x45,
|
||||
0xfa, 0xd4, 0xaf, 0x14, 0xb8, 0xf4, 0x6c, 0x64, 0xe8, 0x1e, 0x0e, 0x45, 0x20, 0xf3, 0xde, 0xf6,
|
||||
0xfb, 0xd8, 0xbf, 0x6e, 0x97, 0xcb, 0x76, 0x84, 0xc5, 0xa0, 0xd5, 0xbf, 0x12, 0xb4, 0x24, 0xae,
|
||||
0xc8, 0xce, 0x4e, 0x4b, 0x1b, 0xca, 0x47, 0x1c, 0x9d, 0xff, 0x8a, 0xc2, 0x6f, 0x47, 0x8e, 0x49,
|
||||
0xf3, 0xa7, 0x3f, 0x26, 0x55, 0x37, 0xe1, 0x82, 0x86, 0x5d, 0x6c, 0x19, 0x91, 0xd5, 0xcc, 0x5c,
|
||||
0x6c, 0x1a, 0x41, 0x5b, 0x86, 0x6e, 0x1e, 0x61, 0x65, 0xb1, 0x6b, 0xd7, 0x21, 0x68, 0x3d, 0x6e,
|
||||
0x8a, 0x49, 0xc8, 0x44, 0xe7, 0xf1, 0xd4, 0xbf, 0xcc, 0xc1, 0xf9, 0x47, 0x86, 0xc1, 0xad, 0x38,
|
||||
0x8f, 0xc6, 0x5e, 0x57, 0xa0, 0x1c, 0x0f, 0x24, 0xf3, 0xc9, 0x40, 0xf2, 0x55, 0x59, 0x56, 0xee,
|
||||
0x63, 0xac, 0xf1, 0xd0, 0xf7, 0x9d, 0x0e, 0xbb, 0x3f, 0xf4, 0x90, 0x9f, 0x9b, 0x91, 0x84, 0x9e,
|
||||
0xfa, 0xcf, 0xe9, 0xf1, 0x55, 0xd9, 0x2f, 0x9a, 0xa9, 0x23, 0x68, 0x25, 0x37, 0x6b, 0x4e, 0x53,
|
||||
0xe2, 0xef, 0xc8, 0xc8, 0x66, 0x05, 0xd6, 0x1a, 0x09, 0xa1, 0x68, 0xd7, 0xb6, 0xed, 0xaa, 0xff,
|
||||
0x99, 0x83, 0xd6, 0x8e, 0x7e, 0x84, 0xff, 0xef, 0x30, 0xe8, 0x0b, 0x38, 0xe7, 0xea, 0x47, 0xb8,
|
||||
0x1b, 0x4a, 0x8c, 0xbb, 0x0e, 0x7e, 0xc1, 0x43, 0xd0, 0xf7, 0x64, 0x96, 0x44, 0x7a, 0xcd, 0x46,
|
||||
0x5b, 0x72, 0x23, 0xfd, 0x1a, 0x7e, 0x81, 0xde, 0x85, 0xc5, 0xf0, 0x3d, 0x2e, 0x42, 0x5a, 0x99,
|
||||
0x6e, 0x79, 0x3d, 0x74, 0x4d, 0xab, 0x63, 0xa8, 0x2f, 0xe0, 0x9d, 0x67, 0x96, 0x8b, 0xbd, 0x4e,
|
||||
0x70, 0xd5, 0x68, 0xce, 0x14, 0xf2, 0x32, 0x54, 0x83, 0x8d, 0x4f, 0xbc, 0x9c, 0x30, 0x5c, 0xd5,
|
||||
0x86, 0xf6, 0xa6, 0xee, 0x1c, 0xfa, 0x65, 0xe6, 0x75, 0x76, 0x25, 0xe4, 0x35, 0x4e, 0xb8, 0x2f,
|
||||
0x6e, 0x48, 0x69, 0x78, 0x1f, 0x3b, 0xd8, 0xea, 0xe1, 0xa7, 0x76, 0xef, 0x90, 0x84, 0x1b, 0x1e,
|
||||
0x7b, 0xc6, 0xa6, 0x84, 0x82, 0xce, 0xf5, 0xd0, 0x2b, 0xb5, 0x5c, 0xe4, 0x95, 0xda, 0x94, 0x57,
|
||||
0x8f, 0xea, 0xcf, 0x72, 0xb0, 0xfc, 0x68, 0xe0, 0x61, 0x27, 0xc8, 0xfc, 0x4f, 0x53, 0xc4, 0x08,
|
||||
0xaa, 0x0a, 0xb9, 0x19, 0xaa, 0x0a, 0x89, 0xeb, 0xe3, 0xf9, 0xe4, 0xf5, 0x71, 0x59, 0x0d, 0xa4,
|
||||
0x30, 0x63, 0x0d, 0xe4, 0x11, 0xc0, 0xc8, 0xb1, 0x47, 0xd8, 0xf1, 0x4c, 0xec, 0xa7, 0x6f, 0x19,
|
||||
0xc2, 0x97, 0xd0, 0x20, 0xf5, 0x0b, 0x68, 0x3e, 0xe9, 0xad, 0xd9, 0xd6, 0xbe, 0xe9, 0x0c, 0xfd,
|
||||
0x8d, 0x4a, 0x28, 0x9d, 0x92, 0x41, 0xe9, 0x72, 0x09, 0xa5, 0x53, 0x4d, 0x58, 0x0a, 0xe1, 0x9e,
|
||||
0xd3, 0x70, 0xf5, 0x7b, 0xdd, 0x7d, 0xd3, 0x32, 0xe9, 0x95, 0xab, 0x1c, 0x0d, 0x3f, 0xa1, 0xdf,
|
||||
0xdb, 0xe0, 0x3d, 0xb7, 0x3e, 0x15, 0x97, 0x55, 0x77, 0x4f, 0x46, 0x18, 0x2d, 0x40, 0x7e, 0x0b,
|
||||
0x1f, 0x37, 0xcf, 0x20, 0x80, 0xd2, 0x96, 0xed, 0x0c, 0xf5, 0x41, 0x53, 0x41, 0x55, 0x58, 0xe0,
|
||||
0x67, 0x73, 0xcd, 0x1c, 0xaa, 0x43, 0x65, 0xcd, 0x3f, 0xdf, 0x68, 0xe6, 0x6f, 0xfd, 0xa9, 0x02,
|
||||
0x4b, 0x89, 0xd3, 0x23, 0xd4, 0x00, 0x78, 0x66, 0xf5, 0xf8, 0xb1, 0x5a, 0xf3, 0x0c, 0xaa, 0x41,
|
||||
0xd9, 0x3f, 0x64, 0x63, 0xf8, 0x76, 0x6d, 0x0a, 0xdd, 0xcc, 0xa1, 0x26, 0xd4, 0xd8, 0xc0, 0x71,
|
||||
0xaf, 0x87, 0x5d, 0xb7, 0x99, 0x17, 0x3d, 0x1b, 0xba, 0x39, 0x18, 0x3b, 0xb8, 0x59, 0x20, 0x73,
|
||||
0xee, 0xda, 0x1a, 0x1e, 0x60, 0xdd, 0xc5, 0xcd, 0x22, 0x42, 0xd0, 0xe0, 0x0d, 0x7f, 0x50, 0x29,
|
||||
0xd4, 0xe7, 0x0f, 0x5b, 0xb8, 0xf5, 0x3c, 0x7c, 0x06, 0x40, 0x97, 0x77, 0x1e, 0xce, 0x3e, 0xb3,
|
||||
0x0c, 0xbc, 0x6f, 0x5a, 0xd8, 0x08, 0x3e, 0x35, 0xcf, 0xa0, 0xb3, 0xb0, 0xb8, 0x89, 0x9d, 0x3e,
|
||||
0x0e, 0x75, 0xe6, 0xd0, 0x12, 0xd4, 0x37, 0xcd, 0x97, 0xa1, 0xae, 0xbc, 0x5a, 0x28, 0x2b, 0x4d,
|
||||
0xe5, 0xfe, 0x7f, 0x5d, 0x85, 0x0a, 0x91, 0xad, 0x35, 0xdb, 0x76, 0x0c, 0x34, 0x00, 0x44, 0xdf,
|
||||
0x85, 0x0c, 0x47, 0xb6, 0x25, 0x1e, 0x92, 0xa1, 0x3b, 0x51, 0xf6, 0xf0, 0x46, 0x12, 0x90, 0xcb,
|
||||
0x4e, 0xfb, 0xba, 0x14, 0x3e, 0x06, 0xac, 0x9e, 0x41, 0x43, 0x3a, 0xdb, 0xae, 0x39, 0xc4, 0xbb,
|
||||
0x66, 0xef, 0xd0, 0x0f, 0x90, 0xee, 0xa5, 0x84, 0x43, 0x49, 0x50, 0x7f, 0xbe, 0x6b, 0xd2, 0xf9,
|
||||
0xd8, 0xc3, 0x1d, 0x5f, 0xe6, 0xd4, 0x33, 0xe8, 0x05, 0x9c, 0x7b, 0x82, 0x43, 0xb1, 0xa6, 0x3f,
|
||||
0xe1, 0xfd, 0xf4, 0x09, 0x13, 0xc0, 0xa7, 0x9c, 0xf2, 0x29, 0x14, 0xa9, 0xb8, 0x21, 0x59, 0x38,
|
||||
0x1a, 0x7e, 0x0f, 0xde, 0xbe, 0x92, 0x0e, 0x20, 0xb0, 0xfd, 0x10, 0x16, 0x63, 0x2f, 0x45, 0x91,
|
||||
0xcc, 0x39, 0xc9, 0xdf, 0xfc, 0xb6, 0x6f, 0x65, 0x01, 0x15, 0x73, 0xf5, 0xa1, 0x11, 0x7d, 0x4f,
|
||||
0x82, 0x56, 0x32, 0x3c, 0x4d, 0x63, 0x33, 0xbd, 0x97, 0xf9, 0x11, 0x1b, 0x15, 0x82, 0x66, 0xfc,
|
||||
0xe5, 0x22, 0xba, 0x35, 0x11, 0x41, 0x54, 0xd8, 0xde, 0xcf, 0x04, 0x2b, 0xa6, 0x3b, 0xa1, 0x42,
|
||||
0x90, 0x78, 0x31, 0x16, 0x97, 0x71, 0x1f, 0x4d, 0xda, 0x53, 0xb6, 0xf6, 0xdd, 0xcc, 0xf0, 0x62,
|
||||
0xea, 0xdf, 0x62, 0x97, 0x6f, 0x64, 0xaf, 0xae, 0xd0, 0x87, 0x72, 0x74, 0x13, 0x9e, 0x8b, 0xb5,
|
||||
0xef, 0x9f, 0x66, 0x88, 0x20, 0xe2, 0xc7, 0xf4, 0xd6, 0x8c, 0xe4, 0xdd, 0x52, 0x5c, 0xef, 0x7c,
|
||||
0x7c, 0xe9, 0x4f, 0xb2, 0xda, 0x1f, 0x9e, 0x62, 0x84, 0x20, 0xc0, 0x8e, 0x3f, 0x0d, 0xf5, 0xd5,
|
||||
0xf0, 0xee, 0x54, 0xa9, 0x99, 0x4d, 0x07, 0x7f, 0x00, 0x8b, 0xb1, 0x70, 0x0d, 0x65, 0x0f, 0xe9,
|
||||
0xda, 0x93, 0x5c, 0x13, 0x53, 0xc9, 0xd8, 0x25, 0x24, 0x94, 0x22, 0xfd, 0x92, 0x8b, 0x4a, 0xed,
|
||||
0x5b, 0x59, 0x40, 0xc5, 0x42, 0x5c, 0x6a, 0x2e, 0x63, 0x57, 0x4b, 0xd0, 0x6d, 0x39, 0x0e, 0xf9,
|
||||
0x15, 0x9a, 0xf6, 0x07, 0x19, 0xa1, 0xc5, 0xa4, 0x47, 0x70, 0x56, 0x72, 0x03, 0x08, 0x7d, 0x30,
|
||||
0x91, 0x59, 0xf1, 0xab, 0x4f, 0xed, 0x3b, 0x59, 0xc1, 0xc5, 0xbc, 0xbf, 0x0e, 0x68, 0xe7, 0xc0,
|
||||
0x3e, 0xa6, 0x91, 0x43, 0x7f, 0xec, 0xe8, 0x2c, 0xd8, 0x49, 0xf3, 0x0d, 0x49, 0xd0, 0x14, 0x19,
|
||||
0x9d, 0x38, 0x42, 0x4c, 0xde, 0x05, 0x78, 0x82, 0xbd, 0x4d, 0xec, 0x39, 0x44, 0x31, 0xde, 0x4d,
|
||||
0x73, 0x7f, 0x1c, 0xc0, 0x9f, 0xea, 0xe6, 0x54, 0xb8, 0x90, 0x2b, 0x6a, 0x6e, 0xea, 0xd6, 0x58,
|
||||
0x1f, 0x84, 0x9e, 0x30, 0xdc, 0x96, 0x0e, 0x8f, 0x83, 0xa5, 0x30, 0x32, 0x15, 0x5a, 0x4c, 0x79,
|
||||
0x2c, 0x5c, 0x7b, 0xe8, 0x44, 0x71, 0xb2, 0x6b, 0x4f, 0xde, 0x66, 0x89, 0x9b, 0xbd, 0x09, 0xf0,
|
||||
0x62, 0xe2, 0x2f, 0x15, 0x7a, 0x89, 0x2c, 0x06, 0xf0, 0xdc, 0xf4, 0x0e, 0xb6, 0x07, 0xba, 0xe5,
|
||||
0x66, 0x21, 0x81, 0x02, 0x9e, 0x82, 0x04, 0x0e, 0x2f, 0x48, 0x30, 0xa0, 0x1e, 0x39, 0xe8, 0x43,
|
||||
0xb2, 0x3b, 0xff, 0xb2, 0x43, 0xcf, 0xf6, 0xca, 0x74, 0x40, 0x31, 0xcb, 0x01, 0xd4, 0x7d, 0x55,
|
||||
0x62, 0x9b, 0xfb, 0x5e, 0x1a, 0xa5, 0x01, 0x4c, 0x8a, 0x25, 0x90, 0x83, 0x86, 0x2d, 0x41, 0xf2,
|
||||
0x1c, 0x03, 0x65, 0x3b, 0xff, 0x9a, 0x64, 0x09, 0xd2, 0x0f, 0x47, 0x98, 0xa9, 0x8b, 0x9d, 0x19,
|
||||
0xca, 0xed, 0xa8, 0xf4, 0x08, 0x54, 0x6a, 0xea, 0x52, 0x8e, 0x20, 0xd5, 0x33, 0xe8, 0x39, 0x94,
|
||||
0xf8, 0x1f, 0x9d, 0x5c, 0x9f, 0x5c, 0x7b, 0xe4, 0xd8, 0x6f, 0x4c, 0x81, 0x12, 0x88, 0x0f, 0xe1,
|
||||
0x7c, 0x4a, 0xe5, 0x51, 0xea, 0x82, 0x27, 0x57, 0x29, 0xa7, 0x39, 0x07, 0x31, 0x59, 0xa2, 0xb4,
|
||||
0x38, 0x61, 0xb2, 0xb4, 0x32, 0xe4, 0xb4, 0xc9, 0xba, 0xb0, 0x94, 0xa8, 0xda, 0xa0, 0xf7, 0x53,
|
||||
0x1c, 0x9d, 0xac, 0xb6, 0x33, 0x6d, 0x82, 0x3e, 0xbc, 0x25, 0xad, 0x50, 0x48, 0x1d, 0xf7, 0xa4,
|
||||
0x5a, 0xc6, 0xb4, 0x89, 0x7a, 0x70, 0x56, 0x52, 0x97, 0x90, 0xba, 0x9c, 0xf4, 0xfa, 0xc5, 0xb4,
|
||||
0x49, 0xf6, 0xa1, 0xbd, 0xea, 0xd8, 0xba, 0xd1, 0xd3, 0x5d, 0x8f, 0xd6, 0x0a, 0x48, 0x16, 0xe5,
|
||||
0x47, 0x4e, 0xf2, 0xb0, 0x5a, 0x5a, 0x51, 0x98, 0x36, 0xcf, 0x1e, 0x54, 0x29, 0x2b, 0xd9, 0x5f,
|
||||
0x50, 0x20, 0xb9, 0x8f, 0x08, 0x41, 0xa4, 0x18, 0x1e, 0x19, 0xa0, 0x10, 0xea, 0x5d, 0xa8, 0xae,
|
||||
0xd1, 0x23, 0x95, 0x8e, 0x65, 0xe0, 0x97, 0x71, 0x7f, 0x45, 0x5f, 0xdf, 0xde, 0x09, 0x01, 0x64,
|
||||
0xde, 0xa1, 0x3a, 0x0d, 0x68, 0x0d, 0xfc, 0x92, 0xf1, 0x79, 0x45, 0x86, 0x37, 0x02, 0x92, 0x92,
|
||||
0x00, 0x48, 0x21, 0x43, 0x9e, 0xfe, 0x5c, 0x38, 0xcc, 0x13, 0xd3, 0xdd, 0x4d, 0x41, 0x92, 0x80,
|
||||
0xf4, 0x67, 0xbd, 0x97, 0x7d, 0x40, 0xd8, 0x33, 0xf8, 0x74, 0x75, 0xe8, 0x79, 0xce, 0xcd, 0x49,
|
||||
0xa4, 0x87, 0x63, 0xb7, 0x95, 0xe9, 0x80, 0x62, 0x96, 0x6d, 0xa8, 0x10, 0xe9, 0x64, 0xec, 0xb9,
|
||||
0x2e, 0x1b, 0x28, 0x3e, 0x67, 0x67, 0xce, 0x3a, 0x76, 0x7b, 0x8e, 0xb9, 0xc7, 0x99, 0x2e, 0x25,
|
||||
0x27, 0x02, 0x32, 0x91, 0x39, 0x31, 0x48, 0x41, 0xf9, 0x6f, 0xd0, 0x68, 0x9d, 0xf6, 0xae, 0x8e,
|
||||
0xcd, 0x81, 0xb1, 0xed, 0xd8, 0x7d, 0xfa, 0xf2, 0xe5, 0xde, 0xa4, 0xe5, 0x47, 0x40, 0x53, 0x23,
|
||||
0xb1, 0x09, 0x23, 0xc4, 0xfc, 0xbf, 0x0a, 0x15, 0x51, 0x3e, 0x42, 0xb2, 0x1b, 0x5b, 0xf1, 0xc2,
|
||||
0x55, 0xfb, 0xfa, 0x64, 0x20, 0x1f, 0xf3, 0xfd, 0xaf, 0x2b, 0x50, 0xf6, 0x5f, 0xf9, 0x7c, 0xc3,
|
||||
0x75, 0x8f, 0x37, 0x50, 0x88, 0xf8, 0x01, 0x2c, 0xc6, 0x5e, 0xdc, 0x4b, 0x6d, 0x9c, 0xfc, 0x55,
|
||||
0xfe, 0x34, 0x61, 0x7c, 0xce, 0xff, 0x24, 0x4e, 0xe4, 0x24, 0x37, 0xd3, 0x8a, 0x19, 0xf1, 0x74,
|
||||
0x64, 0x0a, 0xe2, 0xff, 0xdd, 0x49, 0xc0, 0x16, 0x40, 0x28, 0xfc, 0x9f, 0x7c, 0x17, 0x96, 0x44,
|
||||
0xb4, 0xd3, 0x76, 0x6b, 0x28, 0x8d, 0xf0, 0xdf, 0xcb, 0x72, 0xaf, 0x30, 0x3d, 0x46, 0x4b, 0x8f,
|
||||
0xeb, 0x9f, 0x41, 0x2d, 0x7c, 0x4b, 0x1d, 0x49, 0xff, 0x92, 0x2c, 0x79, 0x8d, 0x7d, 0xda, 0x2a,
|
||||
0x36, 0x4f, 0x19, 0xfa, 0x4d, 0x41, 0xe7, 0x02, 0x4a, 0x9e, 0x6f, 0x4a, 0x43, 0xe5, 0xd4, 0x53,
|
||||
0x55, 0x69, 0xa8, 0x9c, 0x7e, 0x68, 0xca, 0x6a, 0x5a, 0xf1, 0x43, 0x3b, 0x69, 0x4d, 0x2b, 0xe5,
|
||||
0x18, 0x54, 0x5a, 0xd3, 0x4a, 0x3b, 0x05, 0x54, 0xcf, 0xac, 0x7e, 0xf4, 0xc5, 0x87, 0x7d, 0xd3,
|
||||
0x3b, 0x18, 0xef, 0x91, 0xd5, 0xdf, 0x65, 0x43, 0x3f, 0x30, 0x6d, 0xfe, 0xeb, 0xae, 0x2f, 0xee,
|
||||
0x77, 0x29, 0xb6, 0xbb, 0x04, 0xdb, 0x68, 0x6f, 0xaf, 0x44, 0x5b, 0x1f, 0xfd, 0x4f, 0x00, 0x00,
|
||||
0x00, 0xff, 0xff, 0x26, 0x21, 0x68, 0xba, 0x15, 0x53, 0x00, 0x00,
|
||||
}
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
|
|
|
@ -1217,6 +1217,7 @@ func (ft *flushTask) Execute(ctx context.Context) error {
|
|||
),
|
||||
DbID: 0,
|
||||
CollectionID: collID,
|
||||
IsImport: false,
|
||||
}
|
||||
resp, err := ft.dataCoord.Flush(ctx, flushReq)
|
||||
if err != nil {
|
||||
|
|
|
@ -38,7 +38,6 @@ type Broker interface {
|
|||
Flush(ctx context.Context, cID int64, segIDs []int64) error
|
||||
Import(ctx context.Context, req *datapb.ImportTaskRequest) (*datapb.ImportTaskResponse, error)
|
||||
UnsetIsImportingState(context.Context, *datapb.UnsetIsImportingStateRequest) (*commonpb.Status, error)
|
||||
MarkSegmentsDropped(context.Context, *datapb.MarkSegmentsDroppedRequest) (*commonpb.Status, error)
|
||||
GetSegmentStates(context.Context, *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error)
|
||||
GcConfirm(ctx context.Context, collectionID, partitionID UniqueID) bool
|
||||
|
||||
|
@ -135,6 +134,7 @@ func (b *ServerBroker) Flush(ctx context.Context, cID int64, segIDs []int64) err
|
|||
DbID: 0,
|
||||
SegmentIDs: segIDs,
|
||||
CollectionID: cID,
|
||||
IsImport: true,
|
||||
})
|
||||
if err != nil {
|
||||
return errors.New("failed to call flush to data coordinator: " + err.Error())
|
||||
|
@ -154,10 +154,6 @@ func (b *ServerBroker) UnsetIsImportingState(ctx context.Context, req *datapb.Un
|
|||
return b.s.dataCoord.UnsetIsImportingState(ctx, req)
|
||||
}
|
||||
|
||||
func (b *ServerBroker) MarkSegmentsDropped(ctx context.Context, req *datapb.MarkSegmentsDroppedRequest) (*commonpb.Status, error) {
|
||||
return b.s.dataCoord.MarkSegmentsDropped(ctx, req)
|
||||
}
|
||||
|
||||
func (b *ServerBroker) GetSegmentStates(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return b.s.dataCoord.GetSegmentStates(ctx, req)
|
||||
}
|
||||
|
|
|
@ -15,7 +15,6 @@ import (
|
|||
type GetCollectionNameFunc func(collID, partitionID UniqueID) (string, string, error)
|
||||
type IDAllocator func(count uint32) (UniqueID, UniqueID, error)
|
||||
type ImportFunc func(ctx context.Context, req *datapb.ImportTaskRequest) (*datapb.ImportTaskResponse, error)
|
||||
type MarkSegmentsDroppedFunc func(ctx context.Context, segIDs []int64) (*commonpb.Status, error)
|
||||
type GetSegmentStatesFunc func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error)
|
||||
type DescribeIndexFunc func(ctx context.Context, colID UniqueID) (*indexpb.DescribeIndexResponse, error)
|
||||
type GetSegmentIndexStateFunc func(ctx context.Context, collID UniqueID, indexName string, segIDs []UniqueID) ([]*indexpb.SegmentIndexState, error)
|
||||
|
@ -25,7 +24,6 @@ type ImportFactory interface {
|
|||
NewGetCollectionNameFunc() GetCollectionNameFunc
|
||||
NewIDAllocator() IDAllocator
|
||||
NewImportFunc() ImportFunc
|
||||
NewMarkSegmentsDroppedFunc() MarkSegmentsDroppedFunc
|
||||
NewGetSegmentStatesFunc() GetSegmentStatesFunc
|
||||
NewDescribeIndexFunc() DescribeIndexFunc
|
||||
NewGetSegmentIndexStateFunc() GetSegmentIndexStateFunc
|
||||
|
@ -48,10 +46,6 @@ func (f ImportFactoryImpl) NewImportFunc() ImportFunc {
|
|||
return ImportFuncWithCore(f.c)
|
||||
}
|
||||
|
||||
func (f ImportFactoryImpl) NewMarkSegmentsDroppedFunc() MarkSegmentsDroppedFunc {
|
||||
return MarkSegmentsDroppedWithCore(f.c)
|
||||
}
|
||||
|
||||
func (f ImportFactoryImpl) NewGetSegmentStatesFunc() GetSegmentStatesFunc {
|
||||
return GetSegmentStatesWithCore(f.c)
|
||||
}
|
||||
|
@ -101,14 +95,6 @@ func ImportFuncWithCore(c *Core) ImportFunc {
|
|||
}
|
||||
}
|
||||
|
||||
func MarkSegmentsDroppedWithCore(c *Core) MarkSegmentsDroppedFunc {
|
||||
return func(ctx context.Context, segIDs []int64) (*commonpb.Status, error) {
|
||||
return c.broker.MarkSegmentsDropped(ctx, &datapb.MarkSegmentsDroppedRequest{
|
||||
SegmentIds: segIDs,
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
func GetSegmentStatesWithCore(c *Core) GetSegmentStatesFunc {
|
||||
return func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return c.broker.GetSegmentStates(ctx, req)
|
||||
|
|
|
@ -77,7 +77,6 @@ type importManager struct {
|
|||
idAllocator func(count uint32) (typeutil.UniqueID, typeutil.UniqueID, error)
|
||||
callImportService func(ctx context.Context, req *datapb.ImportTaskRequest) (*datapb.ImportTaskResponse, error)
|
||||
getCollectionName func(collID, partitionID typeutil.UniqueID) (string, string, error)
|
||||
callMarkSegmentsDropped func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error)
|
||||
callGetSegmentStates func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error)
|
||||
callUnsetIsImportingState func(context.Context, *datapb.UnsetIsImportingStateRequest) (*commonpb.Status, error)
|
||||
}
|
||||
|
@ -86,7 +85,6 @@ type importManager struct {
|
|||
func newImportManager(ctx context.Context, client kv.TxnKV,
|
||||
idAlloc func(count uint32) (typeutil.UniqueID, typeutil.UniqueID, error),
|
||||
importService func(ctx context.Context, req *datapb.ImportTaskRequest) (*datapb.ImportTaskResponse, error),
|
||||
markSegmentsDropped func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error),
|
||||
getSegmentStates func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error),
|
||||
getCollectionName func(collID, partitionID typeutil.UniqueID) (string, string, error),
|
||||
unsetIsImportingState func(context.Context, *datapb.UnsetIsImportingStateRequest) (*commonpb.Status, error)) *importManager {
|
||||
|
@ -102,7 +100,6 @@ func newImportManager(ctx context.Context, client kv.TxnKV,
|
|||
lastReqID: 0,
|
||||
idAllocator: idAlloc,
|
||||
callImportService: importService,
|
||||
callMarkSegmentsDropped: markSegmentsDropped,
|
||||
callGetSegmentStates: getSegmentStates,
|
||||
getCollectionName: getCollectionName,
|
||||
callUnsetIsImportingState: unsetIsImportingState,
|
||||
|
@ -228,7 +225,7 @@ func (m *importManager) sendOutTasks(ctx context.Context) error {
|
|||
break
|
||||
}
|
||||
if err != nil {
|
||||
log.Error("import task get error", zap.Error(err))
|
||||
log.Warn("import task get error", zap.Error(err))
|
||||
break
|
||||
}
|
||||
|
||||
|
@ -1014,23 +1011,9 @@ func (m *importManager) removeBadImportSegments(ctx context.Context) {
|
|||
log.Info("trying to mark segments as dropped",
|
||||
zap.Int64("task ID", t.GetId()),
|
||||
zap.Int64s("segment IDs", t.GetState().GetSegments()))
|
||||
status, err := m.callMarkSegmentsDropped(ctx, t.GetState().GetSegments())
|
||||
errMsg := "failed to mark all segments dropped, some segments might already have been dropped"
|
||||
if err != nil {
|
||||
log.Error(errMsg,
|
||||
zap.Int64("task ID", t.GetId()),
|
||||
zap.Int64s("segments", t.GetState().GetSegments()),
|
||||
zap.Error(err))
|
||||
}
|
||||
if status.GetErrorCode() != commonpb.ErrorCode_Success {
|
||||
log.Error(errMsg,
|
||||
zap.Int64("task ID", t.GetId()),
|
||||
zap.Int64s("segments", t.GetState().GetSegments()),
|
||||
zap.Error(errors.New(status.GetReason())))
|
||||
}
|
||||
|
||||
if err = m.setImportTaskState(t.GetId(), commonpb.ImportState_ImportFailedAndCleaned); err != nil {
|
||||
log.Error(errMsg,
|
||||
zap.Int64("task ID", t.GetId()))
|
||||
log.Warn("failed to set ", zap.Int64("task ID", t.GetId()), zap.Error(err))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -101,11 +101,6 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
},
|
||||
}, nil
|
||||
}
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -119,7 +114,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
|
||||
// there are 2 tasks read from store, one is pending, the other is persisted.
|
||||
|
@ -151,7 +146,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Nanosecond)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
mgr.init(context.TODO())
|
||||
var wgLoop sync.WaitGroup
|
||||
|
@ -170,7 +165,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Nanosecond)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
assert.Panics(t, func() {
|
||||
mgr.init(context.TODO())
|
||||
|
@ -187,7 +182,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Nanosecond)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
mgr.init(context.TODO())
|
||||
})
|
||||
|
@ -201,7 +196,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Nanosecond)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockTxnKV, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
mgr.init(context.TODO())
|
||||
func() {
|
||||
|
@ -221,7 +216,7 @@ func TestImportManager_NewImportManager(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
mgr.init(ctx)
|
||||
var wgLoop sync.WaitGroup
|
||||
|
@ -279,7 +274,7 @@ func TestImportManager_TestSetImportTaskState(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, nil, nil, nil, nil, nil)
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, nil, nil, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
_, err := mgr.loadFromTaskStore(true)
|
||||
assert.NoError(t, err)
|
||||
|
@ -367,11 +362,6 @@ func TestImportManager_TestEtcdCleanUp(t *testing.T) {
|
|||
}, nil
|
||||
}
|
||||
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -381,7 +371,7 @@ func TestImportManager_TestEtcdCleanUp(t *testing.T) {
|
|||
}
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
assert.NotNil(t, mgr)
|
||||
_, err = mgr.loadFromTaskStore(true)
|
||||
assert.NoError(t, err)
|
||||
|
@ -463,11 +453,6 @@ func TestImportManager_TestFlipTaskStateLoop(t *testing.T) {
|
|||
},
|
||||
}, nil
|
||||
}
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
|
@ -490,7 +475,7 @@ func TestImportManager_TestFlipTaskStateLoop(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped,
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn,
|
||||
callGetSegmentStates, nil, callUnsetIsImportingState)
|
||||
assert.NotNil(t, mgr)
|
||||
var wgLoop sync.WaitGroup
|
||||
|
@ -505,7 +490,7 @@ func TestImportManager_TestFlipTaskStateLoop(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped,
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn,
|
||||
callGetSegmentStates, nil, callUnsetIsImportingState)
|
||||
assert.NotNil(t, mgr)
|
||||
var wgLoop sync.WaitGroup
|
||||
|
@ -520,7 +505,7 @@ func TestImportManager_TestFlipTaskStateLoop(t *testing.T) {
|
|||
defer wg.Done()
|
||||
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
defer cancel()
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped,
|
||||
mgr := newImportManager(ctx, mockKv, idAlloc, callImportServiceFn,
|
||||
callGetSegmentStates, nil, callUnsetIsImportingState)
|
||||
assert.NotNil(t, mgr)
|
||||
var wgLoop sync.WaitGroup
|
||||
|
@ -548,11 +533,6 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
defer paramtable.Get().Remove(Params.RootCoordCfg.ImportMaxPendingTaskCount.Key)
|
||||
colID := int64(100)
|
||||
mockKv := memkv.NewMemoryKV()
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -561,7 +541,7 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
}, nil
|
||||
}
|
||||
// nil request
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, nil, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, nil, callGetSegmentStates, nil, nil)
|
||||
resp := mgr.importJob(context.TODO(), nil, colID, 0)
|
||||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
|
||||
|
@ -590,7 +570,7 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
// row-based case, task count equal to file count
|
||||
// since the importServiceFunc return error, tasks will be kept in pending list
|
||||
rowReq.Files = []string{"f1.json"}
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.Equal(t, len(rowReq.Files), len(mgr.pendingTasks))
|
||||
assert.Equal(t, 0, len(mgr.workingTasks))
|
||||
|
@ -603,7 +583,7 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
|
||||
// column-based case, one quest one task
|
||||
// since the importServiceFunc return error, tasks will be kept in pending list
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), colReq, colID, 0)
|
||||
assert.Equal(t, 1, len(mgr.pendingTasks))
|
||||
assert.Equal(t, 0, len(mgr.workingTasks))
|
||||
|
@ -617,13 +597,13 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
}
|
||||
|
||||
// row-based case, since the importServiceFunc return success, tasks will be sent to working list
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.Equal(t, 0, len(mgr.pendingTasks))
|
||||
assert.Equal(t, len(rowReq.Files), len(mgr.workingTasks))
|
||||
|
||||
// column-based case, since the importServiceFunc return success, tasks will be sent to working list
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), colReq, colID, 0)
|
||||
assert.Equal(t, 0, len(mgr.pendingTasks))
|
||||
assert.Equal(t, 1, len(mgr.workingTasks))
|
||||
|
@ -647,7 +627,7 @@ func TestImportManager_ImportJob(t *testing.T) {
|
|||
|
||||
// row-based case, since the importServiceFunc return success for 1 task
|
||||
// the first task is sent to working list, and 1 task left in pending list
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.Equal(t, 0, len(mgr.pendingTasks))
|
||||
assert.Equal(t, 1, len(mgr.workingTasks))
|
||||
|
@ -716,11 +696,6 @@ func TestImportManager_AllDataNodesBusy(t *testing.T) {
|
|||
}, nil
|
||||
}
|
||||
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -730,7 +705,7 @@ func TestImportManager_AllDataNodesBusy(t *testing.T) {
|
|||
}
|
||||
|
||||
// each data node owns one task
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
for i := 0; i < len(dnList); i++ {
|
||||
resp := mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
|
@ -739,7 +714,7 @@ func TestImportManager_AllDataNodesBusy(t *testing.T) {
|
|||
}
|
||||
|
||||
// all data nodes are busy, new task waiting in pending list
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp := mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
assert.Equal(t, len(rowReq.Files), len(mgr.pendingTasks))
|
||||
|
@ -747,7 +722,7 @@ func TestImportManager_AllDataNodesBusy(t *testing.T) {
|
|||
|
||||
// now all data nodes are free again, new task is executed instantly
|
||||
count = 0
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr = newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp = mgr.importJob(context.TODO(), colReq, colID, 0)
|
||||
assert.Equal(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
assert.Equal(t, 0, len(mgr.pendingTasks))
|
||||
|
@ -796,12 +771,6 @@ func TestImportManager_TaskState(t *testing.T) {
|
|||
PartitionName: "p1",
|
||||
Files: []string{"f1.json"},
|
||||
}
|
||||
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -811,7 +780,7 @@ func TestImportManager_TaskState(t *testing.T) {
|
|||
}
|
||||
|
||||
// add 3 tasks, their ID is 10000, 10001, 10002, make sure updateTaskInfo() works correctly
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
rowReq.Files = []string{"f2.json"}
|
||||
mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
|
@ -913,11 +882,6 @@ func TestImportManager_AllocFail(t *testing.T) {
|
|||
Files: []string{"f1.json"},
|
||||
}
|
||||
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -925,7 +889,7 @@ func TestImportManager_AllocFail(t *testing.T) {
|
|||
},
|
||||
}, nil
|
||||
}
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, importServiceFunc, callGetSegmentStates, nil, nil)
|
||||
resp := mgr.importJob(context.TODO(), rowReq, colID, 0)
|
||||
assert.NotEqual(t, commonpb.ErrorCode_Success, resp.Status.ErrorCode)
|
||||
assert.Equal(t, 0, len(mgr.pendingTasks))
|
||||
|
@ -953,11 +917,6 @@ func TestImportManager_ListAllTasks(t *testing.T) {
|
|||
}, nil
|
||||
}
|
||||
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
Status: &commonpb.Status{
|
||||
|
@ -993,7 +952,7 @@ func TestImportManager_ListAllTasks(t *testing.T) {
|
|||
}
|
||||
|
||||
mockKv := memkv.NewMemoryKV()
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, fn, callMarkSegmentsDropped, callGetSegmentStates, getCollectionName, nil)
|
||||
mgr := newImportManager(context.TODO(), mockKv, idAlloc, fn, callGetSegmentStates, getCollectionName, nil)
|
||||
|
||||
// add 10 tasks for collection1, id from 1 to 10
|
||||
file1 := "f1.json"
|
||||
|
|
|
@ -394,7 +394,6 @@ func (c *Core) initImportManager() error {
|
|||
impTaskKv,
|
||||
f.NewIDAllocator(),
|
||||
f.NewImportFunc(),
|
||||
f.NewMarkSegmentsDroppedFunc(),
|
||||
f.NewGetSegmentStatesFunc(),
|
||||
f.NewGetCollectionNameFunc(),
|
||||
f.NewUnsetIsImportingStateFunc(),
|
||||
|
|
|
@ -974,7 +974,7 @@ func TestCore_GetImportState(t *testing.T) {
|
|||
t.Run("normal case", func(t *testing.T) {
|
||||
ctx := context.Background()
|
||||
c := newTestCore(withHealthyCode())
|
||||
c.importManager = newImportManager(ctx, mockKv, nil, nil, nil, nil, nil, nil)
|
||||
c.importManager = newImportManager(ctx, mockKv, nil, nil, nil, nil, nil)
|
||||
resp, err := c.GetImportState(ctx, &milvuspb.GetImportStateRequest{
|
||||
Task: 100,
|
||||
})
|
||||
|
@ -1058,7 +1058,7 @@ func TestCore_ListImportTasks(t *testing.T) {
|
|||
|
||||
ctx := context.Background()
|
||||
c := newTestCore(withHealthyCode(), withMeta(meta))
|
||||
c.importManager = newImportManager(ctx, mockKv, nil, nil, nil, nil, nil, nil)
|
||||
c.importManager = newImportManager(ctx, mockKv, nil, nil, nil, nil, nil)
|
||||
|
||||
// list all tasks
|
||||
resp, err := c.ListImportTasks(ctx, &milvuspb.ListImportTasksRequest{})
|
||||
|
@ -1192,11 +1192,6 @@ func TestCore_ReportImport(t *testing.T) {
|
|||
},
|
||||
}, nil
|
||||
}
|
||||
callMarkSegmentsDropped := func(ctx context.Context, segIDs []typeutil.UniqueID) (*commonpb.Status, error) {
|
||||
return &commonpb.Status{
|
||||
ErrorCode: commonpb.ErrorCode_Success,
|
||||
}, nil
|
||||
}
|
||||
|
||||
callGetSegmentStates := func(ctx context.Context, req *datapb.GetSegmentStatesRequest) (*datapb.GetSegmentStatesResponse, error) {
|
||||
return &datapb.GetSegmentStatesResponse{
|
||||
|
@ -1223,7 +1218,7 @@ func TestCore_ReportImport(t *testing.T) {
|
|||
t.Run("report complete import with task not found", func(t *testing.T) {
|
||||
ctx := context.Background()
|
||||
c := newTestCore(withHealthyCode())
|
||||
c.importManager = newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, nil)
|
||||
c.importManager = newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, nil)
|
||||
resp, err := c.ReportImport(ctx, &rootcoordpb.ImportResult{
|
||||
TaskId: 101,
|
||||
State: commonpb.ImportState_ImportCompleted,
|
||||
|
@ -1241,7 +1236,7 @@ func TestCore_ReportImport(t *testing.T) {
|
|||
withTtSynchronizer(ticker),
|
||||
withDataCoord(dc))
|
||||
c.broker = newServerBroker(c)
|
||||
c.importManager = newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callMarkSegmentsDropped, callGetSegmentStates, nil, callUnsetIsImportingState)
|
||||
c.importManager = newImportManager(ctx, mockKv, idAlloc, callImportServiceFn, callGetSegmentStates, nil, callUnsetIsImportingState)
|
||||
c.importManager.loadFromTaskStore(true)
|
||||
c.importManager.sendOutTasks(ctx)
|
||||
|
||||
|
|
Loading…
Reference in New Issue