diff --git a/dgraph/cmd/debug/run.go b/dgraph/cmd/debug/run.go index df048a0b78c..e2486d1aed3 100644 --- a/dgraph/cmd/debug/run.go +++ b/dgraph/cmd/debug/run.go @@ -533,7 +533,10 @@ func lookup(db *badger.DB) { if err != nil { log.Fatal(err) } - fmt.Fprintf(&buf, " Length: %d", pl.Length(math.MaxUint64, 0)) + pl.RLock() + c, _, _ := pl.GetLength(math.MaxUint64) + pl.RUnlock() + fmt.Fprintf(&buf, " Length: %d", c) splits := pl.PartSplits() isMultiPart := len(splits) > 0 @@ -611,6 +614,13 @@ func printKeys(db *badger.DB) { } var sz, deltaCount int64 + pl, err := posting.GetNew(key, db, opt.readTs) + if err == nil { + pl.RLock() + c, _, _ := pl.GetLength(math.MaxUint64) + fmt.Fprintf(&buf, " countValue: [%d]", c) + pl.RUnlock() + } LOOP: for ; itr.ValidForPrefix(prefix); itr.Next() { item := itr.Item() diff --git a/posting/index.go b/posting/index.go index 9be79d9a7bf..f367e8ff437 100644 --- a/posting/index.go +++ b/posting/index.go @@ -166,7 +166,7 @@ func (txn *Txn) addIndexMutations(ctx context.Context, info *indexMutationInfo) // that we care about just data[0]. // Similarly, the current assumption is that we have at most one // Vector Index, but this assumption may break later. - if info.op == pb.DirectedEdge_SET && + if info.op != pb.DirectedEdge_DEL && len(data) > 0 && data[0].Tid == types.VFloatID && len(info.factorySpecs) > 0 { // retrieve vector from inUuid save as inVec @@ -236,6 +236,18 @@ type countParams struct { reverse bool } +// When we want to update count edges, we should set them with OVR instead of SET as SET will mess with count +func shouldAddCountEdge(found bool, edge *pb.DirectedEdge) bool { + if found { + if edge.Op != pb.DirectedEdge_DEL { + edge.Op = pb.DirectedEdge_OVR + } + return true + } else { + return edge.Op != pb.DirectedEdge_DEL + } +} + func (txn *Txn) addReverseMutationHelper(ctx context.Context, plist *List, hasCountIndex bool, edge *pb.DirectedEdge) (countParams, error) { countBefore, countAfter := 0, 0 @@ -245,12 +257,14 @@ func (txn *Txn) addReverseMutationHelper(ctx context.Context, plist *List, defer plist.Unlock() if hasCountIndex { countBefore, found, _ = plist.getPostingAndLengthNoSort(txn.StartTs, 0, edge.ValueId) - if countBefore == -1 { + if countBefore < 0 { return emptyCountParams, errors.Wrapf(ErrTsTooOld, "Adding reverse mutation helper count") } } - if err := plist.addMutationInternal(ctx, txn, edge); err != nil { - return emptyCountParams, err + if !(hasCountIndex && !shouldAddCountEdge(found, edge)) { + if err := plist.addMutationInternal(ctx, txn, edge); err != nil { + return emptyCountParams, err + } } if hasCountIndex { countAfter = countAfterMutation(countBefore, found, edge.Op) @@ -314,7 +328,7 @@ func (txn *Txn) addReverseAndCountMutation(ctx context.Context, t *pb.DirectedEd // entries for this key in the index are removed. pred, ok := schema.State().Get(ctx, t.Attr) isSingleUidUpdate := ok && !pred.GetList() && pred.GetValueType() == pb.Posting_UID && - t.Op == pb.DirectedEdge_SET && t.ValueId != 0 + t.Op != pb.DirectedEdge_DEL && t.ValueId != 0 if isSingleUidUpdate { dataKey := x.DataKey(t.Attr, t.Entity) dataList, err := getFn(dataKey) @@ -461,7 +475,7 @@ func (txn *Txn) updateCount(ctx context.Context, params countParams) error { } func countAfterMutation(countBefore int, found bool, op pb.DirectedEdge_Op) int { - if !found && op == pb.DirectedEdge_SET { + if !found && op != pb.DirectedEdge_DEL { return countBefore + 1 } else if found && op == pb.DirectedEdge_DEL { return countBefore - 1 @@ -534,8 +548,10 @@ func (txn *Txn) addMutationHelper(ctx context.Context, l *List, doUpdateIndex bo } } - if err = l.addMutationInternal(ctx, txn, t); err != nil { - return val, found, emptyCountParams, err + if !(hasCountIndex && !shouldAddCountEdge(found && currPost.Op != Del, t)) { + if err = l.addMutationInternal(ctx, txn, t); err != nil { + return val, found, emptyCountParams, err + } } if found && doUpdateIndex { @@ -599,7 +615,7 @@ func (l *List) AddMutationWithIndex(ctx context.Context, edge *pb.DirectedEdge, return err } } - if edge.Op == pb.DirectedEdge_SET { + if edge.Op != pb.DirectedEdge_DEL { val = types.Val{ Tid: types.TypeID(edge.ValueType), Value: edge.Value, @@ -898,15 +914,13 @@ func (r *rebuilder) Run(ctx context.Context) error { // We set it to 1 in case there are no keys found and NewStreamAt is called with ts=0. var counter uint64 = 1 - var txn *Txn - tmpWriter := tmpDB.NewManagedWriteBatch() stream := pstore.NewStreamAt(r.startTs) stream.LogPrefix = fmt.Sprintf("Rebuilding index for predicate %s (1/2):", r.attr) stream.Prefix = r.prefix //TODO We need to create a single transaction irrespective of the type of the predicate if pred.ValueType == pb.Posting_VFLOAT { - txn = NewTxn(r.startTs) + x.AssertTrue(false) } stream.KeyToList = func(key []byte, itr *badger.Iterator) (*bpb.KVList, error) { // We should return quickly if the context is no longer valid. @@ -926,44 +940,25 @@ func (r *rebuilder) Run(ctx context.Context) error { return nil, errors.Wrapf(err, "error reading posting list from disk") } - // We are using different transactions in each call to KeyToList function. This could - // be a problem for computing reverse count indexes if deltas for same key are added - // in different transactions. Such a case doesn't occur for now. - // TODO: Maybe we can always use txn initialized in rebuilder.Run(). - streamTxn := txn - if streamTxn == nil { - streamTxn = NewTxn(r.startTs) - } - edges, err := r.fn(pk.Uid, l, streamTxn) + kvs, err := l.Rollup(nil, r.startTs) if err != nil { return nil, err } - if txn != nil { - kvs := make([]*bpb.KV, 0, len(edges)) - for _, edge := range edges { - version := atomic.AddUint64(&counter, 1) - key := x.DataKey(edge.Attr, edge.Entity) - pl, err := txn.GetFromDelta(key) - if err != nil { - return &bpb.KVList{}, nil - } - data := pl.getMutation(r.startTs) - kv := bpb.KV{ - Key: x.DataKey(edge.Attr, edge.Entity), - Value: data, - UserMeta: []byte{BitDeltaPosting}, - Version: version, - } - kvs = append(kvs, &kv) - } - return &bpb.KVList{Kv: kvs}, nil + for _, kv := range kvs { + version := atomic.AddUint64(&counter, 1) + kv.Version = version + } + + streamTxn := NewTxn(r.startTs) + _, err = r.fn(pk.Uid, l, streamTxn) + if err != nil { + return nil, err } // Convert data into deltas. streamTxn.Update() // txn.cache.Lock() is not required because we are the only one making changes to txn. - kvs := make([]*bpb.KV, 0, len(streamTxn.cache.deltas)) for key, data := range streamTxn.cache.deltas { version := atomic.AddUint64(&counter, 1) kv := bpb.KV{ diff --git a/posting/list.go b/posting/list.go index d6b873112e4..bd2a3656997 100644 --- a/posting/list.go +++ b/posting/list.go @@ -55,10 +55,12 @@ var ( ) const ( - // Set means overwrite in mutation layer. It contributes 0 in Length. + // Set means set in mutation layer. It contributes 1 in Length. Set uint32 = 0x01 // Del means delete in mutation layer. It contributes -1 in Length. Del uint32 = 0x02 + // Ovr means overwrite in mutation layer. It contributes 0 in Length. + Ovr uint32 = 0x03 // BitSchemaPosting signals that the value stores a schema or type. BitSchemaPosting byte = 0x01 @@ -305,6 +307,8 @@ func NewPosting(t *pb.DirectedEdge) *pb.Posting { switch t.Op { case pb.DirectedEdge_SET: op = Set + case pb.DirectedEdge_OVR: + op = Set case pb.DirectedEdge_DEL: op = Del default: @@ -340,7 +344,7 @@ func hasDeleteAll(mpost *pb.Posting) bool { // Ensure that you either abort the uncommitted postings or commit them before calling me. func (l *List) updateMutationLayer(mpost *pb.Posting, singleUidUpdate bool) error { l.AssertLock() - x.AssertTrue(mpost.Op == Set || mpost.Op == Del) + x.AssertTrue(mpost.Op == Set || mpost.Op == Del || mpost.Op == Ovr) // If we have a delete all, then we replace the map entry with just one. if hasDeleteAll(mpost) { @@ -529,7 +533,7 @@ func (l *List) addMutationInternal(ctx context.Context, txn *Txn, t *pb.Directed } pred, ok := schema.State().Get(ctx, t.Attr) isSingleUidUpdate := ok && !pred.GetList() && pred.GetValueType() == pb.Posting_UID && - pk.IsData() && mpost.Op == Set && mpost.PostingType == pb.Posting_REF + pk.IsData() && mpost.Op != Del && mpost.PostingType == pb.Posting_REF if err != l.updateMutationLayer(mpost, isSingleUidUpdate) { return errors.Wrapf(err, "cannot update mutation layer of key %s with value %+v", @@ -555,6 +559,10 @@ func (l *List) getPosting(startTs uint64) *pb.PostingList { return nil } +func (l *List) GetPosting(startTs uint64) *pb.PostingList { + return l.getPosting(startTs) +} + // getMutation returns a marshaled version of posting list mutation stored internally. func (l *List) getMutation(startTs uint64) []byte { l.RLock() @@ -817,6 +825,10 @@ func (l *List) IsEmpty(readTs, afterUid uint64) (bool, error) { return count == 0, nil } +func (l *List) GetLength(readTs uint64) (int, bool, *pb.Posting) { + return l.getPostingAndLengthNoSort(readTs, 0, 0) +} + func (l *List) getPostingAndLengthNoSort(readTs, afterUid, uid uint64) (int, bool, *pb.Posting) { l.AssertRLock() @@ -824,24 +836,29 @@ func (l *List) getPostingAndLengthNoSort(readTs, afterUid, uid uint64) (int, boo uids := dec.Seek(uid, codec.SeekStart) length := codec.ExactLen(l.plist.Pack) found := len(uids) > 0 && uids[0] == uid + found_ts := uint64(0) for _, plist := range l.mutationMap { for _, mpost := range plist.Postings { + ts := mpost.CommitTs + if mpost.StartTs == readTs { + ts = mpost.StartTs + } if (mpost.CommitTs > 0 && mpost.CommitTs <= readTs) || (mpost.StartTs == readTs) { if hasDeleteAll(mpost) { found = false length = 0 continue } - if mpost.Uid == uid { - found = (mpost.Op == Set) + if mpost.Uid == uid && found_ts < ts { + found = (mpost.Op != Del) + found_ts = ts } if mpost.Op == Set { length += 1 - } else { + } else if mpost.Op == Del { length -= 1 } - } } } diff --git a/posting/mvcc.go b/posting/mvcc.go index 4790753addb..b91de83c332 100644 --- a/posting/mvcc.go +++ b/posting/mvcc.go @@ -555,6 +555,10 @@ func PostingListCacheEnabled() bool { return lCache != nil } +func GetNew(key []byte, pstore *badger.DB, readTs uint64) (*List, error) { + return getNew(key, pstore, readTs) +} + func getNew(key []byte, pstore *badger.DB, readTs uint64) (*List, error) { if PostingListCacheEnabled() { l, ok := lCache.Get(key) diff --git a/protos/pb.proto b/protos/pb.proto index 77247788117..b3c3f675599 100644 --- a/protos/pb.proto +++ b/protos/pb.proto @@ -237,6 +237,7 @@ message DirectedEdge { enum Op { SET = 0; DEL = 1; + OVR = 2; } Op op = 8; repeated api.Facet facets = 9; diff --git a/protos/pb/pb.pb.go b/protos/pb/pb.pb.go index a00205520b3..33f42dff380 100644 --- a/protos/pb/pb.pb.go +++ b/protos/pb/pb.pb.go @@ -35,16 +35,19 @@ type DirectedEdge_Op int32 const ( DirectedEdge_SET DirectedEdge_Op = 0 DirectedEdge_DEL DirectedEdge_Op = 1 + DirectedEdge_OVR DirectedEdge_Op = 2 ) var DirectedEdge_Op_name = map[int32]string{ 0: "SET", 1: "DEL", + 2: "OVR", } var DirectedEdge_Op_value = map[string]int32{ "SET": 0, "DEL": 1, + "OVR": 2, } func (x DirectedEdge_Op) String() string { @@ -5831,362 +5834,362 @@ func init() { func init() { proto.RegisterFile("pb.proto", fileDescriptor_f80abaa17e25ccc8) } var fileDescriptor_f80abaa17e25ccc8 = []byte{ - // 5668 bytes of a gzipped FileDescriptorProto + // 5673 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xdc, 0x7b, 0x4b, 0x6f, 0x1c, 0x57, 0x76, 0x30, 0xfb, 0xdd, 0x75, 0xfa, 0xc1, 0xe6, 0x95, 0x2c, 0xb7, 0x29, 0x4b, 0x94, 0xcb, 0x96, 0x4d, 0x4b, 0x16, 0x25, 0xd1, 0x9e, 0xf9, 0xc6, 0x1e, 0x0c, 0x30, 0xa4, 0x48, 0xca, 0xb4, 0x28, 0x92, 0x53, 0xdd, 0xd2, 0x3c, 0x80, 0xef, 0x6b, 0x14, 0xab, 0x2e, 0xc9, 0x1a, 0x56, 0x57, 0xd5, 0x54, 0x55, 0x73, 0x48, 0xaf, 0xbe, 0x59, 0xcd, 0x26, 0x8b, 0x01, 0xb2, 0x0f, 0x06, 0xd9, 0x26, - 0xab, 0x20, 0x40, 0x82, 0x00, 0x59, 0x04, 0x08, 0x82, 0x41, 0x56, 0x93, 0x5d, 0x90, 0x49, 0x84, - 0xc0, 0x93, 0x95, 0x16, 0x01, 0xf2, 0x0b, 0x12, 0x9c, 0x73, 0x6e, 0xbd, 0x9a, 0xad, 0x87, 0x1d, - 0x64, 0x93, 0x55, 0xdf, 0x73, 0xee, 0xfb, 0xdc, 0xf3, 0x3e, 0xd5, 0xd0, 0x0c, 0x0e, 0x56, 0x82, - 0xd0, 0x8f, 0x7d, 0x51, 0x0e, 0x0e, 0x16, 0x35, 0x33, 0x70, 0x18, 0x5c, 0xbc, 0x75, 0xe4, 0xc4, - 0xc7, 0x93, 0x83, 0x15, 0xcb, 0x1f, 0xdf, 0xb5, 0x8f, 0x42, 0x33, 0x38, 0xbe, 0xe3, 0xf8, 0x77, - 0x0f, 0x4c, 0xfb, 0x48, 0x86, 0x77, 0x4f, 0x3f, 0xb9, 0x1b, 0x1c, 0xdc, 0x4d, 0xa6, 0x2e, 0xde, - 0xc9, 0x8d, 0x3d, 0xf2, 0x8f, 0xfc, 0xbb, 0x84, 0x3e, 0x98, 0x1c, 0x12, 0x44, 0x00, 0xb5, 0x78, - 0xb8, 0xbe, 0x08, 0xd5, 0x1d, 0x27, 0x8a, 0x85, 0x80, 0xea, 0xc4, 0xb1, 0xa3, 0x7e, 0xe9, 0x46, - 0x65, 0xb9, 0x6e, 0x50, 0x5b, 0x7f, 0x0c, 0xda, 0xd0, 0x8c, 0x4e, 0x9e, 0x9a, 0xee, 0x44, 0x8a, - 0x1e, 0x54, 0x4e, 0x4d, 0xb7, 0x5f, 0xba, 0x51, 0x5a, 0x6e, 0x1b, 0xd8, 0x14, 0x2b, 0xd0, 0x3c, - 0x35, 0xdd, 0x51, 0x7c, 0x1e, 0xc8, 0x7e, 0xf9, 0x46, 0x69, 0xb9, 0xbb, 0x7a, 0x69, 0x25, 0x38, - 0x58, 0xd9, 0xf7, 0xa3, 0xd8, 0xf1, 0x8e, 0x56, 0x9e, 0x9a, 0xee, 0xf0, 0x3c, 0x90, 0x46, 0xe3, - 0x94, 0x1b, 0xfa, 0x1e, 0xb4, 0x06, 0xa1, 0xb5, 0x35, 0xf1, 0xac, 0xd8, 0xf1, 0x3d, 0xdc, 0xd1, - 0x33, 0xc7, 0x92, 0x56, 0xd4, 0x0c, 0x6a, 0x23, 0xce, 0x0c, 0x8f, 0xa2, 0x7e, 0xe5, 0x46, 0x05, - 0x71, 0xd8, 0x16, 0x7d, 0x68, 0x38, 0xd1, 0x03, 0x7f, 0xe2, 0xc5, 0xfd, 0xea, 0x8d, 0xd2, 0x72, - 0xd3, 0x48, 0x40, 0xfd, 0x2f, 0x2a, 0x50, 0xfb, 0xc1, 0x44, 0x86, 0xe7, 0x34, 0x2f, 0x8e, 0xc3, - 0x64, 0x2d, 0x6c, 0x8b, 0xcb, 0x50, 0x73, 0x4d, 0xef, 0x28, 0xea, 0x97, 0x69, 0x31, 0x06, 0xc4, - 0x55, 0xd0, 0xcc, 0xc3, 0x58, 0x86, 0xa3, 0x89, 0x63, 0xf7, 0x2b, 0x37, 0x4a, 0xcb, 0x75, 0xa3, - 0x49, 0x88, 0x27, 0x8e, 0x2d, 0xde, 0x82, 0xa6, 0xed, 0x8f, 0xac, 0xfc, 0x5e, 0xb6, 0x4f, 0x7b, - 0x89, 0x77, 0xa1, 0x39, 0x71, 0xec, 0x91, 0xeb, 0x44, 0x71, 0xbf, 0x76, 0xa3, 0xb4, 0xdc, 0x5a, - 0x6d, 0xe2, 0x65, 0x91, 0x76, 0x46, 0x63, 0xe2, 0xd8, 0x44, 0xc4, 0x5b, 0xd0, 0x8c, 0x42, 0x6b, - 0x74, 0x38, 0xf1, 0xac, 0x7e, 0x9d, 0x06, 0xcd, 0xe3, 0xa0, 0xdc, 0xad, 0x8d, 0x46, 0xc4, 0x00, - 0x5e, 0x2b, 0x94, 0xa7, 0x32, 0x8c, 0x64, 0xbf, 0xc1, 0x5b, 0x29, 0x50, 0xdc, 0x83, 0xd6, 0xa1, - 0x69, 0xc9, 0x78, 0x14, 0x98, 0xa1, 0x39, 0xee, 0x37, 0xb3, 0x85, 0xb6, 0x10, 0xbd, 0x8f, 0xd8, - 0xc8, 0x80, 0xc3, 0x14, 0x10, 0x1f, 0x43, 0x87, 0xa0, 0x68, 0x74, 0xe8, 0xb8, 0xb1, 0x0c, 0xfb, - 0x1a, 0xcd, 0xe9, 0xd2, 0x1c, 0xc2, 0x0c, 0x43, 0x29, 0x8d, 0x36, 0x0f, 0x62, 0x8c, 0xb8, 0x06, - 0x20, 0xcf, 0x02, 0xd3, 0xb3, 0x47, 0xa6, 0xeb, 0xf6, 0x81, 0xce, 0xa0, 0x31, 0x66, 0xcd, 0x75, - 0xc5, 0x9b, 0x78, 0x3e, 0xd3, 0x1e, 0xc5, 0x51, 0xbf, 0x73, 0xa3, 0xb4, 0x5c, 0x35, 0xea, 0x08, - 0x0e, 0x23, 0xa4, 0xab, 0x65, 0x5a, 0xc7, 0xb2, 0xdf, 0xbd, 0x51, 0x5a, 0xae, 0x19, 0x0c, 0x20, - 0xf6, 0xd0, 0x09, 0xa3, 0xb8, 0x3f, 0xcf, 0x58, 0x02, 0xc4, 0x15, 0xa8, 0xfb, 0x87, 0x87, 0x91, - 0x8c, 0xfb, 0x3d, 0x42, 0x2b, 0x48, 0x5f, 0x05, 0x8d, 0xb8, 0x8a, 0xa8, 0x76, 0x13, 0xea, 0xa7, - 0x08, 0x30, 0xf3, 0xb5, 0x56, 0x3b, 0x78, 0xec, 0x94, 0xf1, 0x0c, 0xd5, 0xa9, 0x5f, 0x87, 0xe6, - 0x8e, 0xe9, 0x1d, 0x25, 0xdc, 0x8a, 0xcf, 0x49, 0x13, 0x34, 0x83, 0xda, 0xfa, 0xaf, 0x2b, 0x50, - 0x37, 0x64, 0x34, 0x71, 0x63, 0xf1, 0x01, 0x00, 0x3e, 0xd6, 0xd8, 0x8c, 0x43, 0xe7, 0x4c, 0xad, - 0x9a, 0x3d, 0x97, 0x36, 0x71, 0xec, 0xc7, 0xd4, 0x25, 0xee, 0x41, 0x9b, 0x56, 0x4f, 0x86, 0x96, - 0xb3, 0x03, 0xa4, 0xe7, 0x33, 0x5a, 0x34, 0x44, 0xcd, 0xb8, 0x02, 0x75, 0xe2, 0x0f, 0xe6, 0xd1, - 0x8e, 0xa1, 0x20, 0x71, 0x13, 0xba, 0x8e, 0x17, 0xe3, 0xfb, 0x59, 0xf1, 0xc8, 0x96, 0x51, 0xc2, - 0x40, 0x9d, 0x14, 0xbb, 0x21, 0xa3, 0x58, 0xdc, 0x07, 0x7e, 0x84, 0x64, 0xc3, 0x1a, 0x6d, 0xd8, - 0x4d, 0x1f, 0x37, 0xe2, 0x1d, 0x69, 0x8c, 0xda, 0xf1, 0x0e, 0xb4, 0xf0, 0x7e, 0xc9, 0x8c, 0x3a, - 0xcd, 0x68, 0xd3, 0x6d, 0x14, 0x39, 0x0c, 0xc0, 0x01, 0x6a, 0x38, 0x92, 0x06, 0x99, 0x94, 0x99, - 0x8a, 0xda, 0x62, 0x03, 0xba, 0xa7, 0xd2, 0x8a, 0xfd, 0x70, 0x34, 0x96, 0x71, 0xe8, 0x58, 0x51, - 0xbf, 0x49, 0xab, 0x5c, 0xc3, 0x55, 0x98, 0x66, 0x2b, 0x4f, 0x69, 0xc0, 0x63, 0xee, 0xdf, 0xf4, - 0xe2, 0xf0, 0xdc, 0xe8, 0x9c, 0xe6, 0x71, 0x8b, 0xdf, 0x07, 0x71, 0x71, 0x10, 0xea, 0x85, 0x13, - 0x79, 0xae, 0x24, 0x0f, 0x9b, 0xc8, 0x0a, 0x44, 0x31, 0x52, 0x0a, 0x55, 0x83, 0x81, 0xcf, 0xca, - 0xdf, 0x29, 0xe9, 0x9b, 0x50, 0xdb, 0x0b, 0x6d, 0x19, 0xce, 0x94, 0x57, 0x01, 0x55, 0x5b, 0x46, - 0x16, 0xcd, 0x6a, 0x1a, 0xd4, 0xce, 0x64, 0xb8, 0x92, 0x93, 0x61, 0xfd, 0x8f, 0x4a, 0xd0, 0x1a, - 0xf8, 0x61, 0xfc, 0x58, 0x46, 0x91, 0x79, 0x24, 0xc5, 0x12, 0xd4, 0x7c, 0x5c, 0x56, 0xbd, 0xb4, - 0x86, 0xb7, 0xa2, 0x7d, 0x0c, 0xc6, 0x4f, 0xf1, 0x43, 0xf9, 0xc5, 0xfc, 0x80, 0xbc, 0x4d, 0xd2, - 0x5f, 0x51, 0xbc, 0x4d, 0xb2, 0x9f, 0x71, 0x71, 0x35, 0xcf, 0xc5, 0x2f, 0x14, 0x11, 0xfd, 0x5b, - 0x00, 0x78, 0xbe, 0xaf, 0xc9, 0x8d, 0xfa, 0x2f, 0x4b, 0xd0, 0x32, 0xcc, 0xc3, 0xf8, 0x81, 0xef, - 0xc5, 0xf2, 0x2c, 0x16, 0x5d, 0x28, 0x3b, 0x36, 0xd1, 0xa8, 0x6e, 0x94, 0x1d, 0x1b, 0x4f, 0x77, - 0x14, 0xfa, 0x93, 0x80, 0x48, 0xd4, 0x31, 0x18, 0x20, 0x5a, 0xda, 0x76, 0x48, 0x47, 0x46, 0x5a, - 0xda, 0x76, 0x28, 0x96, 0xa0, 0x15, 0x79, 0x66, 0x10, 0x1d, 0xfb, 0x31, 0x9e, 0xae, 0x4a, 0xa7, - 0x83, 0x04, 0x35, 0x8c, 0x50, 0xf8, 0x9d, 0x68, 0xe4, 0x4a, 0x33, 0xf4, 0x64, 0x48, 0x0a, 0xad, - 0x69, 0x68, 0x4e, 0xb4, 0xc3, 0x08, 0xfd, 0x97, 0x15, 0xa8, 0x3f, 0x96, 0xe3, 0x03, 0x19, 0x5e, - 0x38, 0xc4, 0x3d, 0x68, 0xd2, 0xbe, 0x23, 0xc7, 0xe6, 0x73, 0xac, 0xbf, 0xf1, 0xfc, 0xd9, 0xd2, - 0x02, 0xe1, 0xb6, 0xed, 0x8f, 0xfc, 0xb1, 0x13, 0xcb, 0x71, 0x10, 0x9f, 0x1b, 0x0d, 0x85, 0x9a, - 0x79, 0xc0, 0x2b, 0x50, 0x77, 0xa5, 0x89, 0x6f, 0xc6, 0x62, 0xa2, 0x20, 0x71, 0x07, 0x1a, 0xe6, - 0x78, 0x64, 0x4b, 0xd3, 0xe6, 0x43, 0xad, 0x5f, 0x7e, 0xfe, 0x6c, 0xa9, 0x67, 0x8e, 0x37, 0xa4, - 0x99, 0x5f, 0xbb, 0xce, 0x18, 0xf1, 0x29, 0xca, 0x46, 0x14, 0x8f, 0x26, 0x81, 0x6d, 0xc6, 0x92, - 0x74, 0x6e, 0x75, 0xbd, 0xff, 0xfc, 0xd9, 0xd2, 0x65, 0x44, 0x3f, 0x21, 0x6c, 0x6e, 0x1a, 0x64, - 0x58, 0xd4, 0xbf, 0xc9, 0xf5, 0x95, 0xfe, 0x55, 0xa0, 0xd8, 0x86, 0x05, 0xcb, 0x9d, 0x44, 0x68, - 0x24, 0x1c, 0xef, 0xd0, 0x1f, 0xf9, 0x9e, 0x7b, 0x4e, 0x0f, 0xdc, 0x5c, 0xbf, 0xf6, 0xfc, 0xd9, - 0xd2, 0x5b, 0xaa, 0x73, 0xdb, 0x3b, 0xf4, 0xf7, 0x3c, 0xf7, 0x3c, 0xb7, 0xfe, 0xfc, 0x54, 0x97, - 0xf8, 0x3e, 0x74, 0x0f, 0xfd, 0xd0, 0x92, 0xa3, 0x94, 0x64, 0x5d, 0x5a, 0x67, 0xf1, 0xf9, 0xb3, - 0xa5, 0x2b, 0xd4, 0xf3, 0xf0, 0x02, 0xdd, 0xda, 0x79, 0xbc, 0xfe, 0x2f, 0x65, 0xa8, 0x51, 0x5b, - 0xdc, 0x83, 0xc6, 0x98, 0x9e, 0x24, 0xd1, 0x93, 0x57, 0x90, 0x87, 0xa8, 0x6f, 0x85, 0xdf, 0x4a, - 0x89, 0x6d, 0x32, 0x0c, 0x67, 0xc4, 0xe6, 0x81, 0x2b, 0xe3, 0x48, 0xf1, 0x7c, 0x6e, 0xc6, 0x90, - 0x3b, 0xd4, 0x0c, 0x35, 0x6c, 0x9a, 0x6f, 0x2a, 0x17, 0xf8, 0x66, 0x11, 0x9a, 0xd6, 0xb1, 0xb4, - 0x4e, 0xa2, 0xc9, 0x58, 0x71, 0x55, 0x0a, 0x8b, 0x77, 0xa1, 0x43, 0xed, 0xc0, 0x77, 0x3c, 0x9a, - 0x5e, 0xa3, 0x01, 0xed, 0x0c, 0x39, 0x8c, 0x16, 0xb7, 0xa0, 0x9d, 0x3f, 0x6c, 0x5e, 0x7d, 0x54, - 0x59, 0x7d, 0xdc, 0xc8, 0xab, 0x8f, 0xd6, 0x2a, 0xe0, 0x99, 0x79, 0x4a, 0x4e, 0x95, 0xe0, 0x3a, - 0xf9, 0x2b, 0xcc, 0x50, 0x43, 0xb3, 0xd6, 0xe1, 0x29, 0x79, 0x95, 0xe4, 0x43, 0x63, 0xc7, 0xb1, - 0xa4, 0x17, 0x91, 0xf3, 0x31, 0x89, 0x64, 0xaa, 0x94, 0xb0, 0x8d, 0xf7, 0x1d, 0x9b, 0x67, 0xbb, - 0xbe, 0x2d, 0x23, 0xa5, 0xce, 0x52, 0x18, 0xfb, 0xe4, 0x59, 0xe0, 0x84, 0xe7, 0x43, 0xa6, 0x54, - 0xc5, 0x48, 0x61, 0xe4, 0x2e, 0xe9, 0xe1, 0x66, 0x76, 0xe2, 0x48, 0x28, 0x50, 0xff, 0xd3, 0x2a, - 0xb4, 0x7f, 0x22, 0x43, 0x7f, 0x3f, 0xf4, 0x03, 0x3f, 0x32, 0x5d, 0xb1, 0x56, 0xa4, 0x39, 0xbf, - 0xed, 0x0d, 0x3c, 0x6d, 0x7e, 0xd8, 0xca, 0x20, 0x7d, 0x04, 0x7e, 0xb3, 0xfc, 0xab, 0xe8, 0x50, - 0xe7, 0x37, 0x9f, 0x41, 0x33, 0xd5, 0x83, 0x63, 0xf8, 0x95, 0xe9, 0xac, 0x45, 0x7a, 0xa8, 0x1e, - 0x94, 0xca, 0xb1, 0x79, 0xf6, 0x64, 0x7b, 0x43, 0xbd, 0xad, 0x82, 0x14, 0x15, 0x86, 0x67, 0xde, - 0x30, 0x79, 0xd4, 0x14, 0xc6, 0x9b, 0x22, 0x45, 0xa2, 0xed, 0x8d, 0x7e, 0x9b, 0xba, 0x12, 0x50, - 0xbc, 0x0d, 0xda, 0xd8, 0x3c, 0x43, 0x85, 0xb6, 0x6d, 0xb3, 0x68, 0x1a, 0x19, 0x42, 0xbc, 0x03, - 0x95, 0xf8, 0xcc, 0x23, 0xd9, 0x43, 0xef, 0x06, 0x9d, 0xdd, 0xe1, 0x99, 0xa7, 0x54, 0x9f, 0x81, - 0x7d, 0xf8, 0xa6, 0x96, 0x63, 0x93, 0x33, 0xa3, 0x19, 0xd8, 0x14, 0x37, 0xa1, 0xe1, 0xf2, 0x6b, - 0x91, 0xc3, 0xd2, 0x5a, 0x6d, 0xb1, 0x1e, 0x25, 0x94, 0x91, 0xf4, 0x89, 0x8f, 0xa0, 0x99, 0x50, - 0xa7, 0xdf, 0xa2, 0x71, 0xbd, 0x84, 0x9e, 0x09, 0x19, 0x8d, 0x74, 0x84, 0xb8, 0x07, 0x9a, 0x2d, - 0x5d, 0x19, 0xcb, 0x91, 0xc7, 0x8a, 0xbc, 0xc5, 0x8e, 0xec, 0x06, 0x21, 0x77, 0x23, 0x43, 0xfe, - 0x6c, 0x22, 0xa3, 0xd8, 0x68, 0xda, 0x0a, 0x21, 0xde, 0xcb, 0x04, 0xab, 0x4b, 0xcf, 0x95, 0x27, - 0x66, 0xd2, 0xb5, 0xf8, 0x3d, 0x98, 0x9f, 0x7a, 0xb4, 0x3c, 0x97, 0x76, 0x5e, 0x61, 0x2c, 0xbf, - 0xa8, 0x36, 0x9b, 0x3d, 0x4d, 0xff, 0x8f, 0x0a, 0xcc, 0x2b, 0x81, 0x39, 0x76, 0x82, 0x41, 0xac, - 0x54, 0x17, 0x19, 0x26, 0xc5, 0xab, 0x55, 0x23, 0x01, 0xc5, 0xff, 0x81, 0x3a, 0x69, 0x9a, 0x44, - 0xe0, 0x97, 0x32, 0x46, 0x48, 0xa7, 0xb3, 0x02, 0x50, 0x5c, 0xa4, 0x86, 0x8b, 0x4f, 0xa0, 0xf6, - 0xa5, 0x0c, 0x7d, 0x36, 0xb4, 0xad, 0xd5, 0xeb, 0xb3, 0xe6, 0x21, 0xf9, 0xd4, 0x34, 0x1e, 0xfc, - 0xdf, 0xe5, 0x17, 0xf8, 0x3a, 0xfc, 0xf2, 0x1e, 0x1a, 0xdb, 0xb1, 0x7f, 0x2a, 0xed, 0x7e, 0x23, - 0xa3, 0xb9, 0x62, 0xf2, 0xa4, 0x2b, 0x61, 0x99, 0xe6, 0x4c, 0x96, 0xd1, 0x5e, 0xcc, 0x32, 0x8b, - 0x1b, 0xd0, 0xca, 0xd1, 0x65, 0xc6, 0x43, 0x2d, 0x15, 0xd5, 0x89, 0x96, 0xaa, 0xd2, 0xbc, 0x56, - 0xda, 0x00, 0xc8, 0xa8, 0xf4, 0x4d, 0x75, 0x9b, 0xfe, 0x8b, 0x12, 0xcc, 0x3f, 0xf0, 0x3d, 0x4f, - 0x52, 0xc8, 0xc0, 0x6f, 0x9e, 0x89, 0x78, 0xe9, 0x85, 0x22, 0xfe, 0x21, 0xd4, 0x22, 0x1c, 0xac, - 0x56, 0xbf, 0x34, 0xe3, 0x11, 0x0d, 0x1e, 0x81, 0x8a, 0x7e, 0x6c, 0x9e, 0x8d, 0x02, 0xe9, 0xd9, - 0x8e, 0x77, 0x94, 0x28, 0xfa, 0xb1, 0x79, 0xb6, 0xcf, 0x18, 0xfd, 0x2f, 0xcb, 0x00, 0x9f, 0x4b, - 0xd3, 0x8d, 0x8f, 0xd1, 0x98, 0xe1, 0x8b, 0x3a, 0x5e, 0x14, 0x9b, 0x9e, 0x95, 0x04, 0x6c, 0x29, - 0x8c, 0x2f, 0x8a, 0x36, 0x5d, 0x46, 0xac, 0x22, 0x35, 0x23, 0x01, 0x91, 0x3f, 0x70, 0xbb, 0x49, - 0xa4, 0x6c, 0xbf, 0x82, 0x32, 0x47, 0xa6, 0x4a, 0x68, 0xe5, 0xc8, 0xf4, 0xa1, 0x81, 0x01, 0x90, - 0xe3, 0x7b, 0xc4, 0x34, 0x9a, 0x91, 0x80, 0xb8, 0xce, 0x24, 0x88, 0x9d, 0x31, 0x5b, 0xf8, 0x8a, - 0xa1, 0x20, 0x3c, 0x15, 0x5a, 0xf4, 0x4d, 0xeb, 0xd8, 0x27, 0x45, 0x52, 0x31, 0x52, 0x18, 0x57, - 0xf3, 0xbd, 0x23, 0x1f, 0x6f, 0xd7, 0x24, 0xe7, 0x31, 0x01, 0xf9, 0x2e, 0xb6, 0x3c, 0xc3, 0x2e, - 0x8d, 0xba, 0x52, 0x18, 0xe9, 0x22, 0xe5, 0xe8, 0x50, 0x9a, 0xf1, 0x24, 0x94, 0x51, 0x1f, 0xa8, - 0x1b, 0xa4, 0xdc, 0x52, 0x18, 0xf1, 0x0e, 0xb4, 0x91, 0x70, 0x66, 0x14, 0x39, 0x47, 0x9e, 0xb4, - 0x49, 0xbd, 0x54, 0x0d, 0x24, 0xe6, 0x9a, 0x42, 0xe9, 0x7f, 0x5d, 0x86, 0x3a, 0xeb, 0x82, 0x82, - 0xb3, 0x54, 0x7a, 0x2d, 0x67, 0xe9, 0x6d, 0xd0, 0x82, 0x50, 0xda, 0x8e, 0x95, 0xbc, 0xa3, 0x66, - 0x64, 0x08, 0x8a, 0xb2, 0xd0, 0x3b, 0x20, 0x7a, 0x36, 0x0d, 0x06, 0x84, 0x0e, 0x1d, 0xdf, 0x1b, - 0xd9, 0x4e, 0x74, 0x32, 0x3a, 0x38, 0x8f, 0x65, 0xa4, 0x68, 0xd1, 0xf2, 0xbd, 0x0d, 0x27, 0x3a, - 0x59, 0x47, 0x14, 0x92, 0x90, 0x65, 0x84, 0x64, 0xa3, 0x69, 0x28, 0x48, 0x7c, 0x0c, 0x1a, 0xf9, + 0xab, 0x20, 0x40, 0x82, 0x00, 0x59, 0x04, 0x08, 0x82, 0x41, 0x56, 0x93, 0x5d, 0x90, 0x41, 0x84, + 0xc0, 0x93, 0x6c, 0xb4, 0x08, 0x90, 0x5f, 0x90, 0xe0, 0x9c, 0x73, 0xeb, 0xd5, 0x6c, 0x3d, 0xec, + 0x20, 0x9b, 0xac, 0xfa, 0x9e, 0x73, 0xdf, 0xe7, 0x9c, 0x7b, 0x9e, 0xd5, 0xd0, 0x0c, 0x0e, 0x56, + 0x82, 0xd0, 0x8f, 0x7d, 0x51, 0x0e, 0x0e, 0x16, 0x35, 0x33, 0x70, 0x18, 0x5c, 0xbc, 0x75, 0xe4, + 0xc4, 0xc7, 0x93, 0x83, 0x15, 0xcb, 0x1f, 0xdf, 0xb5, 0x8f, 0x42, 0x33, 0x38, 0xbe, 0xe3, 0xf8, + 0x77, 0x0f, 0x4c, 0xfb, 0x48, 0x86, 0x77, 0x4f, 0x3f, 0xb9, 0x1b, 0x1c, 0xdc, 0x4d, 0xa6, 0x2e, + 0xde, 0xc9, 0x8d, 0x3d, 0xf2, 0x8f, 0xfc, 0xbb, 0x84, 0x3e, 0x98, 0x1c, 0x12, 0x44, 0x00, 0xb5, + 0x78, 0xb8, 0xbe, 0x08, 0xd5, 0x1d, 0x27, 0x8a, 0x85, 0x80, 0xea, 0xc4, 0xb1, 0xa3, 0x7e, 0xe9, + 0x46, 0x65, 0xb9, 0x6e, 0x50, 0x5b, 0x7f, 0x0c, 0xda, 0xd0, 0x8c, 0x4e, 0x9e, 0x9a, 0xee, 0x44, + 0x8a, 0x1e, 0x54, 0x4e, 0x4d, 0xb7, 0x5f, 0xba, 0x51, 0x5a, 0x6e, 0x1b, 0xd8, 0x14, 0x2b, 0xd0, + 0x3c, 0x35, 0xdd, 0x51, 0x7c, 0x1e, 0xc8, 0x7e, 0xf9, 0x46, 0x69, 0xb9, 0xbb, 0x7a, 0x69, 0x25, + 0x38, 0x58, 0xd9, 0xf7, 0xa3, 0xd8, 0xf1, 0x8e, 0x56, 0x9e, 0x9a, 0xee, 0xf0, 0x3c, 0x90, 0x46, + 0xe3, 0x94, 0x1b, 0xfa, 0x1e, 0xb4, 0x06, 0xa1, 0xb5, 0x35, 0xf1, 0xac, 0xd8, 0xf1, 0x3d, 0xdc, + 0xd1, 0x33, 0xc7, 0x92, 0x56, 0xd4, 0x0c, 0x6a, 0x23, 0xce, 0x0c, 0x8f, 0xa2, 0x7e, 0xe5, 0x46, + 0x05, 0x71, 0xd8, 0x16, 0x7d, 0x68, 0x38, 0xd1, 0x03, 0x7f, 0xe2, 0xc5, 0xfd, 0xea, 0x8d, 0xd2, + 0x72, 0xd3, 0x48, 0x40, 0xfd, 0x2f, 0x2a, 0x50, 0xfb, 0xc1, 0x44, 0x86, 0xe7, 0x34, 0x2f, 0x8e, + 0xc3, 0x64, 0x2d, 0x6c, 0x8b, 0xcb, 0x50, 0x73, 0x4d, 0xef, 0x28, 0xea, 0x97, 0x69, 0x31, 0x06, + 0xc4, 0x55, 0xd0, 0xcc, 0xc3, 0x58, 0x86, 0xa3, 0x89, 0x63, 0xf7, 0x2b, 0x37, 0x4a, 0xcb, 0x75, + 0xa3, 0x49, 0x88, 0x27, 0x8e, 0x2d, 0xde, 0x82, 0xa6, 0xed, 0x8f, 0xac, 0xfc, 0x5e, 0xb6, 0x4f, + 0x7b, 0x89, 0x77, 0xa1, 0x39, 0x71, 0xec, 0x91, 0xeb, 0x44, 0x71, 0xbf, 0x76, 0xa3, 0xb4, 0xdc, + 0x5a, 0x6d, 0xe2, 0x65, 0x91, 0x76, 0x46, 0x63, 0xe2, 0xd8, 0x44, 0xc4, 0x5b, 0xd0, 0x8c, 0x42, + 0x6b, 0x74, 0x38, 0xf1, 0xac, 0x7e, 0x9d, 0x06, 0xcd, 0xe3, 0xa0, 0xdc, 0xad, 0x8d, 0x46, 0xc4, + 0x00, 0x5e, 0x2b, 0x94, 0xa7, 0x32, 0x8c, 0x64, 0xbf, 0xc1, 0x5b, 0x29, 0x50, 0xdc, 0x83, 0xd6, + 0xa1, 0x69, 0xc9, 0x78, 0x14, 0x98, 0xa1, 0x39, 0xee, 0x37, 0xb3, 0x85, 0xb6, 0x10, 0xbd, 0x8f, + 0xd8, 0xc8, 0x80, 0xc3, 0x14, 0x10, 0x1f, 0x43, 0x87, 0xa0, 0x68, 0x74, 0xe8, 0xb8, 0xb1, 0x0c, + 0xfb, 0x1a, 0xcd, 0xe9, 0xd2, 0x1c, 0xc2, 0x0c, 0x43, 0x29, 0x8d, 0x36, 0x0f, 0x62, 0x8c, 0xb8, + 0x06, 0x20, 0xcf, 0x02, 0xd3, 0xb3, 0x47, 0xa6, 0xeb, 0xf6, 0x81, 0xce, 0xa0, 0x31, 0x66, 0xcd, + 0x75, 0xc5, 0x9b, 0x78, 0x3e, 0xd3, 0x1e, 0xc5, 0x51, 0xbf, 0x73, 0xa3, 0xb4, 0x5c, 0x35, 0xea, + 0x08, 0x0e, 0x23, 0xa4, 0xab, 0x65, 0x5a, 0xc7, 0xb2, 0xdf, 0xbd, 0x51, 0x5a, 0xae, 0x19, 0x0c, + 0x20, 0xf6, 0xd0, 0x09, 0xa3, 0xb8, 0x3f, 0xcf, 0x58, 0x02, 0xc4, 0x15, 0xa8, 0xfb, 0x87, 0x87, + 0x91, 0x8c, 0xfb, 0x3d, 0x42, 0x2b, 0x48, 0x5f, 0x05, 0x8d, 0xa4, 0x8a, 0xa8, 0x76, 0x13, 0xea, + 0xa7, 0x08, 0xb0, 0xf0, 0xb5, 0x56, 0x3b, 0x78, 0xec, 0x54, 0xf0, 0x0c, 0xd5, 0xa9, 0x5f, 0x87, + 0xe6, 0x8e, 0xe9, 0x1d, 0x25, 0xd2, 0x8a, 0xec, 0xa4, 0x09, 0x9a, 0x41, 0x6d, 0xfd, 0xd7, 0x15, + 0xa8, 0x1b, 0x32, 0x9a, 0xb8, 0xb1, 0xf8, 0x00, 0x00, 0x99, 0x35, 0x36, 0xe3, 0xd0, 0x39, 0x53, + 0xab, 0x66, 0xec, 0xd2, 0x26, 0x8e, 0xfd, 0x98, 0xba, 0xc4, 0x3d, 0x68, 0xd3, 0xea, 0xc9, 0xd0, + 0x72, 0x76, 0x80, 0xf4, 0x7c, 0x46, 0x8b, 0x86, 0xa8, 0x19, 0x57, 0xa0, 0x4e, 0xf2, 0xc1, 0x32, + 0xda, 0x31, 0x14, 0x24, 0x6e, 0x42, 0xd7, 0xf1, 0x62, 0xe4, 0x9f, 0x15, 0x8f, 0x6c, 0x19, 0x25, + 0x02, 0xd4, 0x49, 0xb1, 0x1b, 0x32, 0x8a, 0xc5, 0x7d, 0x60, 0x26, 0x24, 0x1b, 0xd6, 0x68, 0xc3, + 0x6e, 0xca, 0xdc, 0x88, 0x77, 0xa4, 0x31, 0x6a, 0xc7, 0x3b, 0xd0, 0xc2, 0xfb, 0x25, 0x33, 0xea, + 0x34, 0xa3, 0x4d, 0xb7, 0x51, 0xe4, 0x30, 0x00, 0x07, 0xa8, 0xe1, 0x48, 0x1a, 0x14, 0x52, 0x16, + 0x2a, 0x6a, 0x8b, 0x0d, 0xe8, 0x9e, 0x4a, 0x2b, 0xf6, 0xc3, 0xd1, 0x58, 0xc6, 0xa1, 0x63, 0x45, + 0xfd, 0x26, 0xad, 0x72, 0x0d, 0x57, 0x61, 0x9a, 0xad, 0x3c, 0xa5, 0x01, 0x8f, 0xb9, 0x7f, 0xd3, + 0x8b, 0xc3, 0x73, 0xa3, 0x73, 0x9a, 0xc7, 0x2d, 0x7e, 0x1f, 0xc4, 0xc5, 0x41, 0xa8, 0x17, 0x4e, + 0xe4, 0xb9, 0x7a, 0x79, 0xd8, 0x44, 0x51, 0x20, 0x8a, 0x91, 0x52, 0xa8, 0x1a, 0x0c, 0x7c, 0x56, + 0xfe, 0x4e, 0x49, 0xdf, 0x84, 0xda, 0x5e, 0x68, 0xcb, 0x70, 0xe6, 0x7b, 0x15, 0x50, 0xb5, 0x65, + 0x64, 0xd1, 0xac, 0xa6, 0x41, 0xed, 0xec, 0x0d, 0x57, 0x72, 0x6f, 0x58, 0xff, 0xa3, 0x12, 0xb4, + 0x06, 0x7e, 0x18, 0x3f, 0x96, 0x51, 0x64, 0x1e, 0x49, 0xb1, 0x04, 0x35, 0x1f, 0x97, 0x55, 0x9c, + 0xd6, 0xf0, 0x56, 0xb4, 0x8f, 0xc1, 0xf8, 0x29, 0x79, 0x28, 0xbf, 0x58, 0x1e, 0x50, 0xb6, 0xe9, + 0xf5, 0x57, 0x94, 0x6c, 0xd3, 0xdb, 0xcf, 0xa4, 0xb8, 0x9a, 0x97, 0xe2, 0x17, 0x3e, 0x11, 0xfd, + 0x5b, 0x00, 0x78, 0xbe, 0xaf, 0x29, 0x8d, 0xfa, 0x2f, 0x4b, 0xd0, 0x32, 0xcc, 0xc3, 0xf8, 0x81, + 0xef, 0xc5, 0xf2, 0x2c, 0x16, 0x5d, 0x28, 0x3b, 0x36, 0xd1, 0xa8, 0x6e, 0x94, 0x1d, 0x1b, 0x4f, + 0x77, 0x14, 0xfa, 0x93, 0x80, 0x48, 0xd4, 0x31, 0x18, 0x20, 0x5a, 0xda, 0x76, 0x48, 0x47, 0x46, + 0x5a, 0xda, 0x76, 0x28, 0x96, 0xa0, 0x15, 0x79, 0x66, 0x10, 0x1d, 0xfb, 0x31, 0x9e, 0xae, 0x4a, + 0xa7, 0x83, 0x04, 0x35, 0x8c, 0xf0, 0xf1, 0x3b, 0xd1, 0xc8, 0x95, 0x66, 0xe8, 0xc9, 0x90, 0x14, + 0x5a, 0xd3, 0xd0, 0x9c, 0x68, 0x87, 0x11, 0xfa, 0x2f, 0x2b, 0x50, 0x7f, 0x2c, 0xc7, 0x07, 0x32, + 0xbc, 0x70, 0x88, 0x7b, 0xd0, 0xa4, 0x7d, 0x47, 0x8e, 0xcd, 0xe7, 0x58, 0x7f, 0xe3, 0xf9, 0xb3, + 0xa5, 0x05, 0xc2, 0x6d, 0xdb, 0x1f, 0xf9, 0x63, 0x27, 0x96, 0xe3, 0x20, 0x3e, 0x37, 0x1a, 0x0a, + 0x35, 0xf3, 0x80, 0x57, 0xa0, 0xee, 0x4a, 0x13, 0x79, 0xc6, 0xcf, 0x44, 0x41, 0xe2, 0x0e, 0x34, + 0xcc, 0xf1, 0xc8, 0x96, 0xa6, 0xcd, 0x87, 0x5a, 0xbf, 0xfc, 0xfc, 0xd9, 0x52, 0xcf, 0x1c, 0x6f, + 0x48, 0x33, 0xbf, 0x76, 0x9d, 0x31, 0xe2, 0x53, 0x7c, 0x1b, 0x51, 0x3c, 0x9a, 0x04, 0xb6, 0x19, + 0x4b, 0xd2, 0xb9, 0xd5, 0xf5, 0xfe, 0xf3, 0x67, 0x4b, 0x97, 0x11, 0xfd, 0x84, 0xb0, 0xb9, 0x69, + 0x90, 0x61, 0x51, 0xff, 0x26, 0xd7, 0x57, 0xfa, 0x57, 0x81, 0x62, 0x1b, 0x16, 0x2c, 0x77, 0x12, + 0xa1, 0x91, 0x70, 0xbc, 0x43, 0x7f, 0xe4, 0x7b, 0xee, 0x39, 0x31, 0xb8, 0xb9, 0x7e, 0xed, 0xf9, + 0xb3, 0xa5, 0xb7, 0x54, 0xe7, 0xb6, 0x77, 0xe8, 0xef, 0x79, 0xee, 0x79, 0x6e, 0xfd, 0xf9, 0xa9, + 0x2e, 0xf1, 0x7d, 0xe8, 0x1e, 0xfa, 0xa1, 0x25, 0x47, 0x29, 0xc9, 0xba, 0xb4, 0xce, 0xe2, 0xf3, + 0x67, 0x4b, 0x57, 0xa8, 0xe7, 0xe1, 0x05, 0xba, 0xb5, 0xf3, 0x78, 0xfd, 0x9f, 0xcb, 0x50, 0xa3, + 0xb6, 0xb8, 0x07, 0x8d, 0x31, 0xb1, 0x24, 0xd1, 0x93, 0x57, 0x50, 0x86, 0xa8, 0x6f, 0x85, 0x79, + 0xa5, 0x9e, 0x6d, 0x32, 0x0c, 0x67, 0xc4, 0xe6, 0x81, 0x2b, 0xe3, 0x48, 0xc9, 0x7c, 0x6e, 0xc6, + 0x90, 0x3b, 0xd4, 0x0c, 0x35, 0x6c, 0x5a, 0x6e, 0x2a, 0x17, 0xe4, 0x66, 0x11, 0x9a, 0xd6, 0xb1, + 0xb4, 0x4e, 0xa2, 0xc9, 0x58, 0x49, 0x55, 0x0a, 0x8b, 0x77, 0xa1, 0x43, 0xed, 0xc0, 0x77, 0x3c, + 0x9a, 0x5e, 0xa3, 0x01, 0xed, 0x0c, 0x39, 0x8c, 0x16, 0xb7, 0xa0, 0x9d, 0x3f, 0x6c, 0x5e, 0x7d, + 0x54, 0x59, 0x7d, 0xdc, 0xc8, 0xab, 0x8f, 0xd6, 0x2a, 0xe0, 0x99, 0x79, 0x4a, 0x4e, 0x95, 0xe0, + 0x3a, 0xf9, 0x2b, 0xcc, 0x50, 0x43, 0xb3, 0xd6, 0xe1, 0x29, 0x79, 0x95, 0xe4, 0x43, 0x63, 0xc7, + 0xb1, 0xa4, 0x17, 0x91, 0xf3, 0x31, 0x89, 0x64, 0xaa, 0x94, 0xb0, 0x8d, 0xf7, 0x1d, 0x9b, 0x67, + 0xbb, 0xbe, 0x2d, 0x23, 0xa5, 0xce, 0x52, 0x18, 0xfb, 0xe4, 0x59, 0xe0, 0x84, 0xe7, 0x43, 0xa6, + 0x54, 0xc5, 0x48, 0x61, 0x94, 0x2e, 0xe9, 0xe1, 0x66, 0x76, 0xe2, 0x48, 0x28, 0x50, 0xff, 0xd3, + 0x2a, 0xb4, 0x7f, 0x22, 0x43, 0x7f, 0x3f, 0xf4, 0x03, 0x3f, 0x32, 0x5d, 0xb1, 0x56, 0xa4, 0x39, + 0xf3, 0xf6, 0x06, 0x9e, 0x36, 0x3f, 0x6c, 0x65, 0x90, 0x32, 0x81, 0x79, 0x96, 0xe7, 0x8a, 0x0e, + 0x75, 0xe6, 0xf9, 0x0c, 0x9a, 0xa9, 0x1e, 0x1c, 0xc3, 0x5c, 0xa6, 0xb3, 0x16, 0xe9, 0xa1, 0x7a, + 0xf0, 0x55, 0x8e, 0xcd, 0xb3, 0x27, 0xdb, 0x1b, 0x8a, 0xb7, 0x0a, 0x52, 0x54, 0x18, 0x9e, 0x79, + 0xc3, 0x84, 0xa9, 0x29, 0x8c, 0x37, 0x45, 0x8a, 0x44, 0xdb, 0x1b, 0xfd, 0x36, 0x75, 0x25, 0xa0, + 0x78, 0x1b, 0xb4, 0xb1, 0x79, 0x86, 0x0a, 0x6d, 0xdb, 0xe6, 0xa7, 0x69, 0x64, 0x08, 0xf1, 0x0e, + 0x54, 0xe2, 0x33, 0x8f, 0xde, 0x1e, 0x7a, 0x37, 0xe8, 0xec, 0x0e, 0xcf, 0x3c, 0xa5, 0xfa, 0x0c, + 0xec, 0x43, 0x9e, 0x5a, 0x8e, 0x4d, 0xce, 0x8c, 0x66, 0x60, 0x53, 0xdc, 0x84, 0x86, 0xcb, 0xdc, + 0x22, 0x87, 0xa5, 0xb5, 0xda, 0x62, 0x3d, 0x4a, 0x28, 0x23, 0xe9, 0x13, 0x1f, 0x41, 0x33, 0xa1, + 0x4e, 0xbf, 0x45, 0xe3, 0x7a, 0x09, 0x3d, 0x13, 0x32, 0x1a, 0xe9, 0x08, 0x71, 0x0f, 0x34, 0x5b, + 0xba, 0x32, 0x96, 0x23, 0x8f, 0x15, 0x79, 0x8b, 0x1d, 0xd9, 0x0d, 0x42, 0xee, 0x46, 0x86, 0xfc, + 0xd9, 0x44, 0x46, 0xb1, 0xd1, 0xb4, 0x15, 0x42, 0xbc, 0x97, 0x3d, 0xac, 0x2e, 0xb1, 0x2b, 0x4f, + 0xcc, 0xa4, 0x6b, 0xf1, 0x7b, 0x30, 0x3f, 0xc5, 0xb4, 0xbc, 0x94, 0x76, 0x5e, 0x61, 0x2c, 0xbf, + 0xa8, 0x36, 0x9b, 0x3d, 0x4d, 0xff, 0x8f, 0x0a, 0xcc, 0xab, 0x07, 0x73, 0xec, 0x04, 0x83, 0x58, + 0xa9, 0x2e, 0x32, 0x4c, 0x4a, 0x56, 0xab, 0x46, 0x02, 0x8a, 0xff, 0x03, 0x75, 0xd2, 0x34, 0xc9, + 0x83, 0x5f, 0xca, 0x04, 0x21, 0x9d, 0xce, 0x0a, 0x40, 0x49, 0x91, 0x1a, 0x2e, 0x3e, 0x81, 0xda, + 0x97, 0x32, 0xf4, 0xd9, 0xd0, 0xb6, 0x56, 0xaf, 0xcf, 0x9a, 0x87, 0xe4, 0x53, 0xd3, 0x78, 0xf0, + 0x7f, 0x57, 0x5e, 0xe0, 0xeb, 0xc8, 0xcb, 0x7b, 0x68, 0x6c, 0xc7, 0xfe, 0xa9, 0xb4, 0xfb, 0x8d, + 0x8c, 0xe6, 0x4a, 0xc8, 0x93, 0xae, 0x44, 0x64, 0x9a, 0x33, 0x45, 0x46, 0x7b, 0xb1, 0xc8, 0x2c, + 0x6e, 0x40, 0x2b, 0x47, 0x97, 0x19, 0x8c, 0x5a, 0x2a, 0xaa, 0x13, 0x2d, 0x55, 0xa5, 0x79, 0xad, + 0xb4, 0x01, 0x90, 0x51, 0xe9, 0x9b, 0xea, 0x36, 0xfd, 0x17, 0x25, 0x98, 0x7f, 0xe0, 0x7b, 0x9e, + 0xa4, 0x90, 0x81, 0x79, 0x9e, 0x3d, 0xf1, 0xd2, 0x0b, 0x9f, 0xf8, 0x87, 0x50, 0x8b, 0x70, 0xb0, + 0x5a, 0xfd, 0xd2, 0x0c, 0x26, 0x1a, 0x3c, 0x02, 0x15, 0xfd, 0xd8, 0x3c, 0x1b, 0x05, 0xd2, 0xb3, + 0x1d, 0xef, 0x28, 0x51, 0xf4, 0x63, 0xf3, 0x6c, 0x9f, 0x31, 0xfa, 0x5f, 0x96, 0x01, 0x3e, 0x97, + 0xa6, 0x1b, 0x1f, 0xa3, 0x31, 0x43, 0x8e, 0x3a, 0x5e, 0x14, 0x9b, 0x9e, 0x95, 0x04, 0x6c, 0x29, + 0x8c, 0x1c, 0x45, 0x9b, 0x2e, 0x23, 0x56, 0x91, 0x9a, 0x91, 0x80, 0x28, 0x1f, 0xb8, 0xdd, 0x24, + 0x52, 0xb6, 0x5f, 0x41, 0x99, 0x23, 0x53, 0x25, 0xb4, 0x72, 0x64, 0xfa, 0xd0, 0xc0, 0x00, 0xc8, + 0xf1, 0x3d, 0x12, 0x1a, 0xcd, 0x48, 0x40, 0x5c, 0x67, 0x12, 0xc4, 0xce, 0x98, 0x2d, 0x7c, 0xc5, + 0x50, 0x10, 0x9e, 0x0a, 0x2d, 0xfa, 0xa6, 0x75, 0xec, 0x93, 0x22, 0xa9, 0x18, 0x29, 0x8c, 0xab, + 0xf9, 0xde, 0x91, 0x8f, 0xb7, 0x6b, 0x92, 0xf3, 0x98, 0x80, 0x7c, 0x17, 0x5b, 0x9e, 0x61, 0x97, + 0x46, 0x5d, 0x29, 0x8c, 0x74, 0x91, 0x72, 0x74, 0x28, 0xcd, 0x78, 0x12, 0xca, 0xa8, 0x0f, 0xd4, + 0x0d, 0x52, 0x6e, 0x29, 0x8c, 0x78, 0x07, 0xda, 0x48, 0x38, 0x33, 0x8a, 0x9c, 0x23, 0x4f, 0xda, + 0xa4, 0x5e, 0xaa, 0x06, 0x12, 0x73, 0x4d, 0xa1, 0xf4, 0xbf, 0x2e, 0x43, 0x9d, 0x75, 0x41, 0xc1, + 0x59, 0x2a, 0xbd, 0x96, 0xb3, 0xf4, 0x36, 0x68, 0x41, 0x28, 0x6d, 0xc7, 0x4a, 0xf8, 0xa8, 0x19, + 0x19, 0x82, 0xa2, 0x2c, 0xf4, 0x0e, 0x88, 0x9e, 0x4d, 0x83, 0x01, 0xa1, 0x43, 0xc7, 0xf7, 0x46, + 0xb6, 0x13, 0x9d, 0x8c, 0x0e, 0xce, 0x63, 0x19, 0x29, 0x5a, 0xb4, 0x7c, 0x6f, 0xc3, 0x89, 0x4e, + 0xd6, 0x11, 0x85, 0x24, 0xe4, 0x37, 0x42, 0x6f, 0xa3, 0x69, 0x28, 0x48, 0x7c, 0x0c, 0x1a, 0xf9, 0xb0, 0xe4, 0xe4, 0x68, 0xe4, 0x9c, 0x5c, 0x79, 0xfe, 0x6c, 0x49, 0x20, 0x72, 0xca, 0xbb, 0x69, - 0x26, 0x38, 0xf4, 0xd2, 0x70, 0x32, 0x9a, 0x2b, 0x92, 0x61, 0xf6, 0xd2, 0x10, 0x35, 0x8c, 0xf2, - 0x5e, 0x1a, 0x63, 0xc4, 0x1d, 0x10, 0x13, 0xcf, 0xf2, 0xc7, 0x01, 0x32, 0x85, 0xb4, 0xd5, 0x21, - 0x5b, 0x74, 0xc8, 0x85, 0x7c, 0x0f, 0x1d, 0x55, 0xff, 0xe7, 0x32, 0xb4, 0x37, 0x9c, 0x50, 0x5a, - 0xb1, 0xb4, 0x37, 0xed, 0x23, 0x89, 0x67, 0x97, 0x5e, 0xec, 0xc4, 0xe7, 0xca, 0x0d, 0x55, 0x50, - 0x1a, 0x45, 0x94, 0x8b, 0x51, 0x3f, 0x4b, 0x58, 0x85, 0x12, 0x15, 0x0c, 0x88, 0x55, 0x00, 0x8e, - 0xf3, 0x28, 0x59, 0x51, 0x7d, 0x71, 0xb2, 0x42, 0xa3, 0x61, 0xd8, 0x14, 0x6f, 0x51, 0x7a, 0x63, - 0x22, 0xf1, 0xed, 0x6a, 0xb4, 0x6f, 0x83, 0x60, 0xf6, 0x68, 0x29, 0xfc, 0x6c, 0xf0, 0xc6, 0xd8, - 0x16, 0xef, 0x42, 0xd9, 0x0f, 0x88, 0xb8, 0x6a, 0xe9, 0xfc, 0x15, 0x56, 0xf6, 0x02, 0xa3, 0xec, - 0x07, 0x28, 0xc5, 0x1c, 0x83, 0x13, 0xe3, 0xa1, 0x14, 0xa3, 0xdd, 0xa3, 0xc8, 0xcf, 0x50, 0x3d, - 0x42, 0x87, 0xb6, 0xe9, 0xba, 0xfe, 0xcf, 0xa5, 0xbd, 0x1f, 0x4a, 0x3b, 0xe1, 0xc1, 0x02, 0x0e, - 0xb9, 0xc4, 0x33, 0xc7, 0x32, 0x0a, 0x4c, 0x4b, 0x2a, 0x16, 0xcc, 0x10, 0xfa, 0x15, 0x28, 0xef, - 0x05, 0xa2, 0x01, 0x95, 0xc1, 0xe6, 0xb0, 0x37, 0x87, 0x8d, 0x8d, 0xcd, 0x9d, 0x1e, 0x5a, 0x94, - 0x7a, 0xaf, 0xa1, 0x7f, 0x55, 0x06, 0xed, 0xf1, 0x24, 0x36, 0x51, 0xb7, 0x44, 0x78, 0xcb, 0x22, - 0x87, 0x66, 0xac, 0xf8, 0x16, 0x34, 0xa3, 0xd8, 0x0c, 0xc9, 0x2b, 0x61, 0xeb, 0xd4, 0x20, 0x78, - 0x18, 0x89, 0xf7, 0xa1, 0x26, 0xed, 0x23, 0x99, 0x98, 0x8b, 0xde, 0xf4, 0x7d, 0x0d, 0xee, 0x16, - 0xcb, 0x50, 0x8f, 0xac, 0x63, 0x39, 0x36, 0xfb, 0xd5, 0x6c, 0xe0, 0x80, 0x30, 0xec, 0x86, 0x1b, - 0xaa, 0x5f, 0xbc, 0x07, 0x35, 0x7c, 0x9b, 0x48, 0xc5, 0xb7, 0x14, 0x11, 0xe3, 0x33, 0xa8, 0x61, - 0xdc, 0x89, 0x8c, 0x67, 0x87, 0x7e, 0x30, 0xf2, 0x03, 0xa2, 0x7d, 0x77, 0xf5, 0x32, 0xe9, 0xb8, - 0xe4, 0x36, 0x2b, 0x1b, 0xa1, 0x1f, 0xec, 0x05, 0x46, 0xdd, 0xa6, 0x5f, 0x8c, 0x72, 0x68, 0x38, - 0x73, 0x04, 0x1b, 0x05, 0x0d, 0x31, 0x9c, 0xd2, 0x5a, 0x86, 0xe6, 0x58, 0xc6, 0xa6, 0x6d, 0xc6, - 0xa6, 0xb2, 0x0d, 0x6d, 0x56, 0x99, 0x8c, 0x33, 0xd2, 0x5e, 0xfd, 0x2e, 0xd4, 0x79, 0x69, 0xd1, - 0x84, 0xea, 0xee, 0xde, 0xee, 0x26, 0x93, 0x75, 0x6d, 0x67, 0xa7, 0x57, 0x42, 0xd4, 0xc6, 0xda, - 0x70, 0xad, 0x57, 0xc6, 0xd6, 0xf0, 0xc7, 0xfb, 0x9b, 0xbd, 0x8a, 0xfe, 0xf7, 0x25, 0x68, 0x26, - 0xeb, 0x88, 0xcf, 0x00, 0x50, 0x84, 0x47, 0xc7, 0x8e, 0x97, 0x3a, 0x78, 0x57, 0xf3, 0x3b, 0xad, - 0xe0, 0xab, 0x7e, 0x8e, 0xbd, 0x6c, 0x5e, 0x49, 0xe2, 0x09, 0x5e, 0x1c, 0x40, 0xb7, 0xd8, 0x39, - 0xc3, 0xd3, 0xbd, 0x9d, 0xb7, 0x2a, 0xdd, 0xd5, 0x37, 0x0a, 0x4b, 0xe3, 0x4c, 0x62, 0xed, 0x9c, - 0x81, 0xb9, 0x03, 0xcd, 0x04, 0x2d, 0x5a, 0xd0, 0xd8, 0xd8, 0xdc, 0x5a, 0x7b, 0xb2, 0x83, 0xac, - 0x02, 0x50, 0x1f, 0x6c, 0xef, 0x3e, 0xdc, 0xd9, 0xe4, 0x6b, 0xed, 0x6c, 0x0f, 0x86, 0xbd, 0xb2, - 0xfe, 0x87, 0x25, 0x68, 0x26, 0x9e, 0x8c, 0xf8, 0x10, 0x9d, 0x0f, 0x72, 0xd2, 0x94, 0x25, 0xa2, - 0xcc, 0x54, 0x2e, 0x6c, 0x35, 0x92, 0x7e, 0x94, 0x45, 0x52, 0xac, 0x89, 0x6f, 0x43, 0x40, 0x3e, - 0x6a, 0xae, 0x14, 0x12, 0x4b, 0x02, 0xaa, 0xb6, 0xef, 0x49, 0xe5, 0x30, 0x53, 0x9b, 0x78, 0xd0, - 0xf1, 0x2c, 0x99, 0x85, 0x13, 0x0d, 0x82, 0x87, 0x91, 0x1e, 0xb3, 0x1f, 0x9d, 0x1e, 0x2c, 0xdd, - 0xad, 0x94, 0xdf, 0xed, 0x42, 0x50, 0x52, 0xbe, 0x18, 0x94, 0x64, 0x86, 0xb3, 0xf6, 0x2a, 0xc3, - 0xa9, 0xff, 0xa2, 0x0e, 0x5d, 0x43, 0x46, 0xb1, 0x1f, 0x4a, 0xe5, 0x17, 0xbe, 0x4c, 0x84, 0xae, - 0x01, 0x84, 0x3c, 0x38, 0xdb, 0x5a, 0x53, 0x18, 0x8e, 0xa6, 0x5c, 0xdf, 0x22, 0xde, 0x55, 0x16, - 0x32, 0x85, 0xc5, 0x55, 0xd0, 0x0e, 0x4c, 0xeb, 0x84, 0x97, 0x65, 0x3b, 0xd9, 0x64, 0x04, 0xaf, - 0x6b, 0x5a, 0x96, 0x8c, 0xa2, 0x11, 0xb2, 0x02, 0x5b, 0x4b, 0x8d, 0x31, 0x8f, 0xe4, 0xb9, 0xb8, - 0x07, 0x10, 0x49, 0x2b, 0x94, 0x31, 0x75, 0xa3, 0xcd, 0xd4, 0xd6, 0x17, 0x7e, 0xf3, 0x6c, 0x69, - 0xee, 0x9f, 0x9e, 0x2d, 0x69, 0x03, 0xe9, 0x45, 0x4e, 0xec, 0x9c, 0x4a, 0x43, 0xe3, 0x41, 0x38, - 0xe3, 0xdb, 0xd0, 0x89, 0x64, 0x84, 0xc6, 0x76, 0x14, 0xfb, 0x27, 0x92, 0xfd, 0xf2, 0x99, 0x93, - 0xda, 0x6a, 0xdc, 0x10, 0x87, 0xa1, 0x22, 0x32, 0x3d, 0xdf, 0x3b, 0x1f, 0xfb, 0x93, 0x48, 0x59, - 0x96, 0x0c, 0x21, 0x56, 0xe0, 0x92, 0xf4, 0xac, 0xf0, 0x3c, 0xc0, 0x1b, 0xe1, 0x59, 0x46, 0x87, - 0x8e, 0x2b, 0x95, 0x43, 0xbf, 0x90, 0x75, 0x3d, 0x92, 0xe7, 0x5b, 0x8e, 0x2b, 0xf1, 0x5a, 0xa7, - 0xe6, 0xc4, 0x8d, 0x47, 0x94, 0x2f, 0x00, 0xbe, 0x16, 0x61, 0xd6, 0x6c, 0x3b, 0x14, 0xb7, 0x60, - 0x81, 0xbb, 0x43, 0xdf, 0x95, 0x8e, 0xcd, 0x8b, 0xb5, 0x68, 0xd4, 0x3c, 0x75, 0x18, 0x84, 0xa7, - 0xa5, 0x56, 0xe0, 0x12, 0x8f, 0xe5, 0x3b, 0x26, 0xa3, 0xdb, 0xbc, 0x35, 0x75, 0x0d, 0x54, 0x4f, - 0x71, 0xeb, 0xc0, 0x8c, 0x8f, 0x29, 0x0a, 0x48, 0xb6, 0xde, 0x37, 0xe3, 0x63, 0xf4, 0x0b, 0xb8, - 0xfb, 0xd0, 0x91, 0x2e, 0x47, 0xf1, 0x9a, 0xc1, 0x33, 0xb6, 0x10, 0x83, 0x7e, 0x81, 0x1a, 0xe0, - 0x87, 0x63, 0x93, 0xd3, 0xa0, 0x9a, 0xc1, 0x93, 0xb6, 0x08, 0x85, 0x5b, 0xa8, 0x17, 0xf5, 0x26, - 0x63, 0x4a, 0x88, 0x56, 0x0d, 0xf5, 0xc6, 0xbb, 0x93, 0xb1, 0xf8, 0x10, 0x7a, 0x8e, 0x67, 0x85, - 0x72, 0x2c, 0xbd, 0xd8, 0x74, 0x47, 0x87, 0xa1, 0x3f, 0xee, 0x2f, 0xd0, 0xa0, 0xf9, 0x1c, 0x7e, - 0x2b, 0xf4, 0xc7, 0x2a, 0x7b, 0x13, 0x98, 0x61, 0xec, 0x98, 0x6e, 0x5f, 0x24, 0xd9, 0x9b, 0x7d, - 0x46, 0x88, 0xf7, 0xa0, 0x83, 0xb3, 0x77, 0x53, 0x0b, 0x71, 0x89, 0x96, 0x29, 0x22, 0xc5, 0x77, - 0xe0, 0x4d, 0x27, 0x4a, 0xc1, 0xb5, 0x9f, 0x9b, 0xc8, 0xd1, 0xc4, 0x99, 0xfd, 0xcb, 0xb4, 0xe2, - 0x8b, 0xba, 0xf5, 0xe7, 0x15, 0x68, 0xa6, 0xe1, 0xeb, 0x6d, 0xd0, 0xc6, 0x89, 0xfe, 0x55, 0x8e, - 0x67, 0xa7, 0xa0, 0x94, 0x8d, 0xac, 0x5f, 0x5c, 0x83, 0xf2, 0xc9, 0xa9, 0xb2, 0x05, 0x9d, 0x15, - 0x2e, 0x60, 0x04, 0x07, 0x9f, 0xac, 0x3c, 0x7a, 0x6a, 0x94, 0x4f, 0x4e, 0xbf, 0x86, 0x1c, 0x8a, - 0x0f, 0x60, 0xde, 0x72, 0xa5, 0xe9, 0x8d, 0x32, 0x6f, 0x89, 0xf8, 0xdc, 0xe8, 0x12, 0x7a, 0x3f, - 0x75, 0x99, 0x6e, 0x42, 0xcd, 0x96, 0x6e, 0x6c, 0xe6, 0xf3, 0xe8, 0x7b, 0xa1, 0x69, 0xb9, 0x72, - 0x03, 0xd1, 0x06, 0xf7, 0xa2, 0x2d, 0x48, 0x43, 0xc6, 0x9c, 0x2d, 0x98, 0x11, 0x2e, 0xa6, 0x7a, - 0x06, 0xf2, 0x7a, 0xe6, 0x36, 0x2c, 0xc8, 0xb3, 0x80, 0x0c, 0xe0, 0x28, 0xcd, 0x90, 0xb0, 0x65, - 0xee, 0x25, 0x1d, 0x0f, 0x92, 0x4c, 0xc9, 0x47, 0xa8, 0x02, 0x99, 0xd4, 0x6d, 0xda, 0x4b, 0xa8, - 0x44, 0x6c, 0x4e, 0xad, 0x18, 0xc9, 0x10, 0xf1, 0x21, 0x68, 0x96, 0x6d, 0x8d, 0x98, 0x32, 0x9d, - 0xec, 0x6c, 0x0f, 0x36, 0x1e, 0x30, 0x49, 0x9a, 0x96, 0x6d, 0x71, 0x94, 0x50, 0x08, 0x65, 0xbb, - 0xaf, 0x13, 0xca, 0xe6, 0x8d, 0x7c, 0xaf, 0x60, 0xe4, 0xbf, 0xa8, 0x36, 0x1b, 0xbd, 0xa6, 0xfe, - 0x2e, 0x34, 0x93, 0x8d, 0x50, 0x75, 0x47, 0xd2, 0x53, 0x69, 0x0a, 0x52, 0xdd, 0x08, 0x0e, 0x23, - 0xdd, 0x82, 0xca, 0xa3, 0xa7, 0x03, 0xd2, 0xe0, 0x68, 0x4c, 0x6b, 0xe4, 0x7b, 0x51, 0x3b, 0xd5, - 0xea, 0xe5, 0x9c, 0x56, 0xbf, 0xce, 0x06, 0x91, 0x1e, 0x28, 0xc9, 0xed, 0xe6, 0x30, 0x48, 0x62, - 0x76, 0x06, 0xaa, 0x9c, 0xf6, 0x25, 0x40, 0xff, 0xff, 0x55, 0x68, 0x28, 0x7f, 0x0d, 0x8d, 0xe0, - 0x24, 0x4d, 0x4b, 0x62, 0xb3, 0x18, 0x48, 0xa7, 0x8e, 0x5f, 0xbe, 0x46, 0x55, 0x79, 0x75, 0x8d, - 0x4a, 0x7c, 0x06, 0xed, 0x80, 0xfb, 0xf2, 0xae, 0xe2, 0x9b, 0xf9, 0x39, 0xea, 0x97, 0xe6, 0xb5, - 0x82, 0x0c, 0x40, 0x52, 0x52, 0xa2, 0x3e, 0x36, 0x8f, 0x14, 0x05, 0x1a, 0x08, 0x0f, 0xcd, 0xa3, - 0xd7, 0xf2, 0xfb, 0xba, 0xe4, 0x40, 0xb6, 0xc9, 0x80, 0xa0, 0xaf, 0x98, 0x7f, 0x99, 0x4e, 0xd1, - 0xfd, 0xba, 0x0a, 0x9a, 0xe5, 0x8f, 0xc7, 0x0e, 0xf5, 0x75, 0x55, 0x1a, 0x8e, 0x10, 0xc3, 0x48, - 0xff, 0x75, 0x09, 0x1a, 0xea, 0x5e, 0x17, 0x8c, 0xfb, 0xfa, 0xf6, 0xee, 0x9a, 0xf1, 0xe3, 0x5e, - 0x09, 0x9d, 0x97, 0xed, 0xdd, 0x61, 0xaf, 0x2c, 0x34, 0xa8, 0x6d, 0xed, 0xec, 0xad, 0x0d, 0x7b, - 0x15, 0x34, 0xf8, 0xeb, 0x7b, 0x7b, 0x3b, 0xbd, 0xaa, 0x68, 0x43, 0x73, 0x63, 0x6d, 0xb8, 0x39, - 0xdc, 0x7e, 0xbc, 0xd9, 0xab, 0xe1, 0xd8, 0x87, 0x9b, 0x7b, 0xbd, 0x3a, 0x36, 0x9e, 0x6c, 0x6f, - 0xf4, 0x1a, 0xd8, 0xbf, 0xbf, 0x36, 0x18, 0xfc, 0x70, 0xcf, 0xd8, 0xe8, 0x35, 0xc9, 0x69, 0x18, - 0x1a, 0xdb, 0xbb, 0x0f, 0x7b, 0x1a, 0xb6, 0xf7, 0xd6, 0xbf, 0xd8, 0x7c, 0x30, 0xec, 0x01, 0x8e, - 0x5a, 0xdf, 0x7e, 0xc8, 0xab, 0xb7, 0xb0, 0xe7, 0x29, 0xb7, 0xdb, 0xfa, 0x7d, 0x68, 0xe5, 0xa8, - 0x88, 0xeb, 0x1a, 0x9b, 0x5b, 0xbd, 0x39, 0x3c, 0xcc, 0xd3, 0xb5, 0x9d, 0x27, 0xe8, 0x7d, 0x74, - 0x01, 0xa8, 0x39, 0xda, 0x59, 0xdb, 0x7d, 0xd8, 0x2b, 0x2b, 0xdf, 0xf5, 0x07, 0xd0, 0x7c, 0xe2, - 0xd8, 0xeb, 0xae, 0x6f, 0x9d, 0x20, 0x63, 0x1d, 0x98, 0x91, 0x54, 0x9c, 0x48, 0x6d, 0x8c, 0x14, - 0x48, 0x9c, 0x23, 0xc5, 0x05, 0x0a, 0x42, 0x5a, 0x7a, 0x93, 0xf1, 0x88, 0x2a, 0x9c, 0x15, 0x36, - 0xd1, 0xde, 0x64, 0xfc, 0xc4, 0xb1, 0x23, 0xfd, 0x04, 0x1a, 0x4f, 0x1c, 0x7b, 0xdf, 0xb4, 0x4e, - 0x48, 0x41, 0xe3, 0xd2, 0xa3, 0xc8, 0xf9, 0x52, 0x2a, 0x53, 0xae, 0x11, 0x66, 0xe0, 0x7c, 0x29, - 0xc5, 0x7b, 0x50, 0x27, 0x20, 0x49, 0xae, 0x90, 0x10, 0x26, 0xc7, 0x31, 0x54, 0x1f, 0x15, 0x18, - 0x5d, 0xd7, 0xb7, 0x46, 0xa1, 0x3c, 0xec, 0xbf, 0xc9, 0x6f, 0x43, 0x08, 0x43, 0x1e, 0xea, 0x7f, - 0x50, 0x4a, 0x6f, 0x4e, 0x75, 0xac, 0x25, 0xa8, 0x06, 0xa6, 0x75, 0xa2, 0x3c, 0xa9, 0x96, 0x5a, - 0x10, 0x0f, 0x63, 0x50, 0x87, 0xf8, 0x00, 0x9a, 0x8a, 0xc5, 0x92, 0x5d, 0x5b, 0x39, 0x5e, 0x34, - 0xd2, 0xce, 0x22, 0x4b, 0x54, 0x8a, 0x2c, 0x41, 0x71, 0x78, 0xe0, 0x3a, 0x31, 0x0b, 0x14, 0x8a, - 0x2d, 0x41, 0xfa, 0x27, 0x00, 0x59, 0x49, 0x71, 0x76, 0x25, 0xc7, 0x74, 0x1d, 0x33, 0x89, 0xeb, - 0x19, 0xd0, 0x77, 0xa1, 0x95, 0x2b, 0x44, 0x22, 0x6d, 0x4d, 0xd7, 0x45, 0xeb, 0xce, 0x5a, 0xa1, - 0x69, 0x34, 0x4c, 0xd7, 0x7d, 0x24, 0xcf, 0x23, 0x74, 0xea, 0xb9, 0x86, 0x59, 0x9e, 0x2a, 0x73, - 0xd1, 0x54, 0x83, 0x3b, 0xf5, 0x8f, 0xa0, 0xbe, 0x95, 0x84, 0x3e, 0x89, 0x98, 0x94, 0x5e, 0x24, - 0x26, 0xfa, 0xa7, 0xea, 0xcc, 0x54, 0x29, 0x13, 0xb7, 0x55, 0xad, 0x34, 0xe2, 0xca, 0x6c, 0x29, - 0xcb, 0x0c, 0xf1, 0x20, 0x55, 0x26, 0xa5, 0xc1, 0xfa, 0x06, 0x34, 0x5f, 0x5a, 0x7d, 0x56, 0x04, - 0x28, 0x67, 0x04, 0x98, 0x51, 0x8f, 0xd6, 0x7f, 0x0a, 0x90, 0xd5, 0x54, 0x95, 0xd4, 0xf2, 0x2a, - 0x28, 0xb5, 0xb7, 0xa0, 0x69, 0x1d, 0x3b, 0xae, 0x1d, 0x4a, 0xaf, 0x70, 0xeb, 0xac, 0x0a, 0x9b, - 0xf6, 0x8b, 0x1b, 0x50, 0xa5, 0x52, 0x71, 0x25, 0xd3, 0xe9, 0x69, 0x9d, 0x98, 0x7a, 0xf4, 0x33, - 0xe8, 0x70, 0xb4, 0xf4, 0x1a, 0xbe, 0x66, 0x51, 0xa9, 0x96, 0x2f, 0x28, 0xd5, 0x2b, 0x50, 0x27, - 0xe7, 0x25, 0xb9, 0x8d, 0x82, 0x5e, 0xa0, 0x6c, 0xff, 0xa1, 0x0c, 0xc0, 0x5b, 0xef, 0xfa, 0xb6, - 0x2c, 0xa6, 0x25, 0x4a, 0xd3, 0x69, 0x09, 0x01, 0xd5, 0xf4, 0x2b, 0x00, 0xcd, 0xa0, 0x76, 0x66, - 0x26, 0x55, 0xaa, 0x82, 0xcd, 0xe4, 0xdb, 0xa0, 0x91, 0x7f, 0xe9, 0x7c, 0x49, 0xa5, 0x1f, 0xdc, - 0x30, 0x43, 0xe4, 0x6b, 0xe2, 0xb5, 0x62, 0x4d, 0x3c, 0x2d, 0xcc, 0xd5, 0x79, 0x35, 0x2e, 0xcc, - 0xcd, 0xaa, 0x75, 0x52, 0xae, 0x28, 0x92, 0x61, 0x9c, 0x24, 0x3a, 0x18, 0x4a, 0x63, 0x76, 0x4d, - 0x8d, 0x35, 0x39, 0xdb, 0xe3, 0xf9, 0x23, 0xcb, 0xf7, 0x0e, 0x5d, 0xc7, 0x8a, 0x55, 0x0d, 0x1c, - 0x3c, 0xff, 0x81, 0xc2, 0xd0, 0x62, 0x9e, 0xf3, 0xb3, 0x09, 0xbb, 0x99, 0xb8, 0x18, 0x41, 0xe2, - 0x13, 0x68, 0xd1, 0x7d, 0x46, 0x51, 0x20, 0xad, 0xa8, 0xdf, 0xa6, 0x87, 0x26, 0xcb, 0xc2, 0x15, - 0xd2, 0x6d, 0xec, 0x1c, 0x04, 0xd2, 0x32, 0xc0, 0x49, 0x9a, 0x91, 0xfe, 0x19, 0xb4, 0x93, 0xd7, - 0xa4, 0xc2, 0xe0, 0xad, 0x34, 0x3a, 0x2e, 0x65, 0x9c, 0x92, 0x11, 0x7d, 0xbd, 0xdc, 0x2f, 0x25, - 0xf1, 0xb1, 0xfe, 0x37, 0xd5, 0x64, 0xb2, 0xaa, 0x5f, 0xbd, 0xfc, 0x45, 0x8a, 0x09, 0x8f, 0xf2, - 0x6b, 0x25, 0x3c, 0xbe, 0x03, 0x9a, 0x4d, 0x31, 0xbc, 0x73, 0x9a, 0x18, 0xcb, 0xc5, 0xe9, 0x78, - 0x5d, 0x45, 0xf9, 0x14, 0x3d, 0xa4, 0x83, 0x5f, 0xf1, 0xaa, 0xe9, 0xdb, 0xd5, 0x66, 0xbd, 0x5d, - 0xfd, 0x1b, 0xbe, 0x5d, 0xf6, 0x34, 0xdd, 0xc2, 0xd3, 0xbc, 0x03, 0x6d, 0xcf, 0xf7, 0x46, 0xde, - 0xc4, 0x75, 0xcd, 0x03, 0x57, 0xaa, 0x47, 0x6d, 0x79, 0xbe, 0xb7, 0xab, 0x50, 0x18, 0x47, 0xe4, - 0x87, 0xb0, 0xea, 0xe0, 0x07, 0x9e, 0xcf, 0x8d, 0x23, 0x05, 0xb3, 0x0c, 0x3d, 0xff, 0xe0, 0xa7, - 0xd2, 0x8a, 0x89, 0x92, 0x23, 0xd2, 0x19, 0x1c, 0x44, 0x74, 0x19, 0x8f, 0xa4, 0x43, 0x37, 0x79, - 0x9a, 0x99, 0x3a, 0x17, 0x98, 0x69, 0x8a, 0x69, 0xe6, 0x5f, 0x8f, 0x69, 0x3e, 0x05, 0x2d, 0xa5, - 0x79, 0x2e, 0xfb, 0xa0, 0x41, 0x6d, 0x7b, 0x77, 0x63, 0xf3, 0x47, 0xbd, 0x12, 0x1a, 0x79, 0x63, - 0xf3, 0xe9, 0xa6, 0x31, 0xd8, 0xec, 0x95, 0xd1, 0xcc, 0x6e, 0x6c, 0xee, 0x6c, 0x0e, 0x37, 0x7b, - 0x15, 0x76, 0xe0, 0xa8, 0x28, 0xe5, 0x3a, 0x96, 0x13, 0xeb, 0x7b, 0x30, 0x3f, 0xb5, 0xd3, 0x4c, - 0x35, 0xb8, 0x0c, 0x0d, 0x3f, 0x48, 0xfc, 0xf9, 0x94, 0x2f, 0xf7, 0x08, 0xb5, 0x6f, 0x3a, 0xa1, - 0x91, 0x74, 0xa3, 0xfd, 0xc8, 0xd0, 0xaf, 0xfa, 0x12, 0x40, 0x53, 0x3e, 0x99, 0x3e, 0x00, 0xc8, - 0x32, 0x3b, 0x68, 0xb8, 0x32, 0xca, 0xaa, 0xd4, 0x72, 0x9c, 0xd0, 0x74, 0x39, 0xd5, 0x59, 0xe5, - 0x17, 0xe5, 0x8f, 0xb8, 0x5f, 0x5f, 0x05, 0xed, 0xb1, 0x19, 0x7c, 0xce, 0x55, 0xe4, 0x9b, 0xd0, - 0xa5, 0xe0, 0x28, 0x09, 0x3b, 0xd9, 0x9e, 0xb4, 0x8d, 0x4e, 0x8a, 0x45, 0xf3, 0xa4, 0xff, 0x59, - 0x09, 0x2e, 0x3f, 0xf6, 0x4f, 0x65, 0x1a, 0x2c, 0xec, 0x9b, 0xe7, 0xae, 0x6f, 0xda, 0xaf, 0x90, - 0xad, 0x6b, 0x00, 0x91, 0x3f, 0xa1, 0xaa, 0x6e, 0x52, 0x03, 0x37, 0x34, 0xc6, 0x3c, 0x54, 0x1f, - 0x11, 0xc9, 0x28, 0xa6, 0x4e, 0xe5, 0x6b, 0x20, 0x8c, 0x5d, 0x6f, 0x40, 0x3d, 0x3e, 0xf3, 0xb2, - 0x8a, 0x7c, 0x2d, 0xa6, 0x92, 0xc8, 0xcc, 0xd8, 0xa1, 0x36, 0x3b, 0x76, 0xd0, 0x1f, 0x80, 0x36, - 0x3c, 0xa3, 0xa2, 0xc0, 0xa4, 0xe8, 0xbd, 0x97, 0x5e, 0xe2, 0x23, 0x96, 0xa7, 0x7c, 0xc4, 0x7f, - 0x2b, 0x41, 0x2b, 0x17, 0x04, 0x89, 0x77, 0xa0, 0x1a, 0x9f, 0x79, 0xc5, 0x0f, 0x70, 0x92, 0x4d, - 0x0c, 0xea, 0xba, 0x90, 0xf8, 0x2e, 0x5f, 0x48, 0x7c, 0x8b, 0x1d, 0x98, 0x67, 0xe3, 0x94, 0x5c, - 0x22, 0xc9, 0x0f, 0xbe, 0x3b, 0x15, 0x74, 0x71, 0xe1, 0x24, 0xb9, 0x92, 0x4a, 0x7a, 0x75, 0x8f, - 0x0a, 0xc8, 0xc5, 0x35, 0xb8, 0x34, 0x63, 0xd8, 0xd7, 0x29, 0xa1, 0xe9, 0x4b, 0xd0, 0x19, 0x9e, - 0x79, 0x43, 0x67, 0x2c, 0xa3, 0xd8, 0x1c, 0x07, 0xe4, 0x63, 0x2b, 0xe7, 0xa2, 0x6a, 0x94, 0xe3, - 0x48, 0x7f, 0x1f, 0xda, 0xfb, 0x52, 0x86, 0x86, 0x8c, 0x02, 0xdf, 0x63, 0xff, 0x51, 0x15, 0x2c, - 0xd8, 0x93, 0x51, 0x90, 0xfe, 0xff, 0x40, 0x33, 0xcc, 0xc3, 0x78, 0xdd, 0x8c, 0xad, 0xe3, 0xaf, - 0x93, 0x01, 0x7b, 0x1f, 0x1a, 0x01, 0xf3, 0x94, 0x0a, 0x8d, 0xdb, 0xe4, 0xd1, 0x28, 0x3e, 0x33, - 0x92, 0x4e, 0xfd, 0xdb, 0xd0, 0x55, 0xd5, 0xc3, 0xe4, 0x24, 0xb9, 0x12, 0x63, 0xe9, 0x85, 0x25, - 0x46, 0xfd, 0x08, 0x3a, 0xc9, 0x3c, 0xf6, 0x0f, 0x5e, 0x6b, 0xda, 0xd7, 0xff, 0x86, 0x43, 0xff, - 0xbf, 0x70, 0x69, 0x30, 0x39, 0x88, 0xac, 0xd0, 0x21, 0x79, 0x4f, 0xb6, 0x5b, 0x84, 0x66, 0x10, - 0xca, 0x43, 0xe7, 0x4c, 0x26, 0x22, 0x96, 0xc2, 0xe2, 0x16, 0x34, 0xc6, 0x48, 0x2f, 0x99, 0x09, - 0x6f, 0x16, 0xf0, 0x3f, 0xc6, 0x1e, 0x23, 0x19, 0xa0, 0x7f, 0x17, 0x2e, 0x17, 0x97, 0x57, 0x54, - 0x78, 0x17, 0x2a, 0x27, 0xa7, 0x91, 0x22, 0xf3, 0x42, 0x21, 0x61, 0x40, 0x1f, 0xcf, 0x60, 0xaf, - 0xfe, 0x57, 0x25, 0xa8, 0xec, 0x4e, 0xc6, 0xf9, 0x2f, 0x14, 0xab, 0xfc, 0x85, 0xe2, 0xd5, 0x7c, - 0x71, 0x83, 0x03, 0xd0, 0xac, 0x88, 0xf1, 0x36, 0x68, 0x87, 0x7e, 0xf8, 0x73, 0x33, 0xb4, 0xa5, - 0xad, 0x9c, 0x94, 0x0c, 0x41, 0xd1, 0xc5, 0x64, 0x1c, 0x28, 0x9b, 0x45, 0x6d, 0x71, 0x53, 0xb9, - 0x39, 0x1c, 0x14, 0x2e, 0x20, 0x65, 0x77, 0x27, 0xe3, 0x15, 0x57, 0x9a, 0x11, 0x59, 0x50, 0xf6, - 0x7c, 0xf4, 0xdb, 0xa0, 0xa5, 0x28, 0xd4, 0xd3, 0xbb, 0x83, 0xd1, 0xf6, 0x06, 0x27, 0x8c, 0x31, - 0x7c, 0x2a, 0xa1, 0x8e, 0x1e, 0xfe, 0x68, 0x77, 0x34, 0x1c, 0xf4, 0xca, 0xfa, 0x4f, 0xa0, 0x95, - 0xc8, 0xcf, 0xb6, 0x4d, 0xd5, 0x51, 0x12, 0xe0, 0x6d, 0xbb, 0x20, 0xcf, 0xdb, 0x14, 0xdf, 0x4a, - 0xcf, 0xde, 0x4e, 0x04, 0x8f, 0x81, 0xe2, 0x0d, 0x55, 0xa9, 0x35, 0xb9, 0xa1, 0xbe, 0x09, 0x0b, - 0x06, 0x55, 0x79, 0xd0, 0x9b, 0x48, 0x9e, 0xec, 0x0a, 0xd4, 0x3d, 0xdf, 0x96, 0xe9, 0x06, 0x0a, - 0xc2, 0x9d, 0xd5, 0x63, 0x2b, 0x95, 0x96, 0xbe, 0xbd, 0x84, 0x05, 0xd4, 0x92, 0x45, 0x46, 0x2b, - 0x54, 0x20, 0x4a, 0x53, 0x15, 0x08, 0xdc, 0x44, 0x7d, 0x6c, 0xc0, 0x9a, 0x3f, 0xf9, 0xc0, 0x60, - 0x11, 0x9a, 0x76, 0x14, 0x93, 0x58, 0x2b, 0xdd, 0x98, 0xc2, 0xfa, 0x5d, 0xb8, 0xb4, 0x16, 0x04, - 0xee, 0x79, 0x52, 0x9a, 0x55, 0x1b, 0xf5, 0xb3, 0xfa, 0x6d, 0x49, 0x05, 0xd5, 0x0c, 0xea, 0x5b, - 0xd0, 0x4e, 0xd2, 0x33, 0x8f, 0x65, 0x6c, 0x92, 0xc6, 0x73, 0x9d, 0x42, 0x7e, 0xa2, 0xc9, 0x88, - 0x61, 0xb1, 0xce, 0x31, 0x75, 0xbf, 0x15, 0xa8, 0x2b, 0x75, 0x2a, 0xa0, 0x6a, 0xf9, 0x36, 0x6f, - 0x54, 0x33, 0xa8, 0x8d, 0x5c, 0x35, 0x8e, 0x8e, 0x92, 0xa0, 0x60, 0x1c, 0x1d, 0xe9, 0xff, 0x59, - 0x86, 0xce, 0x3a, 0xa5, 0xed, 0x92, 0x33, 0xe6, 0x52, 0xda, 0xa5, 0x42, 0x4a, 0x3b, 0x9f, 0xbe, - 0x2e, 0x17, 0xd2, 0xd7, 0x85, 0x03, 0x55, 0x8a, 0x9e, 0xfc, 0x9b, 0xd0, 0x98, 0x78, 0xce, 0x59, - 0x62, 0x27, 0x34, 0xf2, 0x6d, 0xce, 0x86, 0x91, 0xb8, 0x01, 0x2d, 0x34, 0x25, 0x8e, 0xc7, 0x29, - 0x63, 0xce, 0xfb, 0xe6, 0x51, 0x53, 0x89, 0xe1, 0xfa, 0xcb, 0x13, 0xc3, 0x8d, 0x6f, 0x92, 0x18, - 0x6e, 0x7e, 0x83, 0xc4, 0xb0, 0x36, 0x9d, 0x18, 0x2e, 0xc6, 0x2a, 0x70, 0x21, 0x56, 0xb9, 0x06, - 0xc0, 0xdf, 0x4d, 0x1d, 0x4e, 0x5c, 0x57, 0xb9, 0x66, 0x1a, 0x61, 0xb6, 0x26, 0xae, 0xab, 0xef, - 0x40, 0x37, 0x79, 0x00, 0xa5, 0x28, 0x3e, 0x83, 0x79, 0x55, 0x18, 0x92, 0xa1, 0xca, 0x45, 0xb2, - 0xfe, 0x23, 0x29, 0xe5, 0xda, 0x8d, 0xea, 0x31, 0xba, 0x76, 0x1e, 0x8c, 0xf4, 0x5f, 0x95, 0xa0, - 0x53, 0x18, 0x21, 0xee, 0x67, 0x65, 0xa6, 0x12, 0xc9, 0x7a, 0xff, 0xc2, 0x2a, 0x2f, 0x2f, 0x35, - 0x95, 0xa7, 0x4a, 0x4d, 0xfa, 0x9d, 0xb4, 0x80, 0xa4, 0xca, 0x46, 0x73, 0x69, 0xd9, 0x88, 0x2a, - 0x2d, 0x6b, 0xc3, 0xa1, 0xd1, 0x2b, 0x8b, 0x3a, 0x94, 0x77, 0x07, 0xbd, 0x8a, 0xfe, 0xbb, 0x32, - 0x74, 0x36, 0xcf, 0x02, 0xfa, 0x86, 0xf0, 0x95, 0x81, 0x5f, 0x8e, 0xfb, 0xca, 0x05, 0xee, 0xcb, - 0xf1, 0x51, 0x45, 0xd5, 0xcd, 0x99, 0x8f, 0x30, 0x14, 0xe4, 0x34, 0xb5, 0xe2, 0x2f, 0x86, 0xfe, - 0xf7, 0xf0, 0x57, 0x41, 0x3b, 0xc1, 0x74, 0x7d, 0x74, 0x07, 0xba, 0x09, 0x71, 0x15, 0xfb, 0xbc, - 0x96, 0xe0, 0xf3, 0x37, 0xce, 0x6e, 0x9a, 0xb1, 0x64, 0x40, 0xff, 0x93, 0x32, 0x68, 0xcc, 0x8d, - 0x78, 0x9f, 0x0f, 0x95, 0x8d, 0x28, 0x65, 0xa5, 0xb8, 0xb4, 0x73, 0xe5, 0x91, 0x3c, 0xcf, 0xec, - 0xc4, 0xcc, 0xf2, 0xb5, 0xca, 0x6b, 0x72, 0x02, 0x87, 0xf2, 0x9a, 0x57, 0x41, 0x63, 0x17, 0x6f, - 0xa2, 0xea, 0x40, 0x55, 0x83, 0x7d, 0xbe, 0x27, 0x0e, 0x59, 0xa9, 0x58, 0x86, 0x63, 0xf5, 0x52, - 0xd4, 0x2e, 0x86, 0xca, 0x9d, 0x24, 0xdc, 0x2a, 0x50, 0xa4, 0x31, 0x4d, 0x91, 0x63, 0x68, 0xa8, - 0xb3, 0x61, 0x34, 0xf1, 0x64, 0xf7, 0xd1, 0xee, 0xde, 0x0f, 0x77, 0x0b, 0x3c, 0x9a, 0xc6, 0x1b, - 0xe5, 0x7c, 0xbc, 0x51, 0x41, 0xfc, 0x83, 0xbd, 0x27, 0xbb, 0xc3, 0x5e, 0x55, 0x74, 0x40, 0xa3, - 0xe6, 0xc8, 0xd8, 0x7c, 0xda, 0xab, 0x51, 0x5a, 0xf0, 0xc1, 0xe7, 0x9b, 0x8f, 0xd7, 0x7a, 0xf5, - 0xb4, 0x30, 0xda, 0xd0, 0xff, 0xb8, 0x04, 0x0b, 0x4c, 0x90, 0x7c, 0x1e, 0x2c, 0xff, 0xef, 0x83, - 0x2a, 0xff, 0xfb, 0xe0, 0x7f, 0x36, 0xf5, 0x85, 0x93, 0x26, 0x4e, 0xf2, 0x29, 0x02, 0x67, 0x6b, - 0x9b, 0x13, 0x47, 0x7d, 0x81, 0xf0, 0x77, 0x25, 0x58, 0xe4, 0xf8, 0xe2, 0x61, 0x68, 0x06, 0xc7, - 0x3f, 0xd8, 0xb9, 0x90, 0x84, 0x79, 0x91, 0xd7, 0x7d, 0x13, 0xba, 0xf4, 0xff, 0x8c, 0x9f, 0xb9, - 0x23, 0x15, 0xda, 0xf3, 0xeb, 0x76, 0x14, 0x96, 0x17, 0x12, 0x1f, 0x43, 0x9b, 0xff, 0xc7, 0x41, - 0xe5, 0x8b, 0x42, 0x19, 0xbd, 0x10, 0xdd, 0xb4, 0x78, 0x14, 0x17, 0xfd, 0xef, 0xa7, 0x93, 0xb2, - 0x7c, 0xcd, 0xc5, 0x4a, 0xb9, 0x9a, 0x32, 0xa4, 0x2c, 0xce, 0x5d, 0xb8, 0x3a, 0xf3, 0x1e, 0x8a, - 0xed, 0x73, 0x59, 0x74, 0xe6, 0x36, 0xfd, 0x77, 0x25, 0x68, 0xae, 0x4f, 0xdc, 0x13, 0x32, 0xa8, - 0xd7, 0x00, 0xa4, 0x7d, 0x24, 0xd5, 0x1f, 0x22, 0x4a, 0xa4, 0x42, 0x34, 0xc4, 0xf0, 0x5f, 0x22, - 0x3e, 0x03, 0xe0, 0x3b, 0x8e, 0xc6, 0x66, 0xa0, 0x9e, 0x88, 0xca, 0xda, 0xc9, 0x02, 0xea, 0x2e, - 0x8f, 0xcd, 0x40, 0x95, 0xb5, 0xa3, 0x04, 0xce, 0xca, 0xfd, 0x95, 0x97, 0x94, 0xfb, 0x17, 0x77, - 0xa1, 0x5b, 0x5c, 0x62, 0x46, 0x8c, 0xf9, 0x7e, 0xf1, 0x93, 0xaa, 0x8b, 0x34, 0xcc, 0xc5, 0x03, - 0x5f, 0xc0, 0xfc, 0x54, 0x25, 0xe4, 0x65, 0x7a, 0xb5, 0x20, 0x32, 0xe5, 0x69, 0x91, 0xf9, 0x08, - 0x16, 0x86, 0x66, 0x74, 0xa2, 0x62, 0xa4, 0xcc, 0x11, 0x88, 0xcd, 0xe8, 0x64, 0x94, 0x12, 0xb5, - 0x8e, 0xe0, 0xb6, 0xad, 0xdf, 0x07, 0x91, 0x1f, 0xad, 0xe8, 0x8f, 0xb1, 0x2f, 0x0e, 0x1f, 0xcb, - 0xd8, 0x4c, 0x3c, 0x16, 0x44, 0x20, 0xf1, 0x56, 0xff, 0xb6, 0x04, 0x55, 0x0c, 0x2a, 0xc4, 0x1d, - 0xd0, 0x3e, 0x97, 0x66, 0x18, 0x1f, 0x48, 0x33, 0x16, 0x85, 0x00, 0x62, 0x91, 0xe8, 0x96, 0x7d, - 0xa6, 0xa5, 0xcf, 0xdd, 0x2b, 0x89, 0x15, 0xfe, 0x88, 0x3c, 0xf9, 0x38, 0xbe, 0x93, 0x04, 0x27, - 0x14, 0xbc, 0x2c, 0x16, 0xe6, 0xeb, 0x73, 0xcb, 0x34, 0xfe, 0x0b, 0xdf, 0xf1, 0x1e, 0xf0, 0xa7, - 0xcb, 0x62, 0x3a, 0x98, 0x99, 0x9e, 0x21, 0xee, 0x40, 0x7d, 0x3b, 0xc2, 0xa8, 0xe9, 0xe2, 0x50, - 0x22, 0x7e, 0x3e, 0xa0, 0xd2, 0xe7, 0x56, 0xff, 0xbc, 0x06, 0xd5, 0x9f, 0xc8, 0xd0, 0x17, 0x1f, - 0x41, 0x43, 0x7d, 0xd4, 0x26, 0x72, 0x1f, 0xaf, 0x2d, 0x52, 0x02, 0x64, 0xea, 0x6b, 0x37, 0xda, - 0xa5, 0xc7, 0xef, 0x97, 0xd5, 0xff, 0x44, 0xf6, 0xcd, 0xdd, 0x85, 0x43, 0x7d, 0x0a, 0xbd, 0x41, - 0x1c, 0x4a, 0x73, 0x9c, 0x1b, 0x5e, 0x24, 0xd5, 0xac, 0x62, 0x22, 0xd1, 0xeb, 0x36, 0xd4, 0x39, - 0x34, 0x9d, 0x9a, 0x30, 0x5d, 0x29, 0xa4, 0xc1, 0x1f, 0x40, 0x6b, 0x70, 0xec, 0x4f, 0x5c, 0x7b, - 0x20, 0xc3, 0x53, 0x29, 0x72, 0xd1, 0xd5, 0x62, 0xae, 0xad, 0xcf, 0x89, 0xfb, 0x50, 0xc7, 0x17, - 0x09, 0xc7, 0x62, 0x21, 0x17, 0x81, 0x31, 0x9b, 0x2c, 0x8a, 0x3c, 0x2a, 0xa1, 0x94, 0xf8, 0x00, - 0x34, 0x0e, 0x05, 0x30, 0x10, 0x68, 0xa8, 0xe8, 0x82, 0x8f, 0x91, 0x0b, 0x11, 0xf4, 0x39, 0xb1, - 0x0c, 0x90, 0x8b, 0x69, 0x5f, 0x36, 0xf2, 0x63, 0xe8, 0x3c, 0x20, 0x4d, 0xb8, 0x17, 0xae, 0x1d, - 0xf8, 0x61, 0x2c, 0xa6, 0x3f, 0xb4, 0x5d, 0x9c, 0x46, 0xe8, 0x73, 0x18, 0x1d, 0x0e, 0xc3, 0x73, - 0x1e, 0xbf, 0xa0, 0x52, 0x01, 0xd9, 0x7e, 0x33, 0xe8, 0x22, 0x3e, 0x49, 0xe5, 0x2a, 0x8d, 0x00, - 0x66, 0x95, 0x1d, 0x99, 0x44, 0x2c, 0x03, 0x44, 0x22, 0xc8, 0xc2, 0x13, 0xf1, 0x06, 0x97, 0x40, - 0xa7, 0xc2, 0x95, 0x8b, 0x53, 0xb2, 0x50, 0x84, 0xa7, 0x5c, 0x08, 0x4d, 0xa6, 0xa6, 0x7c, 0x0b, - 0xda, 0xf9, 0xb0, 0x42, 0x50, 0x2d, 0x6f, 0x46, 0xa0, 0x51, 0x9c, 0xb6, 0xfa, 0xef, 0x35, 0xa8, - 0xff, 0xd0, 0x0f, 0x4f, 0x64, 0x28, 0x6e, 0x41, 0x9d, 0x8a, 0xd9, 0x4a, 0x96, 0xd2, 0xc2, 0xf6, - 0x2c, 0xda, 0xbd, 0x07, 0x1a, 0x71, 0x06, 0x0a, 0x3b, 0xf3, 0x2b, 0xfd, 0x41, 0x8d, 0x17, 0xe7, - 0xb4, 0x2f, 0x31, 0x77, 0x97, 0xb9, 0x35, 0xfd, 0x78, 0xa5, 0x50, 0x6c, 0x5e, 0xa4, 0x27, 0x7d, - 0xf4, 0x74, 0x80, 0xf2, 0x79, 0xaf, 0x84, 0x3e, 0xc5, 0x80, 0x1f, 0x0f, 0x07, 0x65, 0x7f, 0x7c, - 0x61, 0xf1, 0xcf, 0xfe, 0x69, 0xa2, 0xcf, 0x89, 0xbb, 0x50, 0x57, 0x26, 0x66, 0x21, 0x53, 0x84, - 0xc9, 0x0d, 0x7b, 0x79, 0x94, 0x9a, 0x70, 0x1f, 0xea, 0x6c, 0x8e, 0x79, 0x42, 0x21, 0xae, 0x61, - 0x3e, 0x2d, 0x7a, 0xda, 0xfa, 0x9c, 0xb8, 0x0d, 0x0d, 0x55, 0xaa, 0x16, 0x33, 0xea, 0xd6, 0x17, - 0x5e, 0xac, 0xce, 0xbe, 0x16, 0xaf, 0x5f, 0x70, 0x6a, 0x79, 0xfd, 0xa2, 0x2b, 0xc6, 0xa2, 0x6f, - 0x48, 0x4b, 0x3a, 0xb9, 0xc4, 0x9c, 0x48, 0x28, 0x32, 0x43, 0x7f, 0x7d, 0x0a, 0x9d, 0x42, 0x12, - 0x4f, 0xf4, 0x13, 0xb6, 0x98, 0xce, 0xeb, 0x5d, 0xd0, 0x1a, 0xdf, 0x05, 0x4d, 0xa5, 0x1d, 0x0e, - 0x14, 0x63, 0xcc, 0x48, 0x72, 0x2c, 0x5e, 0xcc, 0x3b, 0x90, 0x2a, 0xf8, 0x11, 0x5c, 0x9a, 0x61, - 0x5b, 0x05, 0x7d, 0x3a, 0xfd, 0x62, 0xe7, 0x61, 0x71, 0xe9, 0x85, 0xfd, 0x29, 0x01, 0xbe, 0x99, - 0x38, 0x7d, 0x0f, 0x20, 0x33, 0x31, 0x2c, 0x1b, 0x17, 0x0c, 0xd4, 0xe2, 0x95, 0x69, 0x74, 0xb2, - 0xe9, 0x7a, 0xff, 0x37, 0x5f, 0x5d, 0x2f, 0xfd, 0xf6, 0xab, 0xeb, 0xa5, 0x7f, 0xfd, 0xea, 0x7a, - 0xe9, 0x57, 0xbf, 0xbf, 0x3e, 0xf7, 0xdb, 0xdf, 0x5f, 0x9f, 0xfb, 0xc7, 0xdf, 0x5f, 0x9f, 0x3b, - 0xa8, 0xd3, 0x3f, 0x45, 0x3f, 0xfe, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6d, 0x06, 0x7d, 0x1c, - 0x9f, 0x3a, 0x00, 0x00, + 0x26, 0x38, 0xf4, 0xd2, 0x70, 0x32, 0x9a, 0x2b, 0x7a, 0xc3, 0xec, 0xa5, 0x21, 0x6a, 0x18, 0xe5, + 0xbd, 0x34, 0xc6, 0x88, 0x3b, 0x20, 0x26, 0x9e, 0xe5, 0x8f, 0x03, 0x14, 0x0a, 0x69, 0xab, 0x43, + 0xb6, 0xe8, 0x90, 0x0b, 0xf9, 0x1e, 0x3a, 0xaa, 0xfe, 0x6f, 0x65, 0x68, 0x6f, 0x38, 0xa1, 0xb4, + 0x62, 0x69, 0x6f, 0xda, 0x47, 0x12, 0xcf, 0x2e, 0xbd, 0xd8, 0x89, 0xcf, 0x95, 0x1b, 0xaa, 0xa0, + 0x34, 0x8a, 0x28, 0x17, 0xa3, 0x7e, 0x7e, 0x61, 0x15, 0x4a, 0x54, 0x30, 0x20, 0x56, 0x01, 0x38, + 0xce, 0xa3, 0x64, 0x45, 0xf5, 0xc5, 0xc9, 0x0a, 0x8d, 0x86, 0x61, 0x53, 0xbc, 0x45, 0xe9, 0x8d, + 0x89, 0x44, 0xde, 0xd5, 0x68, 0xdf, 0x06, 0xc1, 0xec, 0xd1, 0x52, 0xf8, 0xd9, 0xe0, 0x8d, 0xb1, + 0x2d, 0xde, 0x85, 0xb2, 0x1f, 0x10, 0x71, 0xd5, 0xd2, 0xf9, 0x2b, 0xac, 0xec, 0x05, 0x46, 0xd9, + 0x0f, 0xf0, 0x15, 0x73, 0x0c, 0x4e, 0x82, 0x87, 0xaf, 0x18, 0xed, 0x1e, 0x45, 0x7e, 0x86, 0xea, + 0x11, 0x3a, 0xb4, 0x4d, 0xd7, 0xf5, 0x7f, 0x2e, 0xed, 0xfd, 0x50, 0xda, 0x89, 0x0c, 0x16, 0x70, + 0x28, 0x25, 0x9e, 0x39, 0x96, 0x51, 0x60, 0x5a, 0x52, 0x89, 0x60, 0x86, 0xd0, 0x97, 0xa0, 0xbc, + 0x17, 0x88, 0x06, 0x54, 0x06, 0x9b, 0xc3, 0xde, 0x1c, 0x36, 0x36, 0x36, 0x77, 0x7a, 0x25, 0x6c, + 0xec, 0x3d, 0x35, 0x7a, 0xe5, 0x2f, 0xaa, 0xcd, 0x7a, 0xaf, 0xa1, 0x7f, 0x55, 0x06, 0xed, 0xf1, + 0x24, 0x36, 0x51, 0xc9, 0x44, 0x78, 0xdd, 0xa2, 0xa8, 0x66, 0x32, 0xf9, 0x16, 0x34, 0xa3, 0xd8, + 0x0c, 0xc9, 0x3d, 0x61, 0x33, 0xd5, 0x20, 0x78, 0x18, 0x89, 0xf7, 0xa1, 0x26, 0xed, 0x23, 0x99, + 0xd8, 0x8d, 0xde, 0xf4, 0xc5, 0x0d, 0xee, 0x16, 0xcb, 0x50, 0x8f, 0xac, 0x63, 0x39, 0x36, 0xfb, + 0xd5, 0x6c, 0xe0, 0x80, 0x30, 0xec, 0x8f, 0x1b, 0xaa, 0x5f, 0xbc, 0x07, 0x35, 0x64, 0x52, 0xa4, + 0x02, 0x5d, 0x0a, 0x8d, 0x91, 0x1f, 0x6a, 0x18, 0x77, 0xa2, 0x04, 0xda, 0xa1, 0x1f, 0x8c, 0xfc, + 0x80, 0x98, 0xd0, 0x5d, 0xbd, 0x4c, 0xca, 0x2e, 0xb9, 0xcd, 0xca, 0x46, 0xe8, 0x07, 0x7b, 0x81, + 0x51, 0xb7, 0xe9, 0x17, 0xc3, 0x1d, 0x1a, 0xce, 0xa2, 0xc1, 0xd6, 0x41, 0x43, 0x0c, 0xe7, 0xb6, + 0x96, 0xa1, 0x39, 0x96, 0xb1, 0x69, 0x9b, 0xb1, 0xa9, 0x8c, 0x44, 0x9b, 0x75, 0x27, 0xe3, 0x8c, + 0xb4, 0x57, 0xbf, 0x0b, 0x75, 0x5e, 0x5a, 0x34, 0xa1, 0xba, 0xbb, 0xb7, 0xbb, 0xc9, 0xf4, 0x5d, + 0xdb, 0x41, 0xfa, 0x36, 0xa1, 0xba, 0xb1, 0x36, 0x5c, 0xeb, 0x95, 0xb1, 0x35, 0xfc, 0xf1, 0xfe, + 0x66, 0xaf, 0xa2, 0xff, 0x7d, 0x09, 0x9a, 0xc9, 0x3a, 0xe2, 0x33, 0x00, 0x7c, 0xcb, 0xa3, 0x63, + 0xc7, 0x4b, 0x3d, 0xbd, 0xab, 0xf9, 0x9d, 0x56, 0x90, 0xbd, 0x9f, 0x63, 0x2f, 0xdb, 0x59, 0x7a, + 0xfa, 0x04, 0x2f, 0x0e, 0xa0, 0x5b, 0xec, 0x9c, 0xe1, 0xf2, 0xde, 0xce, 0x9b, 0x97, 0xee, 0xea, + 0x1b, 0x85, 0xa5, 0x71, 0x26, 0xc9, 0x78, 0xce, 0xd2, 0xdc, 0x81, 0x66, 0x82, 0x16, 0x2d, 0x68, + 0x6c, 0x6c, 0x6e, 0xad, 0x3d, 0xd9, 0x41, 0x99, 0x01, 0xa8, 0x0f, 0xb6, 0x77, 0x1f, 0xee, 0x6c, + 0xf2, 0xb5, 0x76, 0xb6, 0x07, 0xc3, 0x5e, 0x59, 0xff, 0xc3, 0x12, 0x34, 0x13, 0x97, 0x46, 0x7c, + 0x88, 0x5e, 0x08, 0x79, 0x6b, 0xca, 0x24, 0x51, 0x8a, 0x2a, 0x17, 0xbf, 0x1a, 0x49, 0x3f, 0x3e, + 0x4a, 0xd2, 0xb0, 0x89, 0x93, 0x43, 0x40, 0x3e, 0x7c, 0xae, 0x14, 0x32, 0x4c, 0x02, 0xaa, 0xb6, + 0xef, 0x49, 0xe5, 0x39, 0x53, 0x9b, 0x64, 0xd0, 0xf1, 0x2c, 0x99, 0xc5, 0x15, 0x0d, 0x82, 0x87, + 0x91, 0x1e, 0xb3, 0x43, 0x9d, 0x1e, 0x2c, 0xdd, 0xad, 0x94, 0xdf, 0xed, 0x42, 0x74, 0x52, 0xbe, + 0x18, 0x9d, 0x64, 0x16, 0xb4, 0xf6, 0x2a, 0x0b, 0xaa, 0xff, 0xa2, 0x0e, 0x5d, 0x43, 0x46, 0xb1, + 0x1f, 0x4a, 0xe5, 0x20, 0xbe, 0xec, 0x09, 0x5d, 0x03, 0x08, 0x79, 0x70, 0xb6, 0xb5, 0xa6, 0x30, + 0x1c, 0x56, 0xb9, 0xbe, 0x45, 0xb2, 0xab, 0x4c, 0x65, 0x0a, 0x8b, 0xab, 0xa0, 0x1d, 0x98, 0xd6, + 0x09, 0x2f, 0xcb, 0x06, 0xb3, 0xc9, 0x08, 0x5e, 0xd7, 0xb4, 0x2c, 0x19, 0x45, 0x23, 0x14, 0x05, + 0x36, 0x9b, 0x1a, 0x63, 0x1e, 0xc9, 0x73, 0x71, 0x0f, 0x20, 0x92, 0x56, 0x28, 0x63, 0xea, 0x46, + 0xe3, 0xa9, 0xad, 0x2f, 0xfc, 0xe6, 0xd9, 0xd2, 0xdc, 0x3f, 0x3d, 0x5b, 0xd2, 0x06, 0xd2, 0x8b, + 0x9c, 0xd8, 0x39, 0x95, 0x86, 0xc6, 0x83, 0x70, 0xc6, 0xb7, 0xa1, 0x13, 0xc9, 0x08, 0xad, 0xee, + 0x28, 0xf6, 0x4f, 0x24, 0x3b, 0xe8, 0x33, 0x27, 0xb5, 0xd5, 0xb8, 0x21, 0x0e, 0x43, 0x8d, 0x64, + 0x7a, 0xbe, 0x77, 0x3e, 0xf6, 0x27, 0x91, 0x32, 0x31, 0x19, 0x42, 0xac, 0xc0, 0x25, 0xe9, 0x59, + 0xe1, 0x79, 0x80, 0x37, 0xc2, 0xb3, 0x8c, 0x0e, 0x1d, 0x57, 0x2a, 0xcf, 0x7e, 0x21, 0xeb, 0x7a, + 0x24, 0xcf, 0xb7, 0x1c, 0x57, 0xe2, 0xb5, 0x4e, 0xcd, 0x89, 0x1b, 0x8f, 0x28, 0x71, 0x00, 0x7c, + 0x2d, 0xc2, 0xac, 0xd9, 0x76, 0x28, 0x6e, 0xc1, 0x02, 0x77, 0x87, 0xbe, 0x2b, 0x1d, 0x9b, 0x17, + 0x6b, 0xd1, 0xa8, 0x79, 0xea, 0x30, 0x08, 0x4f, 0x4b, 0xad, 0xc0, 0x25, 0x1e, 0xcb, 0x77, 0x4c, + 0x46, 0xb7, 0x79, 0x6b, 0xea, 0x1a, 0xa8, 0x9e, 0xe2, 0xd6, 0x81, 0x19, 0x1f, 0x53, 0x38, 0x90, + 0x6c, 0xbd, 0x6f, 0xc6, 0xc7, 0xe8, 0x20, 0x70, 0xf7, 0xa1, 0x23, 0x5d, 0x0e, 0xe7, 0x35, 0x83, + 0x67, 0x6c, 0x21, 0x06, 0x1d, 0x04, 0x35, 0xc0, 0x0f, 0xc7, 0x26, 0xe7, 0x43, 0x35, 0x83, 0x27, + 0x6d, 0x11, 0x0a, 0xb7, 0x50, 0x1c, 0xf5, 0x26, 0x63, 0xca, 0x8c, 0x56, 0x0d, 0xc5, 0xe3, 0xdd, + 0xc9, 0x58, 0x7c, 0x08, 0x3d, 0xc7, 0xb3, 0x42, 0x39, 0x96, 0x5e, 0x6c, 0xba, 0xa3, 0xc3, 0xd0, + 0x1f, 0xf7, 0x17, 0x68, 0xd0, 0x7c, 0x0e, 0xbf, 0x15, 0xfa, 0x63, 0x95, 0xc6, 0x09, 0xcc, 0x30, + 0x76, 0x4c, 0xb7, 0x2f, 0x92, 0x34, 0xce, 0x3e, 0x23, 0xc4, 0x7b, 0xd0, 0xc1, 0xd9, 0xbb, 0xa9, + 0xa9, 0xb8, 0x44, 0xcb, 0x14, 0x91, 0xe2, 0x3b, 0xf0, 0xa6, 0x13, 0xa5, 0xe0, 0xda, 0xcf, 0x4d, + 0x94, 0x68, 0x92, 0xcc, 0xfe, 0x65, 0x5a, 0xf1, 0x45, 0xdd, 0xfa, 0xf3, 0x0a, 0x34, 0xd3, 0x38, + 0xf6, 0x36, 0x68, 0xe3, 0x44, 0xff, 0x2a, 0x0f, 0xb4, 0x53, 0x50, 0xca, 0x46, 0xd6, 0x2f, 0xae, + 0x41, 0xf9, 0xe4, 0x54, 0xd9, 0x82, 0xce, 0x0a, 0x57, 0x32, 0x82, 0x83, 0x4f, 0x56, 0x1e, 0x3d, + 0x35, 0xca, 0x27, 0xa7, 0x5f, 0xe3, 0x1d, 0x8a, 0x0f, 0x60, 0xde, 0x72, 0xa5, 0xe9, 0x8d, 0x32, + 0xb7, 0x89, 0xe4, 0xdc, 0xe8, 0x12, 0x7a, 0x3f, 0xf5, 0x9d, 0x6e, 0x42, 0xcd, 0x96, 0x6e, 0x6c, + 0xe6, 0x13, 0xea, 0x7b, 0xa1, 0x69, 0xb9, 0x72, 0x03, 0xd1, 0x06, 0xf7, 0xa2, 0x2d, 0x48, 0x63, + 0xc7, 0x9c, 0x2d, 0x98, 0x11, 0x37, 0xa6, 0x7a, 0x06, 0xf2, 0x7a, 0xe6, 0x36, 0x2c, 0xc8, 0xb3, + 0x80, 0x0c, 0xe0, 0x28, 0x4d, 0x95, 0xb0, 0x89, 0xee, 0x25, 0x1d, 0x0f, 0x92, 0x94, 0xc9, 0x47, + 0xa8, 0x02, 0x99, 0xd4, 0x6d, 0xda, 0x4b, 0xa8, 0x8c, 0x6c, 0x4e, 0xad, 0x18, 0xc9, 0x10, 0xf1, + 0x21, 0x68, 0x96, 0x6d, 0x8d, 0x98, 0x32, 0x9d, 0xec, 0x6c, 0x0f, 0x36, 0x1e, 0x30, 0x49, 0x9a, + 0x96, 0x6d, 0x71, 0xb8, 0x50, 0x88, 0x69, 0xbb, 0xaf, 0x13, 0xd3, 0xe6, 0x8d, 0x7c, 0xaf, 0x60, + 0xe4, 0xbf, 0xa8, 0x36, 0x1b, 0xbd, 0xa6, 0xfe, 0x2e, 0x34, 0x93, 0x8d, 0x50, 0x75, 0x47, 0xd2, + 0x53, 0xf9, 0x0a, 0x52, 0xdd, 0x08, 0x0e, 0x23, 0xdd, 0x82, 0xca, 0xa3, 0xa7, 0x03, 0xd2, 0xe0, + 0x68, 0x4c, 0x6b, 0xe4, 0x84, 0x51, 0x3b, 0xd5, 0xea, 0xe5, 0x9c, 0x56, 0xbf, 0xce, 0x06, 0x91, + 0x18, 0x94, 0x24, 0x79, 0x73, 0x18, 0x24, 0x31, 0x3b, 0x03, 0x55, 0xce, 0xff, 0x12, 0xa0, 0xff, + 0xff, 0x2a, 0x34, 0x94, 0xe3, 0x86, 0x46, 0x70, 0x92, 0xe6, 0x27, 0xb1, 0x59, 0x8c, 0xa8, 0x53, + 0x0f, 0x30, 0x5f, 0xac, 0xaa, 0xbc, 0xba, 0x58, 0x25, 0x3e, 0x83, 0x76, 0xc0, 0x7d, 0x79, 0x9f, + 0xf1, 0xcd, 0xfc, 0x1c, 0xf5, 0x4b, 0xf3, 0x5a, 0x41, 0x06, 0x20, 0x29, 0x29, 0x63, 0x1f, 0x9b, + 0x47, 0x8a, 0x02, 0x0d, 0x84, 0x87, 0xe6, 0xd1, 0x6b, 0x39, 0x80, 0x5d, 0xf2, 0x24, 0xdb, 0x64, + 0x40, 0xd0, 0x69, 0xcc, 0x73, 0xa6, 0x53, 0x74, 0xbf, 0xae, 0x82, 0x66, 0xf9, 0xe3, 0xb1, 0x43, + 0x7d, 0x5d, 0x95, 0x8f, 0x23, 0xc4, 0x30, 0xd2, 0x7f, 0x5d, 0x82, 0x86, 0xba, 0xd7, 0x05, 0xe3, + 0xbe, 0xbe, 0xbd, 0xbb, 0x66, 0xfc, 0x98, 0x7d, 0xc2, 0xed, 0xdd, 0x61, 0xaf, 0x2c, 0x34, 0xa8, + 0x6d, 0xed, 0xec, 0xad, 0x0d, 0x7b, 0x15, 0x34, 0xf8, 0xeb, 0x7b, 0x7b, 0x3b, 0xbd, 0xaa, 0x68, + 0x43, 0x73, 0x63, 0x6d, 0xb8, 0x39, 0xdc, 0x7e, 0xbc, 0xd9, 0xab, 0xe1, 0xd8, 0x87, 0x9b, 0x7b, + 0xbd, 0x3a, 0x36, 0x9e, 0x6c, 0x6f, 0xf4, 0x1a, 0xd8, 0xbf, 0xbf, 0x36, 0x18, 0xfc, 0x70, 0xcf, + 0xd8, 0xe8, 0x35, 0xc9, 0x69, 0x18, 0x1a, 0xdb, 0xbb, 0x0f, 0x7b, 0x1a, 0xb6, 0xf7, 0xd6, 0xbf, + 0xd8, 0x7c, 0x30, 0xec, 0x01, 0x8e, 0x5a, 0xdf, 0x7e, 0xc8, 0xab, 0xb7, 0xb0, 0xe7, 0x29, 0xb7, + 0xdb, 0xfa, 0x7d, 0x68, 0xe5, 0xa8, 0x88, 0xeb, 0x1a, 0x9b, 0x5b, 0xbd, 0x39, 0x3c, 0xcc, 0xd3, + 0xb5, 0x9d, 0x27, 0xe8, 0x7d, 0x74, 0x01, 0xa8, 0x39, 0xda, 0x59, 0xdb, 0x7d, 0x98, 0xfa, 0xae, + 0x3f, 0x80, 0xe6, 0x13, 0xc7, 0x5e, 0x77, 0x7d, 0xeb, 0x04, 0x05, 0xeb, 0xc0, 0x8c, 0xa4, 0x92, + 0x44, 0x6a, 0x63, 0xc8, 0x40, 0xcf, 0x39, 0x52, 0x52, 0xa0, 0x20, 0xa4, 0xa5, 0x37, 0x19, 0x8f, + 0xa8, 0xd4, 0x59, 0x61, 0x13, 0xed, 0x4d, 0xc6, 0x4f, 0x1c, 0x3b, 0xd2, 0x4f, 0xa0, 0xf1, 0xc4, + 0xb1, 0xf7, 0x4d, 0xeb, 0x84, 0x14, 0x34, 0x2e, 0x3d, 0x8a, 0x9c, 0x2f, 0xa5, 0x32, 0xe5, 0x1a, + 0x61, 0x06, 0xce, 0x97, 0x52, 0xbc, 0x07, 0x75, 0x02, 0x92, 0x2c, 0x0b, 0x3d, 0xc2, 0xe4, 0x38, + 0x86, 0xea, 0xa3, 0x4a, 0xa3, 0xeb, 0xfa, 0xd6, 0x28, 0x94, 0x87, 0xfd, 0x37, 0x99, 0x37, 0x84, + 0x30, 0xe4, 0xa1, 0xfe, 0x07, 0xa5, 0xf4, 0xe6, 0x54, 0xd0, 0x5a, 0x82, 0x6a, 0x60, 0x5a, 0x27, + 0xca, 0x93, 0x6a, 0xa9, 0x05, 0xf1, 0x30, 0x06, 0x75, 0x88, 0x0f, 0xa0, 0xa9, 0x44, 0x2c, 0xd9, + 0xb5, 0x95, 0x93, 0x45, 0x23, 0xed, 0x2c, 0x8a, 0x44, 0xa5, 0x28, 0x12, 0x14, 0x90, 0x07, 0xae, + 0x13, 0xf3, 0x83, 0xc2, 0x67, 0x4b, 0x90, 0xfe, 0x09, 0x40, 0x56, 0x5b, 0x9c, 0x5d, 0xd2, 0x31, + 0x5d, 0xc7, 0x4c, 0x02, 0x7c, 0x06, 0xf4, 0x5d, 0x68, 0xe5, 0x2a, 0x92, 0x48, 0x5b, 0xd3, 0x75, + 0xd1, 0xba, 0xb3, 0x56, 0x68, 0x1a, 0x0d, 0xd3, 0x75, 0x1f, 0xc9, 0xf3, 0x08, 0x9d, 0x7a, 0x2e, + 0x66, 0x96, 0xa7, 0xea, 0x5d, 0x34, 0xd5, 0xe0, 0x4e, 0xfd, 0x23, 0xa8, 0x6f, 0x25, 0x31, 0x50, + 0xf2, 0x4c, 0x4a, 0x2f, 0x7a, 0x26, 0xfa, 0xa7, 0xea, 0xcc, 0x54, 0x32, 0x13, 0xb7, 0x55, 0xd1, + 0x34, 0xe2, 0x12, 0x6d, 0x29, 0x4b, 0x11, 0xf1, 0x20, 0x55, 0x2f, 0xa5, 0xc1, 0xfa, 0x06, 0x34, + 0x5f, 0x5a, 0x86, 0x56, 0x04, 0x28, 0x67, 0x04, 0x98, 0x51, 0x98, 0xd6, 0x7f, 0x0a, 0x90, 0x15, + 0x57, 0xd5, 0xab, 0xe5, 0x55, 0xf0, 0xd5, 0xde, 0x82, 0xa6, 0x75, 0xec, 0xb8, 0x76, 0x28, 0xbd, + 0xc2, 0xad, 0xb3, 0x72, 0x6c, 0xda, 0x2f, 0x6e, 0x40, 0x95, 0x6a, 0xc6, 0x95, 0x4c, 0xa7, 0xa7, + 0x05, 0x63, 0xea, 0xd1, 0xcf, 0xa0, 0xc3, 0xd1, 0xd2, 0x6b, 0xf8, 0x9a, 0x45, 0xa5, 0x5a, 0xbe, + 0xa0, 0x54, 0xaf, 0x40, 0x9d, 0x9c, 0x97, 0xe4, 0x36, 0x0a, 0x7a, 0x81, 0xb2, 0xfd, 0x87, 0x32, + 0x00, 0x6f, 0xbd, 0xeb, 0xdb, 0xb2, 0x98, 0x9f, 0x28, 0x4d, 0xe7, 0x27, 0x04, 0x54, 0xd3, 0xcf, + 0x01, 0x34, 0x83, 0xda, 0x99, 0x99, 0x54, 0x39, 0x0b, 0x36, 0x93, 0x6f, 0x83, 0x46, 0xfe, 0xa5, + 0xf3, 0x25, 0xd5, 0x80, 0x70, 0xc3, 0x0c, 0x91, 0x2f, 0x8e, 0xd7, 0x8a, 0xc5, 0xf1, 0xb4, 0x42, + 0x57, 0xe7, 0xd5, 0xb8, 0x42, 0x37, 0xab, 0xe8, 0x49, 0x49, 0xa3, 0x48, 0x86, 0x71, 0x92, 0xf1, + 0x60, 0x28, 0x0d, 0xde, 0x35, 0x35, 0xd6, 0xe4, 0xb4, 0x8f, 0xe7, 0x8f, 0x2c, 0xdf, 0x3b, 0x74, + 0x1d, 0x2b, 0x56, 0xc5, 0x70, 0xf0, 0xfc, 0x07, 0x0a, 0x43, 0x8b, 0x79, 0xce, 0xcf, 0x26, 0xec, + 0x66, 0xe2, 0x62, 0x04, 0x89, 0x4f, 0xa0, 0x45, 0xf7, 0x19, 0x45, 0x81, 0xb4, 0xa2, 0x7e, 0x9b, + 0x18, 0x4d, 0x96, 0x85, 0x4b, 0xa5, 0xdb, 0xd8, 0x39, 0x08, 0xa4, 0x65, 0x80, 0x93, 0x34, 0x23, + 0xfd, 0x33, 0x68, 0x27, 0xdc, 0xa4, 0x0a, 0xe1, 0xad, 0x34, 0x3a, 0x2e, 0x65, 0x92, 0x92, 0x11, + 0x7d, 0xbd, 0xdc, 0x2f, 0x25, 0xf1, 0xb1, 0xfe, 0x37, 0xd5, 0x64, 0xb2, 0x2a, 0x64, 0xbd, 0x9c, + 0x23, 0xc5, 0xcc, 0x47, 0xf9, 0xb5, 0x32, 0x1f, 0xdf, 0x01, 0xcd, 0xa6, 0x18, 0xde, 0x39, 0x4d, + 0x8c, 0xe5, 0xe2, 0x74, 0xbc, 0xae, 0xa2, 0x7c, 0x8a, 0x1e, 0xd2, 0xc1, 0xaf, 0xe0, 0x6a, 0xca, + 0xbb, 0xda, 0x2c, 0xde, 0xd5, 0xbf, 0x21, 0xef, 0x32, 0xd6, 0x74, 0x0b, 0xac, 0x79, 0x07, 0xda, + 0x9e, 0xef, 0x8d, 0xbc, 0x89, 0xeb, 0x9a, 0x07, 0xae, 0x54, 0x4c, 0x6d, 0x79, 0xbe, 0xb7, 0xab, + 0x50, 0x18, 0x47, 0xe4, 0x87, 0xb0, 0xea, 0x60, 0x06, 0xcf, 0xe7, 0xc6, 0x91, 0x82, 0x59, 0x86, + 0x9e, 0x7f, 0xf0, 0x53, 0x69, 0xc5, 0x44, 0xc9, 0x11, 0xe9, 0x0c, 0x0e, 0x22, 0xba, 0x8c, 0x47, + 0xd2, 0xa1, 0x9b, 0x3c, 0x2d, 0x4c, 0x9d, 0x0b, 0xc2, 0x34, 0x25, 0x34, 0xf3, 0xaf, 0x27, 0x34, + 0x9f, 0x82, 0x96, 0xd2, 0x3c, 0x97, 0x7d, 0xd0, 0xa0, 0xb6, 0xbd, 0xbb, 0xb1, 0xf9, 0xa3, 0x5e, + 0x09, 0x8d, 0xbc, 0xb1, 0xf9, 0x74, 0xd3, 0x18, 0x6c, 0xf6, 0xca, 0x68, 0x66, 0x37, 0x36, 0x77, + 0x36, 0x87, 0x9b, 0xbd, 0x0a, 0x3b, 0x70, 0x54, 0x9d, 0x72, 0x1d, 0xcb, 0x89, 0xf5, 0x3d, 0x98, + 0x9f, 0xda, 0x69, 0xa6, 0x1a, 0x5c, 0x86, 0x86, 0x1f, 0x24, 0xfe, 0x7c, 0x2a, 0x97, 0x7b, 0x84, + 0xda, 0x37, 0x9d, 0xd0, 0x48, 0xba, 0xd1, 0x7e, 0x64, 0xe8, 0x57, 0x7d, 0x12, 0xa0, 0x29, 0x9f, + 0x4c, 0x1f, 0x00, 0x64, 0x99, 0x1d, 0x34, 0x5c, 0x19, 0x65, 0x55, 0x8e, 0x39, 0x4e, 0x68, 0xba, + 0x9c, 0xea, 0xac, 0xf2, 0x8b, 0xf2, 0x47, 0xdc, 0xaf, 0xaf, 0x82, 0xf6, 0xd8, 0x0c, 0x3e, 0xe7, + 0x72, 0xf2, 0x4d, 0xe8, 0x52, 0x70, 0x94, 0x84, 0x9d, 0x6c, 0x4f, 0xda, 0x46, 0x27, 0xc5, 0xa2, + 0x79, 0xd2, 0xff, 0xac, 0x04, 0x97, 0x1f, 0xfb, 0xa7, 0x32, 0x0d, 0x16, 0xf6, 0xcd, 0x73, 0xd7, + 0x37, 0xed, 0x57, 0xbc, 0xad, 0x6b, 0x00, 0x91, 0x3f, 0xa1, 0xf2, 0x6e, 0x52, 0x0c, 0x37, 0x34, + 0xc6, 0x3c, 0x54, 0x5f, 0x13, 0xc9, 0x28, 0xa6, 0x4e, 0xe5, 0x6b, 0x20, 0x8c, 0x5d, 0x6f, 0x40, + 0x3d, 0x3e, 0xf3, 0xb2, 0xd2, 0x7c, 0x2d, 0xa6, 0xda, 0xc8, 0xcc, 0xd8, 0xa1, 0x36, 0x3b, 0x76, + 0xd0, 0x1f, 0x80, 0x36, 0x3c, 0xa3, 0xea, 0xc0, 0xa4, 0xe8, 0xbd, 0x97, 0x5e, 0xe2, 0x23, 0x96, + 0xa7, 0x7c, 0xc4, 0x7f, 0x2d, 0x41, 0x2b, 0x17, 0x04, 0x89, 0x77, 0xa0, 0x1a, 0x9f, 0x79, 0xc5, + 0x2f, 0x71, 0x92, 0x4d, 0x0c, 0xea, 0xba, 0x90, 0x01, 0x2f, 0x5f, 0xc8, 0x80, 0x8b, 0x1d, 0x98, + 0x67, 0xe3, 0x94, 0x5c, 0x22, 0xc9, 0x0f, 0xbe, 0x3b, 0x15, 0x74, 0x71, 0x05, 0x25, 0xb9, 0x92, + 0x4a, 0x7a, 0x75, 0x8f, 0x0a, 0xc8, 0xc5, 0x35, 0xb8, 0x34, 0x63, 0xd8, 0xd7, 0xa9, 0xa5, 0xe9, + 0x4b, 0xd0, 0x19, 0x9e, 0x79, 0x43, 0x67, 0x2c, 0xa3, 0xd8, 0x1c, 0x07, 0xe4, 0x63, 0x2b, 0xe7, + 0xa2, 0x6a, 0x94, 0xe3, 0x48, 0x7f, 0x1f, 0xda, 0xfb, 0x52, 0x86, 0x86, 0x8c, 0x02, 0xdf, 0x63, + 0xff, 0x51, 0x55, 0x2e, 0xd8, 0x93, 0x51, 0x90, 0xfe, 0xff, 0x40, 0x33, 0xcc, 0xc3, 0x78, 0xdd, + 0x8c, 0xad, 0xe3, 0xaf, 0x93, 0x01, 0x7b, 0x1f, 0x1a, 0x01, 0xcb, 0x94, 0x0a, 0x8d, 0xdb, 0xe4, + 0xd1, 0x28, 0x39, 0x33, 0x92, 0x4e, 0xfd, 0xdb, 0xd0, 0x55, 0x65, 0xc4, 0xe4, 0x24, 0xb9, 0x5a, + 0x63, 0xe9, 0x85, 0xb5, 0x46, 0xfd, 0x08, 0x3a, 0xc9, 0x3c, 0xf6, 0x0f, 0x5e, 0x6b, 0xda, 0xd7, + 0xff, 0x98, 0x43, 0xff, 0xbf, 0x70, 0x69, 0x30, 0x39, 0x88, 0xac, 0xd0, 0xa1, 0xf7, 0x9e, 0x6c, + 0xb7, 0x08, 0xcd, 0x20, 0x94, 0x87, 0xce, 0x99, 0x4c, 0x9e, 0x58, 0x0a, 0x8b, 0x5b, 0xd0, 0x18, + 0x23, 0xbd, 0x64, 0xf6, 0x78, 0xb3, 0x80, 0xff, 0x31, 0xf6, 0x18, 0xc9, 0x00, 0xfd, 0xbb, 0x70, + 0xb9, 0xb8, 0xbc, 0xa2, 0xc2, 0xbb, 0x50, 0x39, 0x39, 0x8d, 0x14, 0x99, 0x17, 0x0a, 0x09, 0x03, + 0xfa, 0x8a, 0x06, 0x7b, 0xf5, 0xbf, 0x2a, 0x41, 0x65, 0x77, 0x32, 0xce, 0x7f, 0xaa, 0x58, 0xe5, + 0x4f, 0x15, 0xaf, 0xe6, 0xab, 0x1c, 0x1c, 0x80, 0x66, 0xd5, 0x8c, 0xb7, 0x41, 0x3b, 0xf4, 0xc3, + 0x9f, 0x9b, 0xa1, 0x2d, 0x6d, 0xe5, 0xa4, 0x64, 0x08, 0x8a, 0x2e, 0x26, 0xe3, 0x40, 0xd9, 0x2c, + 0x6a, 0x8b, 0x9b, 0xca, 0xcd, 0xe1, 0xa0, 0x70, 0x01, 0x29, 0xbb, 0x3b, 0x19, 0xaf, 0xb8, 0xd2, + 0x8c, 0xc8, 0x82, 0xb2, 0xe7, 0xa3, 0xdf, 0x06, 0x2d, 0x45, 0xa1, 0x9e, 0xde, 0x1d, 0x8c, 0xb6, + 0x37, 0x38, 0x61, 0x8c, 0xe1, 0x53, 0x09, 0x75, 0xf4, 0xf0, 0x47, 0xbb, 0xa3, 0xe1, 0xa0, 0x57, + 0xd6, 0x7f, 0x02, 0xad, 0xe4, 0xfd, 0x6c, 0xdb, 0x54, 0x26, 0xa5, 0x07, 0xbc, 0x6d, 0x17, 0xde, + 0xf3, 0x36, 0xc5, 0xb7, 0xd2, 0xb3, 0xb7, 0x93, 0x87, 0xc7, 0x40, 0xf1, 0x86, 0xaa, 0xe6, 0x9a, + 0xdc, 0x50, 0xdf, 0x84, 0x05, 0x83, 0xca, 0x3d, 0xe8, 0x4d, 0x24, 0x2c, 0xbb, 0x02, 0x75, 0xcf, + 0xb7, 0x65, 0xba, 0x81, 0x82, 0x70, 0x67, 0xc5, 0x6c, 0xa5, 0xd2, 0x52, 0xde, 0x4b, 0x58, 0x40, + 0x2d, 0x59, 0x14, 0xb4, 0x42, 0x29, 0xa2, 0x34, 0x55, 0x8a, 0xc0, 0x4d, 0xd4, 0x57, 0x07, 0xac, + 0xf9, 0x93, 0x2f, 0x0d, 0x16, 0xa1, 0x69, 0x47, 0x31, 0x3d, 0x6b, 0xa5, 0x1b, 0x53, 0x58, 0xbf, + 0x0b, 0x97, 0xd6, 0x82, 0xc0, 0x3d, 0x4f, 0x6a, 0xb4, 0x6a, 0xa3, 0x7e, 0x56, 0xc8, 0x2d, 0xa9, + 0xa0, 0x9a, 0x41, 0x7d, 0x0b, 0xda, 0x49, 0x7a, 0xe6, 0xb1, 0x8c, 0x4d, 0xd2, 0x78, 0xae, 0x53, + 0xc8, 0x4f, 0x34, 0x19, 0x31, 0x2c, 0xd6, 0x39, 0xa6, 0xee, 0xb7, 0x02, 0x75, 0xa5, 0x4e, 0x05, + 0x54, 0x2d, 0xdf, 0xe6, 0x8d, 0x6a, 0x06, 0xb5, 0x51, 0xaa, 0xc6, 0xd1, 0x51, 0x12, 0x14, 0x8c, + 0xa3, 0x23, 0xfd, 0x3f, 0xcb, 0xd0, 0x59, 0xa7, 0xb4, 0x5d, 0x72, 0xc6, 0x5c, 0x4a, 0xbb, 0x54, + 0x48, 0x69, 0xe7, 0xd3, 0xd7, 0xe5, 0x42, 0xfa, 0xba, 0x70, 0xa0, 0x4a, 0xd1, 0x93, 0x7f, 0x13, + 0x1a, 0x13, 0xcf, 0x39, 0x4b, 0xec, 0x84, 0x46, 0xbe, 0xcd, 0xd9, 0x30, 0x12, 0x37, 0xa0, 0x85, + 0xa6, 0xc4, 0xf1, 0x38, 0x65, 0xcc, 0x79, 0xdf, 0x3c, 0x6a, 0x2a, 0x31, 0x5c, 0x7f, 0x79, 0x62, + 0xb8, 0xf1, 0x4d, 0x12, 0xc3, 0xcd, 0x6f, 0x90, 0x18, 0xd6, 0xa6, 0x13, 0xc3, 0xc5, 0x58, 0x05, + 0x2e, 0xc4, 0x2a, 0xd7, 0x00, 0xf8, 0x03, 0xaa, 0xc3, 0x89, 0xeb, 0x2a, 0xd7, 0x4c, 0x23, 0xcc, + 0xd6, 0xc4, 0x75, 0xf5, 0x1d, 0xe8, 0x26, 0x0c, 0x50, 0x8a, 0xe2, 0x33, 0x98, 0x57, 0x85, 0x21, + 0x19, 0xaa, 0x5c, 0x24, 0xeb, 0x3f, 0x7a, 0xa5, 0x5c, 0xbb, 0x51, 0x3d, 0x46, 0xd7, 0xce, 0x83, + 0x91, 0xfe, 0xab, 0x12, 0x74, 0x0a, 0x23, 0xc4, 0xfd, 0xac, 0xcc, 0x54, 0xa2, 0xb7, 0xde, 0xbf, + 0xb0, 0xca, 0xcb, 0x4b, 0x4d, 0xe5, 0xa9, 0x52, 0x93, 0x7e, 0x27, 0x2d, 0x20, 0xa9, 0xb2, 0xd1, + 0x5c, 0x5a, 0x36, 0xa2, 0x4a, 0xcb, 0xda, 0x70, 0x68, 0xf4, 0xca, 0xa2, 0x0e, 0xe5, 0xdd, 0x41, + 0xaf, 0xa2, 0xff, 0xae, 0x0c, 0x9d, 0xcd, 0xb3, 0x80, 0x3e, 0x26, 0x7c, 0x65, 0xe0, 0x97, 0x93, + 0xbe, 0x72, 0x41, 0xfa, 0x72, 0x72, 0x54, 0x51, 0x05, 0x74, 0x96, 0x23, 0x0c, 0x05, 0x39, 0x4d, + 0xad, 0xe4, 0x8b, 0xa1, 0xff, 0x3d, 0xf2, 0x55, 0xd0, 0x4e, 0x30, 0x5d, 0x28, 0xdd, 0x81, 0x6e, + 0x42, 0x5c, 0x25, 0x3e, 0xaf, 0xf5, 0xf0, 0xf9, 0x63, 0x67, 0x37, 0xcd, 0x58, 0x32, 0xa0, 0xff, + 0x49, 0x19, 0x34, 0x96, 0x46, 0xbc, 0xcf, 0x87, 0xca, 0x46, 0x94, 0xb2, 0x52, 0x5c, 0xda, 0xb9, + 0xf2, 0x48, 0x9e, 0x67, 0x76, 0x62, 0x66, 0x1d, 0x5b, 0xe5, 0x35, 0x39, 0x81, 0x43, 0x79, 0xcd, + 0xab, 0xa0, 0xb1, 0x8b, 0x37, 0x51, 0x75, 0xa0, 0xaa, 0xc1, 0x3e, 0xdf, 0x13, 0x87, 0xac, 0x54, + 0x2c, 0xc3, 0xb1, 0xe2, 0x14, 0xb5, 0x8b, 0xa1, 0x72, 0x27, 0x09, 0xb7, 0x0a, 0x14, 0x69, 0x4c, + 0x53, 0xe4, 0x18, 0x1a, 0xea, 0x6c, 0x18, 0x4d, 0x3c, 0xd9, 0x7d, 0xb4, 0xbb, 0xf7, 0xc3, 0xdd, + 0x82, 0x8c, 0xa6, 0xf1, 0x46, 0x39, 0x1f, 0x6f, 0x54, 0x10, 0xff, 0x60, 0xef, 0xc9, 0xee, 0xb0, + 0x57, 0x15, 0x1d, 0xd0, 0xa8, 0x39, 0x32, 0x36, 0x9f, 0xf6, 0x6a, 0x94, 0x16, 0x7c, 0xf0, 0xf9, + 0xe6, 0xe3, 0xb5, 0x5e, 0x3d, 0x2d, 0x8c, 0x36, 0xf4, 0x3f, 0x2e, 0xc1, 0x02, 0x13, 0x24, 0x9f, + 0x07, 0xcb, 0xff, 0x0d, 0xa1, 0xca, 0x7f, 0x43, 0xf8, 0x9f, 0x4d, 0x7d, 0xe1, 0xa4, 0x89, 0x93, + 0x7c, 0x93, 0xc0, 0xd9, 0xda, 0xe6, 0xc4, 0x51, 0x9f, 0x22, 0xfc, 0x5d, 0x09, 0x16, 0x39, 0xbe, + 0x78, 0x18, 0x9a, 0xc1, 0xf1, 0x0f, 0x76, 0x2e, 0x24, 0x61, 0x5e, 0xe4, 0x75, 0xdf, 0x84, 0x2e, + 0xfd, 0x51, 0xe3, 0x67, 0xee, 0x48, 0x85, 0xf6, 0xcc, 0xdd, 0x8e, 0xc2, 0xf2, 0x42, 0xe2, 0x63, + 0x68, 0xf3, 0x1f, 0x3a, 0xa8, 0x7c, 0x51, 0x28, 0xa3, 0x17, 0xa2, 0x9b, 0x16, 0x8f, 0xe2, 0xea, + 0xff, 0xfd, 0x74, 0x52, 0x96, 0xaf, 0xb9, 0x58, 0x29, 0x57, 0x53, 0x86, 0x94, 0xc5, 0xb9, 0x0b, + 0x57, 0x67, 0xde, 0x43, 0x89, 0x7d, 0x2e, 0x8b, 0xce, 0xd2, 0xa6, 0xff, 0xae, 0x04, 0xcd, 0xf5, + 0x89, 0x7b, 0x42, 0x06, 0xf5, 0x1a, 0x80, 0xb4, 0x8f, 0xa4, 0xfa, 0x67, 0x44, 0x89, 0x54, 0x88, + 0x86, 0x18, 0xfe, 0x6f, 0xc4, 0x67, 0x00, 0x7c, 0xc7, 0xd1, 0xd8, 0x0c, 0x14, 0x8b, 0xa8, 0xac, + 0x9d, 0x2c, 0xa0, 0xee, 0xf2, 0xd8, 0x0c, 0x54, 0x59, 0x3b, 0x4a, 0xe0, 0xac, 0xdc, 0x5f, 0x79, + 0x49, 0xb9, 0x7f, 0x71, 0x17, 0xba, 0xc5, 0x25, 0x66, 0xc4, 0x98, 0xef, 0x17, 0xbf, 0xad, 0xba, + 0x48, 0xc3, 0x5c, 0x3c, 0xf0, 0x05, 0xcc, 0x4f, 0x55, 0x42, 0x5e, 0xa6, 0x57, 0x0b, 0x4f, 0xa6, + 0x3c, 0xfd, 0x64, 0x3e, 0x82, 0x85, 0xa1, 0x19, 0x9d, 0xa8, 0x18, 0x29, 0x73, 0x04, 0x62, 0x33, + 0x3a, 0x19, 0xa5, 0x44, 0xad, 0x23, 0xb8, 0x6d, 0xeb, 0xf7, 0x41, 0xe4, 0x47, 0x2b, 0xfa, 0x63, + 0xec, 0x8b, 0xc3, 0xc7, 0x32, 0x36, 0x13, 0x8f, 0x05, 0x11, 0x48, 0xbc, 0xd5, 0xbf, 0x2d, 0x41, + 0x15, 0x83, 0x0a, 0x71, 0x07, 0xb4, 0xcf, 0xa5, 0x19, 0xc6, 0x07, 0xd2, 0x8c, 0x45, 0x21, 0x80, + 0x58, 0x24, 0xba, 0x65, 0xdf, 0x6b, 0xe9, 0x73, 0xf7, 0x4a, 0x62, 0x85, 0xbf, 0x26, 0x4f, 0xbe, + 0x92, 0xef, 0x24, 0xc1, 0x09, 0x05, 0x2f, 0x8b, 0x85, 0xf9, 0xfa, 0xdc, 0x32, 0x8d, 0xff, 0xc2, + 0x77, 0xbc, 0x07, 0xfc, 0x0d, 0xb3, 0x98, 0x0e, 0x66, 0xa6, 0x67, 0x88, 0x3b, 0x50, 0xdf, 0x8e, + 0x30, 0x6a, 0xba, 0x38, 0x94, 0x88, 0x9f, 0x0f, 0xa8, 0xf4, 0xb9, 0xd5, 0x3f, 0xaf, 0x41, 0xf5, + 0x27, 0x32, 0xf4, 0xc5, 0x47, 0xd0, 0x50, 0x5f, 0xb7, 0x89, 0xdc, 0x57, 0x6c, 0x8b, 0x94, 0x00, + 0x99, 0xfa, 0xec, 0x8d, 0x76, 0xe9, 0x31, 0xff, 0xb2, 0xfa, 0x9f, 0xc8, 0x3e, 0xbe, 0xbb, 0x70, + 0xa8, 0x4f, 0xa1, 0x37, 0x88, 0x43, 0x69, 0x8e, 0x73, 0xc3, 0x8b, 0xa4, 0x9a, 0x55, 0x4c, 0x24, + 0x7a, 0xdd, 0x86, 0x3a, 0x87, 0xa6, 0x53, 0x13, 0xa6, 0x2b, 0x85, 0x34, 0xf8, 0x03, 0x68, 0x0d, + 0x8e, 0xfd, 0x89, 0x6b, 0x0f, 0x64, 0x78, 0x2a, 0x45, 0x2e, 0xba, 0x5a, 0xcc, 0xb5, 0xf5, 0x39, + 0x71, 0x1f, 0xea, 0xc8, 0x91, 0x70, 0x2c, 0x16, 0x72, 0x11, 0x18, 0x8b, 0xc9, 0xa2, 0xc8, 0xa3, + 0x12, 0x4a, 0x89, 0x0f, 0x40, 0xe3, 0x50, 0x00, 0x03, 0x81, 0x86, 0x8a, 0x2e, 0xf8, 0x18, 0xb9, + 0x10, 0x41, 0x9f, 0x13, 0xcb, 0x00, 0xb9, 0x98, 0xf6, 0x65, 0x23, 0x3f, 0x86, 0xce, 0x03, 0xd2, + 0x84, 0x7b, 0xe1, 0xda, 0x81, 0x1f, 0xc6, 0x62, 0xfa, 0x8b, 0xdb, 0xc5, 0x69, 0x84, 0x3e, 0x87, + 0xd1, 0xe1, 0x30, 0x3c, 0xe7, 0xf1, 0x0b, 0x2a, 0x15, 0x90, 0xed, 0x37, 0x83, 0x2e, 0xe2, 0x93, + 0xf4, 0x5d, 0xa5, 0x11, 0xc0, 0xac, 0xb2, 0x23, 0x93, 0x88, 0xdf, 0x00, 0x91, 0x08, 0xb2, 0xf0, + 0x44, 0xbc, 0xc1, 0x25, 0xd0, 0xa9, 0x70, 0xe5, 0xe2, 0x94, 0x2c, 0x14, 0xe1, 0x29, 0x17, 0x42, + 0x93, 0xa9, 0x29, 0xdf, 0x82, 0x76, 0x3e, 0xac, 0x10, 0x54, 0xcb, 0x9b, 0x11, 0x68, 0x14, 0xa7, + 0xad, 0xfe, 0x7b, 0x0d, 0xea, 0x3f, 0xf4, 0xc3, 0x13, 0x19, 0x8a, 0x5b, 0x50, 0xa7, 0x62, 0xb6, + 0x7a, 0x4b, 0x69, 0x61, 0x7b, 0x16, 0xed, 0xde, 0x03, 0x8d, 0x24, 0x03, 0x1f, 0x3b, 0xcb, 0x2b, + 0xfd, 0x53, 0x8d, 0x17, 0xe7, 0xb4, 0x2f, 0x09, 0x77, 0x97, 0xa5, 0x35, 0xfd, 0x78, 0xa5, 0x50, + 0x6c, 0x5e, 0x24, 0x96, 0x3e, 0x7a, 0x3a, 0xc0, 0xf7, 0x79, 0xaf, 0x84, 0x3e, 0xc5, 0x80, 0x99, + 0x87, 0x83, 0xb2, 0x7f, 0xc0, 0xf0, 0xf3, 0xcf, 0xfe, 0x72, 0xa2, 0xcf, 0x89, 0xbb, 0x50, 0x57, + 0x26, 0x66, 0x21, 0x53, 0x84, 0xc9, 0x0d, 0x7b, 0x79, 0x94, 0x9a, 0x70, 0x1f, 0xea, 0x6c, 0x8e, + 0x79, 0x42, 0x21, 0xae, 0x61, 0x39, 0x2d, 0x7a, 0xda, 0xfa, 0x9c, 0xb8, 0x0d, 0x0d, 0x55, 0xaa, + 0x16, 0x33, 0xea, 0xd6, 0x17, 0x38, 0x56, 0x67, 0x5f, 0x8b, 0xd7, 0x2f, 0x38, 0xb5, 0xbc, 0x7e, + 0xd1, 0x15, 0xe3, 0xa7, 0x6f, 0x48, 0x4b, 0x3a, 0xb9, 0xc4, 0x9c, 0x48, 0x28, 0x32, 0x43, 0x7f, + 0x7d, 0x0a, 0x9d, 0x42, 0x12, 0x4f, 0xf4, 0x13, 0xb1, 0x98, 0xce, 0xeb, 0x5d, 0xd0, 0x1a, 0xdf, + 0x05, 0x4d, 0xa5, 0x1d, 0x0e, 0x94, 0x60, 0xcc, 0x48, 0x72, 0x2c, 0x5e, 0xcc, 0x3b, 0x90, 0x2a, + 0xf8, 0x11, 0x5c, 0x9a, 0x61, 0x5b, 0x05, 0x7d, 0x43, 0xfd, 0x62, 0xe7, 0x61, 0x71, 0xe9, 0x85, + 0xfd, 0x29, 0x01, 0xbe, 0xd9, 0x73, 0xfa, 0x1e, 0x40, 0x66, 0x62, 0xf8, 0x6d, 0x5c, 0x30, 0x50, + 0x8b, 0x57, 0xa6, 0xd1, 0xc9, 0xa6, 0xeb, 0xfd, 0xdf, 0x7c, 0x75, 0xbd, 0xf4, 0xdb, 0xaf, 0xae, + 0x97, 0xfe, 0xe5, 0xab, 0xeb, 0xa5, 0x5f, 0xfd, 0xfe, 0xfa, 0xdc, 0x6f, 0x7f, 0x7f, 0x7d, 0xee, + 0x1f, 0x7f, 0x7f, 0x7d, 0xee, 0xa0, 0x4e, 0x7f, 0x19, 0xfd, 0xf8, 0xbf, 0x02, 0x00, 0x00, 0xff, + 0xff, 0x11, 0xb8, 0x55, 0xbf, 0xa8, 0x3a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/worker/mutation.go b/worker/mutation.go index 35866666a4c..90efc8d78c5 100644 --- a/worker/mutation.go +++ b/worker/mutation.go @@ -68,7 +68,7 @@ func runMutation(ctx context.Context, edge *pb.DirectedEdge, txn *posting.Txn) e // We shouldn't check whether this Alpha serves this predicate or not. Membership information // isn't consistent across the entire cluster. We should just apply whatever is given to us. su, ok := schema.State().Get(ctx, edge.Attr) - if edge.Op == pb.DirectedEdge_SET { + if edge.Op != pb.DirectedEdge_DEL { if !ok { return errors.Errorf("runMutation: Unable to find schema for %s", edge.Attr) } diff --git a/worker/mutation_unit_test.go b/worker/mutation_unit_test.go index d2b1053e95c..d69efea5d9b 100644 --- a/worker/mutation_unit_test.go +++ b/worker/mutation_unit_test.go @@ -17,16 +17,58 @@ package worker import ( + "context" + "os" "reflect" "testing" "github.com/stretchr/testify/require" + "github.com/dgraph-io/badger/v4" + "github.com/dgraph-io/dgraph/v24/posting" "github.com/dgraph-io/dgraph/v24/protos/pb" + "github.com/dgraph-io/dgraph/v24/schema" "github.com/dgraph-io/dgraph/v24/types" "github.com/dgraph-io/dgraph/v24/x" ) +func TestReverseEdge(t *testing.T) { + dir, err := os.MkdirTemp("", "storetest_") + x.Check(err) + defer os.RemoveAll(dir) + + opt := badger.DefaultOptions(dir) + ps, err := badger.OpenManaged(opt) + x.Check(err) + pstore = ps + // Not using posting list cache + posting.Init(ps, 0) + Init(ps) + err = schema.ParseBytes([]byte("revc: [uid] @reverse @count ."), 1) + require.NoError(t, err) + + ctx := context.Background() + txn := posting.Oracle().RegisterStartTs(5) + attr := x.GalaxyAttr("revc") + + edge := &pb.DirectedEdge{ + ValueId: 2, + Attr: attr, + Entity: 1, + Op: pb.DirectedEdge_DEL, + } + + x.Check(runMutation(ctx, edge, txn)) + x.Check(runMutation(ctx, edge, txn)) + + pl, err := txn.Get(x.DataKey(attr, 1)) + require.NoError(t, err) + pl.RLock() + c, _, _ := pl.GetLength(5) + pl.RUnlock() + require.Equal(t, c, 0) +} + func TestConvertEdgeType(t *testing.T) { var testEdges = []struct { input *pb.DirectedEdge diff --git a/worker/upgrade_test.go b/worker/upgrade_test.go new file mode 100644 index 00000000000..973d04fd685 --- /dev/null +++ b/worker/upgrade_test.go @@ -0,0 +1,120 @@ +//go:build upgrade + +/* + * Copyright 2023 Dgraph Labs, Inc. and Contributors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package worker + +import ( + "context" + "fmt" + "testing" + "time" + + "github.com/dgraph-io/dgo/v240/protos/api" + "github.com/dgraph-io/dgraph/v24/dgraphapi" + "github.com/dgraph-io/dgraph/v24/dgraphtest" + "github.com/dgraph-io/dgraph/v24/testutil" + "github.com/dgraph-io/dgraph/v24/x" + "github.com/stretchr/testify/require" +) + +var client *dgraphapi.GrpcClient +var ( + schemaIndexed = `friend: [uid] @count @reverse .` + schemaNonIndexed = `friend: [uid] .` +) + +func setClusterEdge(t *testing.T, rdf string) error { + mu := &api.Mutation{SetNquads: []byte(rdf), CommitNow: true} + return testutil.RetryMutation(client.Dgraph, mu) +} + +func delClusterEdge(t *testing.T, rdf string) error { + mu := &api.Mutation{DelNquads: []byte(rdf), CommitNow: true} + return testutil.RetryMutation(client.Dgraph, mu) +} + +func setSchema(schema string) { + var err error + for retry := 0; retry < 60; retry++ { + err = client.Alter(context.Background(), &api.Operation{Schema: schema}) + if err == nil { + return + } + time.Sleep(time.Second) + } + panic(fmt.Sprintf("Could not alter schema. Got error %v", err.Error())) +} + +func populateCluster(t *testing.T, dc dgraphapi.Cluster) { + x.Panic(client.Alter(context.Background(), &api.Operation{DropAll: true})) + x.Panic(dc.AssignUids(client.Dgraph, 65536)) + + setSchema(schemaIndexed) + + require.NoError(t, delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2))) +} + +func TestCountReverseIndex(t *testing.T) { + uc := &dgraphtest.UpgradeCombo{ + Before: "v24.0.4", + After: "local", + Strategy: dgraphtest.InPlace, + } + + conf := dgraphtest.NewClusterConfig().WithNumAlphas(1).WithNumZeros(1). + WithReplicas(1).WithACL(time.Hour).WithVersion(uc.Before) + c, err := dgraphtest.NewLocalCluster(conf) + x.Panic(err) + fmt.Println(c) + + var code = 2 + + defer func() { c.Cleanup(code != 0) }() + x.Panic(c.Start()) + + dg, cleanup, err := c.Client() + client = dg + x.Panic(err) + defer cleanup() + x.Panic(dg.LoginIntoNamespace(context.Background(), dgraphapi.DefaultUser, + dgraphapi.DefaultPassword, x.GalaxyNamespace)) + + populateCluster(t, c) + + err = delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2)) + require.Contains(t, err.Error(), "Transaction is too old") + + x.Panic(c.Upgrade(uc.After, uc.Strategy)) + + dg, cleanup, err = c.Client() + client = dg + x.Panic(err) + defer cleanup() + x.Panic(dg.LoginIntoNamespace(context.Background(), dgraphapi.DefaultUser, + dgraphapi.DefaultPassword, x.GalaxyNamespace)) + + setSchema(schemaNonIndexed) + setSchema(schemaIndexed) + + require.NoError(t, delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2))) + require.NoError(t, delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2))) + require.NoError(t, delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2))) + require.NoError(t, delClusterEdge(t, fmt.Sprintf("<%#x> <%#x> .", 1, 2))) + + code = 0 +} diff --git a/worker/worker_test.go b/worker/worker_test.go index 8b8f2736794..bd9abcac994 100644 --- a/worker/worker_test.go +++ b/worker/worker_test.go @@ -22,6 +22,7 @@ import ( "context" "fmt" "math" + "math/rand" "os" "strings" "sync/atomic" @@ -314,6 +315,46 @@ func TestProcessTaskIndexMLayer(t *testing.T) { ) } +func TestCountReverseWithDeletes(t *testing.T) { + schemaStr := "friend: [uid] @reverse @count ." + dg, err := testutil.DgraphClient(testutil.SockAddr) + if err != nil { + t.Fatalf("Error while getting a dgraph client: %v", err) + } + testutil.DropAll(t, dg) + + require.NoError(t, dg.Alter(context.Background(), &api.Operation{Schema: schemaStr})) + + n := 100 + for i := 0; i < 1000; i++ { + node := rand.Intn(n-1) + 2 + if i%2 == 0 { + setClusterEdge(t, dg, fmt.Sprintf("<%#x> <%#x> .", 1, node)) + } else { + delClusterEdge(t, dg, fmt.Sprintf("<%#x> <%#x> .", 1, node)) + } + } + + for i := 2; i <= n; i++ { + delClusterEdge(t, dg, fmt.Sprintf("<%#x> <%#x> .", 1, i)) + } + setClusterEdge(t, dg, fmt.Sprintf("<%#x> <%#x> .", 1, 2)) + + resp, err := runQuery(dg, "friend", []uint64{1}, nil) + require.NoError(t, err) + require.JSONEq(t, `{ + "q": [ + { + "friend": [ + { "uid": "0x2" } + ] + } + ] + }`, + string(resp.Json), + ) +} + // Index-related test. Similar to TestProcessTaskIndeMLayer except we call // MergeLists in between a lot of updates. func TestProcessTaskIndex(t *testing.T) {