diff --git a/internal/datacoord/index_builder.go b/internal/datacoord/index_builder.go index 19222086b0713..59cc15db815d0 100644 --- a/internal/datacoord/index_builder.go +++ b/internal/datacoord/index_builder.go @@ -77,24 +77,31 @@ type indexBuilder struct { meta *meta - policy buildIndexPolicy - nodeManager *IndexNodeManager - chunkManager storage.ChunkManager + policy buildIndexPolicy + nodeManager *IndexNodeManager + chunkManager storage.ChunkManager + indexEngineVersionManager *IndexEngineVersionManager } -func newIndexBuilder(ctx context.Context, metaTable *meta, nodeManager *IndexNodeManager, chunkManager storage.ChunkManager) *indexBuilder { +func newIndexBuilder( + ctx context.Context, + metaTable *meta, nodeManager *IndexNodeManager, + chunkManager storage.ChunkManager, + indexEngineVersionManager *IndexEngineVersionManager, +) *indexBuilder { ctx, cancel := context.WithCancel(ctx) ib := &indexBuilder{ - ctx: ctx, - cancel: cancel, - meta: metaTable, - tasks: make(map[int64]indexTaskState), - notifyChan: make(chan struct{}, 1), - scheduleDuration: Params.DataCoordCfg.IndexTaskSchedulerInterval.GetAsDuration(time.Millisecond), - policy: defaultBuildIndexPolicy, - nodeManager: nodeManager, - chunkManager: chunkManager, + ctx: ctx, + cancel: cancel, + meta: metaTable, + tasks: make(map[int64]indexTaskState), + notifyChan: make(chan struct{}, 1), + scheduleDuration: Params.DataCoordCfg.IndexTaskSchedulerInterval.GetAsDuration(time.Millisecond), + policy: defaultBuildIndexPolicy, + nodeManager: nodeManager, + chunkManager: chunkManager, + indexEngineVersionManager: indexEngineVersionManager, } ib.reloadFromKV() return ib @@ -228,7 +235,7 @@ func (ib *indexBuilder) process(buildID UniqueID) bool { } indexParams := ib.meta.GetIndexParams(meta.CollectionID, meta.IndexID) if isFlatIndex(getIndexType(indexParams)) || meta.NumRows < Params.DataCoordCfg.MinSegmentNumRowsToEnableIndex.GetAsInt64() { - log.Ctx(ib.ctx).Debug("segment does not need index really", zap.Int64("buildID", buildID), + log.Ctx(ib.ctx).Info("segment does not need index really", zap.Int64("buildID", buildID), zap.Int64("segmentID", meta.SegmentID), zap.Int64("num rows", meta.NumRows)) if err := ib.meta.FinishTask(&indexpb.IndexTaskInfo{ BuildID: buildID, @@ -301,8 +308,7 @@ func (ib *indexBuilder) process(buildID UniqueID) bool { IndexParams: indexParams, TypeParams: typeParams, NumRows: meta.NumRows, - CurrentIndexVersion: meta.CurrentIndexVersion, - MinimalIndexVersion: meta.MinimalIndexVersion, + CurrentIndexVersion: ib.indexEngineVersionManager.GetCurrentIndexEngineVersion(), } if err := ib.assignTask(client, req); err != nil { // need to release lock then reassign, so set task state to retry diff --git a/internal/datacoord/index_builder_test.go b/internal/datacoord/index_builder_test.go index fb7a150e2418f..3b1a8056852b8 100644 --- a/internal/datacoord/index_builder_test.go +++ b/internal/datacoord/index_builder_test.go @@ -666,7 +666,7 @@ func TestIndexBuilder(t *testing.T) { chunkManager := &mocks.ChunkManager{} chunkManager.EXPECT().RootPath().Return("root") - ib := newIndexBuilder(ctx, mt, nodeManager, chunkManager) + ib := newIndexBuilder(ctx, mt, nodeManager, chunkManager, newIndexEngineVersionManager()) assert.Equal(t, 6, len(ib.tasks)) assert.Equal(t, indexTaskInit, ib.tasks[buildID]) @@ -737,8 +737,9 @@ func TestIndexBuilder_Error(t *testing.T) { tasks: map[int64]indexTaskState{ buildID: indexTaskInit, }, - meta: createMetaTable(ec), - chunkManager: chunkManager, + meta: createMetaTable(ec), + chunkManager: chunkManager, + indexEngineVersionManager: newIndexEngineVersionManager(), } t.Run("meta not exist", func(t *testing.T) { diff --git a/internal/datacoord/index_meta.go b/internal/datacoord/index_meta.go index b811a59be9ef2..4b29eb8e26be5 100644 --- a/internal/datacoord/index_meta.go +++ b/internal/datacoord/index_meta.go @@ -531,6 +531,7 @@ func (m *meta) FinishTask(taskInfo *indexpb.IndexTaskInfo) error { segIdx.IndexFileKeys = common.CloneStringList(taskInfo.GetIndexFileKeys()) segIdx.FailReason = taskInfo.GetFailReason() segIdx.IndexSize = taskInfo.GetSerializedSize() + segIdx.CurrentIndexVersion = taskInfo.GetCurrentIndexVersion() return m.alterSegmentIndexes([]*model.SegmentIndex{segIdx}) } @@ -539,7 +540,9 @@ func (m *meta) FinishTask(taskInfo *indexpb.IndexTaskInfo) error { } log.Info("finish index task success", zap.Int64("buildID", taskInfo.GetBuildID()), - zap.String("state", taskInfo.GetState().String()), zap.String("fail reason", taskInfo.GetFailReason())) + zap.String("state", taskInfo.GetState().String()), zap.String("fail reason", taskInfo.GetFailReason()), + zap.Int32("current_index_version", taskInfo.GetCurrentIndexVersion()), + ) m.updateIndexTasksMetrics() metrics.FlushedSegmentFileNum.WithLabelValues(metrics.IndexFileLabel).Observe(float64(len(taskInfo.GetIndexFileKeys()))) return nil diff --git a/internal/datacoord/index_service.go b/internal/datacoord/index_service.go index 9515f3fadc992..04fde946c770e 100644 --- a/internal/datacoord/index_service.go +++ b/internal/datacoord/index_service.go @@ -51,25 +51,20 @@ func (s *Server) startIndexService(ctx context.Context) { } func (s *Server) createIndexForSegment(segment *SegmentInfo, indexID UniqueID) error { - indexEngineVersion := s.IndexEngineVersionManager.GetCurrentIndexEngineVersion() - log.Info("create index for segment", zap.Int64("segmentID", segment.ID), zap.Int64("indexID", indexID), - zap.Int32("index_engine_version", indexEngineVersion), - ) + log.Info("create index for segment", zap.Int64("segmentID", segment.ID), zap.Int64("indexID", indexID)) buildID, err := s.allocator.allocID(context.Background()) if err != nil { return err } segIndex := &model.SegmentIndex{ - SegmentID: segment.ID, - CollectionID: segment.CollectionID, - PartitionID: segment.PartitionID, - NumRows: segment.NumOfRows, - IndexID: indexID, - BuildID: buildID, - CreateTime: uint64(segment.ID), - WriteHandoff: false, - CurrentIndexVersion: s.IndexEngineVersionManager.GetCurrentIndexEngineVersion(), - MinimalIndexVersion: s.IndexEngineVersionManager.GetMinimalIndexEngineVersion(), + SegmentID: segment.ID, + CollectionID: segment.CollectionID, + PartitionID: segment.PartitionID, + NumRows: segment.NumOfRows, + IndexID: indexID, + BuildID: buildID, + CreateTime: uint64(segment.ID), + WriteHandoff: false, } if err = s.meta.AddSegmentIndex(segIndex); err != nil { return err @@ -692,7 +687,6 @@ func (s *Server) GetIndexInfos(ctx context.Context, req *indexpb.GetIndexInfoReq IndexVersion: segIdx.IndexVersion, NumRows: segIdx.NumRows, CurrentIndexVersion: segIdx.CurrentIndexVersion, - MinimalIndexVersion: segIdx.MinimalIndexVersion, }) } } diff --git a/internal/datacoord/server.go b/internal/datacoord/server.go index 69ba84bc0391f..25e61dd12d38e 100644 --- a/internal/datacoord/server.go +++ b/internal/datacoord/server.go @@ -148,7 +148,7 @@ type Server struct { // segReferManager *SegmentReferenceManager indexBuilder *indexBuilder indexNodeManager *IndexNodeManager - IndexEngineVersionManager *IndexEngineVersionManager + indexEngineVersionManager *IndexEngineVersionManager // manage ways that data coord access other coord broker Broker @@ -525,13 +525,13 @@ func (s *Server) initServiceDiscovery() error { } s.inEventCh = s.session.WatchServices(typeutil.IndexNodeRole, inRevision+1, nil) - s.IndexEngineVersionManager = newIndexEngineVersionManager() + s.indexEngineVersionManager = newIndexEngineVersionManager() qnSessions, qnRevision, err := s.session.GetSessions(typeutil.QueryNodeRole) if err != nil { log.Warn("DataCoord get QueryNode sessions failed", zap.Error(err)) return err } - s.IndexEngineVersionManager.Startup(qnSessions) + s.indexEngineVersionManager.Startup(qnSessions) s.qnEventCh = s.session.WatchServicesWithVersionRange(typeutil.QueryNodeRole, r, qnRevision+1, nil) return nil @@ -578,7 +578,7 @@ func (s *Server) initMeta(chunkManager storage.ChunkManager) error { func (s *Server) initIndexBuilder(manager storage.ChunkManager) { if s.indexBuilder == nil { - s.indexBuilder = newIndexBuilder(s.ctx, s.meta, s.indexNodeManager, manager) + s.indexBuilder = newIndexBuilder(s.ctx, s.meta, s.indexNodeManager, manager, s.indexEngineVersionManager) } } @@ -911,16 +911,16 @@ func (s *Server) handleSessionEvent(ctx context.Context, role string, event *ses log.Info("received querynode register", zap.String("address", event.Session.Address), zap.Int64("serverID", event.Session.ServerID)) - s.IndexEngineVersionManager.AddNode(event.Session) + s.indexEngineVersionManager.AddNode(event.Session) case sessionutil.SessionDelEvent: log.Info("received querynode unregister", zap.String("address", event.Session.Address), zap.Int64("serverID", event.Session.ServerID)) - s.IndexEngineVersionManager.RemoveNode(event.Session) + s.indexEngineVersionManager.RemoveNode(event.Session) case sessionutil.SessionUpdateEvent: serverID := event.Session.ServerID log.Info("received querynode SessionUpdateEvent", zap.Int64("serverID", serverID)) - s.IndexEngineVersionManager.Update(event.Session) + s.indexEngineVersionManager.Update(event.Session) default: log.Warn("receive unknown service event type", zap.Any("type", event.EventType)) diff --git a/internal/indexnode/indexnode.go b/internal/indexnode/indexnode.go index 7b20fa12adea5..730521f949ff3 100644 --- a/internal/indexnode/indexnode.go +++ b/internal/indexnode/indexnode.go @@ -74,6 +74,14 @@ var _ types.IndexNodeComponent = (*IndexNode)(nil) // Params is a GlobalParamTable singleton of indexnode var Params *paramtable.ComponentParam = paramtable.Get() +func getCurrentIndexVersion(v int32) int32 { + cCurrent := int32(C.GetCurrentIndexVersion()) + if cCurrent < v { + return cCurrent + } + return v +} + type taskKey struct { ClusterID string BuildID UniqueID diff --git a/internal/indexnode/indexnode_service.go b/internal/indexnode/indexnode_service.go index 143135662927e..359719b5c6738 100644 --- a/internal/indexnode/indexnode_service.go +++ b/internal/indexnode/indexnode_service.go @@ -64,7 +64,6 @@ func (i *IndexNode) CreateJob(ctx context.Context, req *indexpb.CreateJobRequest zap.Any("indexParams", req.GetIndexParams()), zap.Int64("numRows", req.GetNumRows()), zap.Int32("current_index_version", req.GetCurrentIndexVersion()), - zap.Int32("minimal_index_version", req.GetMinimalIndexVersion()), ) ctx, sp := otel.Tracer(typeutil.IndexNodeRole).Start(ctx, "IndexNode-CreateIndex", trace.WithAttributes( attribute.Int64("indexBuildID", req.GetBuildID()), @@ -142,10 +141,11 @@ func (i *IndexNode) QueryJobs(ctx context.Context, req *indexpb.QueryJobsRequest i.foreachTaskInfo(func(ClusterID string, buildID UniqueID, info *taskInfo) { if ClusterID == req.GetClusterID() { infos[buildID] = &taskInfo{ - state: info.state, - fileKeys: common.CloneStringList(info.fileKeys), - serializedSize: info.serializedSize, - failReason: info.failReason, + state: info.state, + fileKeys: common.CloneStringList(info.fileKeys), + serializedSize: info.serializedSize, + failReason: info.failReason, + currentIndexVersion: info.currentIndexVersion, } } }) @@ -166,6 +166,7 @@ func (i *IndexNode) QueryJobs(ctx context.Context, req *indexpb.QueryJobsRequest ret.IndexInfos[i].IndexFileKeys = info.fileKeys ret.IndexInfos[i].SerializedSize = info.serializedSize ret.IndexInfos[i].FailReason = info.failReason + ret.IndexInfos[i].CurrentIndexVersion = info.currentIndexVersion log.RatedDebug(5, "querying index build task", zap.Int64("indexBuildID", buildID), zap.String("state", info.state.String()), diff --git a/internal/indexnode/task.go b/internal/indexnode/task.go index 198d57bce221b..1cb193cc3c099 100644 --- a/internal/indexnode/task.go +++ b/internal/indexnode/task.go @@ -52,11 +52,12 @@ var ( type Blob = storage.Blob type taskInfo struct { - cancel context.CancelFunc - state commonpb.IndexState - fileKeys []string - serializedSize uint64 - failReason string + cancel context.CancelFunc + state commonpb.IndexState + fileKeys []string + serializedSize uint64 + failReason string + currentIndexVersion int32 // task statistics statistic *indexpb.JobInfo @@ -81,27 +82,28 @@ type indexBuildTask struct { cancel context.CancelFunc ctx context.Context - cm storage.ChunkManager - index indexcgowrapper.CodecIndex - savePaths []string - req *indexpb.CreateJobRequest - BuildID UniqueID - nodeID UniqueID - ClusterID string - collectionID UniqueID - partitionID UniqueID - segmentID UniqueID - fieldID UniqueID - fieldType schemapb.DataType - fieldData storage.FieldData - indexBlobs []*storage.Blob - newTypeParams map[string]string - newIndexParams map[string]string - serializedSize uint64 - tr *timerecord.TimeRecorder - queueDur time.Duration - statistic indexpb.JobInfo - node *IndexNode + cm storage.ChunkManager + index indexcgowrapper.CodecIndex + savePaths []string + req *indexpb.CreateJobRequest + currentIndexVersion int32 + BuildID UniqueID + nodeID UniqueID + ClusterID string + collectionID UniqueID + partitionID UniqueID + segmentID UniqueID + fieldID UniqueID + fieldType schemapb.DataType + fieldData storage.FieldData + indexBlobs []*storage.Blob + newTypeParams map[string]string + newIndexParams map[string]string + serializedSize uint64 + tr *timerecord.TimeRecorder + queueDur time.Duration + statistic indexpb.JobInfo + node *IndexNode } func (it *indexBuildTask) Reset() { @@ -337,7 +339,8 @@ func (it *indexBuildTask) BuildIndex(ctx context.Context) error { } } - if err := buildIndexInfo.AppendIndexEngineVersion(it.req.GetCurrentIndexVersion()); err != nil { + it.currentIndexVersion = getCurrentIndexVersion(it.req.GetCurrentIndexVersion()) + if err := buildIndexInfo.AppendIndexEngineVersion(it.currentIndexVersion); err != nil { log.Ctx(ctx).Warn("append index engine version failed", zap.Error(err)) return err } @@ -389,7 +392,7 @@ func (it *indexBuildTask) SaveIndexFiles(ctx context.Context) error { } it.statistic.EndTime = time.Now().UnixMicro() - it.node.storeIndexFilesAndStatistic(it.ClusterID, it.BuildID, saveFileKeys, it.serializedSize, &it.statistic) + it.node.storeIndexFilesAndStatistic(it.ClusterID, it.BuildID, saveFileKeys, it.serializedSize, &it.statistic, it.currentIndexVersion) log.Ctx(ctx).Debug("save index files done", zap.Strings("IndexFiles", saveFileKeys)) saveIndexFileDur := it.tr.RecordSpan() metrics.IndexNodeSaveIndexFileLatency.WithLabelValues(strconv.FormatInt(paramtable.GetNodeID(), 10)).Observe(saveIndexFileDur.Seconds()) diff --git a/internal/indexnode/taskinfo_ops.go b/internal/indexnode/taskinfo_ops.go index 553dea2b51e83..7a0680efa3b4c 100644 --- a/internal/indexnode/taskinfo_ops.go +++ b/internal/indexnode/taskinfo_ops.go @@ -56,7 +56,14 @@ func (i *IndexNode) foreachTaskInfo(fn func(ClusterID string, buildID UniqueID, } } -func (i *IndexNode) storeIndexFilesAndStatistic(ClusterID string, buildID UniqueID, fileKeys []string, serializedSize uint64, statistic *indexpb.JobInfo) { +func (i *IndexNode) storeIndexFilesAndStatistic( + ClusterID string, + buildID UniqueID, + fileKeys []string, + serializedSize uint64, + statistic *indexpb.JobInfo, + currentIndexVersion int32, +) { key := taskKey{ClusterID: ClusterID, BuildID: buildID} i.stateLock.Lock() defer i.stateLock.Unlock() @@ -64,6 +71,7 @@ func (i *IndexNode) storeIndexFilesAndStatistic(ClusterID string, buildID Unique info.fileKeys = common.CloneStringList(fileKeys) info.serializedSize = serializedSize info.statistic = proto.Clone(statistic).(*indexpb.JobInfo) + info.currentIndexVersion = currentIndexVersion return } } diff --git a/internal/metastore/model/segment_index.go b/internal/metastore/model/segment_index.go index 2ebe50ade7fae..3125b0106c333 100644 --- a/internal/metastore/model/segment_index.go +++ b/internal/metastore/model/segment_index.go @@ -24,7 +24,6 @@ type SegmentIndex struct { // deprecated WriteHandoff bool CurrentIndexVersion int32 - MinimalIndexVersion int32 } func UnmarshalSegmentIndexModel(segIndex *indexpb.SegmentIndex) *SegmentIndex { @@ -49,7 +48,6 @@ func UnmarshalSegmentIndexModel(segIndex *indexpb.SegmentIndex) *SegmentIndex { IndexSize: segIndex.SerializeSize, WriteHandoff: segIndex.WriteHandoff, CurrentIndexVersion: segIndex.GetCurrentIndexVersion(), - MinimalIndexVersion: segIndex.GetMinimalIndexVersion(), } } @@ -75,7 +73,6 @@ func MarshalSegmentIndexModel(segIdx *SegmentIndex) *indexpb.SegmentIndex { SerializeSize: segIdx.IndexSize, WriteHandoff: segIdx.WriteHandoff, CurrentIndexVersion: segIdx.CurrentIndexVersion, - MinimalIndexVersion: segIdx.MinimalIndexVersion, } } @@ -97,6 +94,5 @@ func CloneSegmentIndex(segIndex *SegmentIndex) *SegmentIndex { IndexSize: segIndex.IndexSize, WriteHandoff: segIndex.WriteHandoff, CurrentIndexVersion: segIndex.CurrentIndexVersion, - MinimalIndexVersion: segIndex.MinimalIndexVersion, } } diff --git a/internal/proto/index_coord.proto b/internal/proto/index_coord.proto index a3b6e037dc7b7..f32161eba6b34 100644 --- a/internal/proto/index_coord.proto +++ b/internal/proto/index_coord.proto @@ -84,7 +84,6 @@ message SegmentIndex { uint64 serialize_size = 14; bool write_handoff = 15; int32 current_index_version = 16; - int32 minimal_index_version = 17; } message RegisterNodeRequest { @@ -155,7 +154,6 @@ message IndexFilePathInfo { int64 index_version = 9; int64 num_rows = 10; int32 current_index_version = 11; - int32 minimal_index_version = 12; } message SegmentInfo { @@ -228,7 +226,6 @@ message CreateJobRequest { repeated common.KeyValuePair type_params = 10; int64 num_rows = 11; int32 current_index_version = 12; - int32 minimal_index_version = 13; } message QueryJobsRequest { @@ -242,6 +239,7 @@ message IndexTaskInfo { repeated string index_file_keys = 3; uint64 serialized_size = 4; string fail_reason = 5; + int32 current_index_version = 6; } message QueryJobsResponse { diff --git a/internal/proto/indexpb/index_coord.pb.go b/internal/proto/indexpb/index_coord.pb.go index ddce6cdc40ef3..ade3ef09dd968 100644 --- a/internal/proto/indexpb/index_coord.pb.go +++ b/internal/proto/indexpb/index_coord.pb.go @@ -237,7 +237,6 @@ type SegmentIndex struct { SerializeSize uint64 `protobuf:"varint,14,opt,name=serialize_size,json=serializeSize,proto3" json:"serialize_size,omitempty"` WriteHandoff bool `protobuf:"varint,15,opt,name=write_handoff,json=writeHandoff,proto3" json:"write_handoff,omitempty"` CurrentIndexVersion int32 `protobuf:"varint,16,opt,name=current_index_version,json=currentIndexVersion,proto3" json:"current_index_version,omitempty"` - MinimalIndexVersion int32 `protobuf:"varint,17,opt,name=minimal_index_version,json=minimalIndexVersion,proto3" json:"minimal_index_version,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -380,13 +379,6 @@ func (m *SegmentIndex) GetCurrentIndexVersion() int32 { return 0 } -func (m *SegmentIndex) GetMinimalIndexVersion() int32 { - if m != nil { - return m.MinimalIndexVersion - } - return 0 -} - type RegisterNodeRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` Address *commonpb.Address `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"` @@ -910,7 +902,6 @@ type IndexFilePathInfo struct { IndexVersion int64 `protobuf:"varint,9,opt,name=index_version,json=indexVersion,proto3" json:"index_version,omitempty"` NumRows int64 `protobuf:"varint,10,opt,name=num_rows,json=numRows,proto3" json:"num_rows,omitempty"` CurrentIndexVersion int32 `protobuf:"varint,11,opt,name=current_index_version,json=currentIndexVersion,proto3" json:"current_index_version,omitempty"` - MinimalIndexVersion int32 `protobuf:"varint,12,opt,name=minimal_index_version,json=minimalIndexVersion,proto3" json:"minimal_index_version,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1018,13 +1009,6 @@ func (m *IndexFilePathInfo) GetCurrentIndexVersion() int32 { return 0 } -func (m *IndexFilePathInfo) GetMinimalIndexVersion() int32 { - if m != nil { - return m.MinimalIndexVersion - } - return 0 -} - type SegmentInfo struct { CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"` SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"` @@ -1550,7 +1534,6 @@ type CreateJobRequest struct { TypeParams []*commonpb.KeyValuePair `protobuf:"bytes,10,rep,name=type_params,json=typeParams,proto3" json:"type_params,omitempty"` NumRows int64 `protobuf:"varint,11,opt,name=num_rows,json=numRows,proto3" json:"num_rows,omitempty"` CurrentIndexVersion int32 `protobuf:"varint,12,opt,name=current_index_version,json=currentIndexVersion,proto3" json:"current_index_version,omitempty"` - MinimalIndexVersion int32 `protobuf:"varint,13,opt,name=minimal_index_version,json=minimalIndexVersion,proto3" json:"minimal_index_version,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1665,13 +1648,6 @@ func (m *CreateJobRequest) GetCurrentIndexVersion() int32 { return 0 } -func (m *CreateJobRequest) GetMinimalIndexVersion() int32 { - if m != nil { - return m.MinimalIndexVersion - } - return 0 -} - type QueryJobsRequest struct { ClusterID string `protobuf:"bytes,1,opt,name=clusterID,proto3" json:"clusterID,omitempty"` BuildIDs []int64 `protobuf:"varint,2,rep,packed,name=buildIDs,proto3" json:"buildIDs,omitempty"` @@ -1725,6 +1701,7 @@ type IndexTaskInfo struct { IndexFileKeys []string `protobuf:"bytes,3,rep,name=index_file_keys,json=indexFileKeys,proto3" json:"index_file_keys,omitempty"` SerializedSize uint64 `protobuf:"varint,4,opt,name=serialized_size,json=serializedSize,proto3" json:"serialized_size,omitempty"` FailReason string `protobuf:"bytes,5,opt,name=fail_reason,json=failReason,proto3" json:"fail_reason,omitempty"` + CurrentIndexVersion int32 `protobuf:"varint,6,opt,name=current_index_version,json=currentIndexVersion,proto3" json:"current_index_version,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1790,6 +1767,13 @@ func (m *IndexTaskInfo) GetFailReason() string { return "" } +func (m *IndexTaskInfo) GetCurrentIndexVersion() int32 { + if m != nil { + return m.CurrentIndexVersion + } + return 0 +} + type QueryJobsResponse struct { Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"` ClusterID string `protobuf:"bytes,2,opt,name=clusterID,proto3" json:"clusterID,omitempty"` @@ -2221,156 +2205,155 @@ func init() { func init() { proto.RegisterFile("index_coord.proto", fileDescriptor_f9e019eb3fda53c2) } var fileDescriptor_f9e019eb3fda53c2 = []byte{ - // 2377 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x5a, 0xdd, 0x6e, 0x1c, 0x49, - 0xf5, 0x4f, 0xbb, 0xc7, 0xf6, 0xf4, 0xe9, 0x19, 0x7f, 0x54, 0x9c, 0xff, 0x7f, 0x32, 0xc9, 0x12, + // 2353 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x59, 0xdd, 0x6e, 0x1c, 0x49, + 0xf5, 0x4f, 0xbb, 0xc7, 0xf6, 0xf4, 0xe9, 0x19, 0x7f, 0x54, 0xbc, 0xff, 0xff, 0x64, 0x92, 0x10, 0xa7, 0xb3, 0x49, 0x0c, 0x22, 0x4e, 0xf0, 0xb2, 0x68, 0x41, 0x80, 0xe4, 0xd8, 0x9b, 0x64, 0x92, 0x4d, 0x64, 0xda, 0x51, 0x24, 0x56, 0x88, 0xa6, 0x67, 0xba, 0xc6, 0xae, 0x75, 0x4f, 0xd7, 0xa4, - 0xab, 0x3a, 0x89, 0x83, 0x84, 0xe0, 0x82, 0x0b, 0xd0, 0x4a, 0x08, 0xb4, 0x12, 0x2f, 0xc0, 0xd5, - 0x3e, 0x02, 0x37, 0xdc, 0x70, 0x85, 0xb8, 0xe2, 0x1e, 0xf1, 0x04, 0xbc, 0x03, 0xaa, 0x8f, 0xee, - 0xe9, 0xee, 0xe9, 0xf1, 0x4c, 0x6c, 0x23, 0x24, 0xb8, 0x9b, 0x3a, 0x75, 0xea, 0xa3, 0xcf, 0xf9, - 0x9d, 0x73, 0x7e, 0xa7, 0x34, 0xb0, 0x4a, 0xa2, 0x00, 0xbf, 0xf1, 0x7a, 0x94, 0xc6, 0xc1, 0xe6, - 0x30, 0xa6, 0x9c, 0x22, 0x34, 0x20, 0xe1, 0xab, 0x84, 0xa9, 0xd1, 0xa6, 0x9c, 0x6f, 0x37, 0x7a, - 0x74, 0x30, 0xa0, 0x91, 0x92, 0xb5, 0x97, 0x48, 0xc4, 0x71, 0x1c, 0xf9, 0xa1, 0x1e, 0x37, 0xf2, - 0x2b, 0x9c, 0xbf, 0xd7, 0xc0, 0xea, 0x88, 0x55, 0x9d, 0xa8, 0x4f, 0x91, 0x03, 0x8d, 0x1e, 0x0d, - 0x43, 0xdc, 0xe3, 0x84, 0x46, 0x9d, 0xdd, 0x96, 0xb1, 0x6e, 0x6c, 0x98, 0x6e, 0x41, 0x86, 0x5a, - 0xb0, 0xd8, 0x27, 0x38, 0x0c, 0x3a, 0xbb, 0xad, 0x39, 0x39, 0x9d, 0x0e, 0xd1, 0x7b, 0x00, 0xea, - 0x82, 0x91, 0x3f, 0xc0, 0x2d, 0x73, 0xdd, 0xd8, 0xb0, 0x5c, 0x4b, 0x4a, 0x9e, 0xf9, 0x03, 0x2c, - 0x16, 0xca, 0x41, 0x67, 0xb7, 0x55, 0x53, 0x0b, 0xf5, 0x10, 0xdd, 0x07, 0x9b, 0x1f, 0x0f, 0xb1, - 0x37, 0xf4, 0x63, 0x7f, 0xc0, 0x5a, 0xf3, 0xeb, 0xe6, 0x86, 0xbd, 0x75, 0x7d, 0xb3, 0xf0, 0x69, - 0xfa, 0x9b, 0x9e, 0xe0, 0xe3, 0x17, 0x7e, 0x98, 0xe0, 0x3d, 0x9f, 0xc4, 0x2e, 0x88, 0x55, 0x7b, - 0x72, 0x11, 0xda, 0x85, 0x86, 0x3a, 0x5c, 0x6f, 0xb2, 0x30, 0xeb, 0x26, 0xb6, 0x5c, 0xa6, 0x77, - 0xb9, 0xae, 0x77, 0xc1, 0x81, 0x17, 0xd3, 0xd7, 0xac, 0xb5, 0x28, 0x2f, 0x6a, 0x6b, 0x99, 0x4b, - 0x5f, 0x33, 0xf1, 0x95, 0x9c, 0x72, 0x3f, 0x54, 0x0a, 0x75, 0xa9, 0x60, 0x49, 0x89, 0x9c, 0xfe, - 0x10, 0xe6, 0x19, 0xf7, 0x39, 0x6e, 0x59, 0xeb, 0xc6, 0xc6, 0xd2, 0xd6, 0xb5, 0xca, 0x0b, 0x48, - 0x8b, 0xef, 0x0b, 0x35, 0x57, 0x69, 0xa3, 0x0f, 0xe1, 0xff, 0xd5, 0xf5, 0xe5, 0xd0, 0xeb, 0xfb, - 0x24, 0xf4, 0x62, 0xec, 0x33, 0x1a, 0xb5, 0x40, 0x1a, 0x72, 0x8d, 0x64, 0x6b, 0x1e, 0xf8, 0x24, - 0x74, 0xe5, 0x1c, 0x72, 0xa0, 0x49, 0x98, 0xe7, 0x27, 0x9c, 0x7a, 0x72, 0xbe, 0x65, 0xaf, 0x1b, - 0x1b, 0x75, 0xd7, 0x26, 0x6c, 0x3b, 0xe1, 0x54, 0x1e, 0x83, 0x9e, 0xc2, 0x6a, 0xc2, 0x70, 0xec, - 0x15, 0xcc, 0xd3, 0x98, 0xd5, 0x3c, 0xcb, 0x62, 0x6d, 0x27, 0x67, 0xa2, 0xaf, 0x03, 0x1a, 0xe2, - 0x28, 0x20, 0xd1, 0x81, 0xde, 0x51, 0xda, 0xa1, 0x29, 0xed, 0xb0, 0xa2, 0x67, 0xa4, 0xbe, 0x30, - 0x87, 0xf3, 0x4b, 0x03, 0xe0, 0x81, 0xc4, 0x87, 0xbc, 0xcb, 0x77, 0x53, 0x88, 0x90, 0xa8, 0x4f, - 0x25, 0xbc, 0xec, 0xad, 0xf7, 0x36, 0xc7, 0x31, 0xbc, 0x99, 0x61, 0x52, 0x23, 0x48, 0xc2, 0xb3, - 0x05, 0x8b, 0x01, 0x0e, 0x31, 0xc7, 0x81, 0x84, 0x5e, 0xdd, 0x4d, 0x87, 0xe8, 0x1a, 0xd8, 0xbd, - 0x18, 0x0b, 0xcb, 0x71, 0xa2, 0xb1, 0x57, 0x73, 0x41, 0x89, 0x9e, 0x93, 0x01, 0x76, 0xfe, 0x59, - 0x83, 0xc6, 0x3e, 0x3e, 0x18, 0xe0, 0x88, 0xab, 0x9b, 0xcc, 0x02, 0xf5, 0x75, 0xb0, 0x87, 0x7e, - 0xcc, 0x89, 0x56, 0x51, 0x70, 0xcf, 0x8b, 0xd0, 0x55, 0xb0, 0x98, 0xde, 0x75, 0x57, 0x9e, 0x6a, - 0xba, 0x23, 0x01, 0xba, 0x0c, 0xf5, 0x28, 0x19, 0x28, 0x03, 0x69, 0xc8, 0x47, 0xc9, 0x40, 0xc2, - 0x24, 0x17, 0x0c, 0xf3, 0xc5, 0x60, 0x68, 0xc1, 0x62, 0x37, 0x21, 0x32, 0xbe, 0x16, 0xd4, 0x8c, - 0x1e, 0xa2, 0xff, 0x83, 0x85, 0x88, 0x06, 0xb8, 0xb3, 0xab, 0x61, 0xa9, 0x47, 0xe8, 0x06, 0x34, - 0x95, 0x51, 0x5f, 0xe1, 0x98, 0x11, 0x1a, 0x69, 0x50, 0x2a, 0x24, 0xbf, 0x50, 0xb2, 0xd3, 0xe2, - 0xf2, 0x1a, 0xd8, 0xe3, 0x58, 0x84, 0xfe, 0x08, 0x81, 0xb7, 0x60, 0x59, 0x1d, 0xde, 0x27, 0x21, - 0xf6, 0x8e, 0xf0, 0x31, 0x6b, 0xd9, 0xeb, 0xe6, 0x86, 0xe5, 0xaa, 0x3b, 0x3d, 0x20, 0x21, 0x7e, - 0x82, 0x8f, 0x59, 0xde, 0x77, 0x8d, 0x13, 0x7d, 0xd7, 0x2c, 0xfb, 0x0e, 0xdd, 0x84, 0x25, 0x86, - 0x63, 0xe2, 0x87, 0xe4, 0x2d, 0xf6, 0x18, 0x79, 0x8b, 0x5b, 0x4b, 0x52, 0xa7, 0x99, 0x49, 0xf7, - 0xc9, 0x5b, 0x2c, 0xcc, 0xf0, 0x3a, 0x26, 0x1c, 0x7b, 0x87, 0x7e, 0x14, 0xd0, 0x7e, 0xbf, 0xb5, - 0x2c, 0xcf, 0x69, 0x48, 0xe1, 0x23, 0x25, 0x43, 0x5b, 0x70, 0xa9, 0x97, 0xc4, 0x31, 0x8e, 0xb8, - 0x57, 0xb4, 0xd9, 0xca, 0xba, 0xb1, 0x31, 0xef, 0x5e, 0xd4, 0x93, 0x9d, 0xbc, 0xe9, 0xb6, 0xe0, - 0xd2, 0x80, 0x44, 0x64, 0xe0, 0x87, 0xa5, 0x35, 0xab, 0x6a, 0x8d, 0x9e, 0xcc, 0xaf, 0x71, 0x7e, - 0x6f, 0xc0, 0x45, 0x17, 0x1f, 0x10, 0xc6, 0x71, 0xfc, 0x8c, 0x06, 0xd8, 0xc5, 0x2f, 0x13, 0xcc, - 0x38, 0xba, 0x07, 0xb5, 0xae, 0xcf, 0xb0, 0x86, 0xfe, 0xd5, 0x4a, 0x2f, 0x3c, 0x65, 0x07, 0xf7, - 0x7d, 0x86, 0x5d, 0xa9, 0x89, 0xbe, 0x05, 0x8b, 0x7e, 0x10, 0xc4, 0x98, 0x31, 0x09, 0xc0, 0x49, - 0x8b, 0xb6, 0x95, 0x8e, 0x9b, 0x2a, 0xe7, 0xd0, 0x62, 0xe6, 0xd1, 0xe2, 0xfc, 0xc6, 0x80, 0xb5, - 0xe2, 0xcd, 0xd8, 0x90, 0x46, 0x0c, 0xa3, 0x0f, 0x60, 0x41, 0xf8, 0x3c, 0x61, 0xfa, 0x72, 0x57, - 0x2a, 0xcf, 0xd9, 0x97, 0x2a, 0xae, 0x56, 0x15, 0xa9, 0x9b, 0x44, 0x84, 0xa7, 0x69, 0x45, 0xdd, - 0xf0, 0x7a, 0x39, 0xa2, 0x75, 0x01, 0xea, 0x44, 0x84, 0xab, 0x2c, 0xe2, 0x02, 0xc9, 0x7e, 0x3b, - 0x3f, 0x84, 0xb5, 0x87, 0x98, 0xe7, 0xb0, 0xa7, 0x6d, 0x35, 0x4b, 0x88, 0x16, 0x6b, 0xce, 0x5c, - 0xa9, 0xe6, 0x38, 0x7f, 0x30, 0xe0, 0x52, 0x69, 0xef, 0xb3, 0x7c, 0x6d, 0x16, 0x44, 0x73, 0x67, - 0x09, 0x22, 0xb3, 0x1c, 0x44, 0xce, 0xcf, 0x0d, 0xb8, 0xf2, 0x10, 0xf3, 0x7c, 0x82, 0x3a, 0x67, - 0x4b, 0xa0, 0xaf, 0x00, 0x64, 0x89, 0x89, 0xb5, 0xcc, 0x75, 0x73, 0xc3, 0x74, 0x73, 0x12, 0xe7, - 0x57, 0x06, 0xac, 0x8e, 0x9d, 0x5f, 0xcc, 0x6f, 0x46, 0x39, 0xbf, 0xfd, 0xbb, 0xcc, 0xf1, 0x3b, - 0x03, 0xae, 0x56, 0x9b, 0xe3, 0x2c, 0xce, 0xfb, 0x9e, 0x5a, 0x84, 0x05, 0x4a, 0x45, 0xf1, 0xbb, - 0x59, 0x55, 0x77, 0xc6, 0xcf, 0xd4, 0x8b, 0x9c, 0xcf, 0x4d, 0x40, 0x3b, 0x32, 0x29, 0xa9, 0xea, - 0xf6, 0x0e, 0xae, 0x39, 0x35, 0x65, 0x2a, 0x11, 0xa3, 0xda, 0x79, 0x10, 0xa3, 0xf9, 0x53, 0x11, - 0xa3, 0xab, 0x60, 0x89, 0xec, 0xcc, 0xb8, 0x3f, 0x18, 0xca, 0xba, 0x54, 0x73, 0x47, 0x82, 0x71, - 0x1a, 0xb2, 0x38, 0x23, 0x0d, 0xa9, 0x9f, 0x96, 0x86, 0x38, 0x6f, 0xe0, 0x62, 0x1a, 0xd8, 0x92, - 0x26, 0xbc, 0x83, 0x3b, 0x8a, 0xa1, 0x30, 0x57, 0x0e, 0x85, 0x29, 0x4e, 0x71, 0xfe, 0x61, 0xc2, - 0x6a, 0x27, 0xad, 0x6d, 0x7b, 0x3e, 0x3f, 0x94, 0xdc, 0xe4, 0xe4, 0x48, 0x99, 0x8c, 0x80, 0x1c, - 0x11, 0x30, 0x27, 0x12, 0x81, 0x5a, 0x91, 0x08, 0x14, 0x2f, 0x38, 0x5f, 0x46, 0xcd, 0xf9, 0x50, - 0xe1, 0x0d, 0x58, 0xc9, 0x15, 0xf6, 0xa1, 0xcf, 0x0f, 0x05, 0x1d, 0x16, 0x95, 0x7d, 0x89, 0xe4, - 0xbf, 0x9e, 0xa1, 0xdb, 0xb0, 0x9c, 0x55, 0xe2, 0x40, 0x15, 0xe8, 0xba, 0x44, 0xc8, 0xa8, 0x6c, - 0x07, 0x69, 0x85, 0x2e, 0x16, 0x50, 0xab, 0x82, 0xa8, 0xe4, 0x49, 0x13, 0x14, 0x49, 0xd3, 0xc4, - 0xe2, 0x6d, 0x9f, 0xa2, 0x78, 0x37, 0x26, 0x17, 0xef, 0x3f, 0x1a, 0x60, 0x67, 0x89, 0x60, 0xc6, - 0xb6, 0xa8, 0xe0, 0xff, 0xb9, 0xb2, 0xff, 0xaf, 0x43, 0x03, 0x47, 0x7e, 0x37, 0xc4, 0x3a, 0x3e, - 0x4c, 0x15, 0x1f, 0x4a, 0xa6, 0xe2, 0xe3, 0x01, 0xd8, 0x23, 0x6a, 0x9c, 0xc6, 0xfa, 0xcd, 0x89, - 0xdc, 0x38, 0x0f, 0x3e, 0x17, 0x32, 0x8e, 0xcc, 0x9c, 0x5f, 0xcf, 0x8d, 0xca, 0xa9, 0x8a, 0x8c, - 0xb3, 0x24, 0xcd, 0x1f, 0x41, 0x43, 0x7f, 0x85, 0xa2, 0xec, 0x2a, 0x75, 0x7e, 0xbb, 0xea, 0x5a, - 0x55, 0x87, 0x6e, 0xe6, 0xcc, 0xf8, 0x71, 0xc4, 0xe3, 0x63, 0xd7, 0x66, 0x23, 0x49, 0xdb, 0x83, - 0x95, 0xb2, 0x02, 0x5a, 0x01, 0xf3, 0x08, 0x1f, 0x6b, 0x1b, 0x8b, 0x9f, 0xa2, 0xcc, 0xbc, 0x12, - 0x18, 0xd5, 0xec, 0xe2, 0xda, 0x89, 0x79, 0xbb, 0x4f, 0x5d, 0xa5, 0xfd, 0x9d, 0xb9, 0x8f, 0x0c, - 0xe7, 0x0b, 0x03, 0x56, 0x76, 0x63, 0x3a, 0x7c, 0xe7, 0x94, 0xed, 0x40, 0x23, 0xc7, 0xf3, 0xd3, - 0x2c, 0x51, 0x90, 0x4d, 0x4b, 0xde, 0x97, 0xa1, 0x1e, 0xc4, 0x74, 0xe8, 0xf9, 0x61, 0x28, 0x03, - 0x58, 0x50, 0xde, 0x98, 0x0e, 0xb7, 0xc3, 0xd0, 0x79, 0x0d, 0x6b, 0xbb, 0x98, 0xf5, 0x62, 0xd2, - 0x7d, 0xf7, 0x62, 0x32, 0xa5, 0xce, 0x17, 0x12, 0xb5, 0x59, 0x4a, 0xd4, 0xce, 0xe7, 0x06, 0x5c, - 0x2a, 0x9d, 0x7c, 0x16, 0x74, 0x7c, 0xbf, 0x88, 0x59, 0x05, 0x8e, 0x29, 0xfd, 0x5c, 0x1e, 0xab, - 0xbe, 0xac, 0xf3, 0x72, 0xee, 0xbe, 0xc8, 0x6d, 0x7b, 0x31, 0x3d, 0x90, 0x2c, 0xf6, 0xfc, 0x18, - 0xe0, 0x9f, 0x0d, 0x78, 0x6f, 0xc2, 0x19, 0x67, 0xf9, 0xf2, 0xf2, 0x43, 0xc1, 0xdc, 0xb4, 0x87, - 0x02, 0xb3, 0xfc, 0x50, 0x50, 0xdd, 0x47, 0xd7, 0x26, 0xf4, 0xd1, 0x5f, 0x98, 0xd0, 0xdc, 0xe7, - 0x34, 0xf6, 0x0f, 0xf0, 0x0e, 0x8d, 0xfa, 0xe4, 0x40, 0x94, 0x87, 0xb4, 0x2f, 0x30, 0xe4, 0x47, - 0x67, 0xcc, 0xff, 0x3a, 0x34, 0xfc, 0x5e, 0x0f, 0x33, 0x26, 0xda, 0x31, 0x9d, 0x8d, 0x2c, 0xd7, - 0x56, 0xb2, 0x27, 0x42, 0x84, 0xbe, 0x06, 0xab, 0x0c, 0xf7, 0x62, 0xcc, 0xbd, 0x91, 0xa6, 0x46, - 0xf0, 0xb2, 0x9a, 0xd8, 0x4e, 0xb5, 0x45, 0x23, 0x91, 0x30, 0xbc, 0xbf, 0xff, 0x89, 0x46, 0xb1, - 0x1e, 0x09, 0x1a, 0xd7, 0x4d, 0x7a, 0x47, 0x98, 0xe7, 0xcb, 0x10, 0x28, 0x91, 0x84, 0xe2, 0x15, - 0xb0, 0x62, 0x4a, 0xb9, 0xac, 0x1d, 0x92, 0x33, 0x58, 0x6e, 0x5d, 0x08, 0x44, 0xda, 0xd2, 0xbb, - 0x76, 0xb6, 0x9f, 0x6a, 0xae, 0xa0, 0x47, 0xa2, 0xe7, 0xee, 0x6c, 0x3f, 0xfd, 0x38, 0x0a, 0x86, - 0x94, 0x44, 0x5c, 0x16, 0x12, 0xcb, 0xcd, 0x8b, 0xc4, 0xe7, 0x31, 0x65, 0x09, 0x4f, 0xd0, 0x1c, - 0x59, 0x44, 0x2c, 0xd7, 0xd6, 0xb2, 0xe7, 0xc7, 0x43, 0x2c, 0x6a, 0x57, 0xc2, 0xb0, 0xf7, 0x8a, - 0xc4, 0x3c, 0xf1, 0x43, 0xef, 0x90, 0x32, 0x2e, 0x6b, 0x49, 0xdd, 0x5d, 0x4a, 0x18, 0x7e, 0xa1, - 0xc4, 0x8f, 0x28, 0xe3, 0xe2, 0x1a, 0x31, 0x3e, 0x48, 0x6b, 0x88, 0xe5, 0xea, 0x91, 0xe8, 0x39, - 0x7b, 0x21, 0x4d, 0x02, 0x6f, 0x18, 0xd3, 0x57, 0x24, 0xc0, 0xb1, 0xac, 0x17, 0x96, 0xdb, 0x94, - 0xd2, 0x3d, 0x2d, 0x74, 0xfe, 0x52, 0x83, 0x15, 0x45, 0x0a, 0x1f, 0xd3, 0x6e, 0x8a, 0xda, 0xab, - 0x60, 0xf5, 0xc2, 0x44, 0xf4, 0x57, 0x1a, 0xb2, 0x96, 0x3b, 0x12, 0x08, 0xd3, 0xe7, 0xeb, 0x6a, - 0x8c, 0xfb, 0xe4, 0x8d, 0x76, 0xd1, 0xf2, 0xa8, 0xb0, 0x4a, 0x71, 0x9e, 0x02, 0x98, 0x63, 0x14, - 0x20, 0xf0, 0xb9, 0xaf, 0xeb, 0x72, 0x4d, 0xd6, 0x65, 0x4b, 0x48, 0x54, 0x49, 0x1e, 0xab, 0xb4, - 0xf3, 0x15, 0x95, 0x36, 0x47, 0x3d, 0x16, 0x8a, 0xd4, 0xa3, 0x18, 0x53, 0x8b, 0xe5, 0x1c, 0xf3, - 0x08, 0x96, 0x52, 0x0f, 0xf4, 0x24, 0x18, 0xa5, 0x9b, 0x2a, 0xfa, 0x3e, 0x99, 0x99, 0xf3, 0xa8, - 0x75, 0x9b, 0xac, 0x00, 0xe2, 0x32, 0x55, 0xb1, 0x4e, 0x45, 0x55, 0x4a, 0x34, 0x19, 0x4e, 0x43, - 0x93, 0xf3, 0xb4, 0xc3, 0x9e, 0x91, 0x76, 0x34, 0x4e, 0x41, 0x3b, 0x9a, 0x93, 0x69, 0xc7, 0x27, - 0xb0, 0xf2, 0x83, 0x04, 0xc7, 0xc7, 0x8f, 0x69, 0x97, 0xcd, 0x86, 0xa5, 0x36, 0xd4, 0x35, 0x20, - 0xd2, 0x0a, 0x95, 0x8d, 0x9d, 0xbf, 0x19, 0xd0, 0x94, 0xdb, 0x3f, 0xf7, 0xd9, 0x51, 0xfa, 0x7c, - 0x96, 0xa2, 0xc9, 0x28, 0xa2, 0xe9, 0x94, 0x8d, 0x5c, 0xc5, 0xdb, 0x8f, 0x59, 0xf5, 0xf6, 0x53, - 0x41, 0x10, 0x6b, 0x95, 0x04, 0xb1, 0xd4, 0x19, 0xce, 0x8f, 0x75, 0x86, 0x5f, 0x1a, 0xb0, 0x9a, - 0xb3, 0xd1, 0x59, 0x32, 0x78, 0xc1, 0xb2, 0x73, 0x65, 0xcb, 0xde, 0x2f, 0x56, 0x36, 0xb3, 0x0a, - 0x52, 0xb9, 0xca, 0x96, 0xda, 0xb8, 0x50, 0xdd, 0x9e, 0xc0, 0xb2, 0xe0, 0x1e, 0xe7, 0xe3, 0xce, - 0xbf, 0x1a, 0xb0, 0xf8, 0x98, 0x76, 0xa5, 0x23, 0xf3, 0x58, 0x35, 0x8a, 0x58, 0x5d, 0x01, 0x33, - 0x20, 0x03, 0x5d, 0x8e, 0xc4, 0x4f, 0x11, 0xcb, 0x8c, 0xfb, 0x31, 0x1f, 0xbd, 0x8c, 0x0a, 0x66, - 0x2a, 0x24, 0xf2, 0x71, 0xed, 0x32, 0xd4, 0x71, 0x14, 0xa8, 0x49, 0xdd, 0x66, 0xe0, 0x28, 0x90, - 0x53, 0xe7, 0xd3, 0x39, 0xae, 0xc1, 0xfc, 0x90, 0x8e, 0x5e, 0x33, 0xd5, 0xc0, 0x59, 0x03, 0xf4, - 0x10, 0xf3, 0xc7, 0xb4, 0x2b, 0xbc, 0x92, 0x9a, 0xc7, 0xf9, 0xd3, 0x9c, 0xec, 0xea, 0x46, 0xe2, - 0xb3, 0x38, 0xd8, 0x81, 0xa6, 0xaa, 0xbf, 0x9f, 0xd1, 0xae, 0x17, 0x25, 0xa9, 0x51, 0x6c, 0x29, - 0x7c, 0x4c, 0xbb, 0xcf, 0x92, 0x01, 0xba, 0x03, 0x17, 0x49, 0x24, 0x72, 0xbc, 0xa4, 0x04, 0x99, - 0xa6, 0xb2, 0xd2, 0x0a, 0x89, 0x52, 0xb2, 0xa0, 0xd5, 0x6f, 0xc1, 0x32, 0x8e, 0x5e, 0x26, 0x38, - 0xc1, 0x99, 0xaa, 0xb2, 0x59, 0x53, 0x8b, 0xb5, 0x9e, 0x28, 0xfd, 0x3e, 0x3b, 0xf2, 0x58, 0x48, - 0x39, 0xd3, 0xb9, 0xd7, 0x12, 0x92, 0x7d, 0x21, 0x40, 0x1f, 0x81, 0x25, 0x96, 0x2b, 0x68, 0xa9, - 0xee, 0xec, 0x4a, 0x15, 0xb4, 0xb4, 0xbf, 0xdd, 0xfa, 0x67, 0xea, 0x07, 0x13, 0x01, 0xa2, 0xfb, - 0x88, 0x80, 0xb0, 0x23, 0x5d, 0x3a, 0x41, 0x89, 0x76, 0x09, 0x3b, 0x72, 0x7e, 0x0c, 0x97, 0xf3, - 0xef, 0x5d, 0x84, 0x71, 0xd2, 0x3b, 0x4f, 0x3a, 0xf5, 0x5b, 0x03, 0xda, 0x55, 0x07, 0xfc, 0x07, - 0x59, 0xe4, 0xd6, 0x2f, 0x6c, 0x00, 0x39, 0xb3, 0x43, 0x69, 0x1c, 0xa0, 0x50, 0x42, 0x6b, 0x87, - 0x0e, 0x86, 0x34, 0xc2, 0x11, 0x97, 0x19, 0x8b, 0xa1, 0xcd, 0xe2, 0x7e, 0x7a, 0x30, 0xae, 0xa8, - 0x6d, 0xd5, 0x7e, 0xbf, 0x52, 0xbf, 0xa4, 0xec, 0x5c, 0x40, 0x2f, 0x65, 0xb7, 0x35, 0x32, 0xc5, - 0xce, 0xa1, 0x1f, 0x45, 0x38, 0x44, 0x5b, 0x13, 0xde, 0x40, 0xab, 0x94, 0xd3, 0x33, 0x6f, 0x54, - 0x9e, 0xb9, 0xcf, 0x63, 0x12, 0x1d, 0xa4, 0x26, 0x76, 0x2e, 0xa0, 0xe7, 0x60, 0xe7, 0x1e, 0xa2, - 0xd0, 0xad, 0x2a, 0x4b, 0x8d, 0xbf, 0x54, 0xb5, 0x4f, 0xf2, 0x85, 0x73, 0x01, 0xf5, 0xa1, 0x59, - 0x78, 0x29, 0x45, 0x1b, 0x27, 0x35, 0x79, 0xf9, 0xe7, 0xc9, 0xf6, 0x57, 0x67, 0xd0, 0xcc, 0x6e, - 0xff, 0x53, 0x65, 0xb0, 0xb1, 0xa7, 0xc6, 0xbb, 0x13, 0x36, 0x99, 0xf4, 0x28, 0xda, 0xbe, 0x37, - 0xfb, 0x82, 0xec, 0xf0, 0x60, 0xf4, 0x91, 0x2a, 0xa0, 0x6e, 0x4f, 0xef, 0x64, 0xd5, 0x69, 0x1b, - 0xb3, 0xb6, 0xbc, 0xce, 0x05, 0xb4, 0x07, 0x56, 0xd6, 0x74, 0xa2, 0xf7, 0xab, 0x16, 0x96, 0x7b, - 0xd2, 0x19, 0x9c, 0x53, 0x68, 0xdb, 0xaa, 0x9d, 0x53, 0xd5, 0x53, 0x56, 0x3b, 0xa7, 0xb2, 0x07, - 0x74, 0x2e, 0xa0, 0x44, 0xc6, 0x4e, 0x29, 0xba, 0xd1, 0x9d, 0x69, 0xfe, 0x2d, 0xa4, 0x99, 0xf6, - 0xe6, 0xac, 0xea, 0xd9, 0xb1, 0x3f, 0x1b, 0xbd, 0xd2, 0x17, 0x7a, 0x34, 0x74, 0xef, 0xa4, 0xad, - 0xaa, 0x5a, 0xc6, 0xf6, 0x37, 0xde, 0x61, 0x45, 0x0e, 0x93, 0x68, 0xff, 0x90, 0xbe, 0x56, 0xa4, - 0x34, 0x89, 0x7d, 0x91, 0x0b, 0x2b, 0x0e, 0xd7, 0x21, 0x3c, 0xae, 0x3a, 0xf1, 0xf0, 0x13, 0x56, - 0x64, 0x87, 0x7b, 0x00, 0x0f, 0x31, 0x7f, 0x8a, 0x79, 0x2c, 0x6c, 0x7d, 0x6b, 0x52, 0x9e, 0xd2, - 0x0a, 0xe9, 0x51, 0xb7, 0xa7, 0xea, 0x65, 0x07, 0x74, 0xc1, 0xde, 0x39, 0xc4, 0xbd, 0xa3, 0x47, - 0xd8, 0x0f, 0xf9, 0x21, 0xaa, 0x5e, 0x99, 0xd3, 0x98, 0x00, 0xf9, 0x2a, 0xc5, 0xf4, 0x8c, 0xad, - 0x2f, 0x17, 0xf4, 0xff, 0x08, 0x9e, 0xd1, 0x00, 0xff, 0xf7, 0xa7, 0xe0, 0x3d, 0xb0, 0xb2, 0xb6, - 0xaf, 0x3a, 0xc2, 0xcb, 0x5d, 0xe1, 0xb4, 0x08, 0xff, 0x14, 0xac, 0x8c, 0xd8, 0x56, 0xef, 0x58, - 0xee, 0x0d, 0xda, 0x37, 0xa7, 0x68, 0x65, 0xb7, 0x7d, 0x06, 0xf5, 0x94, 0x88, 0xa2, 0x1b, 0x93, - 0xd2, 0x51, 0x7e, 0xe7, 0x29, 0x77, 0xfd, 0x09, 0xd8, 0x39, 0x96, 0x56, 0x5d, 0x80, 0xc6, 0xd9, - 0x5d, 0xfb, 0xf6, 0x54, 0xbd, 0xff, 0x8d, 0x80, 0xbc, 0xff, 0xcd, 0x4f, 0xb7, 0x0e, 0x08, 0x3f, - 0x4c, 0xba, 0xc2, 0xb2, 0x77, 0x95, 0xe6, 0x1d, 0x42, 0xf5, 0xaf, 0xbb, 0xe9, 0x2d, 0xef, 0xca, - 0x9d, 0xee, 0x4a, 0x3b, 0x0d, 0xbb, 0xdd, 0x05, 0x39, 0xfc, 0xe0, 0x5f, 0x01, 0x00, 0x00, 0xff, - 0xff, 0x92, 0xba, 0x38, 0x00, 0x06, 0x24, 0x00, 0x00, + 0xab, 0x3a, 0x89, 0x83, 0x84, 0xe0, 0x02, 0x24, 0xd0, 0x4a, 0x08, 0xb4, 0x82, 0x17, 0xe0, 0x6a, + 0x79, 0x02, 0xb8, 0xe1, 0x86, 0x4b, 0x5e, 0x81, 0x77, 0x41, 0xf5, 0xd1, 0x3d, 0xdd, 0x3d, 0x3d, + 0x9e, 0x89, 0x6d, 0x84, 0x04, 0x77, 0x53, 0xa7, 0x4e, 0x7d, 0xf4, 0x39, 0xbf, 0x73, 0x7e, 0xe7, + 0xd4, 0xc0, 0x2a, 0x89, 0x02, 0xfc, 0xc6, 0xeb, 0x51, 0x1a, 0x07, 0x9b, 0xc3, 0x98, 0x72, 0x8a, + 0xd0, 0x80, 0x84, 0xaf, 0x12, 0xa6, 0x46, 0x9b, 0x72, 0xbe, 0xdd, 0xe8, 0xd1, 0xc1, 0x80, 0x46, + 0x4a, 0xd6, 0x5e, 0x22, 0x11, 0xc7, 0x71, 0xe4, 0x87, 0x7a, 0xdc, 0xc8, 0xaf, 0x70, 0xfe, 0x59, + 0x03, 0xab, 0x23, 0x56, 0x75, 0xa2, 0x3e, 0x45, 0x0e, 0x34, 0x7a, 0x34, 0x0c, 0x71, 0x8f, 0x13, + 0x1a, 0x75, 0x76, 0x5b, 0xc6, 0xba, 0xb1, 0x61, 0xba, 0x05, 0x19, 0x6a, 0xc1, 0x62, 0x9f, 0xe0, + 0x30, 0xe8, 0xec, 0xb6, 0xe6, 0xe4, 0x74, 0x3a, 0x44, 0x57, 0x01, 0xd4, 0x05, 0x23, 0x7f, 0x80, + 0x5b, 0xe6, 0xba, 0xb1, 0x61, 0xb9, 0x96, 0x94, 0x3c, 0xf3, 0x07, 0x58, 0x2c, 0x94, 0x83, 0xce, + 0x6e, 0xab, 0xa6, 0x16, 0xea, 0x21, 0xba, 0x0f, 0x36, 0x3f, 0x1e, 0x62, 0x6f, 0xe8, 0xc7, 0xfe, + 0x80, 0xb5, 0xe6, 0xd7, 0xcd, 0x0d, 0x7b, 0xeb, 0xfa, 0x66, 0xe1, 0xd3, 0xf4, 0x37, 0x3d, 0xc1, + 0xc7, 0x2f, 0xfc, 0x30, 0xc1, 0x7b, 0x3e, 0x89, 0x5d, 0x10, 0xab, 0xf6, 0xe4, 0x22, 0xb4, 0x0b, + 0x0d, 0x75, 0xb8, 0xde, 0x64, 0x61, 0xd6, 0x4d, 0x6c, 0xb9, 0x4c, 0xef, 0x72, 0x5d, 0xef, 0x82, + 0x03, 0x2f, 0xa6, 0xaf, 0x59, 0x6b, 0x51, 0x5e, 0xd4, 0xd6, 0x32, 0x97, 0xbe, 0x66, 0xe2, 0x2b, + 0x39, 0xe5, 0x7e, 0xa8, 0x14, 0xea, 0x52, 0xc1, 0x92, 0x12, 0x39, 0xfd, 0x21, 0xcc, 0x33, 0xee, + 0x73, 0xdc, 0xb2, 0xd6, 0x8d, 0x8d, 0xa5, 0xad, 0x6b, 0x95, 0x17, 0x90, 0x16, 0xdf, 0x17, 0x6a, + 0xae, 0xd2, 0x46, 0x1f, 0xc2, 0xff, 0xab, 0xeb, 0xcb, 0xa1, 0xd7, 0xf7, 0x49, 0xe8, 0xc5, 0xd8, + 0x67, 0x34, 0x6a, 0x81, 0x34, 0xe4, 0x1a, 0xc9, 0xd6, 0x3c, 0xf0, 0x49, 0xe8, 0xca, 0x39, 0xe4, + 0x40, 0x93, 0x30, 0xcf, 0x4f, 0x38, 0xf5, 0xe4, 0x7c, 0xcb, 0x5e, 0x37, 0x36, 0xea, 0xae, 0x4d, + 0xd8, 0x76, 0xc2, 0xa9, 0x3c, 0x06, 0x3d, 0x85, 0xd5, 0x84, 0xe1, 0xd8, 0x2b, 0x98, 0xa7, 0x31, + 0xab, 0x79, 0x96, 0xc5, 0xda, 0x4e, 0xce, 0x44, 0x5f, 0x07, 0x34, 0xc4, 0x51, 0x40, 0xa2, 0x03, + 0xbd, 0xa3, 0xb4, 0x43, 0x53, 0xda, 0x61, 0x45, 0xcf, 0x48, 0x7d, 0x61, 0x0e, 0xe7, 0x97, 0x06, + 0xc0, 0x03, 0x89, 0x0f, 0x79, 0x97, 0xef, 0xa6, 0x10, 0x21, 0x51, 0x9f, 0x4a, 0x78, 0xd9, 0x5b, + 0x57, 0x37, 0xc7, 0x31, 0xbc, 0x99, 0x61, 0x52, 0x23, 0x48, 0xc2, 0xb3, 0x05, 0x8b, 0x01, 0x0e, + 0x31, 0xc7, 0x81, 0x84, 0x5e, 0xdd, 0x4d, 0x87, 0xe8, 0x1a, 0xd8, 0xbd, 0x18, 0x0b, 0xcb, 0x71, + 0xa2, 0xb1, 0x57, 0x73, 0x41, 0x89, 0x9e, 0x93, 0x01, 0x76, 0xfe, 0x52, 0x83, 0xc6, 0x3e, 0x3e, + 0x18, 0xe0, 0x88, 0xab, 0x9b, 0xcc, 0x02, 0xf5, 0x75, 0xb0, 0x87, 0x7e, 0xcc, 0x89, 0x56, 0x51, + 0x70, 0xcf, 0x8b, 0xd0, 0x15, 0xb0, 0x98, 0xde, 0x75, 0x57, 0x9e, 0x6a, 0xba, 0x23, 0x01, 0xba, + 0x04, 0xf5, 0x28, 0x19, 0x28, 0x03, 0x69, 0xc8, 0x47, 0xc9, 0x40, 0xc2, 0x24, 0x17, 0x0c, 0xf3, + 0xc5, 0x60, 0x68, 0xc1, 0x62, 0x37, 0x21, 0x32, 0xbe, 0x16, 0xd4, 0x8c, 0x1e, 0xa2, 0xff, 0x83, + 0x85, 0x88, 0x06, 0xb8, 0xb3, 0xab, 0x61, 0xa9, 0x47, 0xe8, 0x06, 0x34, 0x95, 0x51, 0x5f, 0xe1, + 0x98, 0x11, 0x1a, 0x69, 0x50, 0x2a, 0x24, 0xbf, 0x50, 0xb2, 0xd3, 0xe2, 0xf2, 0x1a, 0xd8, 0xe3, + 0x58, 0x84, 0xfe, 0x08, 0x81, 0xb7, 0x60, 0x59, 0x1d, 0xde, 0x27, 0x21, 0xf6, 0x8e, 0xf0, 0x31, + 0x6b, 0xd9, 0xeb, 0xe6, 0x86, 0xe5, 0xaa, 0x3b, 0x3d, 0x20, 0x21, 0x7e, 0x82, 0x8f, 0x59, 0xde, + 0x77, 0x8d, 0x13, 0x7d, 0xd7, 0x2c, 0xfb, 0x0e, 0xdd, 0x84, 0x25, 0x86, 0x63, 0xe2, 0x87, 0xe4, + 0x2d, 0xf6, 0x18, 0x79, 0x8b, 0x5b, 0x4b, 0x52, 0xa7, 0x99, 0x49, 0xf7, 0xc9, 0x5b, 0x2c, 0xcc, + 0xf0, 0x3a, 0x26, 0x1c, 0x7b, 0x87, 0x7e, 0x14, 0xd0, 0x7e, 0xbf, 0xb5, 0x2c, 0xcf, 0x69, 0x48, + 0xe1, 0x23, 0x25, 0x43, 0x5b, 0xf0, 0x5e, 0x2f, 0x89, 0x63, 0x1c, 0x71, 0xaf, 0x68, 0xb3, 0x95, + 0x75, 0x63, 0x63, 0xde, 0xbd, 0xa8, 0x27, 0x3b, 0x39, 0xd3, 0x39, 0x7f, 0x34, 0xe0, 0xa2, 0x8b, + 0x0f, 0x08, 0xe3, 0x38, 0x7e, 0x46, 0x03, 0xec, 0xe2, 0x97, 0x09, 0x66, 0x1c, 0xdd, 0x83, 0x5a, + 0xd7, 0x67, 0x58, 0xc3, 0xf8, 0x4a, 0xa5, 0x45, 0x9f, 0xb2, 0x83, 0xfb, 0x3e, 0xc3, 0xae, 0xd4, + 0x44, 0xdf, 0x82, 0x45, 0x3f, 0x08, 0x62, 0xcc, 0x98, 0x04, 0xd3, 0xa4, 0x45, 0xdb, 0x4a, 0xc7, + 0x4d, 0x95, 0x73, 0x9e, 0x37, 0xf3, 0x9e, 0x77, 0x7e, 0x6b, 0xc0, 0x5a, 0xf1, 0x66, 0x6c, 0x48, + 0x23, 0x86, 0xd1, 0x07, 0xb0, 0x20, 0xfc, 0x97, 0x30, 0x7d, 0xb9, 0xcb, 0x95, 0xe7, 0xec, 0x4b, + 0x15, 0x57, 0xab, 0x8a, 0x34, 0x4c, 0x22, 0xc2, 0xd3, 0x14, 0xa1, 0x6e, 0x78, 0xbd, 0x1c, 0x9d, + 0x9a, 0x4c, 0x3a, 0x11, 0xe1, 0x2a, 0x23, 0xb8, 0x40, 0xb2, 0xdf, 0xce, 0x0f, 0x61, 0xed, 0x21, + 0xe6, 0x39, 0x1c, 0x69, 0x5b, 0xcd, 0x12, 0x6e, 0x45, 0xfe, 0x98, 0x2b, 0xf1, 0x87, 0xf3, 0x27, + 0x03, 0xde, 0x2b, 0xed, 0x7d, 0x96, 0xaf, 0xcd, 0x02, 0x62, 0xee, 0x2c, 0x01, 0x61, 0x96, 0x03, + 0xc2, 0xf9, 0xb9, 0x01, 0x97, 0x1f, 0x62, 0x9e, 0x4f, 0x36, 0xe7, 0x6c, 0x09, 0xf4, 0x15, 0x80, + 0x2c, 0xc9, 0xb0, 0x96, 0xb9, 0x6e, 0x6e, 0x98, 0x6e, 0x4e, 0xe2, 0xfc, 0xda, 0x80, 0xd5, 0xb1, + 0xf3, 0x8b, 0xb9, 0xca, 0x28, 0xe7, 0xaa, 0x7f, 0x97, 0x39, 0x7e, 0x6f, 0xc0, 0x95, 0x6a, 0x73, + 0x9c, 0xc5, 0x79, 0xdf, 0x53, 0x8b, 0xb0, 0x40, 0xa9, 0x20, 0xb2, 0x9b, 0x55, 0x1c, 0x32, 0x7e, + 0xa6, 0x5e, 0xe4, 0x7c, 0x6e, 0x02, 0xda, 0x91, 0x09, 0x46, 0x31, 0xd5, 0x3b, 0xb8, 0xe6, 0xd4, + 0xe5, 0x4f, 0xa9, 0xc8, 0xa9, 0x9d, 0x47, 0x91, 0x33, 0x7f, 0xaa, 0x22, 0xe7, 0x0a, 0x58, 0x22, + 0xd3, 0x32, 0xee, 0x0f, 0x86, 0x92, 0x63, 0x6a, 0xee, 0x48, 0x30, 0x5e, 0x52, 0x2c, 0xce, 0x58, + 0x52, 0xd4, 0x4f, 0x5b, 0x52, 0x38, 0x6f, 0xe0, 0x62, 0x1a, 0xd8, 0x92, 0xf2, 0xdf, 0xc1, 0x1d, + 0xc5, 0x50, 0x98, 0x2b, 0x87, 0xc2, 0x14, 0xa7, 0x38, 0x7f, 0x36, 0x61, 0xb5, 0x93, 0xf2, 0xd4, + 0x9e, 0xcf, 0x0f, 0x65, 0x9d, 0x71, 0x72, 0xa4, 0x4c, 0x46, 0x40, 0x8e, 0xd4, 0xcd, 0x89, 0xa4, + 0x5e, 0x2b, 0x92, 0x7a, 0xf1, 0x82, 0xf3, 0x65, 0xd4, 0x9c, 0x4f, 0x59, 0xbb, 0x01, 0x2b, 0x39, + 0x92, 0x1e, 0xfa, 0xfc, 0x50, 0x94, 0xb6, 0x82, 0xa5, 0x97, 0x48, 0xfe, 0xeb, 0x19, 0xba, 0x0d, + 0xcb, 0x19, 0xab, 0x06, 0x8a, 0x6c, 0xeb, 0x12, 0x21, 0x23, 0x0a, 0x0e, 0x52, 0xb6, 0x2d, 0x12, + 0xa8, 0x55, 0x51, 0x74, 0xe4, 0x0b, 0x20, 0x28, 0x16, 0x40, 0x13, 0x89, 0xd8, 0x9e, 0x4c, 0xc4, + 0x7f, 0x35, 0xc0, 0xce, 0x82, 0x7a, 0xc6, 0x76, 0xa5, 0xe0, 0xcb, 0xb9, 0xb2, 0x2f, 0xaf, 0x43, + 0x03, 0x47, 0x7e, 0x37, 0xc4, 0x1a, 0xeb, 0xa6, 0xc2, 0xba, 0x92, 0x29, 0xac, 0x3f, 0x00, 0x7b, + 0x54, 0xb2, 0xa6, 0x71, 0x7b, 0x73, 0x62, 0xcd, 0x9a, 0x07, 0x92, 0x0b, 0x59, 0xed, 0xca, 0x9c, + 0xdf, 0xcc, 0x8d, 0xa8, 0x51, 0xa1, 0xfc, 0x2c, 0x09, 0xf0, 0x47, 0xd0, 0xd0, 0x5f, 0xa1, 0x4a, + 0x69, 0x95, 0x06, 0xbf, 0x5d, 0x75, 0xad, 0xaa, 0x43, 0x37, 0x73, 0x66, 0xfc, 0x38, 0xe2, 0xf1, + 0xb1, 0x6b, 0xb3, 0x91, 0xa4, 0xed, 0xc1, 0x4a, 0x59, 0x01, 0xad, 0x80, 0x79, 0x84, 0x8f, 0xb5, + 0x8d, 0xc5, 0x4f, 0x41, 0x19, 0xaf, 0x04, 0xde, 0x74, 0xa5, 0x70, 0xed, 0xc4, 0x1c, 0xdc, 0xa7, + 0xae, 0xd2, 0xfe, 0xce, 0xdc, 0x47, 0x86, 0xf3, 0x85, 0x01, 0x2b, 0xbb, 0x31, 0x1d, 0xbe, 0x73, + 0xfa, 0x75, 0xa0, 0x91, 0xab, 0xbf, 0xd3, 0x88, 0x2f, 0xc8, 0xa6, 0x25, 0xe2, 0x4b, 0x50, 0x0f, + 0x62, 0x3a, 0xf4, 0xfc, 0x30, 0x94, 0xc1, 0x28, 0x4a, 0xd1, 0x98, 0x0e, 0xb7, 0xc3, 0xd0, 0x79, + 0x0d, 0x6b, 0xbb, 0x98, 0xf5, 0x62, 0xd2, 0x7d, 0x77, 0x62, 0x98, 0xc2, 0xd9, 0x85, 0xa4, 0x6b, + 0x96, 0x92, 0xae, 0xf3, 0xb9, 0x01, 0xef, 0x95, 0x4e, 0x3e, 0x0b, 0x3a, 0xbe, 0x5f, 0xc4, 0xac, + 0x02, 0xc7, 0x94, 0x3e, 0x2b, 0x8f, 0x55, 0x5f, 0x72, 0xb6, 0x9c, 0xbb, 0x2f, 0xf2, 0xd4, 0x5e, + 0x4c, 0x0f, 0x64, 0x45, 0x7a, 0x7e, 0xd5, 0xdc, 0xdf, 0x0d, 0xb8, 0x3a, 0xe1, 0x8c, 0xb3, 0x7c, + 0x79, 0xb9, 0x81, 0x9f, 0x9b, 0xd6, 0xc0, 0x9b, 0xe5, 0x06, 0xbe, 0xba, 0xbf, 0xad, 0x4d, 0xe8, + 0x6f, 0xbf, 0x30, 0xa1, 0xb9, 0xcf, 0x69, 0xec, 0x1f, 0xe0, 0x1d, 0x1a, 0xf5, 0xc9, 0x81, 0x48, + 0xf5, 0x69, 0x8d, 0x6f, 0xc8, 0x8f, 0xce, 0xaa, 0xf8, 0xeb, 0xd0, 0xf0, 0x7b, 0x3d, 0xcc, 0x98, + 0x68, 0x93, 0x74, 0x36, 0xb2, 0x5c, 0x5b, 0xc9, 0x9e, 0x08, 0x11, 0xfa, 0x1a, 0xac, 0x32, 0xdc, + 0x8b, 0x31, 0xf7, 0x46, 0x9a, 0x1a, 0xc1, 0xcb, 0x6a, 0x62, 0x3b, 0xd5, 0x16, 0x4d, 0x41, 0xc2, + 0xf0, 0xfe, 0xfe, 0x27, 0x1a, 0xc5, 0x7a, 0x24, 0x4a, 0xb2, 0x6e, 0xd2, 0x3b, 0xc2, 0x3c, 0x4f, + 0x29, 0xa0, 0x44, 0x12, 0x8a, 0x97, 0xc1, 0x8a, 0x29, 0xe5, 0x92, 0x07, 0x24, 0xff, 0x5b, 0x6e, + 0x5d, 0x08, 0x44, 0xda, 0xd2, 0xbb, 0x76, 0xb6, 0x9f, 0x6a, 0xde, 0xd7, 0x23, 0xd1, 0x0b, 0x77, + 0xb6, 0x9f, 0x7e, 0x1c, 0x05, 0x43, 0x4a, 0x22, 0x2e, 0x49, 0xc1, 0x72, 0xf3, 0x22, 0xf1, 0x79, + 0x4c, 0x59, 0xc2, 0x13, 0x25, 0x8b, 0x24, 0x04, 0xcb, 0xb5, 0xb5, 0xec, 0xf9, 0xf1, 0x10, 0x0b, + 0x1e, 0x4a, 0x18, 0xf6, 0x5e, 0x91, 0x98, 0x27, 0x7e, 0xe8, 0x1d, 0x52, 0xc6, 0x25, 0x2f, 0xd4, + 0xdd, 0xa5, 0x84, 0xe1, 0x17, 0x4a, 0xfc, 0x88, 0x32, 0x2e, 0xae, 0x11, 0xe3, 0x83, 0x94, 0x0f, + 0x2c, 0x57, 0x8f, 0x44, 0x2f, 0xd8, 0x0b, 0x69, 0x12, 0x78, 0xc3, 0x98, 0xbe, 0x22, 0x01, 0x8e, + 0x65, 0x37, 0x69, 0xb9, 0x4d, 0x29, 0xdd, 0xd3, 0x42, 0xe7, 0x0f, 0x35, 0x58, 0x51, 0x05, 0xde, + 0x63, 0xda, 0x4d, 0x51, 0x7b, 0x05, 0xac, 0x5e, 0x98, 0x88, 0x5e, 0x49, 0x43, 0xd6, 0x72, 0x47, + 0x02, 0x61, 0xfa, 0x3c, 0x47, 0xc6, 0xb8, 0x4f, 0xde, 0x68, 0x17, 0x2d, 0x8f, 0x48, 0x52, 0x8a, + 0xf3, 0x74, 0x6e, 0x8e, 0xd1, 0x79, 0xe0, 0x73, 0x5f, 0x73, 0x6c, 0x4d, 0x72, 0xac, 0x25, 0x24, + 0x8a, 0x5e, 0xc7, 0x58, 0x73, 0xbe, 0x82, 0x35, 0x73, 0x65, 0xc4, 0x42, 0xb1, 0x8c, 0x28, 0xc6, + 0xd4, 0x62, 0x39, 0xc7, 0x3c, 0x82, 0xa5, 0xd4, 0x03, 0x3d, 0x09, 0x46, 0xe9, 0xa6, 0x8a, 0x1e, + 0x4e, 0x66, 0xe6, 0x3c, 0x6a, 0xdd, 0x26, 0x2b, 0x80, 0xb8, 0x5c, 0x76, 0x58, 0xa7, 0x2a, 0x3b, + 0x4a, 0x25, 0x2f, 0x9c, 0xa6, 0xe4, 0xcd, 0x97, 0x10, 0xf6, 0x8c, 0x25, 0x44, 0x63, 0x72, 0x09, + 0xf1, 0x09, 0xac, 0xfc, 0x20, 0xc1, 0xf1, 0xf1, 0x63, 0xda, 0x65, 0xb3, 0xe1, 0xa2, 0x0d, 0x75, + 0xed, 0xdc, 0x94, 0x6d, 0xb2, 0xb1, 0xf3, 0xab, 0x39, 0x68, 0xca, 0xed, 0x9f, 0xfb, 0xec, 0x28, + 0x7d, 0xa2, 0x4a, 0x91, 0x61, 0x14, 0x91, 0x71, 0xca, 0x06, 0xab, 0xe2, 0x7d, 0xc5, 0xac, 0x7a, + 0x5f, 0xa9, 0x28, 0xdc, 0x6a, 0x95, 0x85, 0x5b, 0xa9, 0x63, 0x9b, 0x1f, 0x7b, 0xd1, 0x99, 0x68, + 0xd6, 0x85, 0xc9, 0x66, 0xfd, 0xd2, 0x80, 0xd5, 0x9c, 0x5d, 0xcf, 0x92, 0xc1, 0x0b, 0xde, 0x98, + 0x2b, 0x7b, 0xe3, 0x7e, 0x91, 0xd9, 0xcc, 0x2a, 0x48, 0xe5, 0x98, 0x2d, 0xf5, 0x4b, 0x81, 0xdd, + 0x9e, 0xc0, 0xb2, 0xa8, 0x3d, 0xce, 0x07, 0x02, 0xff, 0x30, 0x60, 0xf1, 0x31, 0xed, 0x4a, 0xe7, + 0xe7, 0xb1, 0x6a, 0x14, 0xb1, 0xba, 0x02, 0x66, 0x40, 0x06, 0x9a, 0x8e, 0xc4, 0x4f, 0x11, 0xcb, + 0x8c, 0xfb, 0x31, 0x1f, 0xbd, 0x58, 0x8a, 0xca, 0x54, 0x48, 0xe4, 0xa3, 0xd7, 0x25, 0xa8, 0xe3, + 0x28, 0x50, 0x93, 0xba, 0x65, 0xc0, 0x51, 0x20, 0xa7, 0xce, 0xa7, 0x0b, 0x5c, 0x83, 0xf9, 0x21, + 0x1d, 0xbd, 0x32, 0xaa, 0x81, 0xb3, 0x06, 0xe8, 0x21, 0xe6, 0x8f, 0x69, 0x57, 0x78, 0x25, 0x35, + 0x8f, 0xf3, 0xb7, 0x39, 0xd9, 0xa1, 0x8d, 0xc4, 0x67, 0x71, 0xb0, 0x03, 0x4d, 0xc5, 0xbf, 0x9f, + 0xd1, 0xae, 0x17, 0x25, 0xa9, 0x51, 0x6c, 0x29, 0x7c, 0x4c, 0xbb, 0xcf, 0x92, 0x01, 0xba, 0x03, + 0x17, 0x49, 0x24, 0x72, 0xbc, 0x2c, 0x09, 0x32, 0x4d, 0x65, 0xa5, 0x15, 0x12, 0xa5, 0xc5, 0x82, + 0x56, 0xbf, 0x05, 0xcb, 0x38, 0x7a, 0x99, 0xe0, 0x04, 0x67, 0xaa, 0xca, 0x66, 0x4d, 0x2d, 0xd6, + 0x7a, 0x82, 0xfa, 0x7d, 0x76, 0xe4, 0xb1, 0x90, 0x72, 0xa6, 0x73, 0xaf, 0x25, 0x24, 0xfb, 0x42, + 0x80, 0x3e, 0x02, 0x4b, 0x2c, 0x57, 0xd0, 0x52, 0x9d, 0xd6, 0xe5, 0x2a, 0x68, 0x69, 0x7f, 0xbb, + 0xf5, 0xcf, 0xd4, 0x0f, 0x26, 0x82, 0x4a, 0xf7, 0x11, 0x01, 0x61, 0x47, 0x9a, 0x3a, 0x41, 0x89, + 0x76, 0x09, 0x3b, 0x72, 0x7e, 0x0c, 0x97, 0xf2, 0x6f, 0x57, 0x84, 0x71, 0xd2, 0x3b, 0xcf, 0x72, + 0xea, 0x77, 0x06, 0xb4, 0xab, 0x0e, 0xf8, 0x0f, 0x56, 0x91, 0x5b, 0xbf, 0xb0, 0x01, 0xe4, 0xcc, + 0x0e, 0xa5, 0x71, 0x80, 0x42, 0x09, 0xad, 0x1d, 0x3a, 0x18, 0xd2, 0x08, 0x47, 0x5c, 0x66, 0x39, + 0x86, 0x36, 0x8b, 0xfb, 0xe9, 0xc1, 0xb8, 0xa2, 0xb6, 0x55, 0xfb, 0xfd, 0x4a, 0xfd, 0x92, 0xb2, + 0x73, 0x01, 0xbd, 0x94, 0xdd, 0xd6, 0xc8, 0x14, 0x3b, 0x87, 0x7e, 0x14, 0xe1, 0x10, 0x6d, 0x4d, + 0x78, 0xcf, 0xac, 0x52, 0x4e, 0xcf, 0xbc, 0x51, 0x79, 0xe6, 0x3e, 0x8f, 0x49, 0x74, 0x90, 0x9a, + 0xd8, 0xb9, 0x80, 0x9e, 0x83, 0x9d, 0x7b, 0x54, 0x42, 0xb7, 0xaa, 0x2c, 0x35, 0xfe, 0xea, 0xd4, + 0x3e, 0xc9, 0x17, 0xce, 0x05, 0xd4, 0x87, 0x66, 0xe1, 0xd5, 0x13, 0x6d, 0x9c, 0xd4, 0xe4, 0xe5, + 0x9f, 0x1a, 0xdb, 0x5f, 0x9d, 0x41, 0x33, 0xbb, 0xfd, 0x4f, 0x95, 0xc1, 0xc6, 0x9e, 0x0d, 0xef, + 0x4e, 0xd8, 0x64, 0xd2, 0x03, 0x67, 0xfb, 0xde, 0xec, 0x0b, 0xb2, 0xc3, 0x83, 0xd1, 0x47, 0xaa, + 0x80, 0xba, 0x3d, 0xbd, 0x93, 0x55, 0xa7, 0x6d, 0xcc, 0xda, 0xf2, 0x3a, 0x17, 0xd0, 0x1e, 0x58, + 0x59, 0xd3, 0x89, 0xde, 0xaf, 0x5a, 0x58, 0xee, 0x49, 0x67, 0x70, 0x4e, 0xa1, 0x6d, 0xab, 0x76, + 0x4e, 0x55, 0x4f, 0x59, 0xed, 0x9c, 0xca, 0x1e, 0xd0, 0xb9, 0x80, 0x12, 0x19, 0x3b, 0xa5, 0xe8, + 0x46, 0x77, 0xa6, 0xf9, 0xb7, 0x90, 0x66, 0xda, 0x9b, 0xb3, 0xaa, 0x67, 0xc7, 0xfe, 0x6c, 0xf4, + 0xe2, 0x5e, 0xe8, 0xd1, 0xd0, 0xbd, 0x93, 0xb6, 0xaa, 0x6a, 0x19, 0xdb, 0xdf, 0x78, 0x87, 0x15, + 0x39, 0x4c, 0xa2, 0xfd, 0x43, 0xfa, 0x5a, 0x15, 0xa5, 0x49, 0xec, 0x8b, 0x5c, 0x58, 0x71, 0xb8, + 0x0e, 0xe1, 0x71, 0xd5, 0x89, 0x87, 0x9f, 0xb0, 0x22, 0x3b, 0xdc, 0x03, 0x78, 0x88, 0xf9, 0x53, + 0xcc, 0x63, 0x61, 0xeb, 0x5b, 0x93, 0xf2, 0x94, 0x56, 0x48, 0x8f, 0xba, 0x3d, 0x55, 0x2f, 0x3b, + 0xa0, 0x0b, 0xf6, 0xce, 0x21, 0xee, 0x1d, 0x3d, 0xc2, 0x7e, 0xc8, 0x0f, 0x51, 0xf5, 0xca, 0x9c, + 0xc6, 0x04, 0xc8, 0x57, 0x29, 0xa6, 0x67, 0x6c, 0x7d, 0xb9, 0xa0, 0xff, 0xdf, 0x7f, 0x46, 0x03, + 0xfc, 0xdf, 0x9f, 0x82, 0xf7, 0xc0, 0xca, 0xda, 0xbe, 0xea, 0x08, 0x2f, 0x77, 0x85, 0xd3, 0x22, + 0xfc, 0x53, 0xb0, 0xb2, 0xc2, 0xb6, 0x7a, 0xc7, 0x72, 0x3f, 0xd1, 0xbe, 0x39, 0x45, 0x2b, 0xbb, + 0xed, 0x33, 0xa8, 0xa7, 0x85, 0x28, 0xba, 0x31, 0x29, 0x1d, 0xe5, 0x77, 0x9e, 0x72, 0xd7, 0x9f, + 0x80, 0x9d, 0xab, 0xd2, 0xaa, 0x09, 0x68, 0xbc, 0xba, 0x6b, 0xdf, 0x9e, 0xaa, 0xf7, 0xbf, 0x11, + 0x90, 0xf7, 0xbf, 0xf9, 0xe9, 0xd6, 0x01, 0xe1, 0x87, 0x49, 0x57, 0x58, 0xf6, 0xae, 0xd2, 0xbc, + 0x43, 0xa8, 0xfe, 0x75, 0x37, 0xbd, 0xe5, 0x5d, 0xb9, 0xd3, 0x5d, 0x69, 0xa7, 0x61, 0xb7, 0xbb, + 0x20, 0x87, 0x1f, 0xfc, 0x2b, 0x00, 0x00, 0xff, 0xff, 0xac, 0x57, 0x6d, 0x81, 0x9e, 0x23, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/internal/proto/query_coord.proto b/internal/proto/query_coord.proto index acb59c9e2d115..abd08047b3a40 100644 --- a/internal/proto/query_coord.proto +++ b/internal/proto/query_coord.proto @@ -273,7 +273,6 @@ message FieldIndexInfo { int64 index_version = 9; int64 num_rows = 10; int32 current_index_version = 11; - int32 minimal_index_version = 12; } enum LoadScope { diff --git a/internal/proto/querypb/query_coord.pb.go b/internal/proto/querypb/query_coord.pb.go index ac891aea91e5f..a11112412323e 100644 --- a/internal/proto/querypb/query_coord.pb.go +++ b/internal/proto/querypb/query_coord.pb.go @@ -1770,7 +1770,6 @@ type FieldIndexInfo struct { IndexVersion int64 `protobuf:"varint,9,opt,name=index_version,json=indexVersion,proto3" json:"index_version,omitempty"` NumRows int64 `protobuf:"varint,10,opt,name=num_rows,json=numRows,proto3" json:"num_rows,omitempty"` CurrentIndexVersion int32 `protobuf:"varint,11,opt,name=current_index_version,json=currentIndexVersion,proto3" json:"current_index_version,omitempty"` - MinimalIndexVersion int32 `protobuf:"varint,12,opt,name=minimal_index_version,json=minimalIndexVersion,proto3" json:"minimal_index_version,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -1878,13 +1877,6 @@ func (m *FieldIndexInfo) GetCurrentIndexVersion() int32 { return 0 } -func (m *FieldIndexInfo) GetMinimalIndexVersion() int32 { - if m != nil { - return m.MinimalIndexVersion - } - return 0 -} - type LoadSegmentsRequest struct { Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` DstNodeID int64 `protobuf:"varint,2,opt,name=dst_nodeID,json=dstNodeID,proto3" json:"dst_nodeID,omitempty"` @@ -4602,310 +4594,309 @@ func init() { func init() { proto.RegisterFile("query_coord.proto", fileDescriptor_aab7cc9a69ed26e8) } var fileDescriptor_aab7cc9a69ed26e8 = []byte{ - // 4847 bytes of a gzipped FileDescriptorProto + // 4829 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7c, 0xcb, 0x6f, 0x1c, 0x47, 0x7a, 0xb8, 0x7a, 0x5e, 0x9c, 0xf9, 0xe6, 0xd5, 0x2c, 0x92, 0xd2, 0xec, 0xac, 0x24, 0xcb, 0x2d, 0x3f, 0xb8, 0xb2, 0x4d, 0x6a, 0xa9, 0xb5, 0x57, 0xbb, 0xb6, 0xe1, 0x9f, 0x44, 0x5a, 0x32, 0xd7, 0x36, 0xcd, 0x5f, 0x53, 0xf2, 0x06, 0x5e, 0xef, 0x8e, 0x9b, 0xd3, 0xc5, 0x61, 0x43, 0xfd, 0x18, 0x75, 0xf7, 0x90, 0xa6, 0x03, 0x04, 0x39, 0xe4, 0x92, 0x4d, 0x36, 0x08, 0x92, 0x43, 0x72, 0x08, - 0x72, 0x08, 0x10, 0x60, 0x13, 0x24, 0x97, 0x20, 0x01, 0x72, 0xc8, 0x21, 0xb7, 0xe4, 0x92, 0xd7, - 0x29, 0xff, 0x40, 0x72, 0xcb, 0x31, 0x8b, 0xc0, 0x40, 0x0e, 0x41, 0x3d, 0xfa, 0x51, 0xdd, 0x35, - 0x9c, 0x26, 0x47, 0xf2, 0x23, 0xc8, 0x6d, 0xfa, 0xab, 0xc7, 0xf7, 0xd5, 0xf7, 0xaa, 0xef, 0xfb, - 0xaa, 0x6a, 0x60, 0xf1, 0xf1, 0x04, 0xfb, 0x27, 0x83, 0xa1, 0xe7, 0xf9, 0xe6, 0xda, 0xd8, 0xf7, - 0x42, 0x0f, 0x21, 0xc7, 0xb2, 0x8f, 0x26, 0x01, 0xfb, 0x5a, 0xa3, 0xed, 0xfd, 0xd6, 0xd0, 0x73, - 0x1c, 0xcf, 0x65, 0xb0, 0x7e, 0x2b, 0xdd, 0xa3, 0xdf, 0xb1, 0xdc, 0x10, 0xfb, 0xae, 0x61, 0x47, - 0xad, 0xc1, 0xf0, 0x10, 0x3b, 0x06, 0xff, 0x6a, 0x38, 0xc1, 0x88, 0xff, 0x54, 0x4d, 0x23, 0x34, - 0xd2, 0xa8, 0xfa, 0x8b, 0x96, 0x6b, 0xe2, 0x4f, 0xd3, 0x20, 0xed, 0xd7, 0x14, 0xb8, 0xb8, 0x77, - 0xe8, 0x1d, 0x6f, 0x7a, 0xb6, 0x8d, 0x87, 0xa1, 0xe5, 0xb9, 0x81, 0x8e, 0x1f, 0x4f, 0x70, 0x10, - 0xa2, 0x9b, 0x50, 0xd9, 0x37, 0x02, 0xdc, 0x53, 0xae, 0x29, 0xab, 0xcd, 0x8d, 0xcb, 0x6b, 0x02, - 0x9d, 0x9c, 0xc0, 0xf7, 0x83, 0xd1, 0x5d, 0x23, 0xc0, 0x3a, 0xed, 0x89, 0x10, 0x54, 0xcc, 0xfd, - 0xed, 0xad, 0x5e, 0xe9, 0x9a, 0xb2, 0x5a, 0xd6, 0xe9, 0x6f, 0xf4, 0x1c, 0xb4, 0x87, 0xf1, 0xdc, - 0xdb, 0x5b, 0x41, 0xaf, 0x7c, 0xad, 0xbc, 0x5a, 0xd6, 0x45, 0xa0, 0xf6, 0xd3, 0x12, 0x5c, 0xca, - 0x91, 0x11, 0x8c, 0x3d, 0x37, 0xc0, 0xe8, 0x16, 0xd4, 0x82, 0xd0, 0x08, 0x27, 0x01, 0xa7, 0xe4, - 0x9b, 0x52, 0x4a, 0xf6, 0x68, 0x17, 0x9d, 0x77, 0xcd, 0xa3, 0x2d, 0x49, 0xd0, 0xa2, 0x6f, 0xc3, - 0xb2, 0xe5, 0xbe, 0x8f, 0x1d, 0xcf, 0x3f, 0x19, 0x8c, 0xb1, 0x3f, 0xc4, 0x6e, 0x68, 0x8c, 0x70, - 0x44, 0xe3, 0x52, 0xd4, 0xb6, 0x9b, 0x34, 0xa1, 0xd7, 0xe0, 0x12, 0x93, 0x61, 0x80, 0xfd, 0x23, - 0x6b, 0x88, 0x07, 0xc6, 0x91, 0x61, 0xd9, 0xc6, 0xbe, 0x8d, 0x7b, 0x95, 0x6b, 0xe5, 0xd5, 0xba, - 0xbe, 0x42, 0x9b, 0xf7, 0x58, 0xeb, 0x9d, 0xa8, 0x11, 0x7d, 0x0b, 0x54, 0x1f, 0x1f, 0xf8, 0x38, - 0x38, 0x1c, 0x8c, 0x7d, 0x6f, 0xe4, 0xe3, 0x20, 0xe8, 0x55, 0x29, 0x9a, 0x2e, 0x87, 0xef, 0x72, - 0xb0, 0xf6, 0xc7, 0x0a, 0xac, 0x10, 0x66, 0xec, 0x1a, 0x7e, 0x68, 0x3d, 0x05, 0x91, 0x68, 0xd0, - 0x4a, 0xb3, 0xa1, 0x57, 0xa6, 0x6d, 0x02, 0x8c, 0xf4, 0x19, 0x47, 0xe8, 0x09, 0xfb, 0x2a, 0x94, - 0x54, 0x01, 0xa6, 0xfd, 0x13, 0xd7, 0x9d, 0x34, 0x9d, 0xf3, 0xc8, 0x2c, 0x8b, 0xb3, 0x94, 0xc7, - 0x79, 0x1e, 0x89, 0xc9, 0x38, 0x5f, 0x91, 0x73, 0xfe, 0x1f, 0xca, 0xb0, 0xf2, 0x9e, 0x67, 0x98, - 0x89, 0x1a, 0x7e, 0xf1, 0x9c, 0x7f, 0x13, 0x6a, 0xcc, 0xa2, 0x7b, 0x15, 0x8a, 0xeb, 0x79, 0x11, - 0x17, 0xb7, 0xf6, 0x84, 0xc2, 0x3d, 0x0a, 0xd0, 0xf9, 0x20, 0xf4, 0x3c, 0x74, 0x7c, 0x3c, 0xb6, - 0xad, 0xa1, 0x31, 0x70, 0x27, 0xce, 0x3e, 0xf6, 0x7b, 0xd5, 0x6b, 0xca, 0x6a, 0x55, 0x6f, 0x73, - 0xe8, 0x0e, 0x05, 0xa2, 0x4f, 0xa0, 0x7d, 0x60, 0x61, 0xdb, 0x1c, 0x50, 0x97, 0xb0, 0xbd, 0xd5, - 0xab, 0x5d, 0x2b, 0xaf, 0x36, 0x37, 0x5e, 0x5f, 0xcb, 0x7b, 0xa3, 0x35, 0x29, 0x47, 0xd6, 0xee, - 0x91, 0xe1, 0xdb, 0x6c, 0xf4, 0xdb, 0x6e, 0xe8, 0x9f, 0xe8, 0xad, 0x83, 0x14, 0x08, 0xf5, 0x60, - 0x81, 0xb3, 0xb7, 0xb7, 0x70, 0x4d, 0x59, 0xad, 0xeb, 0xd1, 0x27, 0x7a, 0x11, 0xba, 0x3e, 0x0e, - 0xbc, 0x89, 0x3f, 0xc4, 0x83, 0x91, 0xef, 0x4d, 0xc6, 0x41, 0xaf, 0x7e, 0xad, 0xbc, 0xda, 0xd0, - 0x3b, 0x11, 0xf8, 0x3e, 0x85, 0xf6, 0xdf, 0x82, 0xc5, 0x1c, 0x16, 0xa4, 0x42, 0xf9, 0x11, 0x3e, - 0xa1, 0x82, 0x28, 0xeb, 0xe4, 0x27, 0x5a, 0x86, 0xea, 0x91, 0x61, 0x4f, 0x30, 0x67, 0x35, 0xfb, - 0xf8, 0x7e, 0xe9, 0xb6, 0xa2, 0xfd, 0x81, 0x02, 0x3d, 0x1d, 0xdb, 0xd8, 0x08, 0xf0, 0x97, 0x29, - 0xd2, 0x8b, 0x50, 0x73, 0x3d, 0x13, 0x6f, 0x6f, 0x51, 0x91, 0x96, 0x75, 0xfe, 0xa5, 0x7d, 0xae, - 0xc0, 0xf2, 0x7d, 0x1c, 0x12, 0x33, 0xb0, 0x82, 0xd0, 0x1a, 0xc6, 0x76, 0xfe, 0x26, 0x94, 0x7d, - 0xfc, 0x98, 0x53, 0xf6, 0x92, 0x48, 0x59, 0xec, 0xfe, 0x65, 0x23, 0x75, 0x32, 0x0e, 0x3d, 0x0b, - 0x2d, 0xd3, 0xb1, 0x07, 0xc3, 0x43, 0xc3, 0x75, 0xb1, 0xcd, 0x0c, 0xa9, 0xa1, 0x37, 0x4d, 0xc7, - 0xde, 0xe4, 0x20, 0x74, 0x15, 0x20, 0xc0, 0x23, 0x07, 0xbb, 0x61, 0xe2, 0x93, 0x53, 0x10, 0x74, - 0x03, 0x16, 0x0f, 0x7c, 0xcf, 0x19, 0x04, 0x87, 0x86, 0x6f, 0x0e, 0x6c, 0x6c, 0x98, 0xd8, 0xa7, - 0xd4, 0xd7, 0xf5, 0x2e, 0x69, 0xd8, 0x23, 0xf0, 0xf7, 0x28, 0x18, 0xdd, 0x82, 0x6a, 0x30, 0xf4, - 0xc6, 0x98, 0x6a, 0x5a, 0x67, 0xe3, 0x8a, 0x4c, 0x87, 0xb6, 0x8c, 0xd0, 0xd8, 0x23, 0x9d, 0x74, - 0xd6, 0x57, 0xfb, 0xeb, 0x0a, 0x33, 0xb5, 0xaf, 0xb8, 0x93, 0x4b, 0x99, 0x63, 0xf5, 0xc9, 0x98, - 0x63, 0xad, 0x90, 0x39, 0x2e, 0x9c, 0x6e, 0x8e, 0x39, 0xae, 0x9d, 0xc5, 0x1c, 0xeb, 0x33, 0xcd, - 0xb1, 0x21, 0x33, 0x47, 0xf4, 0x36, 0x74, 0x59, 0x00, 0x61, 0xb9, 0x07, 0xde, 0xc0, 0xb6, 0x82, - 0xb0, 0x07, 0x94, 0xcc, 0x2b, 0x59, 0x0d, 0x35, 0xf1, 0xa7, 0x6b, 0x0c, 0xb1, 0x7b, 0xe0, 0xe9, - 0x6d, 0x2b, 0xfa, 0xf9, 0x9e, 0x15, 0x84, 0xf3, 0x5b, 0xf5, 0xdf, 0x26, 0x56, 0xfd, 0x55, 0xd7, - 0x9e, 0xc4, 0xf2, 0xab, 0x82, 0xe5, 0xff, 0x89, 0x02, 0xdf, 0xb8, 0x8f, 0xc3, 0x98, 0x7c, 0x62, - 0xc8, 0xf8, 0x2b, 0xba, 0xcd, 0xff, 0xb9, 0x02, 0x7d, 0x19, 0xad, 0xf3, 0x6c, 0xf5, 0x1f, 0xc1, - 0xc5, 0x18, 0xc7, 0xc0, 0xc4, 0xc1, 0xd0, 0xb7, 0xc6, 0x54, 0x8c, 0xd4, 0x57, 0x35, 0x37, 0xae, - 0xcb, 0x14, 0x3f, 0x4b, 0xc1, 0x4a, 0x3c, 0xc5, 0x56, 0x6a, 0x06, 0xed, 0x67, 0x0a, 0xac, 0x10, - 0xdf, 0xc8, 0x9d, 0x19, 0xd1, 0xc0, 0x73, 0xf3, 0x55, 0x74, 0x93, 0xa5, 0x9c, 0x9b, 0x2c, 0xc0, - 0x63, 0x1a, 0x62, 0x67, 0xe9, 0x99, 0x87, 0x77, 0xaf, 0x42, 0x95, 0x18, 0x60, 0xc4, 0xaa, 0x67, - 0x64, 0xac, 0x4a, 0x23, 0x63, 0xbd, 0x35, 0x97, 0x51, 0x91, 0xf8, 0xed, 0x39, 0xd4, 0x2d, 0xbb, - 0xec, 0x92, 0x64, 0xd9, 0xbf, 0xa9, 0xc0, 0xa5, 0x1c, 0xc2, 0x79, 0xd6, 0xfd, 0x06, 0xd4, 0xe8, - 0x6e, 0x14, 0x2d, 0xfc, 0x39, 0xe9, 0xc2, 0x53, 0xe8, 0x88, 0xb7, 0xd1, 0xf9, 0x18, 0xcd, 0x03, - 0x35, 0xdb, 0x46, 0xf6, 0x49, 0xbe, 0x47, 0x0e, 0x5c, 0xc3, 0x61, 0x0c, 0x68, 0xe8, 0x4d, 0x0e, - 0xdb, 0x31, 0x1c, 0x8c, 0xbe, 0x01, 0x75, 0x62, 0xb2, 0x03, 0xcb, 0x8c, 0xc4, 0xbf, 0x40, 0x4d, - 0xd8, 0x0c, 0xd0, 0x15, 0x00, 0xda, 0x64, 0x98, 0xa6, 0xcf, 0xb6, 0xd0, 0x86, 0xde, 0x20, 0x90, - 0x3b, 0x04, 0xa0, 0xfd, 0xbe, 0x02, 0x57, 0xf7, 0x4e, 0xdc, 0xe1, 0x0e, 0x3e, 0xde, 0xf4, 0xb1, - 0x11, 0xe2, 0xc4, 0x69, 0x3f, 0x55, 0xc6, 0xa3, 0x6b, 0xd0, 0x4c, 0xd9, 0x2f, 0x57, 0xc9, 0x34, - 0x48, 0xfb, 0x0b, 0x05, 0x5a, 0x64, 0x17, 0x79, 0x1f, 0x87, 0x06, 0x51, 0x11, 0xf4, 0x3d, 0x68, - 0xd8, 0x9e, 0x61, 0x0e, 0xc2, 0x93, 0x31, 0xa3, 0xa6, 0x93, 0xa5, 0x26, 0xd9, 0x7a, 0x1e, 0x9c, - 0x8c, 0xb1, 0x5e, 0xb7, 0xf9, 0xaf, 0x42, 0x14, 0x65, 0xbd, 0x4c, 0x59, 0xe2, 0x29, 0x9f, 0x81, - 0xa6, 0x83, 0x43, 0xdf, 0x1a, 0x32, 0x22, 0x2a, 0x54, 0x14, 0xc0, 0x40, 0x04, 0x91, 0xf6, 0xb3, - 0x1a, 0x5c, 0xfc, 0xa1, 0x11, 0x0e, 0x0f, 0xb7, 0x9c, 0x28, 0x8a, 0x39, 0x3f, 0x1f, 0x13, 0xbf, - 0x5c, 0x4a, 0xfb, 0xe5, 0x27, 0xe6, 0xf7, 0x63, 0x1b, 0xad, 0xca, 0x6c, 0x94, 0x24, 0xe6, 0x6b, - 0x1f, 0x72, 0x35, 0x4b, 0xd9, 0x68, 0x2a, 0xd8, 0xa8, 0x9d, 0x27, 0xd8, 0xd8, 0x84, 0x36, 0xfe, - 0x74, 0x68, 0x4f, 0x88, 0xbe, 0x52, 0xec, 0x2c, 0x8a, 0xb8, 0x2a, 0xc1, 0x9e, 0x76, 0x10, 0x2d, - 0x3e, 0x68, 0x9b, 0xd3, 0xc0, 0x74, 0xc1, 0xc1, 0xa1, 0x41, 0x43, 0x85, 0xe6, 0xc6, 0xb5, 0x69, - 0xba, 0x10, 0x29, 0x10, 0xd3, 0x07, 0xf2, 0x85, 0x2e, 0x43, 0x83, 0x87, 0x36, 0xdb, 0x5b, 0xbd, - 0x06, 0x65, 0x5f, 0x02, 0x40, 0x06, 0xb4, 0xb9, 0xf7, 0xe4, 0x14, 0xb2, 0x00, 0xe2, 0x0d, 0x19, - 0x02, 0xb9, 0xb0, 0xd3, 0x94, 0x07, 0x3c, 0xd0, 0x09, 0x52, 0x20, 0x92, 0xf9, 0x7b, 0x07, 0x07, - 0xb6, 0xe5, 0xe2, 0x1d, 0x26, 0xe1, 0x26, 0x25, 0x42, 0x04, 0x92, 0x70, 0xe8, 0x08, 0xfb, 0x81, - 0xe5, 0xb9, 0xbd, 0x16, 0x6d, 0x8f, 0x3e, 0x65, 0x51, 0x4e, 0xfb, 0x1c, 0x51, 0xce, 0x00, 0x16, - 0x73, 0x94, 0x4a, 0xa2, 0x9c, 0xef, 0xa4, 0xa3, 0x9c, 0xd9, 0xa2, 0x4a, 0x45, 0x41, 0x3f, 0x57, - 0x60, 0xe5, 0xa1, 0x1b, 0x4c, 0xf6, 0x63, 0x16, 0x7d, 0x39, 0xe6, 0x90, 0x75, 0xa2, 0x95, 0x9c, - 0x13, 0xd5, 0xfe, 0xb3, 0x0a, 0x5d, 0xbe, 0x0a, 0xa2, 0x35, 0xd4, 0xe5, 0x5c, 0x86, 0x46, 0xbc, - 0x8f, 0x72, 0x86, 0x24, 0x80, 0xac, 0x0f, 0x2b, 0xe5, 0x7c, 0x58, 0x21, 0xd2, 0xa2, 0xa8, 0xa8, - 0x92, 0x8a, 0x8a, 0xae, 0x00, 0x1c, 0xd8, 0x93, 0xe0, 0x70, 0x10, 0x5a, 0x0e, 0xe6, 0x51, 0x59, - 0x83, 0x42, 0x1e, 0x58, 0x0e, 0x46, 0x77, 0xa0, 0xb5, 0x6f, 0xb9, 0xb6, 0x37, 0x1a, 0x8c, 0x8d, - 0xf0, 0x30, 0xe0, 0x69, 0xb1, 0x4c, 0x2c, 0x34, 0x86, 0xbd, 0x4b, 0xfb, 0xea, 0x4d, 0x36, 0x66, - 0x97, 0x0c, 0x41, 0x57, 0xa1, 0xe9, 0x4e, 0x9c, 0x81, 0x77, 0x30, 0xf0, 0xbd, 0xe3, 0x80, 0x26, - 0xbf, 0x65, 0xbd, 0xe1, 0x4e, 0x9c, 0x0f, 0x0e, 0x74, 0xef, 0x98, 0xec, 0x63, 0x0d, 0xb2, 0xa3, - 0x05, 0xb6, 0x37, 0x62, 0x89, 0xef, 0xec, 0xf9, 0x93, 0x01, 0x64, 0xb4, 0x89, 0xed, 0xd0, 0xa0, - 0xa3, 0x1b, 0xc5, 0x46, 0xc7, 0x03, 0xd0, 0x0b, 0xd0, 0x19, 0x7a, 0xce, 0xd8, 0xa0, 0x1c, 0xba, - 0xe7, 0x7b, 0x0e, 0x35, 0xc0, 0xb2, 0x9e, 0x81, 0xa2, 0x4d, 0x68, 0x26, 0x46, 0x10, 0xf4, 0x9a, - 0x14, 0x8f, 0x26, 0xb3, 0xd2, 0x54, 0x28, 0x4f, 0x14, 0x14, 0x62, 0x2b, 0x08, 0x88, 0x66, 0x44, - 0xc6, 0x1e, 0x58, 0x9f, 0x61, 0x6e, 0x68, 0x4d, 0x0e, 0xdb, 0xb3, 0x3e, 0xc3, 0x24, 0x3d, 0xb2, - 0xdc, 0x00, 0xfb, 0x61, 0x94, 0xac, 0xf6, 0xda, 0x54, 0x7d, 0xda, 0x0c, 0xca, 0x15, 0x1b, 0x6d, - 0x41, 0x27, 0x08, 0x0d, 0x3f, 0x1c, 0x8c, 0xbd, 0x80, 0x2a, 0x40, 0xaf, 0x43, 0x75, 0x3b, 0x63, - 0x92, 0x4e, 0x30, 0x22, 0x8a, 0xbd, 0xcb, 0x3b, 0xe9, 0x6d, 0x3a, 0x28, 0xfa, 0x24, 0xb3, 0x50, - 0x4e, 0x24, 0xb3, 0x74, 0x0b, 0xcd, 0x42, 0x07, 0xc5, 0xb3, 0xac, 0x92, 0x74, 0xc9, 0x30, 0x8d, - 0x7d, 0x1b, 0x7f, 0xc8, 0x3d, 0x88, 0x4a, 0x17, 0x96, 0x05, 0x6b, 0xff, 0x5a, 0x86, 0x8e, 0xc8, - 0x1e, 0xe2, 0x76, 0x58, 0x56, 0x16, 0xe9, 0x7c, 0xf4, 0x49, 0x98, 0x85, 0x5d, 0x32, 0x9a, 0xa5, - 0x80, 0x54, 0xe5, 0xeb, 0x7a, 0x93, 0xc1, 0xe8, 0x04, 0x44, 0x75, 0x99, 0x50, 0xa8, 0x9d, 0x95, - 0x29, 0xa3, 0x1a, 0x14, 0x42, 0x43, 0x95, 0x1e, 0x2c, 0x44, 0xd9, 0x23, 0x53, 0xf8, 0xe8, 0x93, - 0xb4, 0xec, 0x4f, 0x2c, 0x8a, 0x95, 0x29, 0x7c, 0xf4, 0x89, 0xb6, 0xa0, 0xc5, 0xa6, 0x1c, 0x1b, - 0xbe, 0xe1, 0x44, 0xea, 0xfe, 0xac, 0xd4, 0x65, 0xbc, 0x8b, 0x4f, 0x3e, 0x24, 0xde, 0x67, 0xd7, - 0xb0, 0x7c, 0x9d, 0xa9, 0xc7, 0x2e, 0x1d, 0x85, 0x56, 0x41, 0x65, 0xb3, 0x1c, 0x58, 0x36, 0xe6, - 0x86, 0xb3, 0xc0, 0x52, 0x48, 0x0a, 0xbf, 0x67, 0xd9, 0x98, 0xd9, 0x46, 0xbc, 0x04, 0xaa, 0x10, - 0x75, 0x66, 0x1a, 0x14, 0x42, 0xd5, 0xe1, 0x3a, 0x30, 0x2f, 0x3a, 0x88, 0x7c, 0x33, 0xdb, 0x40, - 0x18, 0x8d, 0x9c, 0xad, 0x34, 0x24, 0x9b, 0x38, 0xcc, 0xb8, 0x80, 0x2d, 0xc7, 0x9d, 0x38, 0xd4, - 0xb4, 0x36, 0x60, 0x65, 0x38, 0xf1, 0x7d, 0xb6, 0xbd, 0xa4, 0xe7, 0x69, 0xd2, 0xa4, 0x7b, 0x89, - 0x37, 0x6e, 0xa7, 0xa7, 0xdb, 0x80, 0x15, 0xc7, 0x72, 0x2d, 0xc7, 0xb0, 0x33, 0x63, 0x5a, 0x6c, - 0x0c, 0x6f, 0x4c, 0x8f, 0xd1, 0x7e, 0xa7, 0x0a, 0x4b, 0xc4, 0x93, 0x71, 0xa7, 0x36, 0x47, 0x20, - 0x72, 0x05, 0xc0, 0x0c, 0xc2, 0x81, 0xe0, 0x7d, 0x1b, 0x66, 0x10, 0xf2, 0x6d, 0xea, 0x7b, 0x51, - 0x1c, 0x51, 0x9e, 0x9e, 0x16, 0x65, 0x3c, 0x6b, 0x3e, 0x96, 0x38, 0x57, 0x1d, 0xf1, 0x3a, 0xb4, - 0x79, 0x4d, 0x40, 0x48, 0x60, 0x5b, 0x0c, 0xb8, 0x23, 0xdf, 0x1f, 0x6a, 0xd2, 0x7a, 0x66, 0x2a, - 0x9e, 0x58, 0x98, 0x2f, 0x9e, 0xa8, 0x67, 0xe3, 0x89, 0x7b, 0xd0, 0x15, 0x4d, 0x3a, 0xf2, 0x89, - 0x33, 0x6c, 0xba, 0x23, 0xd8, 0x74, 0x90, 0x0e, 0x07, 0x40, 0x0c, 0x07, 0xae, 0x43, 0xdb, 0xc5, - 0xd8, 0x1c, 0x84, 0xbe, 0xe1, 0x06, 0x07, 0xd8, 0xa7, 0xaa, 0x54, 0xd7, 0x5b, 0x04, 0xf8, 0x80, - 0xc3, 0xd0, 0x1b, 0x00, 0x74, 0x8d, 0xac, 0x0c, 0xd6, 0x9a, 0x5e, 0x06, 0xa3, 0x4a, 0x43, 0xcb, - 0x60, 0x94, 0x29, 0xf4, 0xe7, 0x13, 0x8a, 0x38, 0xb4, 0x7f, 0x2c, 0xc1, 0x45, 0x5e, 0x16, 0x99, - 0x5f, 0x2f, 0xa7, 0x45, 0x04, 0xd1, 0x96, 0x5a, 0x3e, 0xa5, 0xd0, 0x50, 0x29, 0x10, 0x34, 0x57, - 0x25, 0x41, 0xb3, 0x98, 0x6c, 0xd7, 0x72, 0xc9, 0x76, 0x5c, 0x67, 0x5c, 0x28, 0x5e, 0x67, 0x44, - 0xcb, 0x50, 0xa5, 0x19, 0x20, 0xd5, 0x9d, 0x86, 0xce, 0x3e, 0x0a, 0x49, 0x55, 0xfb, 0xbd, 0x12, - 0xb4, 0xf7, 0xb0, 0xe1, 0x0f, 0x0f, 0x23, 0x3e, 0xbe, 0x96, 0xae, 0xcb, 0x3e, 0x37, 0xa5, 0x2e, - 0x2b, 0x0c, 0xf9, 0xda, 0x14, 0x64, 0x09, 0x82, 0xd0, 0x0b, 0x8d, 0x98, 0xca, 0x81, 0x3b, 0x71, - 0x78, 0xb1, 0xb2, 0x4b, 0x1b, 0x38, 0xa9, 0x3b, 0x13, 0x47, 0xfb, 0x0f, 0x05, 0x5a, 0xff, 0x9f, - 0x4c, 0x13, 0x31, 0xe6, 0x76, 0x9a, 0x31, 0x2f, 0x4c, 0x61, 0x8c, 0x4e, 0x92, 0x39, 0x7c, 0x84, - 0xbf, 0x76, 0xb5, 0xea, 0xbf, 0x53, 0xa0, 0x4f, 0x52, 0x79, 0x9d, 0xf9, 0x9d, 0xf9, 0xad, 0xeb, - 0x3a, 0xb4, 0x8f, 0x84, 0xa0, 0xb9, 0x44, 0x95, 0xb3, 0x75, 0x94, 0x2e, 0x3d, 0xe8, 0xa0, 0x46, - 0xa5, 0x63, 0xbe, 0xd8, 0x68, 0x1b, 0x78, 0x51, 0x46, 0x75, 0x86, 0x38, 0xea, 0x21, 0xba, 0xbe, - 0x08, 0xd4, 0x7e, 0x4b, 0x81, 0x25, 0x49, 0x47, 0x74, 0x09, 0x16, 0x78, 0x99, 0x83, 0xc7, 0x25, - 0xcc, 0xde, 0x4d, 0x22, 0x9e, 0xa4, 0x50, 0x67, 0x99, 0xf9, 0x48, 0xdc, 0x24, 0x99, 0x7b, 0x9c, - 0xd3, 0x99, 0x39, 0xf9, 0x98, 0x01, 0xea, 0x43, 0x9d, 0x7b, 0xd3, 0x28, 0x59, 0x8e, 0xbf, 0xb5, - 0x47, 0x80, 0xee, 0xe3, 0x64, 0xef, 0x9a, 0x87, 0xa3, 0x89, 0xbf, 0x49, 0x08, 0x4d, 0x3b, 0x21, - 0x53, 0xfb, 0x37, 0x05, 0x96, 0x04, 0x6c, 0xf3, 0x94, 0xa3, 0x92, 0xfd, 0xb5, 0x74, 0x9e, 0xfd, - 0x55, 0x28, 0xb9, 0x94, 0xcf, 0x54, 0x72, 0xb9, 0x0a, 0x10, 0xf3, 0x3f, 0xe2, 0x68, 0x0a, 0xa2, - 0xfd, 0x8d, 0x02, 0x17, 0xdf, 0x31, 0x5c, 0xd3, 0x3b, 0x38, 0x98, 0x5f, 0x55, 0x37, 0x41, 0x48, - 0xaf, 0x8b, 0x16, 0x1d, 0xc5, 0x9c, 0xfc, 0x25, 0x58, 0xf4, 0xd9, 0xce, 0x64, 0x8a, 0xba, 0x5c, - 0xd6, 0xd5, 0xa8, 0x21, 0xd6, 0xd1, 0x3f, 0x2b, 0x01, 0x22, 0xab, 0xbe, 0x6b, 0xd8, 0x86, 0x3b, - 0xc4, 0xe7, 0x27, 0xfd, 0x79, 0xe8, 0x08, 0x21, 0x4c, 0x7c, 0x09, 0x20, 0x1d, 0xc3, 0x04, 0xe8, - 0x5d, 0xe8, 0xec, 0x33, 0x54, 0x03, 0x1f, 0x1b, 0x81, 0xe7, 0x72, 0x71, 0x48, 0xeb, 0x8b, 0x0f, - 0x7c, 0x6b, 0x34, 0xc2, 0xfe, 0xa6, 0xe7, 0x9a, 0x3c, 0x3b, 0xd8, 0x8f, 0xc8, 0x24, 0x43, 0x89, - 0x31, 0x24, 0xf1, 0x5c, 0x2c, 0x9c, 0x38, 0xa0, 0xa3, 0xac, 0x08, 0xb0, 0x61, 0x27, 0x8c, 0x48, - 0x76, 0x43, 0x95, 0x35, 0xec, 0x4d, 0x2f, 0x2f, 0x4b, 0xe2, 0x2b, 0xed, 0x2f, 0x15, 0x40, 0x71, - 0x09, 0x80, 0xd6, 0x4c, 0xa8, 0x45, 0x67, 0x87, 0x2a, 0x92, 0x4d, 0xf9, 0x32, 0x34, 0xcc, 0x68, - 0x24, 0x77, 0x41, 0x09, 0x80, 0xee, 0x91, 0x94, 0xe8, 0x01, 0xd1, 0x3c, 0x6c, 0x46, 0x29, 0x36, - 0x03, 0xbe, 0x47, 0x61, 0x62, 0x78, 0x56, 0xc9, 0x86, 0x67, 0xe9, 0xea, 0x69, 0x55, 0xa8, 0x9e, - 0x6a, 0x3f, 0x2f, 0x81, 0x4a, 0xb7, 0x90, 0xcd, 0xa4, 0x0c, 0x56, 0x88, 0xe8, 0xeb, 0xd0, 0xe6, - 0x97, 0x68, 0x04, 0xc2, 0x5b, 0x8f, 0x53, 0x93, 0xa1, 0x9b, 0xb0, 0xcc, 0x3a, 0xf9, 0x38, 0x98, - 0xd8, 0x49, 0x76, 0xc9, 0x92, 0x26, 0xf4, 0x98, 0xed, 0x5d, 0xa4, 0x29, 0x1a, 0xf1, 0x10, 0x2e, - 0x8e, 0x6c, 0x6f, 0xdf, 0xb0, 0x07, 0xa2, 0x78, 0x98, 0x0c, 0x0b, 0x68, 0xfc, 0x32, 0x1b, 0xbe, - 0x97, 0x96, 0x61, 0x80, 0xee, 0x42, 0x3b, 0xc0, 0xf8, 0x51, 0x92, 0x72, 0x56, 0x8b, 0xa4, 0x9c, - 0x2d, 0x32, 0x26, 0xfa, 0xd2, 0xfe, 0x50, 0x81, 0x6e, 0xe6, 0xec, 0x23, 0x5b, 0x20, 0x51, 0xf2, - 0x05, 0x92, 0xdb, 0x50, 0x25, 0x9e, 0x8a, 0xed, 0x2d, 0x1d, 0x79, 0xf2, 0x2e, 0xce, 0xaa, 0xb3, - 0x01, 0x68, 0x1d, 0x96, 0x24, 0x77, 0x2c, 0xb8, 0xf8, 0x51, 0xfe, 0x8a, 0x85, 0xf6, 0x8b, 0x0a, - 0x34, 0x53, 0xac, 0x98, 0x51, 0xdb, 0x79, 0x22, 0x35, 0xec, 0x69, 0x67, 0xea, 0x44, 0xe5, 0x1c, - 0xec, 0xb0, 0xfc, 0x92, 0x27, 0xbb, 0x0e, 0x76, 0x68, 0x76, 0x99, 0x4e, 0x1c, 0x6b, 0x62, 0xe2, - 0x28, 0xa6, 0xd6, 0x0b, 0xa7, 0xa4, 0xd6, 0x75, 0x31, 0xb5, 0x16, 0x4c, 0xa8, 0x91, 0x35, 0xa1, - 0xa2, 0xe5, 0x96, 0x9b, 0xb0, 0x34, 0x64, 0x67, 0x04, 0x77, 0x4f, 0x36, 0xe3, 0x26, 0x1e, 0x94, - 0xca, 0x9a, 0xd0, 0xbd, 0xa4, 0x90, 0xca, 0xa4, 0xcc, 0x92, 0x0e, 0x79, 0xe6, 0xce, 0x65, 0xc3, - 0x84, 0x1c, 0x79, 0x66, 0xfa, 0x95, 0x2d, 0xf4, 0xb4, 0xcf, 0x55, 0xe8, 0x79, 0x06, 0x9a, 0x51, - 0xa4, 0x42, 0x2c, 0xbd, 0xc3, 0x9c, 0x5e, 0xe4, 0x06, 0xcc, 0x40, 0xf0, 0x03, 0x5d, 0xf1, 0x14, - 0x25, 0x5b, 0xf7, 0x50, 0xf3, 0x75, 0x8f, 0x4b, 0xb0, 0x60, 0x05, 0x83, 0x03, 0xe3, 0x11, 0xee, - 0x2d, 0xd2, 0xd6, 0x9a, 0x15, 0xdc, 0x33, 0x1e, 0x61, 0xed, 0x9f, 0xcb, 0xd0, 0x49, 0x36, 0xd8, - 0xc2, 0x1e, 0xa4, 0xc8, 0x3d, 0xa3, 0x1d, 0x50, 0x93, 0xb8, 0x87, 0x72, 0xf8, 0xd4, 0x1c, 0x3c, - 0x7b, 0x34, 0xd9, 0x1d, 0x67, 0xec, 0x55, 0xd8, 0xee, 0x2b, 0x67, 0xda, 0xee, 0xe7, 0xbc, 0x81, - 0x70, 0x0b, 0x56, 0xe2, 0xbd, 0x57, 0x58, 0x36, 0x4b, 0xb0, 0x96, 0xa3, 0xc6, 0xdd, 0xf4, 0xf2, - 0xa7, 0xb8, 0x80, 0x85, 0x69, 0x2e, 0x20, 0xab, 0x02, 0xf5, 0x9c, 0x0a, 0xe4, 0x2f, 0x42, 0x34, - 0x24, 0x17, 0x21, 0xb4, 0x87, 0xb0, 0x44, 0x8b, 0xda, 0xc1, 0xd0, 0xb7, 0xf6, 0x71, 0x9c, 0x02, - 0x14, 0x11, 0x6b, 0x1f, 0xea, 0x99, 0x2c, 0x22, 0xfe, 0xd6, 0x7e, 0xaa, 0xc0, 0xc5, 0xfc, 0xbc, - 0x54, 0x63, 0x12, 0x47, 0xa2, 0x08, 0x8e, 0xe4, 0x97, 0x60, 0x29, 0x15, 0x51, 0x0a, 0x33, 0x4f, - 0x89, 0xc0, 0x25, 0x84, 0xeb, 0x28, 0x99, 0x23, 0x82, 0x69, 0xbf, 0x50, 0xe2, 0xb3, 0x01, 0x02, - 0x1b, 0xd1, 0x83, 0x17, 0xb2, 0xaf, 0x79, 0xae, 0x6d, 0xb9, 0x71, 0xc1, 0x85, 0xaf, 0x91, 0x01, - 0x79, 0xc1, 0xe5, 0x1d, 0xe8, 0xf2, 0x4e, 0xf1, 0xf6, 0x54, 0x30, 0x20, 0xeb, 0xb0, 0x71, 0xf1, - 0xc6, 0xf4, 0x3c, 0x74, 0xf8, 0x89, 0x48, 0x84, 0xaf, 0x2c, 0x3b, 0x27, 0xf9, 0x01, 0xa8, 0x51, - 0xb7, 0xb3, 0x6e, 0x88, 0x5d, 0x3e, 0x30, 0x0e, 0xec, 0x7e, 0x5d, 0x81, 0x9e, 0xb8, 0x3d, 0xa6, - 0x96, 0x7f, 0xf6, 0xf0, 0xee, 0x75, 0xf1, 0x1c, 0xfc, 0xf9, 0x53, 0xe8, 0x49, 0xf0, 0x44, 0xa7, - 0xe1, 0xbf, 0x5d, 0xa2, 0x97, 0x1a, 0x48, 0xaa, 0xb7, 0x65, 0x05, 0xa1, 0x6f, 0xed, 0x4f, 0xe6, - 0x3b, 0x99, 0x35, 0xa0, 0x39, 0x3c, 0xc4, 0xc3, 0x47, 0x63, 0xcf, 0x4a, 0xa4, 0xf2, 0x96, 0x8c, - 0xa6, 0xe9, 0x68, 0xd7, 0x36, 0x93, 0x19, 0xd8, 0xd1, 0x56, 0x7a, 0xce, 0xfe, 0x8f, 0x41, 0xcd, - 0x76, 0x48, 0x9f, 0x28, 0x35, 0xd8, 0x89, 0xd2, 0x2d, 0xf1, 0x44, 0x69, 0x46, 0xa4, 0x91, 0x3a, - 0x50, 0xfa, 0xab, 0x12, 0x7c, 0x53, 0x4a, 0xdb, 0x3c, 0x59, 0xd2, 0xb4, 0x3a, 0xd2, 0x5d, 0xa8, - 0x67, 0x92, 0xda, 0x17, 0x4e, 0x91, 0x1f, 0xaf, 0xbb, 0xb2, 0xd2, 0x60, 0x90, 0xc4, 0x56, 0x89, - 0xc1, 0x57, 0xa6, 0xcf, 0xc1, 0xed, 0x4e, 0x98, 0x23, 0x1a, 0x87, 0xee, 0x40, 0x8b, 0x15, 0x0c, - 0x06, 0x47, 0x16, 0x3e, 0x8e, 0xce, 0x6b, 0xaf, 0x4a, 0x5d, 0x33, 0xed, 0xf7, 0xa1, 0x85, 0x8f, - 0xf5, 0xa6, 0x1d, 0xff, 0x0e, 0xb4, 0xdf, 0xad, 0x00, 0x24, 0x6d, 0x24, 0x3b, 0x4b, 0x6c, 0x9e, - 0x1b, 0x71, 0x0a, 0x42, 0x62, 0x09, 0x31, 0x72, 0x8d, 0x3e, 0x91, 0x9e, 0x9c, 0x97, 0x98, 0x56, - 0x10, 0x72, 0xbe, 0xac, 0x9f, 0x4e, 0x4b, 0xc4, 0x22, 0x22, 0x32, 0xae, 0x33, 0x41, 0x02, 0x41, - 0xaf, 0x00, 0x1a, 0xf9, 0xde, 0xb1, 0xe5, 0x8e, 0xd2, 0xf9, 0x06, 0x4b, 0x4b, 0x16, 0x79, 0x4b, - 0x2a, 0xe1, 0xf8, 0x09, 0xa8, 0x99, 0xee, 0x11, 0x4b, 0x6e, 0xcd, 0x20, 0xe3, 0xbe, 0x30, 0x17, - 0x57, 0xdf, 0xae, 0x88, 0x81, 0x1e, 0xce, 0x3e, 0x30, 0xfc, 0x11, 0x8e, 0x24, 0xca, 0xe3, 0x30, - 0x11, 0xd8, 0x1f, 0x80, 0x9a, 0x5d, 0x95, 0xe4, 0xe8, 0xf4, 0x55, 0x51, 0xd1, 0x4f, 0xf3, 0x47, - 0x64, 0x9a, 0x94, 0xaa, 0xf7, 0x0d, 0x58, 0x96, 0xd1, 0x2b, 0x41, 0x72, 0x6e, 0x6b, 0x7a, 0x2b, - 0x0e, 0x89, 0xa9, 0x1c, 0xa6, 0xed, 0x32, 0xa9, 0xc2, 0x73, 0x49, 0x28, 0x3c, 0x6b, 0xbf, 0x5a, - 0x06, 0x94, 0x57, 0x7f, 0xd4, 0x81, 0x52, 0x3c, 0x49, 0x69, 0x7b, 0x2b, 0xa3, 0x6e, 0xa5, 0x9c, - 0xba, 0x5d, 0x86, 0x46, 0xbc, 0xeb, 0x73, 0x17, 0x9f, 0x00, 0xd2, 0xca, 0x58, 0x11, 0x95, 0x31, - 0x45, 0x58, 0x55, 0xac, 0x88, 0xdf, 0x84, 0x65, 0xdb, 0x08, 0xc2, 0x01, 0x2b, 0xbc, 0x87, 0x96, - 0x83, 0x83, 0xd0, 0x70, 0xc6, 0x54, 0x94, 0x15, 0x1d, 0x91, 0xb6, 0x2d, 0xd2, 0xf4, 0x20, 0x6a, - 0x41, 0x0f, 0xa2, 0xe8, 0x9a, 0xf8, 0x5e, 0x7e, 0x29, 0xe1, 0xd5, 0x62, 0xe6, 0x9e, 0x94, 0xbb, - 0x99, 0x46, 0x35, 0xe2, 0xb0, 0xb3, 0xff, 0x09, 0x74, 0xc4, 0x46, 0x89, 0xf8, 0x6e, 0x8b, 0xe2, - 0x2b, 0x12, 0xd8, 0xa6, 0x64, 0x78, 0x08, 0x28, 0xef, 0x3c, 0xd2, 0x3c, 0x53, 0x44, 0x9e, 0xcd, - 0x92, 0x45, 0x8a, 0xa7, 0x65, 0x51, 0xd8, 0x7f, 0x5f, 0x06, 0x94, 0x44, 0x70, 0xf1, 0x21, 0x79, - 0x91, 0xb0, 0x67, 0x1d, 0x96, 0xf2, 0xf1, 0x5d, 0x14, 0xd4, 0xa2, 0x5c, 0x74, 0x27, 0x8b, 0xc4, - 0xca, 0xb2, 0x2b, 0xa9, 0xaf, 0xc5, 0xee, 0x9e, 0x85, 0xab, 0x57, 0xa7, 0x9e, 0x67, 0x88, 0x1e, - 0xff, 0xc7, 0xd9, 0xab, 0xac, 0xcc, 0x7f, 0xdc, 0x96, 0xba, 0xe6, 0xdc, 0x92, 0x67, 0xde, 0x63, - 0x15, 0x02, 0xe9, 0xda, 0x99, 0x02, 0xe9, 0xeb, 0xd0, 0xf6, 0xf1, 0xd0, 0x3b, 0xc2, 0x3e, 0xd3, - 0x5a, 0x1a, 0xce, 0x56, 0xf5, 0x16, 0x07, 0x52, 0x7d, 0x9d, 0xff, 0x76, 0xea, 0x7f, 0x97, 0x60, - 0x31, 0xe6, 0xf6, 0x99, 0x24, 0x39, 0xfb, 0xd2, 0xc3, 0x53, 0x16, 0xdd, 0xc7, 0x72, 0xd1, 0x7d, - 0xf7, 0xd4, 0x8c, 0xa7, 0xb0, 0xe4, 0xbe, 0x18, 0xf6, 0x7f, 0x06, 0x0b, 0xbc, 0xc0, 0x9d, 0x73, - 0x95, 0x45, 0x0a, 0x0f, 0xcb, 0x50, 0x25, 0x9e, 0x39, 0xaa, 0x4e, 0xb2, 0x0f, 0xc6, 0xf7, 0xf4, - 0x15, 0x69, 0xee, 0x2d, 0xdb, 0xc2, 0x0d, 0x69, 0xed, 0x37, 0xca, 0x00, 0x7b, 0x27, 0xee, 0xf0, - 0x0e, 0x33, 0xf7, 0x9b, 0x50, 0x99, 0x75, 0xa1, 0x8e, 0xf4, 0xa6, 0x5a, 0x4a, 0x7b, 0x16, 0xd0, - 0x00, 0xa1, 0xb4, 0x52, 0xce, 0x96, 0x56, 0xa6, 0x15, 0x45, 0xa6, 0x3b, 0xf3, 0xef, 0x42, 0x85, - 0x3a, 0x65, 0x76, 0xdf, 0xac, 0xd0, 0xf9, 0x32, 0x1d, 0x80, 0x56, 0x21, 0xda, 0xdc, 0xb7, 0x5d, - 0xb6, 0x7b, 0x53, 0xc7, 0x5e, 0xd6, 0xb3, 0x60, 0xf4, 0x02, 0x74, 0x58, 0x49, 0x2d, 0xee, 0xc8, - 0xb2, 0xc3, 0x0c, 0x34, 0x1f, 0x1b, 0x34, 0x24, 0xb1, 0x01, 0xc1, 0x6b, 0xfa, 0xde, 0x78, 0x9c, - 0x9a, 0x8e, 0xd5, 0x54, 0xb2, 0x60, 0xed, 0xf3, 0x12, 0x5c, 0x22, 0xfc, 0x7d, 0x32, 0xf1, 0x7d, - 0x11, 0xe5, 0x49, 0xed, 0x0c, 0x65, 0x71, 0x67, 0xb8, 0x0d, 0x0b, 0xac, 0x70, 0x13, 0x45, 0xaa, - 0x57, 0xa7, 0x69, 0x03, 0xd3, 0x1d, 0x3d, 0xea, 0x3e, 0x6f, 0xf6, 0x2f, 0x9c, 0xbe, 0xd7, 0xe6, - 0x3b, 0x7d, 0x5f, 0xc8, 0x96, 0x77, 0x53, 0x6a, 0x55, 0x17, 0xf7, 0xb3, 0x87, 0xd0, 0xd6, 0xd3, - 0xa6, 0x81, 0x10, 0x54, 0x52, 0x57, 0x6c, 0xe9, 0x6f, 0x9a, 0xb0, 0x1b, 0x63, 0x63, 0x68, 0x85, - 0x27, 0x94, 0x9d, 0x55, 0x3d, 0xfe, 0x96, 0xdb, 0xa1, 0xf6, 0x5f, 0x0a, 0x5c, 0x8c, 0x8e, 0x67, - 0xb9, 0x95, 0x9f, 0x5f, 0xa2, 0x1b, 0xb0, 0xc2, 0x4d, 0x3a, 0x63, 0xdb, 0x2c, 0x2c, 0x5f, 0x62, - 0x30, 0x71, 0x19, 0x1b, 0xb0, 0x12, 0x52, 0xed, 0xca, 0x8e, 0x61, 0xf2, 0x5e, 0x62, 0x8d, 0xe2, - 0x98, 0x22, 0xc7, 0xe3, 0xcf, 0xb0, 0x3b, 0x63, 0x9c, 0xb5, 0xdc, 0x48, 0xc1, 0x9d, 0x38, 0x7c, - 0x95, 0xda, 0x31, 0x5c, 0x66, 0x97, 0xdc, 0xf7, 0x45, 0x8a, 0xe6, 0x3a, 0x1d, 0x91, 0xae, 0x3b, - 0xe3, 0xd3, 0xfe, 0x48, 0x81, 0x2b, 0x53, 0x30, 0xcf, 0x93, 0x17, 0xbe, 0x27, 0xc5, 0x3e, 0x25, - 0x8b, 0x17, 0xf0, 0xb2, 0xab, 0x0f, 0x22, 0x91, 0x9f, 0x57, 0x60, 0x31, 0xd7, 0xe9, 0xcc, 0x3a, - 0xf7, 0x32, 0x20, 0x22, 0x84, 0xf8, 0x41, 0x27, 0x2d, 0x8c, 0xf0, 0x1d, 0x56, 0x75, 0x27, 0x4e, - 0xfc, 0x98, 0x73, 0xc7, 0x33, 0x31, 0xb2, 0x58, 0x6f, 0x76, 0x36, 0x12, 0x4b, 0xae, 0x32, 0xfd, - 0xdd, 0x4e, 0x8e, 0xc0, 0xb5, 0x9d, 0x89, 0xc3, 0x8e, 0x51, 0xb8, 0x94, 0xd9, 0xae, 0x49, 0x50, - 0x09, 0x60, 0x74, 0x00, 0x8b, 0xf4, 0x46, 0xe1, 0x24, 0x1c, 0x79, 0x24, 0x35, 0xa3, 0x74, 0xb1, - 0xbd, 0xf9, 0xfb, 0x85, 0x31, 0x7d, 0xc0, 0x47, 0x13, 0xe2, 0x79, 0x76, 0xe6, 0x8a, 0xd0, 0x08, - 0x8f, 0xe5, 0x0e, 0x3d, 0x27, 0xc6, 0x53, 0x3b, 0x23, 0x9e, 0x6d, 0x3e, 0x5a, 0xc4, 0x93, 0x86, - 0xf6, 0x37, 0x61, 0x45, 0xba, 0xf4, 0x59, 0x1b, 0x7d, 0x35, 0x9d, 0xc3, 0xdd, 0x85, 0x65, 0xd9, - 0xaa, 0xce, 0x31, 0x47, 0x8e, 0xe2, 0xb3, 0xcc, 0xa1, 0xfd, 0x69, 0x09, 0xda, 0x5b, 0xd8, 0xc6, - 0x21, 0x7e, 0xba, 0xa7, 0xd7, 0xb9, 0xa3, 0xf8, 0x72, 0xfe, 0x28, 0x3e, 0x77, 0xaf, 0xa0, 0x22, - 0xb9, 0x57, 0x70, 0x25, 0xbe, 0x4e, 0x41, 0x66, 0xa9, 0x8a, 0x31, 0x84, 0x89, 0x5e, 0x87, 0xd6, - 0xd8, 0xb7, 0x1c, 0xc3, 0x3f, 0x19, 0x3c, 0xc2, 0x27, 0x01, 0xdf, 0x34, 0x7a, 0xd2, 0x6d, 0x67, - 0x7b, 0x2b, 0xd0, 0x9b, 0xbc, 0xf7, 0xbb, 0xf8, 0x84, 0x5e, 0xd5, 0x88, 0x13, 0x42, 0x76, 0x07, - 0xb0, 0xa2, 0xa7, 0x20, 0x37, 0x5e, 0x82, 0x46, 0x7c, 0x05, 0x0a, 0xd5, 0xa1, 0x72, 0x6f, 0x62, - 0xdb, 0xea, 0x05, 0xd4, 0x80, 0x2a, 0x4d, 0x19, 0x55, 0x85, 0xfc, 0xa4, 0xb1, 0x9f, 0x5a, 0xba, - 0xf1, 0xff, 0xa0, 0x11, 0x5f, 0xc5, 0x40, 0x4d, 0x58, 0x78, 0xe8, 0xbe, 0xeb, 0x7a, 0xc7, 0xae, - 0x7a, 0x01, 0x2d, 0x40, 0xf9, 0x8e, 0x6d, 0xab, 0x0a, 0x6a, 0x43, 0x63, 0x2f, 0xf4, 0xb1, 0x41, - 0xc4, 0xa7, 0x96, 0x50, 0x07, 0xe0, 0x1d, 0x2b, 0x08, 0x3d, 0xdf, 0x1a, 0x1a, 0xb6, 0x5a, 0xbe, - 0xf1, 0x19, 0x74, 0xc4, 0xca, 0x3c, 0x6a, 0x41, 0x7d, 0xc7, 0x0b, 0xdf, 0xfe, 0xd4, 0x0a, 0x42, - 0xf5, 0x02, 0xe9, 0xbf, 0xe3, 0x85, 0xbb, 0x3e, 0x0e, 0xb0, 0x1b, 0xaa, 0x0a, 0x02, 0xa8, 0x7d, - 0xe0, 0x6e, 0x59, 0xc1, 0x23, 0xb5, 0x84, 0x96, 0xf8, 0xa1, 0x9b, 0x61, 0x6f, 0xf3, 0x72, 0xb7, - 0x5a, 0x26, 0xc3, 0xe3, 0xaf, 0x0a, 0x52, 0xa1, 0x15, 0x77, 0xb9, 0xbf, 0xfb, 0x50, 0xad, 0x32, - 0xea, 0xc9, 0xcf, 0xda, 0x0d, 0x13, 0xd4, 0xec, 0x61, 0x31, 0x99, 0x93, 0x2d, 0x22, 0x06, 0xa9, - 0x17, 0xc8, 0xca, 0xf8, 0x69, 0xbd, 0xaa, 0xa0, 0x2e, 0x34, 0x53, 0x67, 0xdf, 0x6a, 0x89, 0x00, - 0xee, 0xfb, 0xe3, 0x21, 0xd7, 0x2d, 0x46, 0x02, 0x51, 0xd4, 0x2d, 0xc2, 0x89, 0xca, 0x8d, 0xbb, - 0x50, 0x8f, 0x32, 0x1d, 0xd2, 0x95, 0xb3, 0x88, 0x7c, 0xaa, 0x17, 0xd0, 0x22, 0xb4, 0x85, 0xc7, - 0x82, 0xaa, 0x82, 0x10, 0x74, 0xc4, 0xe7, 0xbc, 0x6a, 0xe9, 0xc6, 0x06, 0x40, 0x92, 0x0c, 0x10, - 0x72, 0xb6, 0xdd, 0x23, 0xc3, 0xb6, 0x4c, 0x46, 0x1b, 0x69, 0x22, 0xdc, 0xa5, 0xdc, 0x61, 0x36, - 0xab, 0x96, 0x6e, 0xbc, 0x09, 0xf5, 0x28, 0x76, 0x25, 0x70, 0x1d, 0x3b, 0xde, 0x11, 0x66, 0x92, - 0xd9, 0xc3, 0x21, 0x93, 0xe3, 0x1d, 0x07, 0xbb, 0xa6, 0x5a, 0x22, 0x64, 0x3c, 0x1c, 0x9b, 0x46, - 0x18, 0x5d, 0x8c, 0x55, 0xcb, 0x1b, 0xff, 0xbe, 0x04, 0xc0, 0x4e, 0x7f, 0x3d, 0xcf, 0x37, 0x91, - 0x4d, 0x6f, 0x81, 0x6c, 0x7a, 0xce, 0xd8, 0x73, 0xa3, 0xa3, 0xa9, 0x00, 0xad, 0x65, 0x8a, 0x2d, - 0xec, 0x23, 0xdf, 0x91, 0xf3, 0xa6, 0xff, 0x9c, 0xb4, 0x7f, 0xa6, 0xb3, 0x76, 0x01, 0x39, 0x14, - 0x1b, 0xc9, 0x37, 0x1e, 0x58, 0xc3, 0x47, 0xf1, 0x91, 0xf1, 0xf4, 0x67, 0xb6, 0x99, 0xae, 0x11, - 0xbe, 0xeb, 0x52, 0x7c, 0x7b, 0xa1, 0x6f, 0xb9, 0xa3, 0x68, 0x77, 0xd4, 0x2e, 0xa0, 0xc7, 0x99, - 0x47, 0xbe, 0x11, 0xc2, 0x8d, 0x22, 0xef, 0x7a, 0xcf, 0x87, 0xd2, 0x86, 0x6e, 0xe6, 0xdf, 0x14, - 0xd0, 0x0d, 0xf9, 0x6b, 0x29, 0xd9, 0x3f, 0x3f, 0xf4, 0x5f, 0x2a, 0xd4, 0x37, 0xc6, 0x66, 0x41, - 0x47, 0xfc, 0x1b, 0x00, 0xf4, 0xad, 0x69, 0x13, 0xe4, 0xde, 0x6b, 0xf6, 0x6f, 0x14, 0xe9, 0x1a, - 0xa3, 0xfa, 0x88, 0xa9, 0xef, 0x2c, 0x54, 0xd2, 0x27, 0xb2, 0xfd, 0xd3, 0x02, 0x13, 0xed, 0x02, - 0xfa, 0x84, 0xc4, 0x10, 0x99, 0x57, 0xa5, 0xe8, 0x65, 0xf9, 0xbe, 0x27, 0x7f, 0x7c, 0x3a, 0x0b, - 0xc3, 0x47, 0x59, 0xe3, 0x9b, 0x4e, 0x7d, 0xee, 0xb9, 0x7a, 0x71, 0xea, 0x53, 0xd3, 0x9f, 0x46, - 0xfd, 0x99, 0x31, 0xd8, 0x2c, 0x9d, 0x92, 0xbc, 0x67, 0xcb, 0xaa, 0x72, 0x92, 0xcd, 0x4c, 0x7f, - 0xfc, 0x36, 0x0b, 0xdb, 0x84, 0x1a, 0x69, 0xf6, 0xda, 0xc3, 0x2b, 0x53, 0x0e, 0x54, 0xe4, 0x0f, - 0x69, 0xfb, 0x6b, 0x45, 0xbb, 0xa7, 0x75, 0x59, 0x7c, 0xab, 0x29, 0x17, 0x91, 0xf4, 0x7d, 0xa9, - 0x5c, 0x97, 0xe5, 0x4f, 0x3f, 0xb5, 0x0b, 0xe8, 0x81, 0xe0, 0xea, 0xd1, 0x0b, 0xd3, 0x54, 0x41, - 0xbc, 0x07, 0x35, 0x8b, 0x6f, 0xbf, 0x0c, 0x88, 0x59, 0xaa, 0x7b, 0x60, 0x8d, 0x26, 0xbe, 0xc1, - 0xd4, 0x78, 0x9a, 0x73, 0xcb, 0x77, 0x8d, 0xd0, 0x7c, 0xfb, 0x0c, 0x23, 0xe2, 0x25, 0x0d, 0x00, - 0xee, 0xe3, 0xf0, 0x7d, 0xfa, 0x68, 0x2f, 0xc8, 0xae, 0x28, 0xf1, 0xdf, 0xbc, 0x43, 0x84, 0xea, - 0xc5, 0x99, 0xfd, 0x62, 0x04, 0xfb, 0xd0, 0xbc, 0x4f, 0xf2, 0x2b, 0x1a, 0x33, 0x06, 0x68, 0xea, - 0xc8, 0xa8, 0x47, 0x84, 0x62, 0x75, 0x76, 0xc7, 0xb4, 0xf3, 0xcc, 0xbc, 0x5b, 0x45, 0x53, 0x05, - 0x9b, 0x7f, 0x4d, 0x2b, 0x77, 0x9e, 0x53, 0x1e, 0xc2, 0xb2, 0x15, 0xd1, 0x43, 0xbd, 0x77, 0xb0, - 0x61, 0x87, 0x87, 0x53, 0x56, 0x94, 0xea, 0x71, 0xfa, 0x8a, 0x84, 0x8e, 0x31, 0x0e, 0x0c, 0x4b, - 0xcc, 0x0a, 0xc5, 0xc4, 0x74, 0x5d, 0x3e, 0x45, 0xbe, 0x67, 0x41, 0xd5, 0x33, 0x60, 0x71, 0xcb, - 0xf7, 0xc6, 0x22, 0x92, 0x57, 0xa4, 0x48, 0x72, 0xfd, 0x0a, 0xa2, 0xf8, 0x21, 0xb4, 0xa2, 0xfc, - 0x9f, 0x66, 0x2c, 0x72, 0x2e, 0xa4, 0xbb, 0x14, 0x9c, 0xf8, 0x63, 0xe8, 0x66, 0x0a, 0x0b, 0x72, - 0xa1, 0xcb, 0xab, 0x0f, 0xb3, 0x66, 0x3f, 0x06, 0x44, 0x1f, 0x23, 0x8b, 0xff, 0xa7, 0x20, 0x8f, - 0x6f, 0xf2, 0x1d, 0x23, 0x24, 0xeb, 0x85, 0xfb, 0xc7, 0x92, 0xff, 0x15, 0x58, 0x91, 0x26, 0xef, - 0x59, 0x87, 0xc0, 0x2f, 0x3e, 0x9f, 0x52, 0x61, 0xc8, 0x3a, 0x84, 0x53, 0x47, 0x44, 0xf8, 0x37, - 0xfe, 0x05, 0x41, 0x83, 0xc6, 0x79, 0x54, 0x5a, 0xff, 0x17, 0xe6, 0x3d, 0xd9, 0x30, 0xef, 0x63, - 0xe8, 0x66, 0x1e, 0xc9, 0xca, 0x95, 0x56, 0xfe, 0x92, 0xb6, 0x40, 0xb4, 0x22, 0xbe, 0x2f, 0x95, - 0x6f, 0x85, 0xd2, 0x37, 0xa8, 0xb3, 0xe6, 0xfe, 0x90, 0x3d, 0x40, 0x8f, 0xcf, 0x85, 0x5f, 0x9c, - 0x7a, 0x42, 0x21, 0x5e, 0x60, 0xfe, 0xf2, 0xa3, 0xa0, 0xaf, 0x77, 0x04, 0xfa, 0x31, 0x74, 0x33, - 0x4f, 0x84, 0xe4, 0x1a, 0x23, 0x7f, 0x47, 0x34, 0x6b, 0xf6, 0x2f, 0x30, 0x78, 0x32, 0x61, 0x49, - 0xf2, 0x22, 0x03, 0xad, 0x4d, 0x0b, 0x44, 0xe5, 0x4f, 0x37, 0x66, 0x2f, 0xa8, 0x2d, 0x98, 0x69, - 0x76, 0xbf, 0x49, 0x88, 0xcc, 0xfe, 0x11, 0x53, 0xff, 0xe5, 0x62, 0xff, 0xda, 0x14, 0x2f, 0x68, - 0x0f, 0x6a, 0xec, 0xe1, 0x10, 0x7a, 0x56, 0x7e, 0x08, 0x93, 0x7a, 0x54, 0xd4, 0x9f, 0xf5, 0xf4, - 0x28, 0x98, 0xd8, 0x21, 0xa1, 0xff, 0x47, 0xd0, 0x61, 0xa0, 0x98, 0x41, 0x4f, 0x70, 0xf2, 0x3d, - 0xa8, 0x52, 0xd7, 0x8e, 0xa4, 0x07, 0x0a, 0xe9, 0xe7, 0x41, 0xfd, 0xd9, 0x2f, 0x82, 0x12, 0x8a, - 0x9b, 0x74, 0x24, 0xab, 0xea, 0x3c, 0xc9, 0xa9, 0x6f, 0x2a, 0xe8, 0x47, 0xd0, 0x66, 0x93, 0x47, - 0xdc, 0x78, 0x92, 0x94, 0x0f, 0x61, 0x29, 0x45, 0xf9, 0xd3, 0x40, 0x71, 0x53, 0xf9, 0x5f, 0x1e, - 0xdd, 0x7f, 0x4a, 0x9f, 0xe7, 0x64, 0x2f, 0xa0, 0xa1, 0xb5, 0xb3, 0xdd, 0xa2, 0xeb, 0xaf, 0x17, - 0xee, 0x1f, 0x63, 0xfe, 0x09, 0xa8, 0xd9, 0xa3, 0x42, 0xf4, 0xd2, 0x34, 0x5f, 0x22, 0xc3, 0x39, - 0xc3, 0x91, 0xfc, 0x00, 0x6a, 0xac, 0x46, 0x2c, 0x37, 0x40, 0xa1, 0x7e, 0x3c, 0x63, 0xae, 0xbb, - 0xdf, 0xf9, 0x68, 0x63, 0x64, 0x85, 0x87, 0x93, 0x7d, 0xd2, 0xb2, 0xce, 0xba, 0xbe, 0x62, 0x79, - 0xfc, 0xd7, 0x7a, 0x24, 0xcb, 0x75, 0x3a, 0x7a, 0x9d, 0x22, 0x18, 0xef, 0xef, 0xd7, 0xe8, 0xe7, - 0xad, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0xa5, 0x31, 0x2a, 0x17, 0x82, 0x54, 0x00, 0x00, + 0x72, 0x48, 0x10, 0x60, 0x13, 0x24, 0x97, 0x20, 0x01, 0x72, 0xc8, 0x21, 0xb7, 0xe4, 0x92, 0xd7, + 0xff, 0x90, 0xdc, 0x72, 0xcc, 0x22, 0x30, 0x90, 0x43, 0x50, 0x8f, 0x7e, 0x54, 0x77, 0x0d, 0xa7, + 0xc9, 0x91, 0xfc, 0x08, 0x72, 0x9b, 0xfe, 0xea, 0xf1, 0x7d, 0xf5, 0xbd, 0xea, 0xfb, 0xbe, 0xaa, + 0x1a, 0x58, 0x7c, 0x3c, 0xc1, 0xfe, 0xc9, 0x60, 0xe8, 0x79, 0xbe, 0xb9, 0x36, 0xf6, 0xbd, 0xd0, + 0x43, 0xc8, 0xb1, 0xec, 0xa3, 0x49, 0xc0, 0xbe, 0xd6, 0x68, 0x7b, 0xbf, 0x35, 0xf4, 0x1c, 0xc7, + 0x73, 0x19, 0xac, 0xdf, 0x4a, 0xf7, 0xe8, 0x77, 0x2c, 0x37, 0xc4, 0xbe, 0x6b, 0xd8, 0x51, 0x6b, + 0x30, 0x3c, 0xc4, 0x8e, 0xc1, 0xbf, 0x1a, 0x4e, 0x30, 0xe2, 0x3f, 0x55, 0xd3, 0x08, 0x8d, 0x34, + 0xaa, 0xfe, 0xa2, 0xe5, 0x9a, 0xf8, 0xd3, 0x34, 0x48, 0xfb, 0x35, 0x05, 0x2e, 0xee, 0x1d, 0x7a, + 0xc7, 0x9b, 0x9e, 0x6d, 0xe3, 0x61, 0x68, 0x79, 0x6e, 0xa0, 0xe3, 0xc7, 0x13, 0x1c, 0x84, 0xe8, + 0x26, 0x54, 0xf6, 0x8d, 0x00, 0xf7, 0x94, 0x6b, 0xca, 0x6a, 0x73, 0xe3, 0xf2, 0x9a, 0x40, 0x27, + 0x27, 0xf0, 0xfd, 0x60, 0x74, 0xd7, 0x08, 0xb0, 0x4e, 0x7b, 0x22, 0x04, 0x15, 0x73, 0x7f, 0x7b, + 0xab, 0x57, 0xba, 0xa6, 0xac, 0x96, 0x75, 0xfa, 0x1b, 0x3d, 0x07, 0xed, 0x61, 0x3c, 0xf7, 0xf6, + 0x56, 0xd0, 0x2b, 0x5f, 0x2b, 0xaf, 0x96, 0x75, 0x11, 0xa8, 0xfd, 0xb4, 0x04, 0x97, 0x72, 0x64, + 0x04, 0x63, 0xcf, 0x0d, 0x30, 0xba, 0x05, 0xb5, 0x20, 0x34, 0xc2, 0x49, 0xc0, 0x29, 0xf9, 0xa6, + 0x94, 0x92, 0x3d, 0xda, 0x45, 0xe7, 0x5d, 0xf3, 0x68, 0x4b, 0x12, 0xb4, 0xe8, 0xdb, 0xb0, 0x6c, + 0xb9, 0xef, 0x63, 0xc7, 0xf3, 0x4f, 0x06, 0x63, 0xec, 0x0f, 0xb1, 0x1b, 0x1a, 0x23, 0x1c, 0xd1, + 0xb8, 0x14, 0xb5, 0xed, 0x26, 0x4d, 0xe8, 0x35, 0xb8, 0xc4, 0x64, 0x18, 0x60, 0xff, 0xc8, 0x1a, + 0xe2, 0x81, 0x71, 0x64, 0x58, 0xb6, 0xb1, 0x6f, 0xe3, 0x5e, 0xe5, 0x5a, 0x79, 0xb5, 0xae, 0xaf, + 0xd0, 0xe6, 0x3d, 0xd6, 0x7a, 0x27, 0x6a, 0x44, 0xdf, 0x02, 0xd5, 0xc7, 0x07, 0x3e, 0x0e, 0x0e, + 0x07, 0x63, 0xdf, 0x1b, 0xf9, 0x38, 0x08, 0x7a, 0x55, 0x8a, 0xa6, 0xcb, 0xe1, 0xbb, 0x1c, 0xac, + 0xfd, 0x89, 0x02, 0x2b, 0x84, 0x19, 0xbb, 0x86, 0x1f, 0x5a, 0x4f, 0x41, 0x24, 0x1a, 0xb4, 0xd2, + 0x6c, 0xe8, 0x95, 0x69, 0x9b, 0x00, 0x23, 0x7d, 0xc6, 0x11, 0x7a, 0xc2, 0xbe, 0x0a, 0x25, 0x55, + 0x80, 0x69, 0xff, 0xcc, 0x75, 0x27, 0x4d, 0xe7, 0x3c, 0x32, 0xcb, 0xe2, 0x2c, 0xe5, 0x71, 0x9e, + 0x47, 0x62, 0x32, 0xce, 0x57, 0xe4, 0x9c, 0xff, 0xc7, 0x32, 0xac, 0xbc, 0xe7, 0x19, 0x66, 0xa2, + 0x86, 0x5f, 0x3c, 0xe7, 0xdf, 0x84, 0x1a, 0xb3, 0xe8, 0x5e, 0x85, 0xe2, 0x7a, 0x5e, 0xc4, 0xc5, + 0xad, 0x3d, 0xa1, 0x70, 0x8f, 0x02, 0x74, 0x3e, 0x08, 0x3d, 0x0f, 0x1d, 0x1f, 0x8f, 0x6d, 0x6b, + 0x68, 0x0c, 0xdc, 0x89, 0xb3, 0x8f, 0xfd, 0x5e, 0xf5, 0x9a, 0xb2, 0x5a, 0xd5, 0xdb, 0x1c, 0xba, + 0x43, 0x81, 0xe8, 0x13, 0x68, 0x1f, 0x58, 0xd8, 0x36, 0x07, 0xd4, 0x25, 0x6c, 0x6f, 0xf5, 0x6a, + 0xd7, 0xca, 0xab, 0xcd, 0x8d, 0xd7, 0xd7, 0xf2, 0xde, 0x68, 0x4d, 0xca, 0x91, 0xb5, 0x7b, 0x64, + 0xf8, 0x36, 0x1b, 0xfd, 0xb6, 0x1b, 0xfa, 0x27, 0x7a, 0xeb, 0x20, 0x05, 0x42, 0x3d, 0x58, 0xe0, + 0xec, 0xed, 0x2d, 0x5c, 0x53, 0x56, 0xeb, 0x7a, 0xf4, 0x89, 0x5e, 0x84, 0xae, 0x8f, 0x03, 0x6f, + 0xe2, 0x0f, 0xf1, 0x60, 0xe4, 0x7b, 0x93, 0x71, 0xd0, 0xab, 0x5f, 0x2b, 0xaf, 0x36, 0xf4, 0x4e, + 0x04, 0xbe, 0x4f, 0xa1, 0xfd, 0xb7, 0x60, 0x31, 0x87, 0x05, 0xa9, 0x50, 0x7e, 0x84, 0x4f, 0xa8, + 0x20, 0xca, 0x3a, 0xf9, 0x89, 0x96, 0xa1, 0x7a, 0x64, 0xd8, 0x13, 0xcc, 0x59, 0xcd, 0x3e, 0xbe, + 0x5f, 0xba, 0xad, 0x68, 0x7f, 0xa0, 0x40, 0x4f, 0xc7, 0x36, 0x36, 0x02, 0xfc, 0x65, 0x8a, 0xf4, + 0x22, 0xd4, 0x5c, 0xcf, 0xc4, 0xdb, 0x5b, 0x54, 0xa4, 0x65, 0x9d, 0x7f, 0x69, 0x9f, 0x2b, 0xb0, + 0x7c, 0x1f, 0x87, 0xc4, 0x0c, 0xac, 0x20, 0xb4, 0x86, 0xb1, 0x9d, 0xbf, 0x09, 0x65, 0x1f, 0x3f, + 0xe6, 0x94, 0xbd, 0x24, 0x52, 0x16, 0xbb, 0x7f, 0xd9, 0x48, 0x9d, 0x8c, 0x43, 0xcf, 0x42, 0xcb, + 0x74, 0xec, 0xc1, 0xf0, 0xd0, 0x70, 0x5d, 0x6c, 0x33, 0x43, 0x6a, 0xe8, 0x4d, 0xd3, 0xb1, 0x37, + 0x39, 0x08, 0x5d, 0x05, 0x08, 0xf0, 0xc8, 0xc1, 0x6e, 0x98, 0xf8, 0xe4, 0x14, 0x04, 0xdd, 0x80, + 0xc5, 0x03, 0xdf, 0x73, 0x06, 0xc1, 0xa1, 0xe1, 0x9b, 0x03, 0x1b, 0x1b, 0x26, 0xf6, 0x29, 0xf5, + 0x75, 0xbd, 0x4b, 0x1a, 0xf6, 0x08, 0xfc, 0x3d, 0x0a, 0x46, 0xb7, 0xa0, 0x1a, 0x0c, 0xbd, 0x31, + 0xa6, 0x9a, 0xd6, 0xd9, 0xb8, 0x22, 0xd3, 0xa1, 0x2d, 0x23, 0x34, 0xf6, 0x48, 0x27, 0x9d, 0xf5, + 0xd5, 0xfe, 0xa6, 0xc2, 0x4c, 0xed, 0x2b, 0xee, 0xe4, 0x52, 0xe6, 0x58, 0x7d, 0x32, 0xe6, 0x58, + 0x2b, 0x64, 0x8e, 0x0b, 0xa7, 0x9b, 0x63, 0x8e, 0x6b, 0x67, 0x31, 0xc7, 0xfa, 0x4c, 0x73, 0x6c, + 0xc8, 0xcc, 0x11, 0xbd, 0x0d, 0x5d, 0x16, 0x40, 0x58, 0xee, 0x81, 0x37, 0xb0, 0xad, 0x20, 0xec, + 0x01, 0x25, 0xf3, 0x4a, 0x56, 0x43, 0x4d, 0xfc, 0xe9, 0x1a, 0x43, 0xec, 0x1e, 0x78, 0x7a, 0xdb, + 0x8a, 0x7e, 0xbe, 0x67, 0x05, 0xe1, 0xfc, 0x56, 0xfd, 0x77, 0x89, 0x55, 0x7f, 0xd5, 0xb5, 0x27, + 0xb1, 0xfc, 0xaa, 0x60, 0xf9, 0x7f, 0xaa, 0xc0, 0x37, 0xee, 0xe3, 0x30, 0x26, 0x9f, 0x18, 0x32, + 0xfe, 0x8a, 0x6e, 0xf3, 0x7f, 0xa1, 0x40, 0x5f, 0x46, 0xeb, 0x3c, 0x5b, 0xfd, 0x47, 0x70, 0x31, + 0xc6, 0x31, 0x30, 0x71, 0x30, 0xf4, 0xad, 0x31, 0x15, 0x23, 0xf5, 0x55, 0xcd, 0x8d, 0xeb, 0x32, + 0xc5, 0xcf, 0x52, 0xb0, 0x12, 0x4f, 0xb1, 0x95, 0x9a, 0x41, 0xfb, 0x99, 0x02, 0x2b, 0xc4, 0x37, + 0x72, 0x67, 0x46, 0x34, 0xf0, 0xdc, 0x7c, 0x15, 0xdd, 0x64, 0x29, 0xe7, 0x26, 0x0b, 0xf0, 0x98, + 0x86, 0xd8, 0x59, 0x7a, 0xe6, 0xe1, 0xdd, 0xab, 0x50, 0x25, 0x06, 0x18, 0xb1, 0xea, 0x19, 0x19, + 0xab, 0xd2, 0xc8, 0x58, 0x6f, 0xcd, 0x65, 0x54, 0x24, 0x7e, 0x7b, 0x0e, 0x75, 0xcb, 0x2e, 0xbb, + 0x24, 0x59, 0xf6, 0x6f, 0x2a, 0x70, 0x29, 0x87, 0x70, 0x9e, 0x75, 0xbf, 0x01, 0x35, 0xba, 0x1b, + 0x45, 0x0b, 0x7f, 0x4e, 0xba, 0xf0, 0x14, 0x3a, 0xe2, 0x6d, 0x74, 0x3e, 0x46, 0xf3, 0x40, 0xcd, + 0xb6, 0x91, 0x7d, 0x92, 0xef, 0x91, 0x03, 0xd7, 0x70, 0x18, 0x03, 0x1a, 0x7a, 0x93, 0xc3, 0x76, + 0x0c, 0x07, 0xa3, 0x6f, 0x40, 0x9d, 0x98, 0xec, 0xc0, 0x32, 0x23, 0xf1, 0x2f, 0x50, 0x13, 0x36, + 0x03, 0x74, 0x05, 0x80, 0x36, 0x19, 0xa6, 0xe9, 0xb3, 0x2d, 0xb4, 0xa1, 0x37, 0x08, 0xe4, 0x0e, + 0x01, 0x68, 0xbf, 0xaf, 0xc0, 0xd5, 0xbd, 0x13, 0x77, 0xb8, 0x83, 0x8f, 0x37, 0x7d, 0x6c, 0x84, + 0x38, 0x71, 0xda, 0x4f, 0x95, 0xf1, 0xe8, 0x1a, 0x34, 0x53, 0xf6, 0xcb, 0x55, 0x32, 0x0d, 0xd2, + 0xfe, 0x52, 0x81, 0x16, 0xd9, 0x45, 0xde, 0xc7, 0xa1, 0x41, 0x54, 0x04, 0x7d, 0x0f, 0x1a, 0xb6, + 0x67, 0x98, 0x83, 0xf0, 0x64, 0xcc, 0xa8, 0xe9, 0x64, 0xa9, 0x49, 0xb6, 0x9e, 0x07, 0x27, 0x63, + 0xac, 0xd7, 0x6d, 0xfe, 0xab, 0x10, 0x45, 0x59, 0x2f, 0x53, 0x96, 0x78, 0xca, 0x67, 0xa0, 0xe9, + 0xe0, 0xd0, 0xb7, 0x86, 0x8c, 0x88, 0x0a, 0x15, 0x05, 0x30, 0x10, 0x41, 0xa4, 0xfd, 0xac, 0x06, + 0x17, 0x7f, 0x68, 0x84, 0xc3, 0xc3, 0x2d, 0x27, 0x8a, 0x62, 0xce, 0xcf, 0xc7, 0xc4, 0x2f, 0x97, + 0xd2, 0x7e, 0xf9, 0x89, 0xf9, 0xfd, 0xd8, 0x46, 0xab, 0x32, 0x1b, 0x25, 0x89, 0xf9, 0xda, 0x87, + 0x5c, 0xcd, 0x52, 0x36, 0x9a, 0x0a, 0x36, 0x6a, 0xe7, 0x09, 0x36, 0x36, 0xa1, 0x8d, 0x3f, 0x1d, + 0xda, 0x13, 0xa2, 0xaf, 0x14, 0x3b, 0x8b, 0x22, 0xae, 0x4a, 0xb0, 0xa7, 0x1d, 0x44, 0x8b, 0x0f, + 0xda, 0xe6, 0x34, 0x30, 0x5d, 0x70, 0x70, 0x68, 0xd0, 0x50, 0xa1, 0xb9, 0x71, 0x6d, 0x9a, 0x2e, + 0x44, 0x0a, 0xc4, 0xf4, 0x81, 0x7c, 0xa1, 0xcb, 0xd0, 0xe0, 0xa1, 0xcd, 0xf6, 0x56, 0xaf, 0x41, + 0xd9, 0x97, 0x00, 0x90, 0x01, 0x6d, 0xee, 0x3d, 0x39, 0x85, 0x2c, 0x80, 0x78, 0x43, 0x86, 0x40, + 0x2e, 0xec, 0x34, 0xe5, 0x01, 0x0f, 0x74, 0x82, 0x14, 0x88, 0x64, 0xfe, 0xde, 0xc1, 0x81, 0x6d, + 0xb9, 0x78, 0x87, 0x49, 0xb8, 0x49, 0x89, 0x10, 0x81, 0x24, 0x1c, 0x3a, 0xc2, 0x7e, 0x60, 0x79, + 0x6e, 0xaf, 0x45, 0xdb, 0xa3, 0x4f, 0x59, 0x94, 0xd3, 0x3e, 0x47, 0x94, 0x33, 0x80, 0xc5, 0x1c, + 0xa5, 0x92, 0x28, 0xe7, 0x3b, 0xe9, 0x28, 0x67, 0xb6, 0xa8, 0x52, 0x51, 0xd0, 0xcf, 0x15, 0x58, + 0x79, 0xe8, 0x06, 0x93, 0xfd, 0x98, 0x45, 0x5f, 0x8e, 0x39, 0x64, 0x9d, 0x68, 0x25, 0xe7, 0x44, + 0xb5, 0xff, 0xac, 0x42, 0x97, 0xaf, 0x82, 0x68, 0x0d, 0x75, 0x39, 0x97, 0xa1, 0x11, 0xef, 0xa3, + 0x9c, 0x21, 0x09, 0x20, 0xeb, 0xc3, 0x4a, 0x39, 0x1f, 0x56, 0x88, 0xb4, 0x28, 0x2a, 0xaa, 0xa4, + 0xa2, 0xa2, 0x2b, 0x00, 0x07, 0xf6, 0x24, 0x38, 0x1c, 0x84, 0x96, 0x83, 0x79, 0x54, 0xd6, 0xa0, + 0x90, 0x07, 0x96, 0x83, 0xd1, 0x1d, 0x68, 0xed, 0x5b, 0xae, 0xed, 0x8d, 0x06, 0x63, 0x23, 0x3c, + 0x0c, 0x78, 0x5a, 0x2c, 0x13, 0x0b, 0x8d, 0x61, 0xef, 0xd2, 0xbe, 0x7a, 0x93, 0x8d, 0xd9, 0x25, + 0x43, 0xd0, 0x55, 0x68, 0xba, 0x13, 0x67, 0xe0, 0x1d, 0x0c, 0x7c, 0xef, 0x38, 0xa0, 0xc9, 0x6f, + 0x59, 0x6f, 0xb8, 0x13, 0xe7, 0x83, 0x03, 0xdd, 0x3b, 0x26, 0xfb, 0x58, 0x83, 0xec, 0x68, 0x81, + 0xed, 0x8d, 0x58, 0xe2, 0x3b, 0x7b, 0xfe, 0x64, 0x00, 0x19, 0x6d, 0x62, 0x3b, 0x34, 0xe8, 0xe8, + 0x46, 0xb1, 0xd1, 0xf1, 0x00, 0xf4, 0x02, 0x74, 0x86, 0x9e, 0x33, 0x36, 0x28, 0x87, 0xee, 0xf9, + 0x9e, 0x43, 0x0d, 0xb0, 0xac, 0x67, 0xa0, 0x68, 0x13, 0x9a, 0x89, 0x11, 0x04, 0xbd, 0x26, 0xc5, + 0xa3, 0xc9, 0xac, 0x34, 0x15, 0xca, 0x13, 0x05, 0x85, 0xd8, 0x0a, 0x02, 0xa2, 0x19, 0x91, 0xb1, + 0x07, 0xd6, 0x67, 0x98, 0x1b, 0x5a, 0x93, 0xc3, 0xf6, 0xac, 0xcf, 0x30, 0x49, 0x8f, 0x2c, 0x37, + 0xc0, 0x7e, 0x18, 0x25, 0xab, 0xbd, 0x36, 0x55, 0x9f, 0x36, 0x83, 0x72, 0xc5, 0x46, 0x5b, 0xd0, + 0x09, 0x42, 0xc3, 0x0f, 0x07, 0x63, 0x2f, 0xa0, 0x0a, 0xd0, 0xeb, 0x50, 0xdd, 0xce, 0x98, 0xa4, + 0x13, 0x8c, 0x88, 0x62, 0xef, 0xf2, 0x4e, 0x7a, 0x9b, 0x0e, 0x8a, 0x3e, 0xc9, 0x2c, 0x94, 0x13, + 0xc9, 0x2c, 0xdd, 0x42, 0xb3, 0xd0, 0x41, 0xf1, 0x2c, 0xab, 0x24, 0x5d, 0x32, 0x4c, 0x63, 0xdf, + 0xc6, 0x1f, 0x72, 0x0f, 0xa2, 0xd2, 0x85, 0x65, 0xc1, 0xda, 0x1f, 0x97, 0xa1, 0x23, 0xb2, 0x87, + 0xb8, 0x1d, 0x96, 0x95, 0x45, 0x3a, 0x1f, 0x7d, 0x12, 0x66, 0x61, 0x97, 0x8c, 0x66, 0x29, 0x20, + 0x55, 0xf9, 0xba, 0xde, 0x64, 0x30, 0x3a, 0x01, 0x51, 0x5d, 0x26, 0x14, 0x6a, 0x67, 0x65, 0xca, + 0xa8, 0x06, 0x85, 0xd0, 0x50, 0xa5, 0x07, 0x0b, 0x51, 0xf6, 0xc8, 0x14, 0x3e, 0xfa, 0x24, 0x2d, + 0xfb, 0x13, 0x8b, 0x62, 0x65, 0x0a, 0x1f, 0x7d, 0xa2, 0x2d, 0x68, 0xb1, 0x29, 0xc7, 0x86, 0x6f, + 0x38, 0x91, 0xba, 0x3f, 0x2b, 0x75, 0x19, 0xef, 0xe2, 0x93, 0x0f, 0x89, 0xf7, 0xd9, 0x35, 0x2c, + 0x5f, 0x67, 0xea, 0xb1, 0x4b, 0x47, 0xa1, 0x55, 0x50, 0xd9, 0x2c, 0x07, 0x96, 0x8d, 0xb9, 0xe1, + 0x2c, 0xb0, 0x14, 0x92, 0xc2, 0xef, 0x59, 0x36, 0x66, 0xb6, 0x11, 0x2f, 0x81, 0x2a, 0x44, 0x9d, + 0x99, 0x06, 0x85, 0x50, 0x75, 0xb8, 0x0e, 0xcc, 0x8b, 0x0e, 0x22, 0xdf, 0xcc, 0x36, 0x10, 0x46, + 0x23, 0x67, 0x2b, 0x0d, 0xc9, 0x26, 0x0e, 0x33, 0x2e, 0x60, 0xcb, 0x71, 0x27, 0x0e, 0x35, 0xad, + 0x0d, 0x58, 0x19, 0x4e, 0x7c, 0x9f, 0x6d, 0x2f, 0xe9, 0x79, 0x9a, 0x34, 0xe9, 0x5e, 0xe2, 0x8d, + 0xdb, 0xa9, 0xe9, 0xb4, 0xdf, 0xa9, 0xc2, 0x12, 0xf1, 0x4a, 0xdc, 0x41, 0xcd, 0x11, 0x54, 0x5c, + 0x01, 0x30, 0x83, 0x70, 0x20, 0x78, 0xd2, 0x86, 0x19, 0x84, 0x7c, 0xcb, 0xf9, 0x5e, 0x14, 0x13, + 0x94, 0xa7, 0xa7, 0x38, 0x19, 0x2f, 0x99, 0x8f, 0x0b, 0xce, 0x55, 0x13, 0xbc, 0x0e, 0x6d, 0x9e, + 0xdf, 0x0b, 0xc9, 0x68, 0x8b, 0x01, 0x77, 0xe4, 0xbe, 0xbe, 0x26, 0xad, 0x4d, 0xa6, 0x62, 0x83, + 0x85, 0xf9, 0x62, 0x83, 0x7a, 0x36, 0x36, 0xb8, 0x07, 0x5d, 0xd1, 0x3c, 0x23, 0xff, 0x36, 0xc3, + 0x3e, 0x3b, 0x82, 0x7d, 0x06, 0xe9, 0xad, 0x1d, 0xc4, 0xad, 0xfd, 0x3a, 0xb4, 0x5d, 0x8c, 0xcd, + 0x41, 0xe8, 0x1b, 0x6e, 0x70, 0x80, 0x7d, 0xaa, 0x16, 0x75, 0xbd, 0x45, 0x80, 0x0f, 0x38, 0x0c, + 0xbd, 0x01, 0x40, 0xd7, 0xc8, 0x4a, 0x5a, 0xad, 0xe9, 0x25, 0x2d, 0xaa, 0x34, 0xb4, 0xa4, 0x45, + 0x99, 0x42, 0x7f, 0x3e, 0xa1, 0xe8, 0x41, 0xfb, 0xa7, 0x12, 0x5c, 0xe4, 0x25, 0x8e, 0xf9, 0xf5, + 0x72, 0xda, 0xee, 0x1e, 0x6d, 0x8f, 0xe5, 0x53, 0x8a, 0x06, 0x95, 0x02, 0x01, 0x70, 0x55, 0x12, + 0x00, 0x8b, 0x89, 0x73, 0x2d, 0x97, 0x38, 0xc7, 0x35, 0xc3, 0x85, 0xe2, 0x35, 0x43, 0xb4, 0x0c, + 0x55, 0x9a, 0xcd, 0x51, 0xdd, 0x69, 0xe8, 0xec, 0xa3, 0x90, 0x54, 0xb5, 0xdf, 0x2b, 0x41, 0x7b, + 0x0f, 0x1b, 0xfe, 0xf0, 0x30, 0xe2, 0xe3, 0x6b, 0xe9, 0x1a, 0xeb, 0x73, 0x53, 0x6a, 0xac, 0xc2, + 0x90, 0xaf, 0x4d, 0x71, 0x95, 0x20, 0x08, 0xbd, 0xd0, 0x88, 0xa9, 0x1c, 0xb8, 0x13, 0x87, 0x17, + 0x1e, 0xbb, 0xb4, 0x81, 0x93, 0xba, 0x33, 0x71, 0xb4, 0xff, 0x50, 0xa0, 0xf5, 0xff, 0xc9, 0x34, + 0x11, 0x63, 0x6e, 0xa7, 0x19, 0xf3, 0xc2, 0x14, 0xc6, 0xe8, 0x24, 0x31, 0xc3, 0x47, 0xf8, 0x6b, + 0x57, 0x77, 0xfe, 0x7b, 0x05, 0xfa, 0x24, 0x2d, 0xd7, 0x99, 0xdf, 0x99, 0xdf, 0xba, 0xae, 0x43, + 0xfb, 0x48, 0x08, 0x80, 0x4b, 0x54, 0x39, 0x5b, 0x47, 0xe9, 0x32, 0x82, 0x0e, 0x6a, 0x54, 0x06, + 0xe6, 0x8b, 0x8d, 0xb6, 0x81, 0x17, 0x65, 0x54, 0x67, 0x88, 0xa3, 0x1e, 0xa2, 0xeb, 0x8b, 0x40, + 0xed, 0xb7, 0x14, 0x58, 0x92, 0x74, 0x44, 0x97, 0x60, 0x81, 0x97, 0x2c, 0x78, 0x8c, 0xc1, 0xec, + 0xdd, 0x24, 0xe2, 0x49, 0x8a, 0x6e, 0x96, 0x99, 0x8f, 0xaa, 0x4d, 0x92, 0x85, 0xc7, 0xf9, 0x99, + 0x99, 0x93, 0x8f, 0x19, 0xa0, 0x3e, 0xd4, 0xb9, 0x37, 0x8d, 0x12, 0xdf, 0xf8, 0x5b, 0x7b, 0x04, + 0xe8, 0x3e, 0x4e, 0xf6, 0xae, 0x79, 0x38, 0x9a, 0xf8, 0x9b, 0x84, 0xd0, 0xb4, 0x13, 0x32, 0xb5, + 0x7f, 0x53, 0x60, 0x49, 0xc0, 0x36, 0x4f, 0x69, 0x29, 0xd9, 0x5f, 0x4b, 0xe7, 0xd9, 0x5f, 0x85, + 0xf2, 0x49, 0xf9, 0x4c, 0xe5, 0x93, 0xab, 0x00, 0x31, 0xff, 0x23, 0x8e, 0xa6, 0x20, 0xda, 0xdf, + 0x2a, 0x70, 0xf1, 0x1d, 0xc3, 0x35, 0xbd, 0x83, 0x83, 0xf9, 0x55, 0x75, 0x13, 0x84, 0x54, 0xb9, + 0x68, 0x01, 0x51, 0xcc, 0xaf, 0x5f, 0x82, 0x45, 0x9f, 0xed, 0x4c, 0xa6, 0xa8, 0xcb, 0x65, 0x5d, + 0x8d, 0x1a, 0x62, 0x1d, 0xfd, 0xf3, 0x12, 0x20, 0xb2, 0xea, 0xbb, 0x86, 0x6d, 0xb8, 0x43, 0x7c, + 0x7e, 0xd2, 0x9f, 0x87, 0x8e, 0x10, 0xc2, 0xc4, 0x07, 0xfa, 0xe9, 0x18, 0x26, 0x40, 0xef, 0x42, + 0x67, 0x9f, 0xa1, 0x1a, 0xf8, 0xd8, 0x08, 0x3c, 0x97, 0x8b, 0x43, 0x5a, 0x2b, 0x7c, 0xe0, 0x5b, + 0xa3, 0x11, 0xf6, 0x37, 0x3d, 0xd7, 0xe4, 0x91, 0xfe, 0x7e, 0x44, 0x26, 0x19, 0x4a, 0x8c, 0x21, + 0x89, 0xe7, 0x62, 0xe1, 0xc4, 0x01, 0x1d, 0x65, 0x45, 0x80, 0x0d, 0x3b, 0x61, 0x44, 0xb2, 0x1b, + 0xaa, 0xac, 0x61, 0x6f, 0x7a, 0xa9, 0x58, 0x12, 0x5f, 0x69, 0x7f, 0xa5, 0x00, 0x8a, 0xd3, 0x79, + 0x5a, 0xff, 0xa0, 0x16, 0x9d, 0x1d, 0xaa, 0x48, 0x36, 0xe5, 0xcb, 0xd0, 0x30, 0xa3, 0x91, 0xdc, + 0x05, 0x25, 0x00, 0xba, 0x47, 0x52, 0xa2, 0x07, 0x44, 0xf3, 0xb0, 0x19, 0xa5, 0xcb, 0x0c, 0xf8, + 0x1e, 0x85, 0x89, 0xe1, 0x59, 0x25, 0x1b, 0x9e, 0xa5, 0x2b, 0xa1, 0x55, 0xa1, 0x12, 0xaa, 0xfd, + 0xbc, 0x04, 0x2a, 0xdd, 0x42, 0x36, 0x93, 0x92, 0x56, 0x21, 0xa2, 0xaf, 0x43, 0x9b, 0x5f, 0x88, + 0x11, 0x08, 0x6f, 0x3d, 0x4e, 0x4d, 0x86, 0x6e, 0xc2, 0x32, 0xeb, 0xe4, 0xe3, 0x60, 0x62, 0x27, + 0x99, 0x22, 0x4b, 0x80, 0xd0, 0x63, 0xb6, 0x77, 0x91, 0xa6, 0x68, 0xc4, 0x43, 0xb8, 0x38, 0xb2, + 0xbd, 0x7d, 0xc3, 0x1e, 0x88, 0xe2, 0x61, 0x32, 0x2c, 0xa0, 0xf1, 0xcb, 0x6c, 0xf8, 0x5e, 0x5a, + 0x86, 0x01, 0xba, 0x0b, 0xed, 0x00, 0xe3, 0x47, 0x49, 0xfa, 0x58, 0x2d, 0x92, 0x3e, 0xb6, 0xc8, + 0x98, 0xe8, 0x4b, 0xfb, 0x43, 0x05, 0xba, 0x99, 0x73, 0x8c, 0x6c, 0xb1, 0x43, 0xc9, 0x17, 0x3b, + 0x6e, 0x43, 0x95, 0x78, 0x2a, 0xb6, 0xb7, 0x74, 0xe4, 0x89, 0xb8, 0x38, 0xab, 0xce, 0x06, 0xa0, + 0x75, 0x58, 0x92, 0xdc, 0x97, 0xe0, 0xe2, 0x47, 0xf9, 0xeb, 0x12, 0xda, 0x2f, 0x2a, 0xd0, 0x4c, + 0xb1, 0x62, 0x46, 0x9d, 0xe6, 0x89, 0xd4, 0xa3, 0xa7, 0x9d, 0x8f, 0x13, 0x95, 0x73, 0xb0, 0xc3, + 0x72, 0x45, 0x9e, 0xb8, 0x3a, 0xd8, 0xa1, 0x99, 0x62, 0x3a, 0x09, 0xac, 0x89, 0x49, 0xa0, 0x98, + 0x26, 0x2f, 0x9c, 0x92, 0x26, 0xd7, 0xc5, 0x34, 0x59, 0x30, 0xa1, 0x46, 0xd6, 0x84, 0x8a, 0x96, + 0x4e, 0x6e, 0xc2, 0xd2, 0x90, 0xd5, 0xfb, 0xef, 0x9e, 0x6c, 0xc6, 0x4d, 0x3c, 0x28, 0x95, 0x35, + 0xa1, 0x7b, 0x49, 0x51, 0x94, 0x49, 0x99, 0x25, 0x1d, 0xf2, 0x2c, 0x9c, 0xcb, 0x86, 0x09, 0x39, + 0xf2, 0xcc, 0xf4, 0x2b, 0x5b, 0xb4, 0x69, 0x9f, 0xab, 0x68, 0xf3, 0x0c, 0x34, 0xa3, 0x48, 0x85, + 0x58, 0x7a, 0x87, 0x39, 0xbd, 0xc8, 0x0d, 0x98, 0x81, 0xe0, 0x07, 0xba, 0xe2, 0x89, 0x48, 0xb6, + 0x86, 0xa1, 0xe6, 0x6b, 0x18, 0x97, 0x60, 0xc1, 0x0a, 0x06, 0x07, 0xc6, 0x23, 0xdc, 0x5b, 0xa4, + 0xad, 0x35, 0x2b, 0xb8, 0x67, 0x3c, 0xc2, 0xda, 0xbf, 0x94, 0xa1, 0x93, 0x6c, 0xb0, 0x85, 0x3d, + 0x48, 0x91, 0x3b, 0x43, 0x3b, 0xa0, 0x26, 0x71, 0x0f, 0xe5, 0xf0, 0xa9, 0x39, 0x78, 0xf6, 0x98, + 0xb1, 0x3b, 0xce, 0xd8, 0xab, 0xb0, 0xdd, 0x57, 0xce, 0xb4, 0xdd, 0xcf, 0x79, 0x9b, 0xe0, 0x16, + 0xac, 0xc4, 0x7b, 0xaf, 0xb0, 0x6c, 0x96, 0x60, 0x2d, 0x47, 0x8d, 0xbb, 0xe9, 0xe5, 0x4f, 0x71, + 0x01, 0x0b, 0xd3, 0x5c, 0x40, 0x56, 0x05, 0xea, 0x39, 0x15, 0xc8, 0x5f, 0x6a, 0x68, 0x48, 0x2e, + 0x35, 0x68, 0x0f, 0x61, 0x89, 0x16, 0xa8, 0x83, 0xa1, 0x6f, 0xed, 0xe3, 0x38, 0x05, 0x28, 0x22, + 0xd6, 0x3e, 0xd4, 0x33, 0x59, 0x44, 0xfc, 0xad, 0xfd, 0x54, 0x81, 0x8b, 0xf9, 0x79, 0xa9, 0xc6, + 0x24, 0x8e, 0x44, 0x11, 0x1c, 0xc9, 0x2f, 0xc1, 0x52, 0x2a, 0xa2, 0x14, 0x66, 0x9e, 0x12, 0x81, + 0x4b, 0x08, 0xd7, 0x51, 0x32, 0x47, 0x04, 0xd3, 0x7e, 0xa1, 0xc4, 0x75, 0x7e, 0x02, 0x1b, 0xd1, + 0x43, 0x14, 0xb2, 0xaf, 0x79, 0xae, 0x6d, 0xb9, 0x71, 0xc1, 0x85, 0xaf, 0x91, 0x01, 0x79, 0xc1, + 0xe5, 0x1d, 0xe8, 0xf2, 0x4e, 0xf1, 0xf6, 0x54, 0x30, 0x20, 0xeb, 0xb0, 0x71, 0xf1, 0xc6, 0xf4, + 0x3c, 0x74, 0xf8, 0xe9, 0x46, 0x84, 0xaf, 0x2c, 0x3b, 0xf3, 0xf8, 0x01, 0xa8, 0x51, 0xb7, 0xb3, + 0x6e, 0x88, 0x5d, 0x3e, 0x30, 0x0e, 0xec, 0x7e, 0x5d, 0x81, 0x9e, 0xb8, 0x3d, 0xa6, 0x96, 0x7f, + 0xf6, 0xf0, 0xee, 0x75, 0xf1, 0x4c, 0xfb, 0xf9, 0x53, 0xe8, 0x49, 0xf0, 0x44, 0x27, 0xdb, 0xbf, + 0x5d, 0xa2, 0x17, 0x14, 0x48, 0xaa, 0xb7, 0x65, 0x05, 0xa1, 0x6f, 0xed, 0x4f, 0xe6, 0x3b, 0x65, + 0x35, 0xa0, 0x39, 0x3c, 0xc4, 0xc3, 0x47, 0x63, 0xcf, 0x4a, 0xa4, 0xf2, 0x96, 0x8c, 0xa6, 0xe9, + 0x68, 0xd7, 0x36, 0x93, 0x19, 0xd8, 0x31, 0x55, 0x7a, 0xce, 0xfe, 0x8f, 0x41, 0xcd, 0x76, 0x48, + 0x9f, 0x0e, 0x35, 0xd8, 0xe9, 0xd0, 0x2d, 0xf1, 0x74, 0x68, 0x46, 0xa4, 0x91, 0x3a, 0x1c, 0xfa, + 0xeb, 0x12, 0x7c, 0x53, 0x4a, 0xdb, 0x3c, 0x59, 0xd2, 0xb4, 0x3a, 0xd2, 0x5d, 0xa8, 0x67, 0x92, + 0xda, 0x17, 0x4e, 0x91, 0x1f, 0xaf, 0xbb, 0xb2, 0xd2, 0x60, 0x90, 0xc4, 0x56, 0x89, 0xc1, 0x57, + 0xa6, 0xcf, 0xc1, 0xed, 0x4e, 0x98, 0x23, 0x1a, 0x87, 0xee, 0x40, 0x8b, 0x15, 0x0c, 0x06, 0x47, + 0x16, 0x3e, 0x8e, 0xce, 0x5e, 0xaf, 0x4a, 0x5d, 0x33, 0xed, 0xf7, 0xa1, 0x85, 0x8f, 0xf5, 0xa6, + 0x1d, 0xff, 0x0e, 0xb4, 0xdf, 0xad, 0x00, 0x24, 0x6d, 0x24, 0x3b, 0x4b, 0x6c, 0x9e, 0x1b, 0x71, + 0x0a, 0x42, 0x62, 0x09, 0x31, 0x72, 0x8d, 0x3e, 0x91, 0x9e, 0x9c, 0x7d, 0x98, 0x56, 0x10, 0x72, + 0xbe, 0xac, 0x9f, 0x4e, 0x4b, 0xc4, 0x22, 0x22, 0x32, 0xae, 0x33, 0x41, 0x02, 0x41, 0xaf, 0x00, + 0x1a, 0xf9, 0xde, 0xb1, 0xe5, 0x8e, 0xd2, 0xf9, 0x06, 0x4b, 0x4b, 0x16, 0x79, 0x4b, 0x2a, 0xe1, + 0xf8, 0x09, 0xa8, 0x99, 0xee, 0x11, 0x4b, 0x6e, 0xcd, 0x20, 0xe3, 0xbe, 0x30, 0x17, 0x57, 0xdf, + 0xae, 0x88, 0x81, 0x1e, 0xb4, 0x3e, 0x30, 0xfc, 0x11, 0x8e, 0x24, 0xca, 0xe3, 0x30, 0x11, 0xd8, + 0x1f, 0x80, 0x9a, 0x5d, 0x95, 0xe4, 0x18, 0xf4, 0x55, 0x51, 0xd1, 0x4f, 0xf3, 0x47, 0x64, 0x9a, + 0x94, 0xaa, 0xf7, 0x0d, 0x58, 0x96, 0xd1, 0x2b, 0x41, 0x72, 0x6e, 0x6b, 0x7a, 0x2b, 0x0e, 0x89, + 0xa9, 0x1c, 0xa6, 0xed, 0x32, 0xa9, 0xc2, 0x73, 0x49, 0x28, 0x3c, 0x6b, 0xbf, 0x5a, 0x06, 0x94, + 0x57, 0x7f, 0xd4, 0x81, 0x52, 0x3c, 0x49, 0x69, 0x7b, 0x2b, 0xa3, 0x6e, 0xa5, 0x9c, 0xba, 0x5d, + 0x86, 0x46, 0xbc, 0xeb, 0x73, 0x17, 0x9f, 0x00, 0xd2, 0xca, 0x58, 0x11, 0x95, 0x31, 0x45, 0x58, + 0x55, 0xac, 0x88, 0xdf, 0x84, 0x65, 0xdb, 0x08, 0xc2, 0x01, 0x2b, 0xbc, 0x87, 0x96, 0x83, 0x83, + 0xd0, 0x70, 0xc6, 0x54, 0x94, 0x15, 0x1d, 0x91, 0xb6, 0x2d, 0xd2, 0xf4, 0x20, 0x6a, 0x41, 0x0f, + 0xa2, 0xe8, 0x9a, 0xf8, 0x5e, 0x7e, 0xc1, 0xe0, 0xd5, 0x62, 0xe6, 0x9e, 0x94, 0xbb, 0x99, 0x46, + 0x35, 0xe2, 0xb0, 0xb3, 0xff, 0x09, 0x74, 0xc4, 0x46, 0x89, 0xf8, 0x6e, 0x8b, 0xe2, 0x2b, 0x12, + 0xd8, 0xa6, 0x64, 0x78, 0x08, 0x28, 0xef, 0x3c, 0xd2, 0x3c, 0x53, 0x44, 0x9e, 0xcd, 0x92, 0x45, + 0x8a, 0xa7, 0x65, 0x51, 0xd8, 0xff, 0x50, 0x06, 0x94, 0x44, 0x70, 0xf1, 0x81, 0x77, 0x91, 0xb0, + 0x67, 0x1d, 0x96, 0xf2, 0xf1, 0x5d, 0x14, 0xd4, 0xa2, 0x5c, 0x74, 0x27, 0x8b, 0xc4, 0xca, 0xb2, + 0xeb, 0xa5, 0xaf, 0xc5, 0xee, 0x9e, 0x85, 0xab, 0x57, 0xa7, 0x9e, 0x67, 0x88, 0x1e, 0xff, 0xc7, + 0xd9, 0x6b, 0xa9, 0xcc, 0x7f, 0xdc, 0x96, 0xba, 0xe6, 0xdc, 0x92, 0x67, 0xde, 0x49, 0x15, 0x02, + 0xe9, 0xda, 0x99, 0x02, 0xe9, 0xeb, 0xd0, 0xf6, 0xf1, 0xd0, 0x3b, 0xc2, 0x3e, 0xd3, 0x5a, 0x1a, + 0xce, 0x56, 0xf5, 0x16, 0x07, 0x52, 0x7d, 0x9d, 0xff, 0xa6, 0xe9, 0x7f, 0x97, 0x60, 0x31, 0xe6, + 0xf6, 0x99, 0x24, 0x39, 0xfb, 0x02, 0xc3, 0x53, 0x16, 0xdd, 0xc7, 0x72, 0xd1, 0x7d, 0xf7, 0xd4, + 0x8c, 0xa7, 0xb0, 0xe4, 0xbe, 0x18, 0xf6, 0x7f, 0x06, 0x0b, 0xbc, 0xc0, 0x9d, 0x73, 0x95, 0x45, + 0x0a, 0x0f, 0xcb, 0x50, 0x25, 0x9e, 0x39, 0xaa, 0x4e, 0xb2, 0x0f, 0xc6, 0xf7, 0xf4, 0x75, 0x67, + 0xee, 0x2d, 0xdb, 0xc2, 0x6d, 0x67, 0xed, 0x37, 0xca, 0x00, 0x7b, 0x27, 0xee, 0xf0, 0x0e, 0x33, + 0xf7, 0x9b, 0x50, 0x99, 0x75, 0x39, 0x8e, 0xf4, 0xa6, 0x5a, 0x4a, 0x7b, 0x16, 0xd0, 0x00, 0xa1, + 0xb4, 0x52, 0xce, 0x96, 0x56, 0xa6, 0x15, 0x45, 0xa6, 0x3b, 0xf3, 0xef, 0x42, 0x85, 0x3a, 0x65, + 0x76, 0x77, 0xac, 0xd0, 0xf9, 0x32, 0x1d, 0x80, 0x56, 0x21, 0xda, 0xdc, 0xb7, 0x5d, 0xb6, 0x7b, + 0x53, 0xc7, 0x5e, 0xd6, 0xb3, 0x60, 0xf4, 0x02, 0x74, 0x58, 0x49, 0x2d, 0xee, 0xc8, 0xb2, 0xc3, + 0x0c, 0x34, 0x1f, 0x1b, 0x34, 0x24, 0xb1, 0x01, 0xc1, 0x6b, 0xfa, 0xde, 0x78, 0x9c, 0x9a, 0x8e, + 0xd5, 0x54, 0xb2, 0x60, 0xed, 0xf3, 0x12, 0x5c, 0x22, 0xfc, 0x7d, 0x32, 0xf1, 0x7d, 0x11, 0xe5, + 0x49, 0xed, 0x0c, 0x65, 0x71, 0x67, 0xb8, 0x0d, 0x0b, 0xac, 0x70, 0x13, 0x45, 0xaa, 0x57, 0xa7, + 0x69, 0x03, 0xd3, 0x1d, 0x3d, 0xea, 0x3e, 0x6f, 0xf6, 0x2f, 0x9c, 0xbe, 0xd7, 0xe6, 0x3b, 0x7d, + 0x5f, 0xc8, 0x96, 0x77, 0x53, 0x6a, 0x55, 0x17, 0xf7, 0xb3, 0x87, 0xd0, 0xd6, 0xd3, 0xa6, 0x81, + 0x10, 0x54, 0x52, 0xd7, 0x65, 0xe9, 0x6f, 0x9a, 0xb0, 0x1b, 0x63, 0x63, 0x68, 0x85, 0x27, 0x94, + 0x9d, 0x55, 0x3d, 0xfe, 0x96, 0xdb, 0xa1, 0xf6, 0x5f, 0x0a, 0x5c, 0x8c, 0x8e, 0x67, 0xb9, 0x95, + 0x9f, 0x5f, 0xa2, 0x1b, 0xb0, 0xc2, 0x4d, 0x3a, 0x63, 0xdb, 0x2c, 0x2c, 0x5f, 0x62, 0x30, 0x71, + 0x19, 0x1b, 0xb0, 0x12, 0x52, 0xed, 0xca, 0x8e, 0x61, 0xf2, 0x5e, 0x62, 0x8d, 0xe2, 0x98, 0x22, + 0xc7, 0xe3, 0xcf, 0xb0, 0xfb, 0x5f, 0x9c, 0xb5, 0xdc, 0x48, 0xc1, 0x9d, 0x38, 0x7c, 0x95, 0xda, + 0x31, 0x5c, 0x66, 0x17, 0xd6, 0xf7, 0x45, 0x8a, 0xe6, 0x3a, 0x1d, 0x91, 0xae, 0x3b, 0xe3, 0xd3, + 0xfe, 0x48, 0x81, 0x2b, 0x53, 0x30, 0xcf, 0x93, 0x17, 0xbe, 0x27, 0xc5, 0x3e, 0x25, 0x8b, 0x17, + 0xf0, 0xb2, 0xab, 0x0f, 0x22, 0x91, 0x9f, 0x57, 0x60, 0x31, 0xd7, 0xe9, 0xcc, 0x3a, 0xf7, 0x32, + 0x20, 0x22, 0x84, 0xf8, 0x71, 0x26, 0x2d, 0x8c, 0xf0, 0x1d, 0x56, 0x75, 0x27, 0x4e, 0xfc, 0x30, + 0x73, 0xc7, 0x33, 0x31, 0xb2, 0x58, 0x6f, 0x76, 0x36, 0x12, 0x4b, 0xae, 0x32, 0xfd, 0x0d, 0x4e, + 0x8e, 0xc0, 0xb5, 0x9d, 0x89, 0xc3, 0x8e, 0x51, 0xb8, 0x94, 0xd9, 0xae, 0x49, 0x50, 0x09, 0x60, + 0x74, 0x00, 0x8b, 0xf4, 0x76, 0xe0, 0x24, 0x1c, 0x79, 0x24, 0x35, 0xa3, 0x74, 0xb1, 0xbd, 0xf9, + 0xfb, 0x85, 0x31, 0x7d, 0xc0, 0x47, 0x13, 0xe2, 0x79, 0x76, 0xe6, 0x8a, 0xd0, 0x08, 0x8f, 0xe5, + 0x0e, 0x3d, 0x27, 0xc6, 0x53, 0x3b, 0x23, 0x9e, 0x6d, 0x3e, 0x5a, 0xc4, 0x93, 0x86, 0xf6, 0x37, + 0x61, 0x45, 0xba, 0xf4, 0x59, 0x1b, 0x7d, 0x35, 0x9d, 0xc3, 0xdd, 0x85, 0x65, 0xd9, 0xaa, 0xce, + 0x31, 0x47, 0x8e, 0xe2, 0xb3, 0xcc, 0xa1, 0xfd, 0x59, 0x09, 0xda, 0x5b, 0xd8, 0xc6, 0x21, 0x7e, + 0xba, 0xa7, 0xd7, 0xb9, 0xa3, 0xf8, 0x72, 0xfe, 0x28, 0x3e, 0x77, 0xaf, 0xa0, 0x22, 0xb9, 0x57, + 0x70, 0x25, 0xbe, 0x4e, 0x41, 0x66, 0xa9, 0x8a, 0x31, 0x84, 0x89, 0x5e, 0x87, 0xd6, 0xd8, 0xb7, + 0x1c, 0xc3, 0x3f, 0x19, 0x3c, 0xc2, 0x27, 0x01, 0xdf, 0x34, 0x7a, 0xd2, 0x6d, 0x67, 0x7b, 0x2b, + 0xd0, 0x9b, 0xbc, 0xf7, 0xbb, 0xf8, 0x84, 0x5e, 0xd5, 0x88, 0x13, 0x42, 0x76, 0x9f, 0xaf, 0xa2, + 0xa7, 0x20, 0x37, 0x5e, 0x82, 0x46, 0x7c, 0x05, 0x0a, 0xd5, 0xa1, 0x72, 0x6f, 0x62, 0xdb, 0xea, + 0x05, 0xd4, 0x80, 0x2a, 0x4d, 0x19, 0x55, 0x85, 0xfc, 0xa4, 0xb1, 0x9f, 0x5a, 0xba, 0xf1, 0xff, + 0xa0, 0x11, 0x5f, 0xc5, 0x40, 0x4d, 0x58, 0x78, 0xe8, 0xbe, 0xeb, 0x7a, 0xc7, 0xae, 0x7a, 0x01, + 0x2d, 0x40, 0xf9, 0x8e, 0x6d, 0xab, 0x0a, 0x6a, 0x43, 0x63, 0x2f, 0xf4, 0xb1, 0x41, 0xc4, 0xa7, + 0x96, 0x50, 0x07, 0xe0, 0x1d, 0x2b, 0x08, 0x3d, 0xdf, 0x1a, 0x1a, 0xb6, 0x5a, 0xbe, 0xf1, 0x19, + 0x74, 0xc4, 0xca, 0x3c, 0x6a, 0x41, 0x7d, 0xc7, 0x0b, 0xdf, 0xfe, 0xd4, 0x0a, 0x42, 0xf5, 0x02, + 0xe9, 0xbf, 0xe3, 0x85, 0xbb, 0x3e, 0x0e, 0xb0, 0x1b, 0xaa, 0x0a, 0x02, 0xa8, 0x7d, 0xe0, 0x6e, + 0x59, 0xc1, 0x23, 0xb5, 0x84, 0x96, 0xf8, 0xa1, 0x9b, 0x61, 0x6f, 0xf3, 0x72, 0xb7, 0x5a, 0x26, + 0xc3, 0xe3, 0xaf, 0x0a, 0x52, 0xa1, 0x15, 0x77, 0xb9, 0xbf, 0xfb, 0x50, 0xad, 0x32, 0xea, 0xc9, + 0xcf, 0xda, 0x0d, 0x13, 0xd4, 0xec, 0x61, 0x31, 0x99, 0x93, 0x2d, 0x22, 0x06, 0xa9, 0x17, 0xc8, + 0xca, 0xf8, 0x69, 0xbd, 0xaa, 0xa0, 0x2e, 0x34, 0x53, 0x67, 0xdf, 0x6a, 0x89, 0x00, 0xee, 0xfb, + 0xe3, 0x21, 0xd7, 0x2d, 0x46, 0x02, 0x51, 0xd4, 0x2d, 0xc2, 0x89, 0xca, 0x8d, 0xbb, 0x50, 0x8f, + 0x32, 0x1d, 0xd2, 0x95, 0xb3, 0x88, 0x7c, 0xaa, 0x17, 0xd0, 0x22, 0xb4, 0x85, 0x87, 0x7f, 0xaa, + 0x82, 0x10, 0x74, 0xc4, 0xa7, 0xb9, 0x6a, 0xe9, 0xc6, 0x06, 0x40, 0x92, 0x0c, 0x10, 0x72, 0xb6, + 0xdd, 0x23, 0xc3, 0xb6, 0x4c, 0x46, 0x1b, 0x69, 0x22, 0xdc, 0xa5, 0xdc, 0x61, 0x36, 0xab, 0x96, + 0x6e, 0xbc, 0x09, 0xf5, 0x28, 0x76, 0x25, 0x70, 0x1d, 0x3b, 0xde, 0x11, 0x66, 0x92, 0xd9, 0xc3, + 0x21, 0x93, 0xe3, 0x1d, 0x07, 0xbb, 0xa6, 0x5a, 0x22, 0x64, 0x3c, 0x1c, 0x9b, 0x46, 0x18, 0x5d, + 0x72, 0x55, 0xcb, 0x1b, 0xff, 0xbe, 0x04, 0xc0, 0x4e, 0x7f, 0x3d, 0xcf, 0x37, 0x91, 0x4d, 0x6f, + 0x81, 0x6c, 0x7a, 0xce, 0xd8, 0x73, 0xa3, 0xa3, 0xa9, 0x00, 0xad, 0x65, 0x8a, 0x2d, 0xec, 0x23, + 0xdf, 0x91, 0xf3, 0xa6, 0xff, 0x9c, 0xb4, 0x7f, 0xa6, 0xb3, 0x76, 0x01, 0x39, 0x14, 0x1b, 0xc9, + 0x37, 0x1e, 0x58, 0xc3, 0x47, 0xf1, 0x91, 0xf1, 0xf4, 0x27, 0xb3, 0x99, 0xae, 0x11, 0xbe, 0xeb, + 0x52, 0x7c, 0x7b, 0xa1, 0x6f, 0xb9, 0xa3, 0x68, 0x77, 0xd4, 0x2e, 0xa0, 0xc7, 0x99, 0x07, 0xbb, + 0x11, 0xc2, 0x8d, 0x22, 0x6f, 0x74, 0xcf, 0x87, 0xd2, 0x86, 0x6e, 0xe6, 0x9f, 0x11, 0xd0, 0x0d, + 0xf9, 0xcb, 0x27, 0xd9, 0xbf, 0x38, 0xf4, 0x5f, 0x2a, 0xd4, 0x37, 0xc6, 0x66, 0x41, 0x47, 0x7c, + 0xd2, 0x8f, 0xbe, 0x35, 0x6d, 0x82, 0xdc, 0xdb, 0xcb, 0xfe, 0x8d, 0x22, 0x5d, 0x63, 0x54, 0x1f, + 0x31, 0xf5, 0x9d, 0x85, 0x4a, 0xfa, 0xdc, 0xb5, 0x7f, 0x5a, 0x60, 0xa2, 0x5d, 0x40, 0x9f, 0x90, + 0x18, 0x22, 0xf3, 0x42, 0x14, 0xbd, 0x2c, 0xdf, 0xf7, 0xe4, 0x0f, 0x49, 0x67, 0x61, 0xf8, 0x28, + 0x6b, 0x7c, 0xd3, 0xa9, 0xcf, 0x3d, 0x3d, 0x2f, 0x4e, 0x7d, 0x6a, 0xfa, 0xd3, 0xa8, 0x3f, 0x33, + 0x06, 0x9b, 0xa5, 0x53, 0x92, 0xb7, 0x69, 0x59, 0x55, 0x4e, 0xb2, 0x99, 0xe9, 0x0f, 0xd9, 0x66, + 0x61, 0x9b, 0x50, 0x23, 0xcd, 0x5e, 0x7b, 0x78, 0x65, 0xca, 0x81, 0x8a, 0xfc, 0x51, 0x6c, 0x7f, + 0xad, 0x68, 0xf7, 0xb4, 0x2e, 0x8b, 0xef, 0x2e, 0xe5, 0x22, 0x92, 0xbe, 0x15, 0x95, 0xeb, 0xb2, + 0xfc, 0x19, 0xa7, 0x76, 0x01, 0x3d, 0x10, 0x5c, 0x3d, 0x7a, 0x61, 0x9a, 0x2a, 0x88, 0xf7, 0xa0, + 0x66, 0xf1, 0xed, 0x97, 0x01, 0x31, 0x4b, 0x75, 0x0f, 0xac, 0xd1, 0xc4, 0x37, 0x98, 0x1a, 0x4f, + 0x73, 0x6e, 0xf9, 0xae, 0x11, 0x9a, 0x6f, 0x9f, 0x61, 0x44, 0xbc, 0xa4, 0x01, 0xc0, 0x7d, 0x1c, + 0xbe, 0x4f, 0x1f, 0xe0, 0x05, 0xd9, 0x15, 0x25, 0xfe, 0x9b, 0x77, 0x88, 0x50, 0xbd, 0x38, 0xb3, + 0x5f, 0x8c, 0x60, 0x1f, 0x9a, 0xf7, 0x49, 0x7e, 0x45, 0x63, 0xc6, 0x00, 0x4d, 0x1d, 0x19, 0xf5, + 0x88, 0x50, 0xac, 0xce, 0xee, 0x98, 0x76, 0x9e, 0x99, 0x37, 0xa8, 0x68, 0xaa, 0x60, 0xf3, 0x2f, + 0x63, 0xe5, 0xce, 0x73, 0xca, 0xa3, 0x56, 0xb6, 0x22, 0x7a, 0xa8, 0xf7, 0x0e, 0x36, 0xec, 0xf0, + 0x70, 0xca, 0x8a, 0x52, 0x3d, 0x4e, 0x5f, 0x91, 0xd0, 0x31, 0xc6, 0x81, 0x61, 0x89, 0x59, 0xa1, + 0x98, 0x98, 0xae, 0xcb, 0xa7, 0xc8, 0xf7, 0x2c, 0xa8, 0x7a, 0x06, 0x2c, 0x6e, 0xf9, 0xde, 0x58, + 0x44, 0xf2, 0x8a, 0x14, 0x49, 0xae, 0x5f, 0x41, 0x14, 0x3f, 0x84, 0x56, 0x94, 0xff, 0xd3, 0x8c, + 0x45, 0xce, 0x85, 0x74, 0x97, 0x82, 0x13, 0x7f, 0x0c, 0xdd, 0x4c, 0x61, 0x41, 0x2e, 0x74, 0x79, + 0xf5, 0x61, 0xd6, 0xec, 0xc7, 0x80, 0xe8, 0xc3, 0x62, 0xf1, 0xbf, 0x11, 0xe4, 0xf1, 0x4d, 0xbe, + 0x63, 0x84, 0x64, 0xbd, 0x70, 0xff, 0x58, 0xf2, 0xbf, 0x02, 0x2b, 0xd2, 0xe4, 0x3d, 0xeb, 0x10, + 0xf8, 0xc5, 0xe7, 0x53, 0x2a, 0x0c, 0x59, 0x87, 0x70, 0xea, 0x88, 0x08, 0xff, 0xc6, 0xbf, 0x22, + 0x68, 0xd0, 0x38, 0x8f, 0x4a, 0xeb, 0xff, 0xc2, 0xbc, 0x27, 0x1b, 0xe6, 0x7d, 0x0c, 0xdd, 0xcc, + 0x83, 0x57, 0xb9, 0xd2, 0xca, 0x5f, 0xc5, 0x16, 0x88, 0x56, 0xc4, 0xb7, 0xa2, 0xf2, 0xad, 0x50, + 0xfa, 0x9e, 0x74, 0xd6, 0xdc, 0x1f, 0xb2, 0xc7, 0xe4, 0xf1, 0xb9, 0xf0, 0x8b, 0x53, 0x4f, 0x28, + 0xc4, 0x0b, 0xcc, 0x5f, 0x7e, 0x14, 0xf4, 0xf5, 0x8e, 0x40, 0x3f, 0x86, 0x6e, 0xe6, 0x89, 0x90, + 0x5c, 0x63, 0xe4, 0xef, 0x88, 0x66, 0xcd, 0xfe, 0x05, 0x06, 0x4f, 0x26, 0x2c, 0x49, 0x5e, 0x64, + 0xa0, 0xb5, 0x69, 0x81, 0xa8, 0xfc, 0xe9, 0xc6, 0xec, 0x05, 0xb5, 0x05, 0x33, 0xcd, 0xee, 0x37, + 0x09, 0x91, 0xd9, 0x3f, 0x55, 0xea, 0xbf, 0x5c, 0xec, 0x1f, 0x98, 0xe2, 0x05, 0xed, 0x41, 0x8d, + 0x3d, 0x1c, 0x42, 0xcf, 0xca, 0x0f, 0x61, 0x52, 0x8f, 0x8a, 0xfa, 0xb3, 0x9e, 0x1e, 0x05, 0x13, + 0x3b, 0x24, 0xf4, 0xff, 0x08, 0x3a, 0x0c, 0x14, 0x33, 0xe8, 0x09, 0x4e, 0xbe, 0x07, 0x55, 0xea, + 0xda, 0x91, 0xf4, 0x40, 0x21, 0xfd, 0x3c, 0xa8, 0x3f, 0xfb, 0x45, 0x50, 0x42, 0x71, 0x93, 0x8e, + 0x64, 0x55, 0x9d, 0x27, 0x39, 0xf5, 0x4d, 0x05, 0xfd, 0x08, 0xda, 0x6c, 0xf2, 0x88, 0x1b, 0x4f, + 0x92, 0xf2, 0x21, 0x2c, 0xa5, 0x28, 0x7f, 0x1a, 0x28, 0x6e, 0x2a, 0xff, 0xcb, 0xa3, 0xfb, 0x4f, + 0xe9, 0xf3, 0x9c, 0xec, 0x05, 0x34, 0xb4, 0x76, 0xb6, 0x5b, 0x74, 0xfd, 0xf5, 0xc2, 0xfd, 0x63, + 0xcc, 0x3f, 0x01, 0x35, 0x7b, 0x54, 0x88, 0x5e, 0x9a, 0xe6, 0x4b, 0x64, 0x38, 0x67, 0x38, 0x92, + 0x1f, 0x40, 0x8d, 0xd5, 0x88, 0xe5, 0x06, 0x28, 0xd4, 0x8f, 0x67, 0xcc, 0x75, 0xf7, 0x3b, 0x1f, + 0x6d, 0x8c, 0xac, 0xf0, 0x70, 0xb2, 0x4f, 0x5a, 0xd6, 0x59, 0xd7, 0x57, 0x2c, 0x8f, 0xff, 0x5a, + 0x8f, 0x64, 0xb9, 0x4e, 0x47, 0xaf, 0x53, 0x04, 0xe3, 0xfd, 0xfd, 0x1a, 0xfd, 0xbc, 0xf5, 0x3f, + 0x01, 0x00, 0x00, 0xff, 0xff, 0x83, 0xe6, 0x60, 0xbe, 0x4e, 0x54, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/internal/querycoordv2/meta/coordinator_broker.go b/internal/querycoordv2/meta/coordinator_broker.go index 35e90d81753e0..da1065031719c 100644 --- a/internal/querycoordv2/meta/coordinator_broker.go +++ b/internal/querycoordv2/meta/coordinator_broker.go @@ -237,7 +237,6 @@ func (broker *CoordinatorBroker) GetIndexInfo(ctx context.Context, collectionID IndexVersion: info.GetIndexVersion(), NumRows: info.GetNumRows(), CurrentIndexVersion: info.GetCurrentIndexVersion(), - MinimalIndexVersion: info.GetMinimalIndexVersion(), }) } diff --git a/internal/querynodev2/segments/segment_loader.go b/internal/querynodev2/segments/segment_loader.go index cc6f7aa87efd0..a67236b38b2df 100644 --- a/internal/querynodev2/segments/segment_loader.go +++ b/internal/querynodev2/segments/segment_loader.go @@ -674,7 +674,6 @@ func (loader *segmentLoader) loadFieldsIndex(ctx context.Context, zap.Int64("fieldID", fieldID), zap.Any("binlog", fieldInfo.FieldBinlog.Binlogs), zap.Int32("current_index_version", fieldInfo.IndexInfo.GetCurrentIndexVersion()), - zap.Int32("minimal_index_version", fieldInfo.IndexInfo.GetMinimalIndexVersion()), ) segment.AddIndex(fieldID, fieldInfo)