diff --git a/internal/datacoord/channel_manager.go b/internal/datacoord/channel_manager.go index 438808fb2d0da3e52d3ed70d204276285dda0058..8ac37b2d3a139c917f707bb9c739c525b97b929c 100644 --- a/internal/datacoord/channel_manager.go +++ b/internal/datacoord/channel_manager.go @@ -25,6 +25,7 @@ import ( "github.com/milvus-io/milvus/internal/kv" "github.com/milvus-io/milvus/internal/log" "github.com/milvus-io/milvus/internal/mq/msgstream" + "github.com/milvus-io/milvus/internal/proto/commonpb" "github.com/milvus-io/milvus/internal/proto/datapb" "github.com/milvus-io/milvus/internal/util/funcutil" "github.com/milvus-io/milvus/internal/util/logutil" @@ -60,8 +61,9 @@ type ChannelManager struct { } type channel struct { - Name string - CollectionID UniqueID + Name string + CollectionID UniqueID + StartPositions []*commonpb.KeyDataPair } // ChannelManagerOpt is to set optional parameters in channel manager. @@ -434,7 +436,7 @@ func (c *ChannelManager) Watch(ch *channel) error { // fillChannelWatchInfo updates the channel op by filling in channel watch info. func (c *ChannelManager) fillChannelWatchInfo(op *ChannelOp) { for _, ch := range op.Channels { - vcInfo := c.h.GetVChanPositions(ch.Name, ch.CollectionID, allPartitionID) + vcInfo := c.h.GetVChanPositions(ch, allPartitionID) info := &datapb.ChannelWatchInfo{ Vchan: vcInfo, StartTs: time.Now().Unix(), @@ -451,7 +453,7 @@ func (c *ChannelManager) fillChannelWatchInfoWithState(op *ChannelOp, state data startTs := time.Now().Unix() timeoutTs := time.Now().Add(maxWatchDuration).UnixNano() for _, ch := range op.Channels { - vcInfo := c.h.GetVChanPositions(ch.Name, ch.CollectionID, allPartitionID) + vcInfo := c.h.GetVChanPositions(ch, allPartitionID) info := &datapb.ChannelWatchInfo{ Vchan: vcInfo, StartTs: startTs, diff --git a/internal/datacoord/channel_manager_test.go b/internal/datacoord/channel_manager_test.go index e9b301998d55f9633873c6e230bf85cb53695fcf..c776ef6452ff20ec4d680440b01af264bb8f7c84 100644 --- a/internal/datacoord/channel_manager_test.go +++ b/internal/datacoord/channel_manager_test.go @@ -116,7 +116,7 @@ func TestChannelManager_StateTransfer(t *testing.T) { }() chManager.AddNode(nodeID) - chManager.Watch(&channel{channel1, collectionID}) + chManager.Watch(&channel{Name: channel1, CollectionID: collectionID}) key := path.Join(prefix, strconv.FormatInt(nodeID, 10), channel1) waitAndStore(t, metakv, key, datapb.ChannelWatchState_ToWatch, datapb.ChannelWatchState_WatchSuccess) @@ -143,7 +143,7 @@ func TestChannelManager_StateTransfer(t *testing.T) { }() chManager.AddNode(nodeID) - chManager.Watch(&channel{channel1, collectionID}) + chManager.Watch(&channel{Name: channel1, CollectionID: collectionID}) key := path.Join(prefix, strconv.FormatInt(nodeID, 10), channel1) waitAndStore(t, metakv, key, datapb.ChannelWatchState_ToWatch, datapb.ChannelWatchState_WatchFailure) @@ -171,7 +171,7 @@ func TestChannelManager_StateTransfer(t *testing.T) { }() chManager.AddNode(nodeID) - chManager.Watch(&channel{channel1, collectionID}) + chManager.Watch(&channel{Name: channel1, CollectionID: collectionID}) // simulating timeout behavior of startOne, cuz 20s is a long wait e := &ackEvent{ @@ -210,7 +210,7 @@ func TestChannelManager_StateTransfer(t *testing.T) { store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ nodeID: {nodeID, []*channel{ - {channel1, collectionID}, + {Name: channel1, CollectionID: collectionID}, }}, oldNode: {oldNode, []*channel{}}, }, @@ -252,7 +252,7 @@ func TestChannelManager_StateTransfer(t *testing.T) { store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ nodeID: {nodeID, []*channel{ - {channel1, collectionID}, + {Name: channel1, CollectionID: collectionID}, }}, }, } @@ -295,7 +295,7 @@ func TestChannelManager_StateTransfer(t *testing.T) { store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ nodeID: {nodeID, []*channel{ - {channel1, collectionID}, + {Name: channel1, CollectionID: collectionID}, }}, oldNode: {oldNode, []*channel{}}, }, @@ -340,7 +340,7 @@ func TestChannelManager_StateTransfer(t *testing.T) { store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ nodeID: {nodeID, []*channel{ - {channel1, collectionID}, + {Name: channel1, CollectionID: collectionID}, }}, }, } @@ -385,8 +385,8 @@ func TestChannelManager(t *testing.T) { store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ nodeID: {nodeID, []*channel{ - {channel1, collectionID}, - {channel2, collectionID}, + {Name: channel1, CollectionID: collectionID}, + {Name: channel2, CollectionID: collectionID}, }}, }, } @@ -399,7 +399,7 @@ func TestChannelManager(t *testing.T) { assert.False(t, chManager.Match(nodeToAdd, channel1)) assert.False(t, chManager.Match(nodeToAdd, channel2)) - err = chManager.Watch(&channel{"channel-3", collectionID}) + err = chManager.Watch(&channel{Name: "channel-3", CollectionID: collectionID}) assert.NoError(t, err) assert.True(t, chManager.Match(nodeToAdd, "channel-3")) @@ -423,8 +423,8 @@ func TestChannelManager(t *testing.T) { store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ bufferID: {bufferID, []*channel{ - {channel1, collectionID}, - {channel2, collectionID}, + {Name: channel1, CollectionID: collectionID}, + {Name: channel2, CollectionID: collectionID}, }}, }, } @@ -441,7 +441,7 @@ func TestChannelManager(t *testing.T) { assert.True(t, chManager.Match(nodeID, channel1)) assert.True(t, chManager.Match(nodeID, channel2)) - err = chManager.Watch(&channel{"channel-3", collectionID}) + err = chManager.Watch(&channel{Name: "channel-3", CollectionID: collectionID}) assert.NoError(t, err) waitAndCheckState(t, metakv, datapb.ChannelWatchState_ToWatch, nodeID, "channel-3", collectionID) @@ -460,13 +460,13 @@ func TestChannelManager(t *testing.T) { chManager, err := NewChannelManager(metakv, newMockHandler()) require.NoError(t, err) - err = chManager.Watch(&channel{bufferCh, collectionID}) + err = chManager.Watch(&channel{Name: bufferCh, CollectionID: collectionID}) assert.NoError(t, err) waitAndCheckState(t, metakv, datapb.ChannelWatchState_ToWatch, bufferID, bufferCh, collectionID) chManager.store.Add(nodeID) - err = chManager.Watch(&channel{chanToAdd, collectionID}) + err = chManager.Watch(&channel{Name: chanToAdd, CollectionID: collectionID}) assert.NoError(t, err) waitAndCheckState(t, metakv, datapb.ChannelWatchState_ToWatch, nodeID, chanToAdd, collectionID) @@ -486,7 +486,7 @@ func TestChannelManager(t *testing.T) { chManager.store = &ChannelStore{ store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ - nodeID: {nodeID, []*channel{{channelName, collectionID}}}, + nodeID: {nodeID, []*channel{{Name: channelName, CollectionID: collectionID}}}, }, } @@ -518,7 +518,7 @@ func TestChannelManager(t *testing.T) { // prepare tests for _, test := range tests { chManager.store.Add(test.nodeID) - ops := getOpsWithWatchInfo(test.nodeID, &channel{test.chName, collectionID}) + ops := getOpsWithWatchInfo(test.nodeID, &channel{Name: test.chName, CollectionID: collectionID}) err = chManager.store.Update(ops) require.NoError(t, err) @@ -562,8 +562,8 @@ func TestChannelManager(t *testing.T) { store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ 1: {1, []*channel{ - {"channel-1", collectionID}, - {"channel-2", collectionID}}}, + {Name: "channel-1", CollectionID: collectionID}, + {Name: "channel-2", CollectionID: collectionID}}}, bufferID: {bufferID, []*channel{}}, }, } @@ -598,7 +598,7 @@ func TestChannelManager(t *testing.T) { // prepare tests for _, test := range tests { chManager.store.Add(test.nodeID) - ops := getOpsWithWatchInfo(test.nodeID, &channel{test.chName, collectionID}) + ops := getOpsWithWatchInfo(test.nodeID, &channel{Name: test.chName, CollectionID: collectionID}) err = chManager.store.Update(ops) require.NoError(t, err) @@ -652,7 +652,7 @@ func TestChannelManager(t *testing.T) { chManager.store = &ChannelStore{ store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ - nodeID: {nodeID, []*channel{{channelName, collectionID}}}, + nodeID: {nodeID, []*channel{{Name: channelName, CollectionID: collectionID}}}, }, } ch = chManager.getChannelByNodeAndName(nodeID, channelName) @@ -683,7 +683,7 @@ func TestChannelManager(t *testing.T) { for _, test := range tests { t.Run(test.description, func(t *testing.T) { - ops := getReleaseOp(nodeID, &channel{channelName, collectionID}) + ops := getReleaseOp(nodeID, &channel{Name: channelName, CollectionID: collectionID}) for _, op := range ops { chs := chManager.fillChannelWatchInfoWithState(op, test.inState) assert.Equal(t, 1, len(chs)) @@ -708,7 +708,7 @@ func TestChannelManager(t *testing.T) { require.NoError(t, err) chManager.store.Add(nodeID) - opSet := getReleaseOp(nodeID, &channel{channelName, collectionID}) + opSet := getReleaseOp(nodeID, &channel{Name: channelName, CollectionID: collectionID}) chManager.updateWithTimer(opSet, datapb.ChannelWatchState_ToWatch) chManager.stateTimer.removeTimers([]string{channelName}) @@ -783,7 +783,7 @@ func TestChannelManager_Reload(t *testing.T) { chManager.store = &ChannelStore{ store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ - nodeID: {nodeID, []*channel{{channelName, collectionID}}}}, + nodeID: {nodeID, []*channel{{Name: channelName, CollectionID: collectionID}}}}, } data, err := proto.Marshal(getWatchInfoWithState(datapb.ChannelWatchState_WatchFailure, collectionID, channelName)) @@ -805,7 +805,7 @@ func TestChannelManager_Reload(t *testing.T) { chManager.store = &ChannelStore{ store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ - nodeID: {nodeID, []*channel{{channelName, collectionID}}}}, + nodeID: {nodeID, []*channel{{Name: channelName, CollectionID: collectionID}}}}, } require.NoError(t, err) @@ -831,7 +831,7 @@ func TestChannelManager_Reload(t *testing.T) { chManager.store = &ChannelStore{ store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ - nodeID: {nodeID, []*channel{{channelName, collectionID}}}, + nodeID: {nodeID, []*channel{{Name: channelName, CollectionID: collectionID}}}, 999: {999, []*channel{}}, }, } @@ -863,8 +863,8 @@ func TestChannelManager_Reload(t *testing.T) { cm.store = &ChannelStore{ store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"channel1", 1}}}, - 2: {2, []*channel{{"channel2", 1}}}, + 1: {1, []*channel{{Name: "channel1", CollectionID: 1}}}, + 2: {2, []*channel{{Name: "channel2", CollectionID: 1}}}, }, } @@ -918,9 +918,9 @@ func TestChannelManager_BalanceBehaviour(t *testing.T) { store: metakv, channelsInfo: map[int64]*NodeChannelInfo{ 1: {1, []*channel{ - {"channel-1", collectionID}, - {"channel-2", collectionID}, - {"channel-3", collectionID}}}}, + {Name: "channel-1", CollectionID: collectionID}, + {Name: "channel-2", CollectionID: collectionID}, + {Name: "channel-3", CollectionID: collectionID}}}}, } var ( @@ -962,7 +962,7 @@ func TestChannelManager_BalanceBehaviour(t *testing.T) { assert.True(t, chManager.Match(2, "channel-1")) chManager.AddNode(3) - chManager.Watch(&channel{"channel-4", collectionID}) + chManager.Watch(&channel{Name: "channel-4", CollectionID: collectionID}) key = path.Join(prefix, "3", "channel-4") waitAndStore(t, metakv, key, datapb.ChannelWatchState_ToWatch, datapb.ChannelWatchState_WatchSuccess) @@ -1022,7 +1022,7 @@ func TestChannelManager_RemoveChannel(t *testing.T) { 1: { NodeID: 1, Channels: []*channel{ - {"ch1", 1}, + {Name: "ch1", CollectionID: 1}, }, }, }, diff --git a/internal/datacoord/channel_store_test.go b/internal/datacoord/channel_store_test.go index c3ed9797dae2267aab8fab19d945b2befeb4e29e..4ffe27ecd6f4b9e18af92ab0e1fd5ac86371613f 100644 --- a/internal/datacoord/channel_store_test.go +++ b/internal/datacoord/channel_store_test.go @@ -83,7 +83,7 @@ func genNodeChannelInfos(id int64, num int) *NodeChannelInfo { channels := make([]*channel, 0, num) for i := 0; i < num; i++ { name := fmt.Sprintf("ch%d", i) - channels = append(channels, &channel{name, 1}) + channels = append(channels, &channel{Name: name, CollectionID: 1}) } return &NodeChannelInfo{ NodeID: id, @@ -97,7 +97,7 @@ func genChannelOperations(from, to int64, num int) ChannelOpSet { channelWatchInfos := make([]*datapb.ChannelWatchInfo, 0, num) for i := 0; i < num; i++ { name := fmt.Sprintf("ch%d", i) - channels = append(channels, &channel{name, 1}) + channels = append(channels, &channel{Name: name, CollectionID: 1}) channelWatchInfos = append(channelWatchInfos, &datapb.ChannelWatchInfo{}) } diff --git a/internal/datacoord/cluster_test.go b/internal/datacoord/cluster_test.go index 24c607ef1445c228e6804207a345226da098235a..b541d2c56f77857d199b0bb3c303533b8626b0c4 100644 --- a/internal/datacoord/cluster_test.go +++ b/internal/datacoord/cluster_test.go @@ -100,7 +100,7 @@ func TestClusterCreate(t *testing.T) { assert.Nil(t, err) channels := channelManager.GetChannels() - assert.EqualValues(t, []*NodeChannelInfo{{1, []*channel{{"channel1", 1}}}}, channels) + assert.EqualValues(t, []*NodeChannelInfo{{1, []*channel{{Name: "channel1", CollectionID: 1}}}}, channels) }) t.Run("remove all nodes and restart with other nodes", func(t *testing.T) { diff --git a/internal/datacoord/handler.go b/internal/datacoord/handler.go index 73ff991bfd9a9a0d75b907d8b93f09d240498f61..df78d7def29140d62b10f105f796e40b96d3a9a0 100644 --- a/internal/datacoord/handler.go +++ b/internal/datacoord/handler.go @@ -30,7 +30,7 @@ import ( // Handler handles some channel method for ChannelManager type Handler interface { // GetVChanPositions gets the information recovery needed of a channel - GetVChanPositions(channel string, collectionID UniqueID, partitionID UniqueID) *datapb.VchannelInfo + GetVChanPositions(channel *channel, partitionID UniqueID) *datapb.VchannelInfo CheckShouldDropChannel(channel string) bool FinishDropChannel(channel string) } @@ -46,13 +46,13 @@ func newServerHandler(s *Server) *ServerHandler { } // GetVChanPositions gets vchannel latest postitions with provided dml channel names -func (h *ServerHandler) GetVChanPositions(channel string, collectionID UniqueID, partitionID UniqueID) *datapb.VchannelInfo { +func (h *ServerHandler) GetVChanPositions(channel *channel, partitionID UniqueID) *datapb.VchannelInfo { // cannot use GetSegmentsByChannel since dropped segments are needed here segments := h.s.meta.SelectSegments(func(s *SegmentInfo) bool { - return s.InsertChannel == channel + return s.InsertChannel == channel.Name }) log.Info("GetSegmentsByChannel", - zap.Any("collectionID", collectionID), + zap.Any("collectionID", channel.CollectionID), zap.Any("channel", channel), zap.Any("numOfSegments", len(segments)), ) @@ -90,15 +90,20 @@ func (h *ServerHandler) GetVChanPositions(channel string, collectionID UniqueID, } // use collection start position when segment position is not found if seekPosition == nil { - collection := h.GetCollection(h.s.ctx, collectionID) - if collection != nil { - seekPosition = getCollectionStartPosition(channel, collection) + if channel.StartPositions == nil { + collection := h.GetCollection(h.s.ctx, channel.CollectionID) + if collection != nil { + seekPosition = getCollectionStartPosition(channel.Name, collection) + } + } else { + // use passed start positions, skip to ask rootcoord. + seekPosition = toMsgPosition(channel.Name, channel.StartPositions) } } return &datapb.VchannelInfo{ - CollectionID: collectionID, - ChannelName: channel, + CollectionID: channel.CollectionID, + ChannelName: channel.Name, SeekPosition: seekPosition, FlushedSegmentIds: flushedIds, UnflushedSegmentIds: unflushedIds, @@ -107,7 +112,11 @@ func (h *ServerHandler) GetVChanPositions(channel string, collectionID UniqueID, } func getCollectionStartPosition(channel string, collectionInfo *datapb.CollectionInfo) *internalpb.MsgPosition { - for _, sp := range collectionInfo.GetStartPositions() { + return toMsgPosition(channel, collectionInfo.GetStartPositions()) +} + +func toMsgPosition(channel string, startPositions []*commonpb.KeyDataPair) *internalpb.MsgPosition { + for _, sp := range startPositions { if sp.GetKey() != funcutil.ToPhysicalChannel(channel) { continue } diff --git a/internal/datacoord/mock_test.go b/internal/datacoord/mock_test.go index 4e660e4f7d7df6fe298aa6e667b339b0f69baaf4..720b8ba58da783ca22bfc79def26916311f1ab95 100644 --- a/internal/datacoord/mock_test.go +++ b/internal/datacoord/mock_test.go @@ -719,10 +719,10 @@ func newMockHandler() *mockHandler { return &mockHandler{} } -func (h *mockHandler) GetVChanPositions(channel string, collectionID UniqueID, partitionID UniqueID) *datapb.VchannelInfo { +func (h *mockHandler) GetVChanPositions(channel *channel, partitionID UniqueID) *datapb.VchannelInfo { return &datapb.VchannelInfo{ - CollectionID: collectionID, - ChannelName: channel, + CollectionID: channel.CollectionID, + ChannelName: channel.Name, } } diff --git a/internal/datacoord/policy_test.go b/internal/datacoord/policy_test.go index 507fcec87923c20cb3fdf9ae7eb0da823d048e64..89744a923ed4450a5943b3a736d4123c4339bd14 100644 --- a/internal/datacoord/policy_test.go +++ b/internal/datacoord/policy_test.go @@ -41,7 +41,7 @@ func fillEmptyPosition(operations ChannelOpSet) { func TestBufferChannelAssignPolicy(t *testing.T) { kv := memkv.NewMemoryKV() - channels := []*channel{{"chan1", 1}} + channels := []*channel{{Name: "chan1", CollectionID: 1}} store := &ChannelStore{ store: kv, channelsInfo: map[int64]*NodeChannelInfo{bufferID: {bufferID, channels}}, @@ -60,8 +60,8 @@ func TestConsistentHashRegisterPolicy(t *testing.T) { t.Run("first register", func(t *testing.T) { kv := memkv.NewMemoryKV() channels := []*channel{ - {"chan1", 1}, - {"chan2", 2}, + {Name: "chan1", CollectionID: 1}, + {Name: "chan2", CollectionID: 2}, } store := &ChannelStore{ store: kv, @@ -82,8 +82,8 @@ func TestConsistentHashRegisterPolicy(t *testing.T) { kv := memkv.NewMemoryKV() channels := []*channel{ - {"chan1", 1}, - {"chan2", 2}, + {Name: "chan1", CollectionID: 1}, + {Name: "chan2", CollectionID: 2}, } store := &ChannelStore{ @@ -121,9 +121,9 @@ func TestAverageAssignPolicy(t *testing.T) { memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{}, }, - []*channel{{"chan1", 1}}, + []*channel{{Name: "chan1", CollectionID: 1}}, }, - []*ChannelOp{{Add, bufferID, []*channel{{"chan1", 1}}, nil}}, + []*ChannelOp{{Add, bufferID, []*channel{{Name: "chan1", CollectionID: 1}}, nil}}, }, { "test watch same channel", @@ -131,10 +131,10 @@ func TestAverageAssignPolicy(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"chan1", 1}}}, + 1: {1, []*channel{{Name: "chan1", CollectionID: 1}}}, }, }, - []*channel{{"chan1", 1}}, + []*channel{{Name: "chan1", CollectionID: 1}}, }, nil, }, @@ -144,13 +144,13 @@ func TestAverageAssignPolicy(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"chan1", 1}, {"chan2", 1}}}, - 2: {2, []*channel{{"chan3", 1}}}, + 1: {1, []*channel{{Name: "chan1", CollectionID: 1}, {Name: "chan2", CollectionID: 1}}}, + 2: {2, []*channel{{Name: "chan3", CollectionID: 1}}}, }, }, - []*channel{{"chan4", 1}}, + []*channel{{Name: "chan4", CollectionID: 1}}, }, - []*ChannelOp{{Add, 2, []*channel{{"chan4", 1}}, nil}}, + []*ChannelOp{{Add, 2, []*channel{{Name: "chan4", CollectionID: 1}}, nil}}, }, } for _, tt := range tests { @@ -180,9 +180,9 @@ func TestConsistentHashChannelAssignPolicy(t *testing.T) { memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{}, }, - []*channel{{"chan1", 1}}, + []*channel{{Name: "chan1", CollectionID: 1}}, }, - []*ChannelOp{{Add, bufferID, []*channel{{"chan1", 1}}, nil}}, + []*ChannelOp{{Add, bufferID, []*channel{{Name: "chan1", CollectionID: 1}}, nil}}, }, { "test watch same channel", @@ -191,10 +191,10 @@ func TestConsistentHashChannelAssignPolicy(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"chan1", 1}, {"chan2", 1}}}, + 1: {1, []*channel{{Name: "chan1", CollectionID: 1}, {Name: "chan2", CollectionID: 1}}}, }, }, - []*channel{{"chan1", 1}}, + []*channel{{Name: "chan1", CollectionID: 1}}, }, nil, }, @@ -206,9 +206,9 @@ func TestConsistentHashChannelAssignPolicy(t *testing.T) { memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{1: {1, nil}, 2: {2, nil}, 3: {3, nil}}, }, - []*channel{{"chan1", 1}, {"chan2", 1}, {"chan3", 1}}, + []*channel{{Name: "chan1", CollectionID: 1}, {Name: "chan2", CollectionID: 1}, {Name: "chan3", CollectionID: 1}}, }, - []*ChannelOp{{Add, 2, []*channel{{"chan1", 1}}, nil}, {Add, 1, []*channel{{"chan2", 1}}, nil}, {Add, 3, []*channel{{"chan3", 1}}, nil}}, + []*ChannelOp{{Add, 2, []*channel{{Name: "chan1", CollectionID: 1}}, nil}, {Add, 1, []*channel{{Name: "chan2", CollectionID: 1}}, nil}, {Add, 3, []*channel{{Name: "chan3", CollectionID: 1}}, nil}}, }, } for _, tt := range tests { @@ -239,12 +239,12 @@ func TestAvgAssignUnregisteredChannels(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"chan1", 1}}}, + 1: {1, []*channel{{Name: "chan1", CollectionID: 1}}}, }, }, 1, }, - []*ChannelOp{{Delete, 1, []*channel{{"chan1", 1}}, nil}, {Add, bufferID, []*channel{{"chan1", 1}}, nil}}, + []*ChannelOp{{Delete, 1, []*channel{{Name: "chan1", CollectionID: 1}}, nil}, {Add, bufferID, []*channel{{Name: "chan1", CollectionID: 1}}, nil}}, }, { "test rebalance channels after deregister", @@ -252,14 +252,14 @@ func TestAvgAssignUnregisteredChannels(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"chan1", 1}}}, - 2: {2, []*channel{{"chan2", 1}}}, + 1: {1, []*channel{{Name: "chan1", CollectionID: 1}}}, + 2: {2, []*channel{{Name: "chan2", CollectionID: 1}}}, 3: {3, []*channel{}}, }, }, 2, }, - []*ChannelOp{{Delete, 2, []*channel{{"chan2", 1}}, nil}, {Add, 3, []*channel{{"chan2", 1}}, nil}}, + []*ChannelOp{{Delete, 2, []*channel{{Name: "chan2", CollectionID: 1}}, nil}, {Add, 3, []*channel{{Name: "chan2", CollectionID: 1}}, nil}}, }, } for _, tt := range tests { @@ -288,12 +288,12 @@ func TestConsistentHashDeregisterPolicy(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"chan1", 1}}}, + 1: {1, []*channel{{Name: "chan1", CollectionID: 1}}}, }, }, 1, }, - []*ChannelOp{{Delete, 1, []*channel{{"chan1", 1}}, nil}, {Add, bufferID, []*channel{{"chan1", 1}}, nil}}, + []*ChannelOp{{Delete, 1, []*channel{{Name: "chan1", CollectionID: 1}}, nil}, {Add, bufferID, []*channel{{Name: "chan1", CollectionID: 1}}, nil}}, }, { "rebalance after deregister", @@ -302,14 +302,14 @@ func TestConsistentHashDeregisterPolicy(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"chan2", 1}}}, - 2: {2, []*channel{{"chan1", 1}}}, - 3: {3, []*channel{{"chan3", 1}}}, + 1: {1, []*channel{{Name: "chan2", CollectionID: 1}}}, + 2: {2, []*channel{{Name: "chan1", CollectionID: 1}}}, + 3: {3, []*channel{{Name: "chan3", CollectionID: 1}}}, }, }, 2, }, - []*ChannelOp{{Delete, 2, []*channel{{"chan1", 1}}, nil}, {Add, 1, []*channel{{"chan1", 1}}, nil}}, + []*ChannelOp{{Delete, 2, []*channel{{Name: "chan1", CollectionID: 1}}, nil}, {Add, 1, []*channel{{Name: "chan1", CollectionID: 1}}, nil}}, }, } for _, tt := range tests { @@ -337,10 +337,10 @@ func TestAverageReassignPolicy(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"chan1", 1}}}, + 1: {1, []*channel{{Name: "chan1", CollectionID: 1}}}, }, }, - []*NodeChannelInfo{{1, []*channel{{"chan1", 1}}}}, + []*NodeChannelInfo{{1, []*channel{{Name: "chan1", CollectionID: 1}}}}, }, nil, }, @@ -350,13 +350,13 @@ func TestAverageReassignPolicy(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"chan1", 1}, {"chan2", 1}}}, + 1: {1, []*channel{{Name: "chan1", CollectionID: 1}, {Name: "chan2", CollectionID: 1}}}, 2: {2, []*channel{}}, }, }, - []*NodeChannelInfo{{1, []*channel{{"chan1", 1}, {"chan2", 1}}}}, + []*NodeChannelInfo{{1, []*channel{{Name: "chan1", CollectionID: 1}, {Name: "chan2", CollectionID: 1}}}}, }, - []*ChannelOp{{Delete, 1, []*channel{{"chan1", 1}, {"chan2", 1}}, nil}, {Add, 2, []*channel{{"chan1", 1}, {"chan2", 1}}, nil}}, + []*ChannelOp{{Delete, 1, []*channel{{Name: "chan1", CollectionID: 1}, {Name: "chan2", CollectionID: 1}}, nil}, {Add, 2, []*channel{{Name: "chan1", CollectionID: 1}, {Name: "chan2", CollectionID: 1}}, nil}}, }, } for _, tt := range tests { @@ -401,17 +401,17 @@ func TestBgCheckWithMaxWatchDuration(t *testing.T) { args{ getKv([]*watch{{1, "chan1", &datapb.ChannelWatchInfo{StartTs: ts.Unix(), State: datapb.ChannelWatchState_Uncomplete}}, {1, "chan2", &datapb.ChannelWatchInfo{StartTs: ts.Unix(), State: datapb.ChannelWatchState_Complete}}}), - []*NodeChannelInfo{{1, []*channel{{"chan1", 1}, {"chan2", 1}}}}, + []*NodeChannelInfo{{1, []*channel{{Name: "chan1", CollectionID: 1}, {Name: "chan2", CollectionID: 1}}}}, ts.Add(maxWatchDuration), }, - []*NodeChannelInfo{{1, []*channel{{"chan1", 1}}}}, + []*NodeChannelInfo{{1, []*channel{{Name: "chan1", CollectionID: 1}}}}, nil, }, { "test no expiration", args{ getKv([]*watch{{1, "chan1", &datapb.ChannelWatchInfo{StartTs: ts.Unix(), State: datapb.ChannelWatchState_Uncomplete}}}), - []*NodeChannelInfo{{1, []*channel{{"chan1", 1}}}}, + []*NodeChannelInfo{{1, []*channel{{Name: "chan1", CollectionID: 1}}}}, ts.Add(maxWatchDuration).Add(-time.Second), }, []*NodeChannelInfo{}, @@ -455,7 +455,7 @@ func TestAvgAssignRegisterPolicy(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - bufferID: {bufferID, []*channel{{"ch1", 1}}}, + bufferID: {bufferID, []*channel{{Name: "ch1", CollectionID: 1}}}, }, }, 1, @@ -464,12 +464,12 @@ func TestAvgAssignRegisterPolicy(t *testing.T) { { Type: Delete, NodeID: bufferID, - Channels: []*channel{{"ch1", 1}}, + Channels: []*channel{{Name: "ch1", CollectionID: 1}}, }, { Type: Add, NodeID: 1, - Channels: []*channel{{"ch1", 1}}, + Channels: []*channel{{Name: "ch1", CollectionID: 1}}, }, }, }, @@ -479,7 +479,7 @@ func TestAvgAssignRegisterPolicy(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"ch1", 1}, {"ch2", 1}}}, + 1: {1, []*channel{{Name: "ch1", CollectionID: 1}, {Name: "ch2", CollectionID: 1}}}, }, }, 3, @@ -488,7 +488,7 @@ func TestAvgAssignRegisterPolicy(t *testing.T) { { Type: Add, NodeID: 1, - Channels: []*channel{{"ch1", 1}}, + Channels: []*channel{{Name: "ch1", CollectionID: 1}}, }, }, }, @@ -498,8 +498,8 @@ func TestAvgAssignRegisterPolicy(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"ch1", 1}}}, - 2: {2, []*channel{{"ch3", 1}}}, + 1: {1, []*channel{{Name: "ch1", CollectionID: 1}}}, + 2: {2, []*channel{{Name: "ch3", CollectionID: 1}}}, }, }, 3, @@ -512,7 +512,7 @@ func TestAvgAssignRegisterPolicy(t *testing.T) { &ChannelStore{ memkv.NewMemoryKV(), map[int64]*NodeChannelInfo{ - 1: {1, []*channel{{"ch1", 1}, {"ch2", 1}, {"ch3", 1}}}, + 1: {1, []*channel{{Name: "ch1", CollectionID: 1}, {Name: "ch2", CollectionID: 1}, {Name: "ch3", CollectionID: 1}}}, 2: {2, []*channel{}}, }, }, @@ -522,7 +522,7 @@ func TestAvgAssignRegisterPolicy(t *testing.T) { { Type: Add, NodeID: 1, - Channels: []*channel{{"ch1", 1}}, + Channels: []*channel{{Name: "ch1", CollectionID: 1}}, }, }, }, diff --git a/internal/datacoord/server_test.go b/internal/datacoord/server_test.go index 78fc400a15889845d8e22ebf9a8d0ab9fe318e07..a4c06f2b6f987e5b151d40072b512bb7a9f7b9f7 100644 --- a/internal/datacoord/server_test.go +++ b/internal/datacoord/server_test.go @@ -30,6 +30,7 @@ import ( "testing" "time" + "github.com/milvus-io/milvus/internal/util/funcutil" "github.com/milvus-io/milvus/internal/util/typeutil" "github.com/minio/minio-go/v7" @@ -1079,7 +1080,7 @@ func TestSaveBinlogPaths(t *testing.T) { err := svr.channelManager.AddNode(0) assert.Nil(t, err) - err = svr.channelManager.Watch(&channel{"ch1", 0}) + err = svr.channelManager.Watch(&channel{Name: "ch1", CollectionID: 0}) assert.Nil(t, err) ctx := context.Background() @@ -1142,7 +1143,7 @@ func TestSaveBinlogPaths(t *testing.T) { defer closeTestServer(t, svr) err := svr.channelManager.AddNode(0) require.Nil(t, err) - err = svr.channelManager.Watch(&channel{"ch1", 0}) + err = svr.channelManager.Watch(&channel{Name: "ch1", CollectionID: 0}) require.Nil(t, err) s := &datapb.SegmentInfo{ ID: 1, @@ -1185,7 +1186,7 @@ func TestSaveBinlogPaths(t *testing.T) { err = svr.channelManager.AddNode(0) assert.Nil(t, err) - err = svr.channelManager.Watch(&channel{"ch1", 1}) + err = svr.channelManager.Watch(&channel{Name: "ch1", CollectionID: 1}) assert.Nil(t, err) _, err = svr.SaveBinlogPaths(context.TODO(), &datapb.SaveBinlogPathsRequest{ @@ -1248,7 +1249,7 @@ func TestDropVirtualChannel(t *testing.T) { err := svr.channelManager.AddNode(0) require.Nil(t, err) - err = svr.channelManager.Watch(&channel{"ch1", 0}) + err = svr.channelManager.Watch(&channel{Name: "ch1", CollectionID: 0}) require.Nil(t, err) ctx := context.Background() @@ -1321,7 +1322,7 @@ func TestDropVirtualChannel(t *testing.T) { <-spyCh - err = svr.channelManager.Watch(&channel{"ch1", 0}) + err = svr.channelManager.Watch(&channel{Name: "ch1", CollectionID: 0}) require.Nil(t, err) //resend @@ -1336,7 +1337,7 @@ func TestDropVirtualChannel(t *testing.T) { defer closeTestServer(t, svr) err := svr.channelManager.AddNode(0) require.Nil(t, err) - err = svr.channelManager.Watch(&channel{"ch1", 0}) + err = svr.channelManager.Watch(&channel{Name: "ch1", CollectionID: 0}) require.Nil(t, err) resp, err := svr.DropVirtualChannel(context.Background(), &datapb.DropVirtualChannelRequest{ @@ -1661,13 +1662,13 @@ func TestGetVChannelPos(t *testing.T) { assert.Nil(t, err) t.Run("get unexisted channel", func(t *testing.T) { - vchan := svr.handler.GetVChanPositions("chx1", 0, allPartitionID) + vchan := svr.handler.GetVChanPositions(&channel{Name: "chx1", CollectionID: 0}, allPartitionID) assert.Empty(t, vchan.UnflushedSegmentIds) assert.Empty(t, vchan.FlushedSegmentIds) }) t.Run("get existed channel", func(t *testing.T) { - vchan := svr.handler.GetVChanPositions("ch1", 0, allPartitionID) + vchan := svr.handler.GetVChanPositions(&channel{Name: "ch1", CollectionID: 0}, allPartitionID) assert.EqualValues(t, 1, len(vchan.FlushedSegmentIds)) assert.EqualValues(t, 1, vchan.FlushedSegmentIds[0]) assert.EqualValues(t, 2, len(vchan.UnflushedSegmentIds)) @@ -1675,7 +1676,7 @@ func TestGetVChannelPos(t *testing.T) { }) t.Run("empty collection", func(t *testing.T) { - infos := svr.handler.GetVChanPositions("ch0_suffix", 1, allPartitionID) + infos := svr.handler.GetVChanPositions(&channel{Name: "ch0_suffix", CollectionID: 1}, allPartitionID) assert.EqualValues(t, 1, infos.CollectionID) assert.EqualValues(t, 0, len(infos.FlushedSegmentIds)) assert.EqualValues(t, 0, len(infos.UnflushedSegmentIds)) @@ -1683,12 +1684,25 @@ func TestGetVChannelPos(t *testing.T) { }) t.Run("filter partition", func(t *testing.T) { - infos := svr.handler.GetVChanPositions("ch1", 0, 1) + infos := svr.handler.GetVChanPositions(&channel{Name: "ch1", CollectionID: 0}, 1) assert.EqualValues(t, 0, infos.CollectionID) assert.EqualValues(t, 0, len(infos.FlushedSegmentIds)) assert.EqualValues(t, 1, len(infos.UnflushedSegmentIds)) assert.EqualValues(t, []byte{11, 12, 13}, infos.SeekPosition.MsgID) }) + + t.Run("empty collection with passed positions", func(t *testing.T) { + vchannel := "ch_no_segment_1" + pchannel := funcutil.ToPhysicalChannel(vchannel) + infos := svr.handler.GetVChanPositions(&channel{ + Name: vchannel, + CollectionID: 0, + StartPositions: []*commonpb.KeyDataPair{{Key: pchannel, Data: []byte{14, 15, 16}}}, + }, allPartitionID) + assert.EqualValues(t, 0, infos.CollectionID) + assert.EqualValues(t, vchannel, infos.ChannelName) + assert.EqualValues(t, []byte{14, 15, 16}, infos.SeekPosition.MsgID) + }) } func TestShouldDropChannel(t *testing.T) { @@ -1995,7 +2009,7 @@ func TestGetRecoveryInfo(t *testing.T) { err = svr.channelManager.AddNode(0) assert.Nil(t, err) - err = svr.channelManager.Watch(&channel{"ch1", 0}) + err = svr.channelManager.Watch(&channel{Name: "ch1", CollectionID: 0}) assert.Nil(t, err) sResp, err := svr.SaveBinlogPaths(context.TODO(), binlogReq) @@ -2686,7 +2700,7 @@ func TestDataCoord_Import(t *testing.T) { err := svr.channelManager.AddNode(0) assert.Nil(t, err) - err = svr.channelManager.Watch(&channel{"ch1", 0}) + err = svr.channelManager.Watch(&channel{Name: "ch1", CollectionID: 0}) assert.Nil(t, err) resp, err := svr.Import(svr.ctx, &datapb.ImportTaskRequest{ @@ -2706,7 +2720,7 @@ func TestDataCoord_Import(t *testing.T) { err := svr.channelManager.AddNode(0) assert.Nil(t, err) - err = svr.channelManager.Watch(&channel{"ch1", 0}) + err = svr.channelManager.Watch(&channel{Name: "ch1", CollectionID: 0}) assert.Nil(t, err) resp, err := svr.Import(svr.ctx, &datapb.ImportTaskRequest{ @@ -2811,7 +2825,7 @@ func TestDataCoord_AddSegment(t *testing.T) { err := svr.channelManager.AddNode(110) assert.Nil(t, err) - err = svr.channelManager.Watch(&channel{"ch1", 100}) + err = svr.channelManager.Watch(&channel{Name: "ch1", CollectionID: 100}) assert.Nil(t, err) status, err := svr.AddSegment(context.TODO(), &datapb.AddSegmentRequest{ @@ -2831,7 +2845,7 @@ func TestDataCoord_AddSegment(t *testing.T) { err := svr.channelManager.AddNode(110) assert.Nil(t, err) - err = svr.channelManager.Watch(&channel{"ch1", 100}) + err = svr.channelManager.Watch(&channel{Name: "ch1", CollectionID: 100}) assert.Nil(t, err) status, err := svr.AddSegment(context.TODO(), &datapb.AddSegmentRequest{ diff --git a/internal/datacoord/services.go b/internal/datacoord/services.go index 38610dc5320ab78986602f64f92c87e48faeb2fb..3c83c26dc5faf89e43ed6ea41936885bb47886f3 100644 --- a/internal/datacoord/services.go +++ b/internal/datacoord/services.go @@ -662,7 +662,7 @@ func (s *Server) GetRecoveryInfo(ctx context.Context, req *datapb.GetRecoveryInf channels := dresp.GetVirtualChannelNames() channelInfos := make([]*datapb.VchannelInfo, 0, len(channels)) for _, c := range channels { - channelInfo := s.handler.GetVChanPositions(c, collectionID, partitionID) + channelInfo := s.handler.GetVChanPositions(&channel{Name: c, CollectionID: collectionID}, partitionID) channelInfos = append(channelInfos, channelInfo) log.Debug("datacoord append channelInfo in GetRecoveryInfo", zap.Any("collectionID", collectionID), @@ -1010,8 +1010,9 @@ func (s *Server) WatchChannels(ctx context.Context, req *datapb.WatchChannelsReq } for _, channelName := range req.GetChannelNames() { ch := &channel{ - Name: channelName, - CollectionID: req.GetCollectionID(), + Name: channelName, + CollectionID: req.GetCollectionID(), + StartPositions: req.GetStartPositions(), } err := s.channelManager.Watch(ch) if err != nil { diff --git a/internal/distributed/rootcoord/service_test.go b/internal/distributed/rootcoord/service_test.go index aa4bf309c790ae0322c6e3eed558aa00fdf8ab02..3d417196712e6cac0215136aab6efc9d5689cd13 100644 --- a/internal/distributed/rootcoord/service_test.go +++ b/internal/distributed/rootcoord/service_test.go @@ -177,7 +177,7 @@ func TestGrpcService(t *testing.T) { }, nil } - core.CallWatchChannels = func(ctx context.Context, collectionID int64, channelNames []string) error { + core.CallWatchChannels = func(ctx context.Context, collectionID int64, channelNames []string, startPositions []*commonpb.KeyDataPair) error { return nil } diff --git a/internal/proto/data_coord.proto b/internal/proto/data_coord.proto index aba6a3bbf0c6a48bffc8a3afd118e9669708c110..a5a361d503f0dd3c91f4124928ad85cecc84b618 100644 --- a/internal/proto/data_coord.proto +++ b/internal/proto/data_coord.proto @@ -429,6 +429,7 @@ message SegmentFieldBinlogMeta { message WatchChannelsRequest { int64 collectionID = 1; repeated string channelNames = 2; + repeated common.KeyDataPair start_positions = 3; } message WatchChannelsResponse { diff --git a/internal/proto/datapb/data_coord.pb.go b/internal/proto/datapb/data_coord.pb.go index 136b222c34603f9636c05a1ed06085ca0123ae6d..7ea8f657ac83b33be472083a3d297b152faa0d90 100644 --- a/internal/proto/datapb/data_coord.pb.go +++ b/internal/proto/datapb/data_coord.pb.go @@ -3077,11 +3077,12 @@ func (m *SegmentFieldBinlogMeta) GetBinlogPath() string { } type WatchChannelsRequest struct { - CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"` - ChannelNames []string `protobuf:"bytes,2,rep,name=channelNames,proto3" json:"channelNames,omitempty"` - XXX_NoUnkeyedLiteral struct{} `json:"-"` - XXX_unrecognized []byte `json:"-"` - XXX_sizecache int32 `json:"-"` + CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"` + ChannelNames []string `protobuf:"bytes,2,rep,name=channelNames,proto3" json:"channelNames,omitempty"` + StartPositions []*commonpb.KeyDataPair `protobuf:"bytes,3,rep,name=start_positions,json=startPositions,proto3" json:"start_positions,omitempty"` + XXX_NoUnkeyedLiteral struct{} `json:"-"` + XXX_unrecognized []byte `json:"-"` + XXX_sizecache int32 `json:"-"` } func (m *WatchChannelsRequest) Reset() { *m = WatchChannelsRequest{} } @@ -3123,6 +3124,13 @@ func (m *WatchChannelsRequest) GetChannelNames() []string { return nil } +func (m *WatchChannelsRequest) GetStartPositions() []*commonpb.KeyDataPair { + if m != nil { + return m.StartPositions + } + return nil +} + type WatchChannelsResponse struct { Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -4189,243 +4197,243 @@ func init() { func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) } var fileDescriptor_82cd95f524594f49 = []byte{ - // 3773 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3b, 0x5b, 0x6f, 0x1b, 0xc7, - 0xd5, 0x5e, 0xde, 0x44, 0x1e, 0x5e, 0x44, 0x8d, 0x1d, 0x99, 0xa6, 0x6d, 0xd9, 0x5e, 0xc7, 0x8e, - 0xe3, 0x38, 0x76, 0x22, 0x7f, 0x41, 0x82, 0x2f, 0x37, 0x58, 0x96, 0x2d, 0x13, 0x9f, 0xe4, 0x4f, - 0x5e, 0xc9, 0x71, 0xd1, 0x14, 0x25, 0x56, 0xdc, 0x11, 0xb5, 0x11, 0x77, 0x97, 0xde, 0x5d, 0x5a, - 0x56, 0xfa, 0x90, 0xa0, 0x01, 0x0a, 0xa4, 0x28, 0x9a, 0x02, 0x45, 0x81, 0x16, 0x68, 0x81, 0xa2, - 0x4f, 0x6d, 0x81, 0x02, 0x05, 0x82, 0x3e, 0xb4, 0x45, 0xde, 0x83, 0xf6, 0xa1, 0xe8, 0x5b, 0xff, - 0x41, 0x8b, 0x3e, 0xf4, 0x37, 0x14, 0x73, 0xd9, 0xd9, 0x3b, 0xb9, 0xa2, 0xec, 0xb8, 0xe8, 0x1b, - 0xe7, 0xec, 0x99, 0x99, 0x33, 0xe7, 0x7e, 0xce, 0x0c, 0xa1, 0xa9, 0xa9, 0xae, 0xda, 0xed, 0x59, - 0x96, 0xad, 0x5d, 0x1d, 0xda, 0x96, 0x6b, 0xa1, 0x39, 0x43, 0x1f, 0x3c, 0x1a, 0x39, 0x6c, 0x74, - 0x95, 0x7c, 0x6e, 0xd7, 0x7a, 0x96, 0x61, 0x58, 0x26, 0x03, 0xb5, 0x1b, 0xba, 0xe9, 0x62, 0xdb, - 0x54, 0x07, 0x7c, 0x5c, 0x0b, 0x4e, 0x68, 0xd7, 0x9c, 0xde, 0x0e, 0x36, 0x54, 0x36, 0x92, 0x67, - 0xa0, 0x78, 0xcb, 0x18, 0xba, 0xfb, 0xf2, 0x8f, 0x25, 0xa8, 0xdd, 0x1e, 0x8c, 0x9c, 0x1d, 0x05, - 0x3f, 0x1c, 0x61, 0xc7, 0x45, 0xaf, 0x40, 0x61, 0x4b, 0x75, 0x70, 0x4b, 0x3a, 0x2b, 0x5d, 0xaa, - 0x2e, 0x9e, 0xba, 0x1a, 0xda, 0x95, 0xef, 0xb7, 0xe6, 0xf4, 0x97, 0x54, 0x07, 0x2b, 0x14, 0x13, - 0x21, 0x28, 0x68, 0x5b, 0x9d, 0xe5, 0x56, 0xee, 0xac, 0x74, 0x29, 0xaf, 0xd0, 0xdf, 0x68, 0x01, - 0xc0, 0xc1, 0x7d, 0x03, 0x9b, 0x6e, 0x67, 0xd9, 0x69, 0xe5, 0xcf, 0xe6, 0x2f, 0xe5, 0x95, 0x00, - 0x04, 0xc9, 0x50, 0xeb, 0x59, 0x83, 0x01, 0xee, 0xb9, 0xba, 0x65, 0x76, 0x96, 0x5b, 0x05, 0x3a, - 0x37, 0x04, 0x93, 0x7f, 0x2a, 0x41, 0x9d, 0x93, 0xe6, 0x0c, 0x2d, 0xd3, 0xc1, 0xe8, 0x3a, 0x94, - 0x1c, 0x57, 0x75, 0x47, 0x0e, 0xa7, 0xee, 0x64, 0x22, 0x75, 0x1b, 0x14, 0x45, 0xe1, 0xa8, 0x89, - 0xe4, 0x45, 0xb7, 0xcf, 0xc7, 0xb7, 0x8f, 0x1c, 0xa1, 0x10, 0x3d, 0x82, 0xfc, 0x57, 0x09, 0x9a, - 0x1b, 0xde, 0xd0, 0xe3, 0xde, 0x31, 0x28, 0xf6, 0xac, 0x91, 0xe9, 0x52, 0x02, 0xeb, 0x0a, 0x1b, - 0xa0, 0x73, 0x50, 0xeb, 0xed, 0xa8, 0xa6, 0x89, 0x07, 0x5d, 0x53, 0x35, 0x30, 0x25, 0xa5, 0xa2, - 0x54, 0x39, 0xec, 0xae, 0x6a, 0xe0, 0x4c, 0x14, 0x9d, 0x85, 0xea, 0x50, 0xb5, 0x5d, 0x3d, 0xc4, - 0xb3, 0x20, 0x08, 0xb5, 0xa1, 0xac, 0x3b, 0x1d, 0x63, 0x68, 0xd9, 0x6e, 0xab, 0x78, 0x56, 0xba, - 0x54, 0x56, 0xc4, 0x98, 0xec, 0xa0, 0xd3, 0x5f, 0x9b, 0xaa, 0xb3, 0xdb, 0x59, 0x6e, 0x95, 0xd8, - 0x0e, 0x41, 0x98, 0xfc, 0x73, 0x09, 0xe6, 0x6f, 0x38, 0x8e, 0xde, 0x37, 0x63, 0x27, 0x9b, 0x87, - 0x92, 0x69, 0x69, 0xb8, 0xb3, 0x4c, 0x8f, 0x96, 0x57, 0xf8, 0x08, 0x9d, 0x84, 0xca, 0x10, 0x63, - 0xbb, 0x6b, 0x5b, 0x03, 0xef, 0x60, 0x65, 0x02, 0x50, 0xac, 0x01, 0x46, 0xf7, 0x60, 0xce, 0x89, - 0x2c, 0xc4, 0xb4, 0xa1, 0xba, 0x78, 0xfe, 0x6a, 0x4c, 0x9f, 0xaf, 0x46, 0x37, 0x55, 0xe2, 0xb3, - 0xe5, 0x8f, 0x73, 0x70, 0x54, 0xe0, 0x31, 0x5a, 0xc9, 0x6f, 0xc2, 0x79, 0x07, 0xf7, 0x05, 0x79, - 0x6c, 0x90, 0x85, 0xf3, 0x42, 0x64, 0xf9, 0xa0, 0xc8, 0x32, 0x28, 0x68, 0x54, 0x1e, 0xc5, 0xb8, - 0x3c, 0xce, 0x40, 0x15, 0x3f, 0x1e, 0xea, 0x36, 0xee, 0xba, 0xba, 0x81, 0x29, 0xcb, 0x0b, 0x0a, - 0x30, 0xd0, 0xa6, 0x6e, 0x04, 0x35, 0x7a, 0x26, 0xb3, 0x46, 0xcb, 0xbf, 0x90, 0xe0, 0x78, 0x4c, - 0x4a, 0xdc, 0x44, 0x14, 0x68, 0xd2, 0x93, 0xfb, 0x9c, 0x21, 0xc6, 0x42, 0x18, 0x7e, 0x71, 0x1c, - 0xc3, 0x7d, 0x74, 0x25, 0x36, 0x3f, 0x40, 0x64, 0x2e, 0x3b, 0x91, 0xbb, 0x70, 0x7c, 0x05, 0xbb, - 0x7c, 0x03, 0xf2, 0x0d, 0x3b, 0xd3, 0xbb, 0x98, 0xb0, 0x2d, 0xe6, 0x62, 0xb6, 0xf8, 0xdb, 0x9c, - 0xb0, 0x45, 0xba, 0x55, 0xc7, 0xdc, 0xb6, 0xd0, 0x29, 0xa8, 0x08, 0x14, 0xae, 0x15, 0x3e, 0x00, - 0xbd, 0x0e, 0x45, 0x42, 0x29, 0x53, 0x89, 0xc6, 0xe2, 0xb9, 0xe4, 0x33, 0x05, 0xd6, 0x54, 0x18, - 0x3e, 0xea, 0x40, 0xc3, 0x71, 0x55, 0xdb, 0xed, 0x0e, 0x2d, 0x87, 0xca, 0x99, 0x2a, 0x4e, 0x75, - 0x51, 0x0e, 0xaf, 0x20, 0x9c, 0xf1, 0x9a, 0xd3, 0x5f, 0xe7, 0x98, 0x4a, 0x9d, 0xce, 0xf4, 0x86, - 0xe8, 0x16, 0xd4, 0xb0, 0xa9, 0xf9, 0x0b, 0x15, 0x32, 0x2f, 0x54, 0xc5, 0xa6, 0x26, 0x96, 0xf1, - 0xe5, 0x53, 0xcc, 0x2e, 0x9f, 0xef, 0x49, 0xd0, 0x8a, 0x0b, 0xe8, 0x30, 0x8e, 0xf6, 0x4d, 0x36, - 0x09, 0x33, 0x01, 0x8d, 0xb5, 0x70, 0x21, 0x24, 0x85, 0x4f, 0x91, 0x7f, 0x24, 0xc1, 0x73, 0x3e, - 0x39, 0xf4, 0xd3, 0xd3, 0xd2, 0x16, 0x74, 0x19, 0x9a, 0xba, 0xd9, 0x1b, 0x8c, 0x34, 0x7c, 0xdf, - 0xbc, 0x83, 0xd5, 0x81, 0xbb, 0xb3, 0x4f, 0x65, 0x58, 0x56, 0x62, 0x70, 0xf9, 0x13, 0x09, 0xe6, - 0xa3, 0x74, 0x1d, 0x86, 0x49, 0xff, 0x03, 0x45, 0xdd, 0xdc, 0xb6, 0x3c, 0x1e, 0x2d, 0x8c, 0x31, - 0x4a, 0xb2, 0x17, 0x43, 0x96, 0x0d, 0x38, 0xb9, 0x82, 0xdd, 0x8e, 0xe9, 0x60, 0xdb, 0x5d, 0xd2, - 0xcd, 0x81, 0xd5, 0x5f, 0x57, 0xdd, 0x9d, 0x43, 0x18, 0x54, 0xc8, 0x36, 0x72, 0x11, 0xdb, 0x90, - 0x7f, 0x29, 0xc1, 0xa9, 0xe4, 0xfd, 0xf8, 0xd1, 0xdb, 0x50, 0xde, 0xd6, 0xf1, 0x40, 0x23, 0xfc, - 0x95, 0x28, 0x7f, 0xc5, 0x98, 0x18, 0xd6, 0x90, 0x20, 0xf3, 0x13, 0x9e, 0x4b, 0xd1, 0xe6, 0x0d, - 0xd7, 0xd6, 0xcd, 0xfe, 0xaa, 0xee, 0xb8, 0x0a, 0xc3, 0x0f, 0xf0, 0x33, 0x9f, 0x5d, 0x8d, 0xbf, - 0x2b, 0xc1, 0xc2, 0x0a, 0x76, 0x6f, 0x0a, 0xbf, 0x4c, 0xbe, 0xeb, 0x8e, 0xab, 0xf7, 0x9c, 0x27, - 0x9b, 0xd1, 0x64, 0x08, 0xd0, 0xf2, 0x67, 0x12, 0x9c, 0x49, 0x25, 0x86, 0xb3, 0x8e, 0xfb, 0x1d, - 0xcf, 0x2b, 0x27, 0xfb, 0x9d, 0xff, 0xc3, 0xfb, 0xef, 0xa9, 0x83, 0x11, 0x5e, 0x57, 0x75, 0x9b, - 0xf9, 0x9d, 0x29, 0xbd, 0xf0, 0x6f, 0x24, 0x38, 0xbd, 0x82, 0xdd, 0x75, 0x2f, 0x26, 0x3d, 0x43, - 0xee, 0x10, 0x9c, 0x40, 0x6c, 0xf4, 0x52, 0xaa, 0x10, 0x4c, 0xfe, 0x3e, 0x13, 0x67, 0x22, 0xbd, - 0xcf, 0x84, 0x81, 0x0b, 0xd4, 0x12, 0x02, 0x26, 0x79, 0x93, 0xa5, 0x0e, 0x9c, 0x7d, 0xf2, 0xcf, - 0x24, 0x38, 0x71, 0xa3, 0xf7, 0x70, 0xa4, 0xdb, 0x98, 0x23, 0xad, 0x5a, 0xbd, 0xdd, 0xe9, 0x99, - 0xeb, 0xa7, 0x59, 0xb9, 0x50, 0x9a, 0x35, 0x29, 0xa1, 0x9e, 0x87, 0x92, 0xcb, 0xf2, 0x3a, 0x96, - 0xa9, 0xf0, 0x11, 0xa5, 0x4f, 0xc1, 0x03, 0xac, 0x3a, 0xff, 0x99, 0xf4, 0x7d, 0x56, 0x80, 0xda, - 0x7b, 0x3c, 0x1d, 0xa3, 0x51, 0x3b, 0xaa, 0x49, 0x52, 0x72, 0xe2, 0x15, 0xc8, 0xe0, 0x92, 0x92, - 0xba, 0x15, 0xa8, 0x3b, 0x18, 0xef, 0x4e, 0x13, 0xa3, 0x6b, 0x64, 0xa2, 0x88, 0xad, 0xab, 0x30, - 0x37, 0x32, 0xb7, 0x49, 0x15, 0x82, 0x35, 0xce, 0x40, 0xa6, 0xb9, 0x93, 0x7d, 0x77, 0x7c, 0x22, - 0xba, 0x03, 0xb3, 0xd1, 0xb5, 0x8a, 0x99, 0xd6, 0x8a, 0x4e, 0x43, 0x1d, 0x68, 0x6a, 0xb6, 0x35, - 0x1c, 0x62, 0xad, 0xeb, 0x78, 0x4b, 0x95, 0xb2, 0x2d, 0xc5, 0xe7, 0x89, 0xa5, 0x5e, 0x81, 0xa3, - 0x51, 0x4a, 0x3b, 0x1a, 0x49, 0x48, 0x89, 0x0c, 0x93, 0x3e, 0xa1, 0x2b, 0x30, 0x17, 0xc7, 0x2f, - 0x53, 0xfc, 0xf8, 0x07, 0xf4, 0x32, 0xa0, 0x08, 0xa9, 0x04, 0xbd, 0xc2, 0xd0, 0xc3, 0xc4, 0x74, - 0x34, 0x47, 0xfe, 0x54, 0x82, 0xf9, 0x07, 0xaa, 0xdb, 0xdb, 0x59, 0x36, 0xb8, 0xad, 0x1d, 0xc2, - 0x57, 0xbd, 0x0d, 0x95, 0x47, 0x5c, 0x2f, 0xbc, 0x80, 0x74, 0x26, 0x81, 0x3f, 0x41, 0x0d, 0x54, - 0xfc, 0x19, 0xf2, 0x97, 0x12, 0x1c, 0xa3, 0x25, 0xa8, 0xc7, 0xac, 0xaf, 0xde, 0x6b, 0x4e, 0x28, - 0x43, 0xd1, 0x45, 0x68, 0x18, 0xaa, 0xbd, 0xbb, 0xe1, 0xe3, 0x14, 0x29, 0x4e, 0x04, 0x2a, 0x3f, - 0x06, 0xe0, 0xa3, 0x35, 0xa7, 0x3f, 0x05, 0xfd, 0x6f, 0xc0, 0x0c, 0xdf, 0x95, 0xbb, 0xcf, 0x49, - 0x7a, 0xe6, 0xa1, 0xcb, 0x7f, 0x92, 0xa0, 0xe1, 0x87, 0x44, 0x6a, 0xe4, 0x0d, 0xc8, 0x09, 0xd3, - 0xce, 0x75, 0x96, 0xd1, 0xdb, 0x50, 0x62, 0xed, 0x09, 0xbe, 0xf6, 0x85, 0xf0, 0xda, 0xbc, 0x75, - 0x11, 0x88, 0xab, 0x14, 0xa0, 0xf0, 0x49, 0x84, 0x47, 0x22, 0x8a, 0x08, 0xe7, 0xe3, 0x43, 0x50, - 0x07, 0x66, 0xc3, 0x29, 0xbb, 0x67, 0xc2, 0x67, 0xd3, 0x82, 0xc7, 0xb2, 0xea, 0xaa, 0x34, 0x76, - 0x34, 0x42, 0x19, 0xbb, 0x23, 0xff, 0xab, 0x08, 0xd5, 0xc0, 0x29, 0x63, 0x27, 0x89, 0x8a, 0x34, - 0x37, 0xb9, 0x6e, 0xcc, 0xc7, 0xeb, 0xc6, 0x0b, 0xd0, 0xd0, 0x69, 0xf2, 0xd5, 0xe5, 0xaa, 0x48, - 0xbd, 0x66, 0x45, 0xa9, 0x33, 0x28, 0xb7, 0x0b, 0xb4, 0x00, 0x55, 0x73, 0x64, 0x74, 0xad, 0xed, - 0xae, 0x6d, 0xed, 0x39, 0xbc, 0x00, 0xad, 0x98, 0x23, 0xe3, 0xff, 0xb7, 0x15, 0x6b, 0xcf, 0xf1, - 0x6b, 0x9c, 0xd2, 0x01, 0x6b, 0x9c, 0x05, 0xa8, 0x1a, 0xea, 0x63, 0xb2, 0x6a, 0xd7, 0x1c, 0x19, - 0xb4, 0x36, 0xcd, 0x2b, 0x15, 0x43, 0x7d, 0xac, 0x58, 0x7b, 0x77, 0x47, 0x06, 0xba, 0x04, 0xcd, - 0x81, 0xea, 0xb8, 0xdd, 0x60, 0x71, 0x5b, 0xa6, 0xc5, 0x6d, 0x83, 0xc0, 0x6f, 0xf9, 0x05, 0x6e, - 0xbc, 0x5a, 0xaa, 0x1c, 0xa2, 0x5a, 0xd2, 0x8c, 0x81, 0xbf, 0x10, 0x64, 0xaf, 0x96, 0x34, 0x63, - 0x20, 0x96, 0x79, 0x03, 0x66, 0xb6, 0x68, 0x4a, 0xeb, 0xb4, 0xaa, 0xa9, 0x0e, 0xf3, 0x36, 0xc9, - 0x66, 0x59, 0xe6, 0xab, 0x78, 0xe8, 0xe8, 0x2d, 0xa8, 0xd0, 0x4c, 0x82, 0xce, 0xad, 0x65, 0x9a, - 0xeb, 0x4f, 0x20, 0xb3, 0x35, 0x3c, 0x70, 0x55, 0x3a, 0xbb, 0x9e, 0x6d, 0xb6, 0x98, 0x40, 0x9c, - 0x74, 0xcf, 0xc6, 0xaa, 0x8b, 0xb5, 0xa5, 0xfd, 0x9b, 0x96, 0x31, 0x54, 0xa9, 0x32, 0xb5, 0x1a, - 0xb4, 0x6c, 0x49, 0xfa, 0x44, 0x1c, 0x43, 0x4f, 0x8c, 0x6e, 0xdb, 0x96, 0xd1, 0x9a, 0x65, 0x8e, - 0x21, 0x0c, 0x45, 0xa7, 0x01, 0x3c, 0xf7, 0xac, 0xba, 0xad, 0x26, 0x95, 0x62, 0x85, 0x43, 0x6e, - 0xb8, 0xf2, 0x47, 0x70, 0xcc, 0xd7, 0x90, 0x80, 0x34, 0xe2, 0x82, 0x95, 0xa6, 0x15, 0xec, 0xf8, - 0x62, 0xe4, 0x2f, 0x05, 0x98, 0xdf, 0x50, 0x1f, 0xe1, 0xa7, 0x5f, 0xf7, 0x64, 0xf2, 0xc7, 0xab, - 0x30, 0x47, 0x4b, 0x9d, 0xc5, 0x00, 0x3d, 0x63, 0x12, 0x82, 0xa0, 0x38, 0xe3, 0x13, 0xd1, 0xbb, - 0x24, 0x93, 0xc1, 0xbd, 0xdd, 0x75, 0x4b, 0xf7, 0x93, 0x81, 0xd3, 0x09, 0xeb, 0xdc, 0x14, 0x58, - 0x4a, 0x70, 0x06, 0x5a, 0x8f, 0xbb, 0x36, 0x96, 0x06, 0xbc, 0x30, 0xb6, 0xfa, 0xf6, 0xb9, 0x1f, - 0xf5, 0x70, 0xa8, 0x05, 0x33, 0x3c, 0x86, 0x53, 0xbb, 0x2f, 0x2b, 0xde, 0x10, 0xad, 0xc3, 0x51, - 0x76, 0x82, 0x0d, 0xae, 0xd4, 0xec, 0xf0, 0xe5, 0x4c, 0x87, 0x4f, 0x9a, 0x1a, 0xb6, 0x89, 0xca, - 0x41, 0x6d, 0xa2, 0x05, 0x33, 0x5c, 0x4f, 0xa9, 0x2f, 0x28, 0x2b, 0xde, 0x90, 0x88, 0x99, 0xf5, - 0x35, 0x75, 0xb3, 0xdf, 0xaa, 0xd2, 0x6f, 0x3e, 0x80, 0xd4, 0x8c, 0xe0, 0xf3, 0x73, 0x42, 0x9f, - 0xe8, 0x1d, 0x28, 0x0b, 0x0d, 0xcf, 0x65, 0xd6, 0x70, 0x31, 0x27, 0xea, 0xa3, 0xf3, 0x11, 0x1f, - 0x2d, 0xff, 0x59, 0x82, 0xda, 0x32, 0x39, 0xd2, 0xaa, 0xd5, 0xa7, 0x11, 0xe5, 0x02, 0x34, 0x6c, - 0xdc, 0xb3, 0x6c, 0xad, 0x8b, 0x4d, 0xd7, 0xd6, 0x31, 0x6b, 0x2f, 0x14, 0x94, 0x3a, 0x83, 0xde, - 0x62, 0x40, 0x82, 0x46, 0xdc, 0xae, 0xe3, 0xaa, 0xc6, 0xb0, 0xbb, 0x4d, 0xcc, 0x3b, 0xc7, 0xd0, - 0x04, 0x94, 0x5a, 0xf7, 0x39, 0xa8, 0xf9, 0x68, 0xae, 0x45, 0xf7, 0x2f, 0x28, 0x55, 0x01, 0xdb, - 0xb4, 0xd0, 0xf3, 0xd0, 0xa0, 0x3c, 0xed, 0x0e, 0xac, 0x7e, 0x97, 0x94, 0xe2, 0x3c, 0xd8, 0xd4, - 0x34, 0x4e, 0x16, 0x91, 0x55, 0x18, 0xcb, 0xd1, 0x3f, 0xc4, 0x3c, 0xdc, 0x08, 0xac, 0x0d, 0xfd, - 0x43, 0x4c, 0x62, 0x7d, 0x9d, 0xc4, 0xce, 0xbb, 0x96, 0x86, 0x37, 0xa7, 0xcc, 0x34, 0x32, 0xf4, - 0x6c, 0x4f, 0x41, 0x45, 0x9c, 0x80, 0x1f, 0xc9, 0x07, 0xa0, 0xdb, 0xd0, 0xf0, 0x72, 0xe2, 0x2e, - 0x2b, 0x15, 0x0b, 0xa9, 0x99, 0x5f, 0x20, 0xfa, 0x39, 0x4a, 0xdd, 0x9b, 0x46, 0x87, 0xf2, 0x6d, - 0xa8, 0x05, 0x3f, 0x93, 0x5d, 0x37, 0xa2, 0x8a, 0x22, 0x00, 0x44, 0x1b, 0xef, 0x8e, 0x0c, 0x22, - 0x53, 0xee, 0x58, 0xbc, 0xa1, 0xfc, 0x89, 0x04, 0x75, 0x1e, 0xb2, 0x37, 0xc4, 0x9d, 0x04, 0x3d, - 0x9a, 0x44, 0x8f, 0x46, 0x7f, 0xa3, 0xff, 0x0d, 0x37, 0x24, 0x9f, 0x4f, 0x74, 0x02, 0x74, 0x11, - 0x9a, 0x1d, 0x87, 0xe2, 0x75, 0x96, 0xe6, 0xc4, 0xc7, 0x44, 0xd1, 0xb8, 0x68, 0xa8, 0xa2, 0xb5, - 0x60, 0x46, 0xd5, 0x34, 0x1b, 0x3b, 0x0e, 0xa7, 0xc3, 0x1b, 0x92, 0x2f, 0x8f, 0xb0, 0xed, 0x78, - 0x2a, 0x9f, 0x57, 0xbc, 0x21, 0x7a, 0x0b, 0xca, 0x22, 0x9d, 0xce, 0x27, 0xa5, 0x50, 0x41, 0x3a, - 0x79, 0x29, 0x2d, 0x66, 0xc8, 0xbf, 0xcb, 0x41, 0x83, 0x33, 0x6c, 0x89, 0xc7, 0xd4, 0xf1, 0xc6, - 0xb7, 0x04, 0xb5, 0x6d, 0xdf, 0xf6, 0xc7, 0x35, 0xcd, 0x82, 0x2e, 0x22, 0x34, 0x67, 0x92, 0x01, - 0x86, 0xa3, 0x7a, 0xe1, 0x50, 0x51, 0xbd, 0x78, 0x50, 0x0f, 0x16, 0xcf, 0xf3, 0x4a, 0x09, 0x79, - 0x9e, 0xfc, 0x0d, 0xa8, 0x06, 0x16, 0xa0, 0x1e, 0x9a, 0x75, 0xdb, 0x38, 0xc7, 0xbc, 0x21, 0xba, - 0xee, 0xe7, 0x36, 0x8c, 0x55, 0x27, 0x12, 0x68, 0x89, 0xa4, 0x35, 0xf2, 0xaf, 0x24, 0x28, 0xf1, - 0x95, 0xcf, 0x40, 0x95, 0x3b, 0x1d, 0x9a, 0xf7, 0xb1, 0xd5, 0x81, 0x83, 0x48, 0xe2, 0xf7, 0xe4, - 0xbc, 0xce, 0x09, 0x28, 0x47, 0xfc, 0xcd, 0x0c, 0x0f, 0x0b, 0xde, 0xa7, 0x80, 0x93, 0x21, 0x9f, - 0xa8, 0x7f, 0xf9, 0x52, 0xa2, 0xd7, 0x0a, 0x0a, 0xee, 0x59, 0x8f, 0xb0, 0xbd, 0x7f, 0xf8, 0x7e, - 0xec, 0x9b, 0x01, 0x85, 0xce, 0x58, 0x1f, 0x8a, 0x09, 0xe8, 0x4d, 0x9f, 0xdd, 0xf9, 0xa4, 0x66, - 0x54, 0xd0, 0xc3, 0x70, 0x75, 0xf4, 0xd9, 0xfe, 0x03, 0xd6, 0x59, 0x0e, 0x1f, 0x65, 0xda, 0xbc, - 0xe6, 0x89, 0x94, 0x1d, 0xf2, 0x0f, 0x25, 0x38, 0xb1, 0x82, 0xdd, 0xdb, 0xe1, 0x5e, 0xc3, 0xb3, - 0xa6, 0xca, 0x80, 0x76, 0x12, 0x51, 0x87, 0x91, 0x7a, 0x1b, 0xca, 0xa2, 0x6b, 0xc2, 0xee, 0x07, - 0xc4, 0x58, 0xfe, 0x8e, 0x04, 0x2d, 0xbe, 0x0b, 0xdd, 0x93, 0xa4, 0xd4, 0x03, 0xec, 0x62, 0xed, - 0xab, 0xae, 0x9b, 0xbf, 0x90, 0xa0, 0x19, 0xf4, 0xf8, 0xd4, 0x69, 0xbf, 0x06, 0x45, 0xda, 0x9e, - 0xe0, 0x14, 0x4c, 0x54, 0x56, 0x86, 0x4d, 0x5c, 0x06, 0x4d, 0xf3, 0x36, 0x45, 0x70, 0xe2, 0x43, - 0x3f, 0xec, 0xe4, 0x0f, 0x1e, 0x76, 0x78, 0x18, 0xb6, 0x46, 0x64, 0x5d, 0xd6, 0xd7, 0xf3, 0x01, - 0xf2, 0xe7, 0x39, 0x68, 0xf9, 0xf5, 0xc8, 0x57, 0xee, 0xf7, 0x53, 0xb2, 0xd5, 0xfc, 0x13, 0xca, - 0x56, 0x0b, 0x87, 0xf7, 0xf5, 0xc5, 0x24, 0x5f, 0xff, 0xc7, 0x1c, 0x34, 0x7c, 0xae, 0xad, 0x0f, - 0x54, 0x13, 0xcd, 0x43, 0x69, 0x38, 0x50, 0xfd, 0x66, 0x28, 0x1f, 0xa1, 0x0d, 0x91, 0xe7, 0x84, - 0xf9, 0xf4, 0x52, 0x92, 0x0c, 0x53, 0x04, 0xa1, 0x44, 0x96, 0x20, 0xe5, 0x20, 0x2b, 0x28, 0x68, - 0x51, 0xcf, 0x73, 0x2b, 0xa6, 0x2c, 0xa4, 0x9e, 0xbf, 0x02, 0x88, 0x4b, 0xb8, 0xab, 0x9b, 0x5d, - 0x07, 0xf7, 0x2c, 0x53, 0x63, 0xb2, 0x2f, 0x2a, 0x4d, 0xfe, 0xa5, 0x63, 0x6e, 0x30, 0x38, 0x7a, - 0x0d, 0x0a, 0xee, 0xfe, 0x90, 0x79, 0xf1, 0x46, 0xa2, 0x77, 0xf4, 0xe9, 0xda, 0xdc, 0x1f, 0x62, - 0x85, 0xa2, 0xa3, 0x05, 0x00, 0xb2, 0x94, 0x6b, 0xab, 0x8f, 0x78, 0x48, 0x2c, 0x28, 0x01, 0x08, - 0xd1, 0x66, 0x8f, 0x87, 0x33, 0x2c, 0x74, 0xf0, 0xa1, 0xfc, 0xfb, 0x1c, 0x34, 0xfd, 0x25, 0x15, - 0xec, 0x8c, 0x06, 0x6e, 0x2a, 0xff, 0xc6, 0x17, 0x83, 0x93, 0xf2, 0x86, 0x77, 0xa1, 0xca, 0xe5, - 0x79, 0x00, 0x7d, 0x00, 0x36, 0x65, 0x75, 0x8c, 0x82, 0x16, 0x9f, 0x90, 0x82, 0x96, 0x0e, 0xa8, - 0xa0, 0xf2, 0x06, 0xcc, 0x7b, 0x7e, 0xcf, 0x47, 0x58, 0xc3, 0xae, 0x3a, 0x26, 0xe1, 0x38, 0x03, - 0x55, 0x16, 0xcf, 0x58, 0x20, 0x67, 0xa9, 0x3a, 0x6c, 0x89, 0x0a, 0x57, 0xfe, 0x26, 0x1c, 0xa3, - 0x7e, 0x23, 0xda, 0xca, 0xcd, 0xd2, 0xe6, 0x97, 0x45, 0x21, 0x40, 0x92, 0x7e, 0xa6, 0xdd, 0x15, - 0x25, 0x04, 0x93, 0x57, 0xe1, 0xb9, 0xc8, 0xfa, 0x87, 0x88, 0x0b, 0x24, 0x15, 0x9a, 0xdf, 0x08, - 0x5f, 0x8a, 0x4f, 0x1f, 0xfd, 0x4e, 0x8b, 0xce, 0x6d, 0x57, 0xd7, 0xa2, 0xfa, 0xa5, 0xa1, 0x77, - 0xa0, 0x62, 0xe2, 0xbd, 0x6e, 0xd0, 0xf9, 0x66, 0x68, 0xd0, 0x95, 0x4d, 0xbc, 0x47, 0x7f, 0xc9, - 0x77, 0xe1, 0x78, 0x8c, 0xd4, 0xc3, 0x9c, 0xfd, 0x0f, 0x12, 0x9c, 0x58, 0xb6, 0xad, 0xe1, 0x7b, - 0xba, 0xed, 0x8e, 0xd4, 0x41, 0xf8, 0x9e, 0xeb, 0xe9, 0x94, 0x71, 0x77, 0x02, 0x61, 0x98, 0xf9, - 0xe5, 0x2b, 0x09, 0xea, 0x1a, 0x27, 0x8a, 0x1f, 0x3a, 0x10, 0xb4, 0xff, 0x9e, 0x4f, 0x22, 0x9e, - 0xe3, 0x4d, 0x08, 0x36, 0x59, 0xb2, 0x94, 0xc4, 0xae, 0x4f, 0x7e, 0xda, 0xae, 0x4f, 0x8a, 0xe5, - 0x17, 0x9e, 0x90, 0xe5, 0x1f, 0xb8, 0x0c, 0xb9, 0x03, 0xe1, 0x8e, 0x1c, 0x75, 0xb9, 0x53, 0xb5, - 0xf2, 0x96, 0x00, 0xfc, 0xee, 0x14, 0x7f, 0xd3, 0x94, 0x65, 0x99, 0xc0, 0x2c, 0x22, 0x2d, 0xe1, - 0x65, 0x69, 0x57, 0x39, 0xd4, 0x2f, 0xb9, 0x07, 0xed, 0x24, 0x2d, 0x3d, 0x8c, 0xe6, 0x7f, 0x9e, - 0x03, 0xe8, 0x88, 0x67, 0x70, 0xd3, 0x65, 0x94, 0xe7, 0xa1, 0xee, 0x2b, 0x8c, 0x6f, 0xef, 0x41, - 0x2d, 0xd2, 0x88, 0x49, 0x88, 0xc4, 0x96, 0xe0, 0xc4, 0x92, 0x5d, 0x8d, 0xae, 0x13, 0xb0, 0x1a, - 0xa6, 0x14, 0x11, 0xa7, 0x87, 0x4e, 0x42, 0xc5, 0xb6, 0xf6, 0xba, 0xc4, 0xcc, 0x34, 0xef, 0x9d, - 0x9f, 0x6d, 0xed, 0x11, 0xe3, 0xd3, 0xd0, 0x71, 0x98, 0x71, 0x55, 0x67, 0x97, 0xac, 0x5f, 0x0a, - 0x5c, 0xb5, 0x6a, 0xe8, 0x18, 0x14, 0xb7, 0xf5, 0x01, 0x66, 0x37, 0x7b, 0x15, 0x85, 0x0d, 0xd0, - 0xeb, 0xde, 0x83, 0x94, 0x72, 0xe6, 0xeb, 0x74, 0xf6, 0x26, 0xe5, 0x4b, 0x09, 0x66, 0x7d, 0xae, - 0x51, 0x07, 0x44, 0x7c, 0x1a, 0xf5, 0x67, 0x37, 0x2d, 0x8d, 0xb9, 0x8a, 0x46, 0xca, 0x15, 0x0b, - 0x9b, 0xc8, 0xbc, 0x96, 0x3f, 0x65, 0x5c, 0x5e, 0x4e, 0xce, 0x45, 0x0e, 0xad, 0x6b, 0xde, 0x0d, - 0x4f, 0xc9, 0xb6, 0xf6, 0x3a, 0x9a, 0xe0, 0x06, 0x7b, 0xc4, 0xc7, 0xb2, 0x50, 0xc2, 0x8d, 0x9b, - 0xf4, 0x1d, 0xdf, 0x79, 0xa8, 0x63, 0xdb, 0xb6, 0xec, 0xae, 0x81, 0x1d, 0x47, 0xed, 0x63, 0x9e, - 0x74, 0xd5, 0x28, 0x70, 0x8d, 0xc1, 0xe4, 0x2f, 0xf2, 0xd0, 0xf0, 0x8f, 0xe2, 0xdd, 0xeb, 0xe8, - 0x9a, 0x77, 0xaf, 0xa3, 0x13, 0xd1, 0x81, 0xcd, 0x5c, 0xa1, 0x10, 0xee, 0x52, 0xae, 0x25, 0x29, - 0x15, 0x0e, 0xed, 0x68, 0x24, 0x16, 0x12, 0x23, 0x33, 0x2d, 0x0d, 0xfb, 0xc2, 0x05, 0x0f, 0xc4, - 0x65, 0x1b, 0xd2, 0x91, 0x42, 0x06, 0x1d, 0x29, 0x66, 0xd0, 0x91, 0x52, 0x82, 0x8e, 0xcc, 0x43, - 0x69, 0x6b, 0xd4, 0xdb, 0xc5, 0x2e, 0x4f, 0x91, 0xf8, 0x28, 0xac, 0x3b, 0xe5, 0x88, 0xee, 0x08, - 0x15, 0xa9, 0x04, 0x55, 0xe4, 0x24, 0x54, 0xd8, 0x05, 0x43, 0xd7, 0x75, 0x68, 0xa7, 0x35, 0xaf, - 0x94, 0x19, 0x60, 0xd3, 0x41, 0x6f, 0x78, 0xf5, 0x43, 0x35, 0xc9, 0xd8, 0xa9, 0xd7, 0x89, 0x68, - 0x89, 0x57, 0x3d, 0x5c, 0x80, 0x06, 0x7d, 0xe4, 0xfc, 0x70, 0x84, 0xed, 0x7d, 0x75, 0x6b, 0x80, - 0x5b, 0x35, 0x4a, 0x4e, 0x9d, 0x40, 0xef, 0x79, 0x40, 0xc2, 0x10, 0x8a, 0xa6, 0x9b, 0x1a, 0x7e, - 0x8c, 0xb5, 0x56, 0x9d, 0x22, 0x51, 0x56, 0x77, 0x18, 0x48, 0xfe, 0x00, 0x90, 0xbf, 0xc7, 0xe1, - 0x2a, 0xc3, 0x88, 0x10, 0x73, 0x51, 0x21, 0xca, 0xbf, 0x96, 0x60, 0x2e, 0xb8, 0xd9, 0xb4, 0xe1, - 0xf1, 0x1d, 0xa8, 0xb2, 0x8e, 0x74, 0x97, 0x98, 0x27, 0xaf, 0x0d, 0x4f, 0x8f, 0xe5, 0x9e, 0x02, - 0xfe, 0x63, 0x5d, 0xa2, 0x04, 0x7b, 0x96, 0xbd, 0xab, 0x9b, 0xfd, 0x2e, 0xa1, 0xcc, 0x33, 0x8a, - 0x1a, 0x07, 0xde, 0x25, 0x30, 0xf9, 0x53, 0x09, 0x16, 0xee, 0x0f, 0x35, 0xd5, 0xc5, 0x81, 0x3c, - 0xe1, 0xb0, 0xef, 0x7f, 0x5e, 0xf3, 0x1e, 0xe0, 0xe4, 0xb2, 0x75, 0x55, 0x19, 0xb6, 0xbc, 0x06, - 0x27, 0x14, 0xec, 0x60, 0x53, 0x0b, 0x7d, 0x9c, 0x96, 0x0a, 0x79, 0x08, 0xed, 0xa4, 0xe5, 0x0e, - 0x23, 0x7b, 0x96, 0xb0, 0x75, 0x6d, 0xb2, 0xac, 0xcb, 0xfd, 0x0f, 0xc9, 0x13, 0xe8, 0x3e, 0xae, - 0xfc, 0x0f, 0x09, 0xe6, 0x6e, 0x68, 0xde, 0x7e, 0x4f, 0x2d, 0x2f, 0x8c, 0xe6, 0x4d, 0xf9, 0x78, - 0xde, 0xf4, 0xa4, 0x1c, 0x09, 0x77, 0xa9, 0xe6, 0xc8, 0xf0, 0x42, 0x85, 0x4d, 0xef, 0x77, 0xe5, - 0x6d, 0x71, 0xe9, 0xa7, 0xe0, 0x6d, 0x6c, 0x63, 0xb3, 0x87, 0x57, 0xad, 0xde, 0x6e, 0xe0, 0x15, - 0x8f, 0x14, 0x7c, 0xc5, 0x33, 0xed, 0xab, 0xa0, 0xcb, 0x3f, 0x91, 0x60, 0x2e, 0xd6, 0x5d, 0x40, - 0x0d, 0x80, 0xfb, 0x66, 0x8f, 0xb7, 0x5d, 0x9a, 0x47, 0x50, 0x0d, 0xca, 0x5e, 0x13, 0xa6, 0x29, - 0xa1, 0x2a, 0xcc, 0x6c, 0x5a, 0x14, 0xbb, 0x99, 0x43, 0x4d, 0xa8, 0xb1, 0x89, 0xa3, 0x5e, 0x0f, - 0x3b, 0x4e, 0x33, 0x2f, 0x20, 0xb7, 0x55, 0x7d, 0x30, 0xb2, 0x71, 0xb3, 0x80, 0xea, 0x50, 0xd9, - 0xb4, 0xf8, 0x1b, 0xa8, 0x66, 0x11, 0x21, 0x68, 0x78, 0x0f, 0xa2, 0xf8, 0xa4, 0x52, 0x00, 0xe6, - 0x4d, 0x9b, 0xb9, 0xbc, 0x1d, 0xac, 0xc3, 0x49, 0x71, 0x8a, 0x8e, 0xc3, 0xd1, 0xfb, 0xa6, 0x86, - 0xb7, 0x75, 0x13, 0x6b, 0xfe, 0xa7, 0xe6, 0x11, 0x74, 0x14, 0x66, 0x3b, 0xa6, 0x89, 0xed, 0x00, - 0x50, 0x22, 0xc0, 0x35, 0x6c, 0xf7, 0x71, 0x00, 0x98, 0x43, 0x73, 0x50, 0x5f, 0xd3, 0x1f, 0x07, - 0x40, 0xf9, 0xc5, 0xbf, 0xb5, 0xa0, 0xb2, 0xac, 0xba, 0xea, 0x4d, 0xcb, 0xb2, 0x35, 0x34, 0x04, - 0x44, 0x5f, 0x10, 0x1a, 0x43, 0xcb, 0x14, 0xef, 0x72, 0xd1, 0x2b, 0x29, 0x29, 0x54, 0x1c, 0x95, - 0xab, 0x65, 0xfb, 0x62, 0xca, 0x8c, 0x08, 0xba, 0x7c, 0x04, 0x19, 0x74, 0x47, 0x52, 0xdc, 0x6f, - 0xea, 0xbd, 0x5d, 0xef, 0x69, 0xc1, 0x98, 0x1d, 0x23, 0xa8, 0xde, 0x8e, 0x91, 0xe7, 0xbe, 0x7c, - 0xc0, 0x9e, 0x79, 0x7a, 0x76, 0x29, 0x1f, 0x41, 0x0f, 0xe1, 0xd8, 0x0a, 0x0e, 0xf8, 0x21, 0x6f, - 0xc3, 0xc5, 0xf4, 0x0d, 0x63, 0xc8, 0x07, 0xdc, 0x72, 0x15, 0x8a, 0xb4, 0x93, 0x87, 0x92, 0x5c, - 0x55, 0xf0, 0xcf, 0x2f, 0xed, 0xb3, 0xe9, 0x08, 0x62, 0xb5, 0x0f, 0x60, 0x36, 0xf2, 0xf8, 0x1e, - 0xbd, 0x98, 0x30, 0x2d, 0xf9, 0x6f, 0x14, 0xed, 0xcb, 0x59, 0x50, 0xc5, 0x5e, 0x7d, 0x68, 0x84, - 0x5f, 0x1f, 0xa2, 0x4b, 0x09, 0xf3, 0x13, 0xdf, 0x4d, 0xb7, 0x5f, 0xcc, 0x80, 0x29, 0x36, 0x32, - 0xa0, 0x19, 0x7d, 0x0c, 0x8e, 0x2e, 0x8f, 0x5d, 0x20, 0xac, 0x6e, 0x2f, 0x65, 0xc2, 0x15, 0xdb, - 0xed, 0x53, 0x25, 0x88, 0xbd, 0x2f, 0x46, 0x57, 0x93, 0x97, 0x49, 0x7b, 0xf8, 0xdc, 0xbe, 0x96, - 0x19, 0x5f, 0x6c, 0xfd, 0x6d, 0x76, 0x83, 0x90, 0xf4, 0x46, 0x17, 0xbd, 0x9a, 0xbc, 0xdc, 0x98, - 0xc7, 0xc5, 0xed, 0xc5, 0x83, 0x4c, 0x11, 0x44, 0x7c, 0x44, 0x5b, 0xff, 0x09, 0xaf, 0x5c, 0xa3, - 0x76, 0xe7, 0xad, 0x97, 0xfe, 0x80, 0xb7, 0xfd, 0xea, 0x01, 0x66, 0x08, 0x02, 0xac, 0xe8, 0x6b, - 0x7b, 0xcf, 0x0c, 0xaf, 0x4d, 0xd4, 0x9a, 0xe9, 0x6c, 0xf0, 0x7d, 0x98, 0x8d, 0x3c, 0xe2, 0x48, - 0xb4, 0x9a, 0xe4, 0x87, 0x1e, 0xed, 0x71, 0xe1, 0x9b, 0x99, 0x64, 0xe4, 0x26, 0x05, 0xa5, 0x68, - 0x7f, 0xc2, 0x6d, 0x4b, 0xfb, 0x72, 0x16, 0x54, 0x71, 0x10, 0x87, 0xba, 0xcb, 0xc8, 0x6d, 0x04, - 0xba, 0x92, 0xbc, 0x46, 0xf2, 0x4d, 0x4a, 0xfb, 0xe5, 0x8c, 0xd8, 0x62, 0xd3, 0x6f, 0x01, 0xda, - 0xd8, 0x21, 0x25, 0x8d, 0xb9, 0xad, 0xf7, 0x47, 0xb6, 0xca, 0x5e, 0x6a, 0xa4, 0xf9, 0xe8, 0x38, - 0x6a, 0x8a, 0xae, 0x8c, 0x9d, 0x21, 0x36, 0xef, 0x02, 0xac, 0x60, 0x77, 0x0d, 0xbb, 0x36, 0x51, - 0xd0, 0x8b, 0x89, 0xf2, 0xf6, 0x11, 0xbc, 0xad, 0x5e, 0x98, 0x88, 0x27, 0x36, 0xf8, 0x1a, 0x20, - 0x2f, 0xbe, 0x07, 0xde, 0x2f, 0x9d, 0x1f, 0xdb, 0x2d, 0x66, 0xad, 0xdd, 0x49, 0x8a, 0xf1, 0x10, - 0x9a, 0x6b, 0xaa, 0x39, 0x52, 0x07, 0x81, 0x75, 0xaf, 0x24, 0x12, 0x16, 0x45, 0x4b, 0x11, 0x55, - 0x2a, 0xb6, 0x38, 0xcc, 0x9e, 0x08, 0xe0, 0xaa, 0xb0, 0x7f, 0x1c, 0x75, 0x6c, 0x3e, 0x37, 0x22, - 0x88, 0x29, 0x8e, 0x6d, 0x0c, 0xbe, 0xd8, 0xf8, 0x63, 0x89, 0xfe, 0x49, 0x24, 0x82, 0xf0, 0x40, - 0x77, 0x77, 0xd6, 0x07, 0xaa, 0xe9, 0x64, 0x21, 0x81, 0x22, 0x1e, 0x80, 0x04, 0x8e, 0x2f, 0x48, - 0xd0, 0xa0, 0x1e, 0x6a, 0xc6, 0xa2, 0xa4, 0x47, 0x48, 0x49, 0xed, 0xe0, 0xf6, 0xa5, 0xc9, 0x88, - 0x62, 0x97, 0x1d, 0xa8, 0x7b, 0xc6, 0xc2, 0x98, 0xfb, 0x62, 0x1a, 0xa5, 0x3e, 0x4e, 0x8a, 0xad, - 0x27, 0xa3, 0x06, 0x6d, 0x3d, 0xde, 0x6b, 0x42, 0xd9, 0x7a, 0x94, 0xe3, 0x6c, 0x3d, 0xbd, 0x81, - 0xc5, 0x9c, 0x59, 0xa4, 0xaf, 0x9b, 0xec, 0x29, 0x13, 0xdb, 0xd4, 0x89, 0xce, 0x2c, 0xa5, 0x4d, - 0x2c, 0x1f, 0x41, 0x0f, 0xa0, 0xc4, 0xff, 0x1d, 0xfa, 0xfc, 0xf8, 0xca, 0x93, 0xaf, 0x7e, 0x61, - 0x02, 0x96, 0x58, 0x78, 0x17, 0x8e, 0xa7, 0xd4, 0x9d, 0x89, 0x41, 0x76, 0x7c, 0x8d, 0x3a, 0xc9, - 0xca, 0x55, 0x40, 0xf1, 0xbf, 0x60, 0x24, 0x8a, 0x29, 0xf5, 0x9f, 0x1a, 0x19, 0xb6, 0x88, 0xff, - 0x8b, 0x22, 0x71, 0x8b, 0xd4, 0x3f, 0x5b, 0x4c, 0xda, 0xe2, 0x1e, 0x80, 0x5f, 0x5d, 0x26, 0xca, - 0x23, 0x56, 0x7c, 0x4e, 0x58, 0x72, 0xf1, 0x9f, 0x33, 0x50, 0xf6, 0x9e, 0xfc, 0x3c, 0x83, 0xca, - 0xe2, 0x19, 0xa4, 0xfa, 0xef, 0xc3, 0x6c, 0xe4, 0xbf, 0x03, 0x89, 0xc6, 0x93, 0xfc, 0xff, 0x82, - 0x49, 0x12, 0x7a, 0xc0, 0xff, 0x8f, 0x2e, 0xa2, 0xfe, 0x0b, 0x69, 0xe5, 0x42, 0x34, 0xe0, 0x4f, - 0x58, 0xf8, 0xbf, 0x3b, 0xbc, 0xdf, 0x05, 0x08, 0x84, 0xdf, 0xf1, 0x97, 0xc0, 0x24, 0xa2, 0x4c, - 0xe2, 0xd6, 0xda, 0x01, 0x9d, 0xd6, 0x84, 0xe5, 0x1c, 0x62, 0xda, 0xd1, 0x46, 0x52, 0x8a, 0x69, - 0xa7, 0xb4, 0xaf, 0x12, 0x9d, 0x7c, 0x7a, 0x77, 0xea, 0xa9, 0x18, 0xfb, 0xd2, 0xf5, 0xaf, 0xbf, - 0xda, 0xd7, 0xdd, 0x9d, 0xd1, 0x16, 0xf9, 0x72, 0x8d, 0xa1, 0xbe, 0xac, 0x5b, 0xfc, 0xd7, 0x35, - 0x4f, 0x19, 0xae, 0xd1, 0xd9, 0xd7, 0xc8, 0x1e, 0xc3, 0xad, 0xad, 0x12, 0x1d, 0x5d, 0xff, 0x77, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x7f, 0xd9, 0xfa, 0x50, 0x6f, 0x42, 0x00, 0x00, + // 3776 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x3b, 0xdd, 0x6f, 0x1c, 0x57, + 0xf5, 0x99, 0xfd, 0xf2, 0xee, 0xd9, 0x0f, 0xaf, 0x6f, 0x52, 0x67, 0xb3, 0x49, 0x9c, 0x64, 0xd2, + 0xa4, 0x69, 0x9a, 0x26, 0xad, 0xf3, 0xab, 0x5a, 0xfd, 0xfa, 0xa5, 0x38, 0x4e, 0x9c, 0x15, 0x76, + 0x70, 0xc6, 0x4e, 0x83, 0x28, 0xd2, 0x6a, 0xbc, 0x73, 0xbd, 0x9e, 0x7a, 0x67, 0x66, 0x33, 0x33, + 0x1b, 0xc7, 0xe5, 0xa1, 0x15, 0x95, 0x90, 0x8a, 0x10, 0x45, 0x42, 0x48, 0x20, 0x81, 0x84, 0x78, + 0x02, 0x24, 0x24, 0xa4, 0x8a, 0x07, 0x40, 0x7d, 0xaf, 0xe0, 0x01, 0xf1, 0xc6, 0x7f, 0x00, 0xe2, + 0x81, 0xbf, 0x01, 0xdd, 0x8f, 0xb9, 0xf3, 0xbd, 0x3b, 0x5e, 0x27, 0x0d, 0xe2, 0x6d, 0xef, 0x99, + 0x73, 0xef, 0x3d, 0xf7, 0x7c, 0x9f, 0x73, 0xef, 0x42, 0x53, 0x53, 0x5d, 0xb5, 0xdb, 0xb3, 0x2c, + 0x5b, 0xbb, 0x3a, 0xb4, 0x2d, 0xd7, 0x42, 0x73, 0x86, 0x3e, 0x78, 0x34, 0x72, 0xd8, 0xe8, 0x2a, + 0xf9, 0xdc, 0xae, 0xf5, 0x2c, 0xc3, 0xb0, 0x4c, 0x06, 0x6a, 0x37, 0x74, 0xd3, 0xc5, 0xb6, 0xa9, + 0x0e, 0xf8, 0xb8, 0x16, 0x9c, 0xd0, 0xae, 0x39, 0xbd, 0x1d, 0x6c, 0xa8, 0x6c, 0x24, 0xcf, 0x40, + 0xf1, 0x96, 0x31, 0x74, 0xf7, 0xe5, 0x9f, 0x48, 0x50, 0xbb, 0x3d, 0x18, 0x39, 0x3b, 0x0a, 0x7e, + 0x38, 0xc2, 0x8e, 0x8b, 0x5e, 0x81, 0xc2, 0x96, 0xea, 0xe0, 0x96, 0x74, 0x56, 0xba, 0x54, 0x5d, + 0x3c, 0x75, 0x35, 0xb4, 0x2b, 0xdf, 0x6f, 0xcd, 0xe9, 0x2f, 0xa9, 0x0e, 0x56, 0x28, 0x26, 0x42, + 0x50, 0xd0, 0xb6, 0x3a, 0xcb, 0xad, 0xdc, 0x59, 0xe9, 0x52, 0x5e, 0xa1, 0xbf, 0xd1, 0x02, 0x80, + 0x83, 0xfb, 0x06, 0x36, 0xdd, 0xce, 0xb2, 0xd3, 0xca, 0x9f, 0xcd, 0x5f, 0xca, 0x2b, 0x01, 0x08, + 0x92, 0xa1, 0xd6, 0xb3, 0x06, 0x03, 0xdc, 0x73, 0x75, 0xcb, 0xec, 0x2c, 0xb7, 0x0a, 0x74, 0x6e, + 0x08, 0x26, 0xff, 0x4c, 0x82, 0x3a, 0x27, 0xcd, 0x19, 0x5a, 0xa6, 0x83, 0xd1, 0x75, 0x28, 0x39, + 0xae, 0xea, 0x8e, 0x1c, 0x4e, 0xdd, 0xc9, 0x44, 0xea, 0x36, 0x28, 0x8a, 0xc2, 0x51, 0x13, 0xc9, + 0x8b, 0x6e, 0x9f, 0x8f, 0x6f, 0x1f, 0x39, 0x42, 0x21, 0x7a, 0x04, 0xf9, 0x6f, 0x12, 0x34, 0x37, + 0xbc, 0xa1, 0xc7, 0xbd, 0x63, 0x50, 0xec, 0x59, 0x23, 0xd3, 0xa5, 0x04, 0xd6, 0x15, 0x36, 0x40, + 0xe7, 0xa0, 0xd6, 0xdb, 0x51, 0x4d, 0x13, 0x0f, 0xba, 0xa6, 0x6a, 0x60, 0x4a, 0x4a, 0x45, 0xa9, + 0x72, 0xd8, 0x5d, 0xd5, 0xc0, 0x99, 0x28, 0x3a, 0x0b, 0xd5, 0xa1, 0x6a, 0xbb, 0x7a, 0x88, 0x67, + 0x41, 0x10, 0x6a, 0x43, 0x59, 0x77, 0x3a, 0xc6, 0xd0, 0xb2, 0xdd, 0x56, 0xf1, 0xac, 0x74, 0xa9, + 0xac, 0x88, 0x31, 0xd9, 0x41, 0xa7, 0xbf, 0x36, 0x55, 0x67, 0xb7, 0xb3, 0xdc, 0x2a, 0xb1, 0x1d, + 0x82, 0x30, 0xf9, 0x17, 0x12, 0xcc, 0xdf, 0x70, 0x1c, 0xbd, 0x6f, 0xc6, 0x4e, 0x36, 0x0f, 0x25, + 0xd3, 0xd2, 0x70, 0x67, 0x99, 0x1e, 0x2d, 0xaf, 0xf0, 0x11, 0x3a, 0x09, 0x95, 0x21, 0xc6, 0x76, + 0xd7, 0xb6, 0x06, 0xde, 0xc1, 0xca, 0x04, 0xa0, 0x58, 0x03, 0x8c, 0xee, 0xc1, 0x9c, 0x13, 0x59, + 0x88, 0x69, 0x43, 0x75, 0xf1, 0xfc, 0xd5, 0x98, 0x3e, 0x5f, 0x8d, 0x6e, 0xaa, 0xc4, 0x67, 0xcb, + 0x1f, 0xe7, 0xe0, 0xa8, 0xc0, 0x63, 0xb4, 0x92, 0xdf, 0x84, 0xf3, 0x0e, 0xee, 0x0b, 0xf2, 0xd8, + 0x20, 0x0b, 0xe7, 0x85, 0xc8, 0xf2, 0x41, 0x91, 0x65, 0x50, 0xd0, 0xa8, 0x3c, 0x8a, 0x71, 0x79, + 0x9c, 0x81, 0x2a, 0x7e, 0x3c, 0xd4, 0x6d, 0xdc, 0x75, 0x75, 0x03, 0x53, 0x96, 0x17, 0x14, 0x60, + 0xa0, 0x4d, 0xdd, 0x08, 0x6a, 0xf4, 0x4c, 0x66, 0x8d, 0x96, 0x7f, 0x29, 0xc1, 0xf1, 0x98, 0x94, + 0xb8, 0x89, 0x28, 0xd0, 0xa4, 0x27, 0xf7, 0x39, 0x43, 0x8c, 0x85, 0x30, 0xfc, 0xe2, 0x38, 0x86, + 0xfb, 0xe8, 0x4a, 0x6c, 0x7e, 0x80, 0xc8, 0x5c, 0x76, 0x22, 0x77, 0xe1, 0xf8, 0x0a, 0x76, 0xf9, + 0x06, 0xe4, 0x1b, 0x76, 0xa6, 0x77, 0x31, 0x61, 0x5b, 0xcc, 0xc5, 0x6c, 0xf1, 0x77, 0x39, 0x61, + 0x8b, 0x74, 0xab, 0x8e, 0xb9, 0x6d, 0xa1, 0x53, 0x50, 0x11, 0x28, 0x5c, 0x2b, 0x7c, 0x00, 0x7a, + 0x1d, 0x8a, 0x84, 0x52, 0xa6, 0x12, 0x8d, 0xc5, 0x73, 0xc9, 0x67, 0x0a, 0xac, 0xa9, 0x30, 0x7c, + 0xd4, 0x81, 0x86, 0xe3, 0xaa, 0xb6, 0xdb, 0x1d, 0x5a, 0x0e, 0x95, 0x33, 0x55, 0x9c, 0xea, 0xa2, + 0x1c, 0x5e, 0x41, 0x38, 0xe3, 0x35, 0xa7, 0xbf, 0xce, 0x31, 0x95, 0x3a, 0x9d, 0xe9, 0x0d, 0xd1, + 0x2d, 0xa8, 0x61, 0x53, 0xf3, 0x17, 0x2a, 0x64, 0x5e, 0xa8, 0x8a, 0x4d, 0x4d, 0x2c, 0xe3, 0xcb, + 0xa7, 0x98, 0x5d, 0x3e, 0xdf, 0x97, 0xa0, 0x15, 0x17, 0xd0, 0x61, 0x1c, 0xed, 0x9b, 0x6c, 0x12, + 0x66, 0x02, 0x1a, 0x6b, 0xe1, 0x42, 0x48, 0x0a, 0x9f, 0x22, 0xff, 0x58, 0x82, 0xe7, 0x7c, 0x72, + 0xe8, 0xa7, 0xa7, 0xa5, 0x2d, 0xe8, 0x32, 0x34, 0x75, 0xb3, 0x37, 0x18, 0x69, 0xf8, 0xbe, 0x79, + 0x07, 0xab, 0x03, 0x77, 0x67, 0x9f, 0xca, 0xb0, 0xac, 0xc4, 0xe0, 0xf2, 0x27, 0x12, 0xcc, 0x47, + 0xe9, 0x3a, 0x0c, 0x93, 0xfe, 0x0f, 0x8a, 0xba, 0xb9, 0x6d, 0x79, 0x3c, 0x5a, 0x18, 0x63, 0x94, + 0x64, 0x2f, 0x86, 0x2c, 0x1b, 0x70, 0x72, 0x05, 0xbb, 0x1d, 0xd3, 0xc1, 0xb6, 0xbb, 0xa4, 0x9b, + 0x03, 0xab, 0xbf, 0xae, 0xba, 0x3b, 0x87, 0x30, 0xa8, 0x90, 0x6d, 0xe4, 0x22, 0xb6, 0x21, 0xff, + 0x4a, 0x82, 0x53, 0xc9, 0xfb, 0xf1, 0xa3, 0xb7, 0xa1, 0xbc, 0xad, 0xe3, 0x81, 0x46, 0xf8, 0x2b, + 0x51, 0xfe, 0x8a, 0x31, 0x31, 0xac, 0x21, 0x41, 0xe6, 0x27, 0x3c, 0x97, 0xa2, 0xcd, 0x1b, 0xae, + 0xad, 0x9b, 0xfd, 0x55, 0xdd, 0x71, 0x15, 0x86, 0x1f, 0xe0, 0x67, 0x3e, 0xbb, 0x1a, 0x7f, 0x4f, + 0x82, 0x85, 0x15, 0xec, 0xde, 0x14, 0x7e, 0x99, 0x7c, 0xd7, 0x1d, 0x57, 0xef, 0x39, 0x4f, 0x36, + 0xa3, 0xc9, 0x10, 0xa0, 0xe5, 0xcf, 0x24, 0x38, 0x93, 0x4a, 0x0c, 0x67, 0x1d, 0xf7, 0x3b, 0x9e, + 0x57, 0x4e, 0xf6, 0x3b, 0x5f, 0xc3, 0xfb, 0xef, 0xa9, 0x83, 0x11, 0x5e, 0x57, 0x75, 0x9b, 0xf9, + 0x9d, 0x29, 0xbd, 0xf0, 0x6f, 0x25, 0x38, 0xbd, 0x82, 0xdd, 0x75, 0x2f, 0x26, 0x3d, 0x43, 0xee, + 0x10, 0x9c, 0x40, 0x6c, 0xf4, 0x52, 0xaa, 0x10, 0x4c, 0xfe, 0x01, 0x13, 0x67, 0x22, 0xbd, 0xcf, + 0x84, 0x81, 0x0b, 0xd4, 0x12, 0x02, 0x26, 0x79, 0x93, 0xa5, 0x0e, 0x9c, 0x7d, 0xf2, 0xcf, 0x25, + 0x38, 0x71, 0xa3, 0xf7, 0x70, 0xa4, 0xdb, 0x98, 0x23, 0xad, 0x5a, 0xbd, 0xdd, 0xe9, 0x99, 0xeb, + 0xa7, 0x59, 0xb9, 0x50, 0x9a, 0x35, 0x29, 0xa1, 0x9e, 0x87, 0x92, 0xcb, 0xf2, 0x3a, 0x96, 0xa9, + 0xf0, 0x11, 0xa5, 0x4f, 0xc1, 0x03, 0xac, 0x3a, 0xff, 0x9d, 0xf4, 0x7d, 0x56, 0x80, 0xda, 0x7b, + 0x3c, 0x1d, 0xa3, 0x51, 0x3b, 0xaa, 0x49, 0x52, 0x72, 0xe2, 0x15, 0xc8, 0xe0, 0x92, 0x92, 0xba, + 0x15, 0xa8, 0x3b, 0x18, 0xef, 0x4e, 0x13, 0xa3, 0x6b, 0x64, 0xa2, 0x88, 0xad, 0xab, 0x30, 0x37, + 0x32, 0xb7, 0x49, 0x15, 0x82, 0x35, 0xce, 0x40, 0xa6, 0xb9, 0x93, 0x7d, 0x77, 0x7c, 0x22, 0xba, + 0x03, 0xb3, 0xd1, 0xb5, 0x8a, 0x99, 0xd6, 0x8a, 0x4e, 0x43, 0x1d, 0x68, 0x6a, 0xb6, 0x35, 0x1c, + 0x62, 0xad, 0xeb, 0x78, 0x4b, 0x95, 0xb2, 0x2d, 0xc5, 0xe7, 0x89, 0xa5, 0x5e, 0x81, 0xa3, 0x51, + 0x4a, 0x3b, 0x1a, 0x49, 0x48, 0x89, 0x0c, 0x93, 0x3e, 0xa1, 0x2b, 0x30, 0x17, 0xc7, 0x2f, 0x53, + 0xfc, 0xf8, 0x07, 0xf4, 0x32, 0xa0, 0x08, 0xa9, 0x04, 0xbd, 0xc2, 0xd0, 0xc3, 0xc4, 0x74, 0x34, + 0x47, 0xfe, 0x54, 0x82, 0xf9, 0x07, 0xaa, 0xdb, 0xdb, 0x59, 0x36, 0xb8, 0xad, 0x1d, 0xc2, 0x57, + 0xbd, 0x0d, 0x95, 0x47, 0x5c, 0x2f, 0xbc, 0x80, 0x74, 0x26, 0x81, 0x3f, 0x41, 0x0d, 0x54, 0xfc, + 0x19, 0xf2, 0x97, 0x12, 0x1c, 0xa3, 0x25, 0xa8, 0xc7, 0xac, 0xaf, 0xde, 0x6b, 0x4e, 0x28, 0x43, + 0xd1, 0x45, 0x68, 0x18, 0xaa, 0xbd, 0xbb, 0xe1, 0xe3, 0x14, 0x29, 0x4e, 0x04, 0x2a, 0x3f, 0x06, + 0xe0, 0xa3, 0x35, 0xa7, 0x3f, 0x05, 0xfd, 0x6f, 0xc0, 0x0c, 0xdf, 0x95, 0xbb, 0xcf, 0x49, 0x7a, + 0xe6, 0xa1, 0xcb, 0x7f, 0x96, 0xa0, 0xe1, 0x87, 0x44, 0x6a, 0xe4, 0x0d, 0xc8, 0x09, 0xd3, 0xce, + 0x75, 0x96, 0xd1, 0xdb, 0x50, 0x62, 0xed, 0x09, 0xbe, 0xf6, 0x85, 0xf0, 0xda, 0xbc, 0x75, 0x11, + 0x88, 0xab, 0x14, 0xa0, 0xf0, 0x49, 0x84, 0x47, 0x22, 0x8a, 0x08, 0xe7, 0xe3, 0x43, 0x50, 0x07, + 0x66, 0xc3, 0x29, 0xbb, 0x67, 0xc2, 0x67, 0xd3, 0x82, 0xc7, 0xb2, 0xea, 0xaa, 0x34, 0x76, 0x34, + 0x42, 0x19, 0xbb, 0x23, 0xff, 0xbb, 0x08, 0xd5, 0xc0, 0x29, 0x63, 0x27, 0x89, 0x8a, 0x34, 0x37, + 0xb9, 0x6e, 0xcc, 0xc7, 0xeb, 0xc6, 0x0b, 0xd0, 0xd0, 0x69, 0xf2, 0xd5, 0xe5, 0xaa, 0x48, 0xbd, + 0x66, 0x45, 0xa9, 0x33, 0x28, 0xb7, 0x0b, 0xb4, 0x00, 0x55, 0x73, 0x64, 0x74, 0xad, 0xed, 0xae, + 0x6d, 0xed, 0x39, 0xbc, 0x00, 0xad, 0x98, 0x23, 0xe3, 0xeb, 0xdb, 0x8a, 0xb5, 0xe7, 0xf8, 0x35, + 0x4e, 0xe9, 0x80, 0x35, 0xce, 0x02, 0x54, 0x0d, 0xf5, 0x31, 0x59, 0xb5, 0x6b, 0x8e, 0x0c, 0x5a, + 0x9b, 0xe6, 0x95, 0x8a, 0xa1, 0x3e, 0x56, 0xac, 0xbd, 0xbb, 0x23, 0x03, 0x5d, 0x82, 0xe6, 0x40, + 0x75, 0xdc, 0x6e, 0xb0, 0xb8, 0x2d, 0xd3, 0xe2, 0xb6, 0x41, 0xe0, 0xb7, 0xfc, 0x02, 0x37, 0x5e, + 0x2d, 0x55, 0x0e, 0x51, 0x2d, 0x69, 0xc6, 0xc0, 0x5f, 0x08, 0xb2, 0x57, 0x4b, 0x9a, 0x31, 0x10, + 0xcb, 0xbc, 0x01, 0x33, 0x5b, 0x34, 0xa5, 0x75, 0x5a, 0xd5, 0x54, 0x87, 0x79, 0x9b, 0x64, 0xb3, + 0x2c, 0xf3, 0x55, 0x3c, 0x74, 0xf4, 0x16, 0x54, 0x68, 0x26, 0x41, 0xe7, 0xd6, 0x32, 0xcd, 0xf5, + 0x27, 0x90, 0xd9, 0x1a, 0x1e, 0xb8, 0x2a, 0x9d, 0x5d, 0xcf, 0x36, 0x5b, 0x4c, 0x20, 0x4e, 0xba, + 0x67, 0x63, 0xd5, 0xc5, 0xda, 0xd2, 0xfe, 0x4d, 0xcb, 0x18, 0xaa, 0x54, 0x99, 0x5a, 0x0d, 0x5a, + 0xb6, 0x24, 0x7d, 0x22, 0x8e, 0xa1, 0x27, 0x46, 0xb7, 0x6d, 0xcb, 0x68, 0xcd, 0x32, 0xc7, 0x10, + 0x86, 0xa2, 0xd3, 0x00, 0x9e, 0x7b, 0x56, 0xdd, 0x56, 0x93, 0x4a, 0xb1, 0xc2, 0x21, 0x37, 0x5c, + 0xf9, 0x23, 0x38, 0xe6, 0x6b, 0x48, 0x40, 0x1a, 0x71, 0xc1, 0x4a, 0xd3, 0x0a, 0x76, 0x7c, 0x31, + 0xf2, 0xd7, 0x02, 0xcc, 0x6f, 0xa8, 0x8f, 0xf0, 0xd3, 0xaf, 0x7b, 0x32, 0xf9, 0xe3, 0x55, 0x98, + 0xa3, 0xa5, 0xce, 0x62, 0x80, 0x9e, 0x31, 0x09, 0x41, 0x50, 0x9c, 0xf1, 0x89, 0xe8, 0x5d, 0x92, + 0xc9, 0xe0, 0xde, 0xee, 0xba, 0xa5, 0xfb, 0xc9, 0xc0, 0xe9, 0x84, 0x75, 0x6e, 0x0a, 0x2c, 0x25, + 0x38, 0x03, 0xad, 0xc7, 0x5d, 0x1b, 0x4b, 0x03, 0x5e, 0x18, 0x5b, 0x7d, 0xfb, 0xdc, 0x8f, 0x7a, + 0x38, 0xd4, 0x82, 0x19, 0x1e, 0xc3, 0xa9, 0xdd, 0x97, 0x15, 0x6f, 0x88, 0xd6, 0xe1, 0x28, 0x3b, + 0xc1, 0x06, 0x57, 0x6a, 0x76, 0xf8, 0x72, 0xa6, 0xc3, 0x27, 0x4d, 0x0d, 0xdb, 0x44, 0xe5, 0xa0, + 0x36, 0xd1, 0x82, 0x19, 0xae, 0xa7, 0xd4, 0x17, 0x94, 0x15, 0x6f, 0x48, 0xc4, 0xcc, 0xfa, 0x9a, + 0xba, 0xd9, 0x6f, 0x55, 0xe9, 0x37, 0x1f, 0x40, 0x6a, 0x46, 0xf0, 0xf9, 0x39, 0xa1, 0x4f, 0xf4, + 0x0e, 0x94, 0x85, 0x86, 0xe7, 0x32, 0x6b, 0xb8, 0x98, 0x13, 0xf5, 0xd1, 0xf9, 0x88, 0x8f, 0x96, + 0xff, 0x22, 0x41, 0x6d, 0x99, 0x1c, 0x69, 0xd5, 0xea, 0xd3, 0x88, 0x72, 0x01, 0x1a, 0x36, 0xee, + 0x59, 0xb6, 0xd6, 0xc5, 0xa6, 0x6b, 0xeb, 0x98, 0xb5, 0x17, 0x0a, 0x4a, 0x9d, 0x41, 0x6f, 0x31, + 0x20, 0x41, 0x23, 0x6e, 0xd7, 0x71, 0x55, 0x63, 0xd8, 0xdd, 0x26, 0xe6, 0x9d, 0x63, 0x68, 0x02, + 0x4a, 0xad, 0xfb, 0x1c, 0xd4, 0x7c, 0x34, 0xd7, 0xa2, 0xfb, 0x17, 0x94, 0xaa, 0x80, 0x6d, 0x5a, + 0xe8, 0x79, 0x68, 0x50, 0x9e, 0x76, 0x07, 0x56, 0xbf, 0x4b, 0x4a, 0x71, 0x1e, 0x6c, 0x6a, 0x1a, + 0x27, 0x8b, 0xc8, 0x2a, 0x8c, 0xe5, 0xe8, 0x1f, 0x62, 0x1e, 0x6e, 0x04, 0xd6, 0x86, 0xfe, 0x21, + 0x26, 0xb1, 0xbe, 0x4e, 0x62, 0xe7, 0x5d, 0x4b, 0xc3, 0x9b, 0x53, 0x66, 0x1a, 0x19, 0x7a, 0xb6, + 0xa7, 0xa0, 0x22, 0x4e, 0xc0, 0x8f, 0xe4, 0x03, 0xd0, 0x6d, 0x68, 0x78, 0x39, 0x71, 0x97, 0x95, + 0x8a, 0x85, 0xd4, 0xcc, 0x2f, 0x10, 0xfd, 0x1c, 0xa5, 0xee, 0x4d, 0xa3, 0x43, 0xf9, 0x36, 0xd4, + 0x82, 0x9f, 0xc9, 0xae, 0x1b, 0x51, 0x45, 0x11, 0x00, 0xa2, 0x8d, 0x77, 0x47, 0x06, 0x91, 0x29, + 0x77, 0x2c, 0xde, 0x50, 0xfe, 0x44, 0x82, 0x3a, 0x0f, 0xd9, 0x1b, 0xe2, 0x4e, 0x82, 0x1e, 0x4d, + 0xa2, 0x47, 0xa3, 0xbf, 0xd1, 0xff, 0x87, 0x1b, 0x92, 0xcf, 0x27, 0x3a, 0x01, 0xba, 0x08, 0xcd, + 0x8e, 0x43, 0xf1, 0x3a, 0x4b, 0x73, 0xe2, 0x63, 0xa2, 0x68, 0x5c, 0x34, 0x54, 0xd1, 0x5a, 0x30, + 0xa3, 0x6a, 0x9a, 0x8d, 0x1d, 0x87, 0xd3, 0xe1, 0x0d, 0xc9, 0x97, 0x47, 0xd8, 0x76, 0x3c, 0x95, + 0xcf, 0x2b, 0xde, 0x10, 0xbd, 0x05, 0x65, 0x91, 0x4e, 0xe7, 0x93, 0x52, 0xa8, 0x20, 0x9d, 0xbc, + 0x94, 0x16, 0x33, 0xe4, 0xdf, 0xe7, 0xa0, 0xc1, 0x19, 0xb6, 0xc4, 0x63, 0xea, 0x78, 0xe3, 0x5b, + 0x82, 0xda, 0xb6, 0x6f, 0xfb, 0xe3, 0x9a, 0x66, 0x41, 0x17, 0x11, 0x9a, 0x33, 0xc9, 0x00, 0xc3, + 0x51, 0xbd, 0x70, 0xa8, 0xa8, 0x5e, 0x3c, 0xa8, 0x07, 0x8b, 0xe7, 0x79, 0xa5, 0x84, 0x3c, 0x4f, + 0xfe, 0x16, 0x54, 0x03, 0x0b, 0x50, 0x0f, 0xcd, 0xba, 0x6d, 0x9c, 0x63, 0xde, 0x10, 0x5d, 0xf7, + 0x73, 0x1b, 0xc6, 0xaa, 0x13, 0x09, 0xb4, 0x44, 0xd2, 0x1a, 0xf9, 0xd7, 0x12, 0x94, 0xf8, 0xca, + 0x67, 0xa0, 0xca, 0x9d, 0x0e, 0xcd, 0xfb, 0xd8, 0xea, 0xc0, 0x41, 0x24, 0xf1, 0x7b, 0x72, 0x5e, + 0xe7, 0x04, 0x94, 0x23, 0xfe, 0x66, 0x86, 0x87, 0x05, 0xef, 0x53, 0xc0, 0xc9, 0x90, 0x4f, 0xd4, + 0xbf, 0x7c, 0x29, 0xd1, 0x6b, 0x05, 0x05, 0xf7, 0xac, 0x47, 0xd8, 0xde, 0x3f, 0x7c, 0x3f, 0xf6, + 0xcd, 0x80, 0x42, 0x67, 0xac, 0x0f, 0xc5, 0x04, 0xf4, 0xa6, 0xcf, 0xee, 0x7c, 0x52, 0x33, 0x2a, + 0xe8, 0x61, 0xb8, 0x3a, 0xfa, 0x6c, 0xff, 0x21, 0xeb, 0x2c, 0x87, 0x8f, 0x32, 0x6d, 0x5e, 0xf3, + 0x44, 0xca, 0x0e, 0xf9, 0x47, 0x12, 0x9c, 0x58, 0xc1, 0xee, 0xed, 0x70, 0xaf, 0xe1, 0x59, 0x53, + 0x65, 0x40, 0x3b, 0x89, 0xa8, 0xc3, 0x48, 0xbd, 0x0d, 0x65, 0xd1, 0x35, 0x61, 0xf7, 0x03, 0x62, + 0x2c, 0x7f, 0x57, 0x82, 0x16, 0xdf, 0x85, 0xee, 0x49, 0x52, 0xea, 0x01, 0x76, 0xb1, 0xf6, 0x55, + 0xd7, 0xcd, 0x5f, 0x48, 0xd0, 0x0c, 0x7a, 0x7c, 0xea, 0xb4, 0x5f, 0x83, 0x22, 0x6d, 0x4f, 0x70, + 0x0a, 0x26, 0x2a, 0x2b, 0xc3, 0x26, 0x2e, 0x83, 0xa6, 0x79, 0x9b, 0x22, 0x38, 0xf1, 0xa1, 0x1f, + 0x76, 0xf2, 0x07, 0x0f, 0x3b, 0x3c, 0x0c, 0x5b, 0x23, 0xb2, 0x2e, 0xeb, 0xeb, 0xf9, 0x00, 0xf9, + 0xf3, 0x1c, 0xb4, 0xfc, 0x7a, 0xe4, 0x2b, 0xf7, 0xfb, 0x29, 0xd9, 0x6a, 0xfe, 0x09, 0x65, 0xab, + 0x85, 0xc3, 0xfb, 0xfa, 0x62, 0x92, 0xaf, 0xff, 0x53, 0x0e, 0x1a, 0x3e, 0xd7, 0xd6, 0x07, 0xaa, + 0x89, 0xe6, 0xa1, 0x34, 0x1c, 0xa8, 0x7e, 0x33, 0x94, 0x8f, 0xd0, 0x86, 0xc8, 0x73, 0xc2, 0x7c, + 0x7a, 0x29, 0x49, 0x86, 0x29, 0x82, 0x50, 0x22, 0x4b, 0x90, 0x72, 0x90, 0x15, 0x14, 0xb4, 0xa8, + 0xe7, 0xb9, 0x15, 0x53, 0x16, 0x52, 0xcf, 0x5f, 0x01, 0xc4, 0x25, 0xdc, 0xd5, 0xcd, 0xae, 0x83, + 0x7b, 0x96, 0xa9, 0x31, 0xd9, 0x17, 0x95, 0x26, 0xff, 0xd2, 0x31, 0x37, 0x18, 0x1c, 0xbd, 0x06, + 0x05, 0x77, 0x7f, 0xc8, 0xbc, 0x78, 0x23, 0xd1, 0x3b, 0xfa, 0x74, 0x6d, 0xee, 0x0f, 0xb1, 0x42, + 0xd1, 0xd1, 0x02, 0x00, 0x59, 0xca, 0xb5, 0xd5, 0x47, 0x3c, 0x24, 0x16, 0x94, 0x00, 0x84, 0x68, + 0xb3, 0xc7, 0xc3, 0x19, 0x16, 0x3a, 0xf8, 0x50, 0xfe, 0x43, 0x0e, 0x9a, 0xfe, 0x92, 0x0a, 0x76, + 0x46, 0x03, 0x37, 0x95, 0x7f, 0xe3, 0x8b, 0xc1, 0x49, 0x79, 0xc3, 0xbb, 0x50, 0xe5, 0xf2, 0x3c, + 0x80, 0x3e, 0x00, 0x9b, 0xb2, 0x3a, 0x46, 0x41, 0x8b, 0x4f, 0x48, 0x41, 0x4b, 0x07, 0x54, 0x50, + 0x79, 0x03, 0xe6, 0x3d, 0xbf, 0xe7, 0x23, 0xac, 0x61, 0x57, 0x1d, 0x93, 0x70, 0x9c, 0x81, 0x2a, + 0x8b, 0x67, 0x2c, 0x90, 0xb3, 0x54, 0x1d, 0xb6, 0x44, 0x85, 0x4b, 0x92, 0x8b, 0x63, 0xd4, 0x71, + 0x44, 0x7b, 0xb9, 0x59, 0xfa, 0xfc, 0xb2, 0xa8, 0x04, 0x48, 0xd6, 0xcf, 0xd4, 0xbb, 0xa2, 0x84, + 0x60, 0x49, 0xbd, 0xbd, 0xfc, 0x94, 0xbd, 0xbd, 0x55, 0x78, 0x2e, 0x42, 0xea, 0x21, 0x62, 0x0c, + 0x39, 0xf9, 0xfc, 0x46, 0xf8, 0x82, 0x7d, 0xfa, 0x48, 0x7a, 0x5a, 0x74, 0x81, 0xbb, 0xba, 0x16, + 0xd5, 0x55, 0x0d, 0xbd, 0x03, 0x15, 0x13, 0xef, 0x75, 0x83, 0x8e, 0x3c, 0x43, 0xb3, 0xaf, 0x6c, + 0xe2, 0x3d, 0xfa, 0x4b, 0xbe, 0x0b, 0xc7, 0x63, 0xa4, 0x1e, 0xe6, 0xec, 0x7f, 0x94, 0xe0, 0xc4, + 0xb2, 0x6d, 0x0d, 0xdf, 0xd3, 0x6d, 0x77, 0xa4, 0x0e, 0xc2, 0x77, 0x66, 0x4f, 0xa7, 0x24, 0xbc, + 0x13, 0x08, 0xe9, 0x4c, 0x01, 0xae, 0x24, 0xa8, 0x7e, 0x9c, 0x28, 0x7e, 0xe8, 0x40, 0x02, 0xf0, + 0x8f, 0x7c, 0x12, 0xf1, 0x1c, 0x6f, 0x42, 0xe0, 0xca, 0x92, 0xf1, 0x24, 0x76, 0x90, 0xf2, 0xd3, + 0x76, 0x90, 0x52, 0xbc, 0x48, 0xe1, 0x09, 0x79, 0x91, 0x03, 0x97, 0x34, 0x77, 0x20, 0xdc, 0xdd, + 0xa3, 0xee, 0x7b, 0xaa, 0xb6, 0xe0, 0x12, 0x80, 0xdf, 0xe9, 0xe2, 0xef, 0xa3, 0xb2, 0x2c, 0x13, + 0x98, 0x45, 0xa4, 0x25, 0x3c, 0x36, 0xed, 0x50, 0x87, 0x7a, 0x2f, 0xf7, 0xa0, 0x9d, 0xa4, 0xa5, + 0x87, 0xd1, 0xfc, 0xcf, 0x73, 0x00, 0x1d, 0xf1, 0xa4, 0x6e, 0xba, 0xec, 0xf4, 0x3c, 0xd4, 0x7d, + 0x85, 0xf1, 0xed, 0x3d, 0xa8, 0x45, 0x1a, 0x31, 0x09, 0x91, 0x24, 0x13, 0x9c, 0x58, 0xe2, 0xac, + 0xd1, 0x75, 0x02, 0x56, 0xc3, 0x94, 0x22, 0xea, 0x3f, 0x4f, 0x42, 0xc5, 0xb6, 0xf6, 0xba, 0xc4, + 0xcc, 0x34, 0xef, 0xcd, 0xa0, 0x6d, 0xed, 0x11, 0xe3, 0xd3, 0xd0, 0x71, 0x98, 0x71, 0x55, 0x67, + 0x97, 0xac, 0x5f, 0x0a, 0x5c, 0xdb, 0x6a, 0xe8, 0x18, 0x14, 0xb7, 0xf5, 0x01, 0x66, 0xb7, 0x84, + 0x15, 0x85, 0x0d, 0xd0, 0xeb, 0xde, 0xe3, 0x96, 0x72, 0xe6, 0xab, 0x79, 0xf6, 0xbe, 0xe5, 0x4b, + 0x09, 0x66, 0x7d, 0xae, 0x51, 0x07, 0x44, 0x7c, 0x1a, 0xf5, 0x67, 0x37, 0x2d, 0x8d, 0xb9, 0x8a, + 0x46, 0x8a, 0x4b, 0x67, 0x13, 0x99, 0xd7, 0xf2, 0xa7, 0x8c, 0xcb, 0xf1, 0xc9, 0xb9, 0xc8, 0xa1, + 0x75, 0xcd, 0xbb, 0x2d, 0x2a, 0xd9, 0xd6, 0x5e, 0x47, 0x13, 0xdc, 0x60, 0x0f, 0x02, 0x59, 0x46, + 0x4b, 0xb8, 0x71, 0x93, 0xbe, 0x09, 0x3c, 0x0f, 0x75, 0x6c, 0xdb, 0x96, 0xdd, 0x35, 0xb0, 0xe3, + 0xa8, 0x7d, 0xcc, 0x13, 0xb8, 0x1a, 0x05, 0xae, 0x31, 0x98, 0xfc, 0x45, 0x1e, 0x1a, 0xfe, 0x51, + 0xbc, 0x3b, 0x22, 0x5d, 0xf3, 0xee, 0x88, 0x74, 0x22, 0x3a, 0xb0, 0x99, 0x2b, 0x14, 0xc2, 0x5d, + 0xca, 0xb5, 0x24, 0xa5, 0xc2, 0xa1, 0x1d, 0x8d, 0xc4, 0x55, 0x62, 0x64, 0xa6, 0xa5, 0x61, 0x5f, + 0xb8, 0xe0, 0x81, 0xb8, 0x6c, 0x43, 0x3a, 0x52, 0xc8, 0xa0, 0x23, 0xc5, 0x0c, 0x3a, 0x52, 0x4a, + 0xd0, 0x91, 0x79, 0x28, 0x6d, 0x8d, 0x7a, 0xbb, 0xd8, 0xe5, 0xe9, 0x16, 0x1f, 0x85, 0x75, 0xa7, + 0x1c, 0xd1, 0x1d, 0xa1, 0x22, 0x95, 0xa0, 0x8a, 0x9c, 0x84, 0x0a, 0xbb, 0xac, 0xe8, 0xba, 0x0e, + 0xed, 0xda, 0xe6, 0x95, 0x32, 0x03, 0x6c, 0x3a, 0xe8, 0x0d, 0xaf, 0x16, 0xa9, 0x26, 0x19, 0x3b, + 0xf5, 0x3a, 0x11, 0x2d, 0xf1, 0x2a, 0x91, 0x0b, 0xd0, 0xa0, 0x0f, 0xa6, 0x1f, 0x8e, 0xb0, 0xbd, + 0xaf, 0x6e, 0x0d, 0x70, 0xab, 0x46, 0xc9, 0xa9, 0x13, 0xe8, 0x3d, 0x0f, 0x48, 0x18, 0x42, 0xd1, + 0x74, 0x53, 0xc3, 0x8f, 0xb1, 0xd6, 0xaa, 0x53, 0x24, 0xca, 0xea, 0x0e, 0x03, 0xc9, 0x1f, 0x00, + 0xf2, 0xf7, 0x38, 0x5c, 0x95, 0x19, 0x11, 0x62, 0x2e, 0x2a, 0x44, 0xf9, 0x37, 0x12, 0xcc, 0x05, + 0x37, 0x9b, 0x36, 0x3c, 0xbe, 0x03, 0x55, 0xd6, 0xdd, 0xee, 0x12, 0xf3, 0xe4, 0x75, 0xe6, 0xe9, + 0xb1, 0xdc, 0x53, 0xc0, 0x7f, 0xf8, 0x4b, 0x94, 0x60, 0xcf, 0xb2, 0x77, 0x75, 0xb3, 0xdf, 0x25, + 0x94, 0x79, 0x46, 0x51, 0xe3, 0xc0, 0xbb, 0x04, 0x26, 0x7f, 0x2a, 0xc1, 0xc2, 0xfd, 0xa1, 0xa6, + 0xba, 0x38, 0x90, 0x27, 0x1c, 0xf6, 0x2d, 0xd1, 0x6b, 0xde, 0x63, 0x9e, 0x5c, 0xb6, 0x0e, 0x2d, + 0xc3, 0x96, 0xd7, 0xe0, 0x84, 0x82, 0x1d, 0x6c, 0x6a, 0xa1, 0x8f, 0xd3, 0x52, 0x21, 0x0f, 0xa1, + 0x9d, 0xb4, 0xdc, 0x61, 0x64, 0xcf, 0x12, 0xb6, 0xae, 0x4d, 0x96, 0x75, 0xb9, 0xff, 0x21, 0x79, + 0x02, 0xdd, 0xc7, 0x95, 0xff, 0x29, 0xc1, 0xdc, 0x0d, 0xcd, 0xdb, 0xef, 0xa9, 0xe5, 0x85, 0xd1, + 0xbc, 0x29, 0x1f, 0xcf, 0x9b, 0x9e, 0x94, 0x23, 0xe1, 0x2e, 0xd5, 0x1c, 0x19, 0x5e, 0xa8, 0xb0, + 0xe9, 0x5d, 0xb1, 0xbc, 0x2d, 0x2e, 0x10, 0x15, 0xbc, 0x8d, 0x6d, 0x6c, 0xf6, 0xf0, 0xaa, 0xd5, + 0xdb, 0x0d, 0xbc, 0x08, 0x92, 0x82, 0x2f, 0x82, 0xa6, 0x7d, 0x61, 0x74, 0xf9, 0xa7, 0x12, 0xcc, + 0xc5, 0x3a, 0x15, 0xa8, 0x01, 0x70, 0xdf, 0xec, 0xf1, 0x16, 0x4e, 0xf3, 0x08, 0xaa, 0x41, 0xd9, + 0x6b, 0xe8, 0x34, 0x25, 0x54, 0x85, 0x99, 0x4d, 0x8b, 0x62, 0x37, 0x73, 0xa8, 0x09, 0x35, 0x36, + 0x71, 0xd4, 0xeb, 0x61, 0xc7, 0x69, 0xe6, 0x05, 0xe4, 0xb6, 0xaa, 0x0f, 0x46, 0x36, 0x6e, 0x16, + 0x50, 0x1d, 0x2a, 0x9b, 0x16, 0x7f, 0x4f, 0xd5, 0x2c, 0x22, 0x04, 0x0d, 0xef, 0x71, 0x15, 0x9f, + 0x54, 0x0a, 0xc0, 0xbc, 0x69, 0x33, 0x97, 0xb7, 0x83, 0x35, 0x3d, 0x29, 0x74, 0xd1, 0x71, 0x38, + 0x7a, 0xdf, 0xd4, 0xf0, 0xb6, 0x6e, 0x62, 0xcd, 0xff, 0xd4, 0x3c, 0x82, 0x8e, 0xc2, 0x6c, 0xc7, + 0x34, 0xb1, 0x1d, 0x00, 0x4a, 0x04, 0xb8, 0x86, 0xed, 0x3e, 0x0e, 0x00, 0x73, 0x68, 0x0e, 0xea, + 0x6b, 0xfa, 0xe3, 0x00, 0x28, 0xbf, 0xf8, 0xf7, 0x16, 0x54, 0x48, 0x79, 0x73, 0xd3, 0xb2, 0x6c, + 0x0d, 0x0d, 0x01, 0xd1, 0xd7, 0x88, 0xc6, 0xd0, 0x32, 0xc5, 0x1b, 0x5f, 0xf4, 0x4a, 0x4a, 0x0a, + 0x15, 0x47, 0xe5, 0x6a, 0xd9, 0xbe, 0x98, 0x32, 0x23, 0x82, 0x2e, 0x1f, 0x41, 0x06, 0xdd, 0x71, + 0x53, 0x37, 0xf0, 0xa6, 0xde, 0xdb, 0xf5, 0x9e, 0x29, 0x8c, 0xd9, 0x31, 0x82, 0xea, 0xed, 0x18, + 0x79, 0x3a, 0xcc, 0x07, 0xec, 0xc9, 0xa8, 0x67, 0x97, 0xf2, 0x11, 0xf4, 0x10, 0x8e, 0xad, 0xe0, + 0x80, 0x1f, 0xf2, 0x36, 0x5c, 0x4c, 0xdf, 0x30, 0x86, 0x7c, 0xc0, 0x2d, 0x57, 0xa1, 0x48, 0xbb, + 0x82, 0x28, 0xc9, 0x55, 0x05, 0xff, 0x48, 0xd3, 0x3e, 0x9b, 0x8e, 0x20, 0x56, 0xfb, 0x00, 0x66, + 0x23, 0x0f, 0xf9, 0xd1, 0x8b, 0x09, 0xd3, 0x92, 0xff, 0x92, 0xd1, 0xbe, 0x9c, 0x05, 0x55, 0xec, + 0xd5, 0x87, 0x46, 0xf8, 0x25, 0x23, 0xba, 0x94, 0x30, 0x3f, 0xf1, 0x0d, 0x76, 0xfb, 0xc5, 0x0c, + 0x98, 0x62, 0x23, 0x03, 0x9a, 0xd1, 0x87, 0xe5, 0xe8, 0xf2, 0xd8, 0x05, 0xc2, 0xea, 0xf6, 0x52, + 0x26, 0x5c, 0xb1, 0xdd, 0x3e, 0x55, 0x82, 0xd8, 0x5b, 0x65, 0x74, 0x35, 0x79, 0x99, 0xb4, 0x47, + 0xd4, 0xed, 0x6b, 0x99, 0xf1, 0xc5, 0xd6, 0xdf, 0x61, 0xb7, 0x11, 0x49, 0xef, 0x7d, 0xd1, 0xab, + 0xc9, 0xcb, 0x8d, 0x79, 0xa8, 0xdc, 0x5e, 0x3c, 0xc8, 0x14, 0x41, 0xc4, 0x47, 0xf4, 0x1a, 0x21, + 0xe1, 0xc5, 0x6c, 0xd4, 0xee, 0xbc, 0xf5, 0xd2, 0x1f, 0x03, 0xb7, 0x5f, 0x3d, 0xc0, 0x0c, 0x41, + 0x80, 0x15, 0x7d, 0xb9, 0xef, 0x99, 0xe1, 0xb5, 0x89, 0x5a, 0x33, 0x9d, 0x0d, 0xbe, 0x0f, 0xb3, + 0x91, 0x07, 0x21, 0x89, 0x56, 0x93, 0xfc, 0x68, 0xa4, 0x3d, 0x2e, 0x7c, 0x33, 0x93, 0x8c, 0xdc, + 0xca, 0xa0, 0x14, 0xed, 0x4f, 0xb8, 0xb9, 0x69, 0x5f, 0xce, 0x82, 0x2a, 0x0e, 0xe2, 0x50, 0x77, + 0x19, 0xb9, 0xd9, 0x40, 0x57, 0x92, 0xd7, 0x48, 0xbe, 0x95, 0x69, 0xbf, 0x9c, 0x11, 0x5b, 0x6c, + 0xfa, 0x6d, 0x40, 0x1b, 0x3b, 0xa4, 0xa4, 0x31, 0xb7, 0xf5, 0xfe, 0xc8, 0x56, 0xd9, 0xab, 0x8f, + 0x34, 0x1f, 0x1d, 0x47, 0x4d, 0xd1, 0x95, 0xb1, 0x33, 0xc4, 0xe6, 0x5d, 0x80, 0x15, 0xec, 0xae, + 0x61, 0xd7, 0x26, 0x0a, 0x7a, 0x31, 0x51, 0xde, 0x3e, 0x82, 0xb7, 0xd5, 0x0b, 0x13, 0xf1, 0xc4, + 0x06, 0xdf, 0x00, 0xe4, 0xc5, 0xf7, 0xc0, 0x5b, 0xa8, 0xf3, 0x63, 0x3b, 0xcf, 0xac, 0x4d, 0x3c, + 0x49, 0x31, 0x1e, 0x42, 0x73, 0x4d, 0x35, 0x47, 0xea, 0x20, 0xb0, 0xee, 0x95, 0x44, 0xc2, 0xa2, + 0x68, 0x29, 0xa2, 0x4a, 0xc5, 0x16, 0x87, 0xd9, 0x13, 0x01, 0x5c, 0x15, 0xf6, 0x8f, 0xa3, 0x8e, + 0xcd, 0xe7, 0x46, 0x04, 0x31, 0xc5, 0xb1, 0x8d, 0xc1, 0x17, 0x1b, 0x7f, 0x2c, 0xd1, 0x3f, 0x9c, + 0x44, 0x10, 0x1e, 0xe8, 0xee, 0xce, 0xfa, 0x40, 0x35, 0x9d, 0x2c, 0x24, 0x50, 0xc4, 0x03, 0x90, + 0xc0, 0xf1, 0x05, 0x09, 0x1a, 0xd4, 0x43, 0xcd, 0x58, 0x94, 0xf4, 0xa0, 0x29, 0xa9, 0xb3, 0xdc, + 0xbe, 0x34, 0x19, 0x51, 0xec, 0xb2, 0x03, 0x75, 0xcf, 0x58, 0x18, 0x73, 0x5f, 0x4c, 0xa3, 0xd4, + 0xc7, 0x49, 0xb1, 0xf5, 0x64, 0xd4, 0xa0, 0xad, 0xc7, 0x7b, 0x4d, 0x28, 0x5b, 0x8f, 0x72, 0x9c, + 0xad, 0xa7, 0x37, 0xb0, 0x98, 0x33, 0x8b, 0xf4, 0x75, 0x93, 0x3d, 0x65, 0x62, 0x9b, 0x3a, 0xd1, + 0x99, 0xa5, 0xb4, 0x89, 0xe5, 0x23, 0xe8, 0x01, 0x94, 0xf8, 0x3f, 0x4d, 0x9f, 0x1f, 0x5f, 0x79, + 0xf2, 0xd5, 0x2f, 0x4c, 0xc0, 0x12, 0x0b, 0xef, 0xc2, 0xf1, 0x94, 0xba, 0x33, 0x31, 0xc8, 0x8e, + 0xaf, 0x51, 0x27, 0x59, 0xb9, 0x0a, 0x28, 0xfe, 0x77, 0x8e, 0x44, 0x31, 0xa5, 0xfe, 0xeb, 0x23, + 0xc3, 0x16, 0xf1, 0x7f, 0x64, 0x24, 0x6e, 0x91, 0xfa, 0xc7, 0x8d, 0x49, 0x5b, 0xdc, 0x03, 0xf0, + 0xab, 0xcb, 0x44, 0x79, 0xc4, 0x8a, 0xcf, 0x09, 0x4b, 0x2e, 0xfe, 0x6b, 0x06, 0xca, 0xde, 0xf3, + 0xa1, 0x67, 0x50, 0x59, 0x3c, 0x83, 0x54, 0xff, 0x7d, 0x98, 0x8d, 0xfc, 0x0f, 0x21, 0xd1, 0x78, + 0x92, 0xff, 0xab, 0x30, 0x49, 0x42, 0x0f, 0xf8, 0x7f, 0xdb, 0x45, 0xd4, 0x7f, 0x21, 0xad, 0x5c, + 0x88, 0x06, 0xfc, 0x09, 0x0b, 0xff, 0x6f, 0x87, 0xf7, 0xbb, 0x00, 0x81, 0xf0, 0x3b, 0xfe, 0x42, + 0x99, 0x44, 0x94, 0x49, 0xdc, 0x5a, 0x3b, 0xa0, 0xd3, 0x9a, 0xb0, 0x9c, 0x43, 0x4c, 0x3b, 0xda, + 0x48, 0x4a, 0x31, 0xed, 0x94, 0xf6, 0x55, 0xa2, 0x93, 0x4f, 0xef, 0x4e, 0x3d, 0x15, 0x63, 0x5f, + 0xba, 0xfe, 0xcd, 0x57, 0xfb, 0xba, 0xbb, 0x33, 0xda, 0x22, 0x5f, 0xae, 0x31, 0xd4, 0x97, 0x75, + 0x8b, 0xff, 0xba, 0xe6, 0x29, 0xc3, 0x35, 0x3a, 0xfb, 0x1a, 0xd9, 0x63, 0xb8, 0xb5, 0x55, 0xa2, + 0xa3, 0xeb, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0xf9, 0x60, 0xe6, 0x31, 0xbb, 0x42, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/internal/rootcoord/root_coord.go b/internal/rootcoord/root_coord.go index 331be69125a3c51916ab59fe15d700c4ce4d470a..17b9d32e6da287ed25eab8fd7b16556d3c4130df 100644 --- a/internal/rootcoord/root_coord.go +++ b/internal/rootcoord/root_coord.go @@ -149,7 +149,7 @@ type Core struct { // Communicates with queryCoord service for segments info. CallGetSegmentInfoService func(ctx context.Context, collectionID int64, segIDs []int64) (*querypb.GetSegmentInfoResponse, error) - CallWatchChannels func(ctx context.Context, collectionID int64, channelNames []string) error + CallWatchChannels func(ctx context.Context, collectionID int64, channelNames []string, startPositions []*commonpb.KeyDataPair) error //assign import task to data service CallImportService func(ctx context.Context, req *datapb.ImportTaskRequest) *datapb.ImportTaskResponse @@ -724,7 +724,7 @@ func (c *Core) SetDataCoord(ctx context.Context, s types.DataCoord) error { return resp.Binlogs, nil } - c.CallWatchChannels = func(ctx context.Context, collectionID int64, channelNames []string) (retErr error) { + c.CallWatchChannels = func(ctx context.Context, collectionID int64, channelNames []string, startPositions []*commonpb.KeyDataPair) (retErr error) { defer func() { if err := recover(); err != nil { retErr = fmt.Errorf("watch channels panic, msg = %v", err) @@ -732,8 +732,9 @@ func (c *Core) SetDataCoord(ctx context.Context, s types.DataCoord) error { }() <-initCh req := &datapb.WatchChannelsRequest{ - CollectionID: collectionID, - ChannelNames: channelNames, + CollectionID: collectionID, + ChannelNames: channelNames, + StartPositions: startPositions, } rsp, err := s.WatchChannels(ctx, req) if err != nil { diff --git a/internal/rootcoord/root_coord_test.go b/internal/rootcoord/root_coord_test.go index a696d7ebeafef858ff71f0931a289c6601a8733f..4e6d7dcb37f65c21c1680b75fbf9e1167d37ce08 100644 --- a/internal/rootcoord/root_coord_test.go +++ b/internal/rootcoord/root_coord_test.go @@ -3077,7 +3077,7 @@ func TestCheckInit(t *testing.T) { err = c.checkInit() assert.Error(t, err) - c.CallWatchChannels = func(ctx context.Context, collectionID int64, channelNames []string) error { + c.CallWatchChannels = func(ctx context.Context, collectionID int64, channelNames []string, startPositions []*commonpb.KeyDataPair) error { return nil } err = c.checkInit() diff --git a/internal/rootcoord/task.go b/internal/rootcoord/task.go index b568c49d69f29f5fad7a3ac1ded4c7480c777a72..fa735a07b23184cd5fb9bb3d1e7cddd0145a5d50 100644 --- a/internal/rootcoord/task.go +++ b/internal/rootcoord/task.go @@ -270,7 +270,7 @@ func (t *CreateCollectionReqTask) Execute(ctx context.Context) error { return err } - if err = t.core.CallWatchChannels(ctx, collID, vchanNames); err != nil { + if err = t.core.CallWatchChannels(ctx, collID, vchanNames, collInfo.StartPositions); err != nil { return err }