Merge pull request #3795 from joostjager/keysend

lncli+invoices: experimental key send mode
This commit is contained in:
Olaoluwa Osuntokun 2019-12-24 17:38:46 -06:00 committed by GitHub
commit f289a39c1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 1120 additions and 789 deletions

@ -219,8 +219,8 @@ type Invoice struct {
// or any other message which fits within the size constraints. // or any other message which fits within the size constraints.
Memo []byte Memo []byte
// PaymentRequest is an optional field where a payment request created // PaymentRequest is the encoded payment request for this invoice. For
// for this invoice can be stored. // spontaneous (key send) payments, this field will be empty.
PaymentRequest []byte PaymentRequest []byte
// CreationDate is the exact time the invoice was created. // CreationDate is the exact time the invoice was created.

@ -4,6 +4,7 @@ import (
"bufio" "bufio"
"bytes" "bytes"
"context" "context"
"crypto/rand"
"encoding/hex" "encoding/hex"
"errors" "errors"
"fmt" "fmt"
@ -24,6 +25,8 @@ import (
"github.com/lightninglabs/protobuf-hex-display/proto" "github.com/lightninglabs/protobuf-hex-display/proto"
"github.com/lightningnetwork/lnd/lnrpc" "github.com/lightningnetwork/lnd/lnrpc"
"github.com/lightningnetwork/lnd/lnrpc/routerrpc" "github.com/lightningnetwork/lnd/lnrpc/routerrpc"
"github.com/lightningnetwork/lnd/lntypes"
"github.com/lightningnetwork/lnd/record"
"github.com/lightningnetwork/lnd/routing/route" "github.com/lightningnetwork/lnd/routing/route"
"github.com/lightningnetwork/lnd/walletunlocker" "github.com/lightningnetwork/lnd/walletunlocker"
"github.com/urfave/cli" "github.com/urfave/cli"
@ -2144,12 +2147,6 @@ var sendPaymentCommand = cli.Command{
* --amt=A * --amt=A
* --final_cltv_delta=T * --final_cltv_delta=T
* --payment_hash=H * --payment_hash=H
The --debug_send flag is provided for usage *purely* in test
environments. If specified, then the payment hash isn't required, as
it'll use the hash of all zeroes. This mode allows one to quickly test
payment connectivity without having to create an invoice at the
destination.
`, `,
ArgsUsage: "dest amt payment_hash final_cltv_delta | --pay_req=[payment request]", ArgsUsage: "dest amt payment_hash final_cltv_delta | --pay_req=[payment request]",
Flags: append(paymentFlags(), Flags: append(paymentFlags(),
@ -2166,14 +2163,14 @@ var sendPaymentCommand = cli.Command{
Name: "payment_hash, r", Name: "payment_hash, r",
Usage: "the hash to use within the payment's HTLC", Usage: "the hash to use within the payment's HTLC",
}, },
cli.BoolFlag{
Name: "debug_send",
Usage: "use the debug rHash when sending the HTLC",
},
cli.Int64Flag{ cli.Int64Flag{
Name: "final_cltv_delta", Name: "final_cltv_delta",
Usage: "the number of blocks the last hop has to reveal the preimage", Usage: "the number of blocks the last hop has to reveal the preimage",
}, },
cli.BoolFlag{
Name: "key_send",
Usage: "will generate a pre-image and encode it in the sphinx packet, a dest must be set [experimental]",
},
), ),
Action: sendPayment, Action: sendPayment,
} }
@ -2276,11 +2273,25 @@ func sendPayment(ctx *cli.Context) error {
Amt: amount, Amt: amount,
} }
if ctx.Bool("debug_send") && (ctx.IsSet("payment_hash") || args.Present()) { var rHash []byte
return fmt.Errorf("do not provide a payment hash with debug send")
} else if !ctx.Bool("debug_send") {
var rHash []byte
if ctx.Bool("key_send") {
if ctx.IsSet("payment_hash") {
return errors.New("cannot set payment hash when using " +
"key send")
}
var preimage lntypes.Preimage
if _, err := rand.Read(preimage[:]); err != nil {
return err
}
req.DestCustomRecords = map[uint64][]byte{
record.KeySendType: preimage[:],
}
hash := preimage.Hash()
rHash = hash[:]
} else {
switch { switch {
case ctx.IsSet("payment_hash"): case ctx.IsSet("payment_hash"):
rHash, err = hex.DecodeString(ctx.String("payment_hash")) rHash, err = hex.DecodeString(ctx.String("payment_hash"))
@ -2290,26 +2301,26 @@ func sendPayment(ctx *cli.Context) error {
default: default:
return fmt.Errorf("payment hash argument missing") return fmt.Errorf("payment hash argument missing")
} }
}
if err != nil {
return err
}
if len(rHash) != 32 {
return fmt.Errorf("payment hash must be exactly 32 "+
"bytes, is instead %v", len(rHash))
}
req.PaymentHash = rHash
switch {
case ctx.IsSet("final_cltv_delta"):
req.FinalCltvDelta = int32(ctx.Int64("final_cltv_delta"))
case args.Present():
delta, err := strconv.ParseInt(args.First(), 10, 64)
if err != nil { if err != nil {
return err return err
} }
if len(rHash) != 32 { req.FinalCltvDelta = int32(delta)
return fmt.Errorf("payment hash must be exactly 32 "+
"bytes, is instead %v", len(rHash))
}
req.PaymentHash = rHash
switch {
case ctx.IsSet("final_cltv_delta"):
req.FinalCltvDelta = int32(ctx.Int64("final_cltv_delta"))
case args.Present():
delta, err := strconv.ParseInt(args.First(), 10, 64)
if err != nil {
return err
}
req.FinalCltvDelta = int32(delta)
}
} }
return sendPaymentRequest(ctx, req) return sendPaymentRequest(ctx, req)

@ -326,6 +326,8 @@ type config struct {
EnableUpfrontShutdown bool `long:"enable-upfront-shutdown" description:"If true, option upfront shutdown script will be enabled. If peers that we open channels with support this feature, we will automatically set the script to which cooperative closes should be paid out to on channel open. This offers the partial protection of a channel peer disconnecting from us if cooperative close is attempted with a different script."` EnableUpfrontShutdown bool `long:"enable-upfront-shutdown" description:"If true, option upfront shutdown script will be enabled. If peers that we open channels with support this feature, we will automatically set the script to which cooperative closes should be paid out to on channel open. This offers the partial protection of a channel peer disconnecting from us if cooperative close is attempted with a different script."`
AcceptKeySend bool `long:"accept-key-send" description:"If true, spontaneous payments through key send will be accepted. [experimental]"`
Routing *routing.Conf `group:"routing" namespace:"routing"` Routing *routing.Conf `group:"routing" namespace:"routing"`
Workers *lncfg.Workers `group:"workers" namespace:"workers"` Workers *lncfg.Workers `group:"workers" namespace:"workers"`

@ -13,6 +13,7 @@ import (
"github.com/lightningnetwork/lnd/lntypes" "github.com/lightningnetwork/lnd/lntypes"
"github.com/lightningnetwork/lnd/lnwire" "github.com/lightningnetwork/lnd/lnwire"
"github.com/lightningnetwork/lnd/queue" "github.com/lightningnetwork/lnd/queue"
"github.com/lightningnetwork/lnd/record"
) )
var ( var (
@ -94,6 +95,10 @@ type RegistryConfig struct {
// Now() and TickAfter() and is useful to stub out the clock functions // Now() and TickAfter() and is useful to stub out the clock functions
// during testing. // during testing.
Clock clock.Clock Clock clock.Clock
// AcceptKeySend indicates whether we want to accept spontaneous key
// send payments.
AcceptKeySend bool
} }
// htlcReleaseEvent describes an htlc auto-release event. It is used to release // htlcReleaseEvent describes an htlc auto-release event. It is used to release
@ -690,6 +695,68 @@ func (i *InvoiceRegistry) cancelSingleHtlc(hash lntypes.Hash,
return nil return nil
} }
// processKeySend just-in-time inserts an invoice if this htlc is a key send
// htlc.
func (i *InvoiceRegistry) processKeySend(ctx invoiceUpdateCtx,
hash lntypes.Hash) error {
// Retrieve key send record if present.
preimageSlice, ok := ctx.customRecords[record.KeySendType]
if !ok {
return nil
}
// Cancel htlc is preimage is invalid.
preimage, err := lntypes.MakePreimage(preimageSlice)
if err != nil || preimage.Hash() != hash {
return errors.New("invalid key send preimage")
}
// Don't accept zero preimages as those have a special meaning in our
// database for hodl invoices.
if preimage == channeldb.UnknownPreimage {
return errors.New("invalid key send preimage")
}
// Only allow key send for non-mpp payments.
if ctx.mpp != nil {
return errors.New("no mpp key send supported")
}
// Create an invoice for the htlc amount.
amt := ctx.amtPaid
// Set tlv optional feature vector on the invoice. Otherwise we wouldn't
// be able to pay to it with key send.
rawFeatures := lnwire.NewRawFeatureVector(
lnwire.TLVOnionPayloadOptional,
)
features := lnwire.NewFeatureVector(rawFeatures, lnwire.Features)
// Use the minimum block delta that we require for settling htlcs.
finalCltvDelta := i.cfg.FinalCltvRejectDelta
// Create placeholder invoice.
invoice := &channeldb.Invoice{
CreationDate: i.cfg.Clock.Now(),
Terms: channeldb.ContractTerm{
FinalCltvDelta: finalCltvDelta,
Value: amt,
PaymentPreimage: preimage,
Features: features,
},
}
// Insert invoice into database. Ignore duplicates, because this
// may be a replay.
_, err = i.AddInvoice(invoice, hash)
if err != nil && err != channeldb.ErrDuplicateInvoice {
return err
}
return nil
}
// NotifyExitHopHtlc attempts to mark an invoice as settled. The return value // NotifyExitHopHtlc attempts to mark an invoice as settled. The return value
// describes how the htlc should be resolved. // describes how the htlc should be resolved.
// //
@ -710,9 +777,6 @@ func (i *InvoiceRegistry) NotifyExitHopHtlc(rHash lntypes.Hash,
circuitKey channeldb.CircuitKey, hodlChan chan<- interface{}, circuitKey channeldb.CircuitKey, hodlChan chan<- interface{},
payload Payload) (*HtlcResolution, error) { payload Payload) (*HtlcResolution, error) {
i.Lock()
defer i.Unlock()
mpp := payload.MultiPath() mpp := payload.MultiPath()
debugLog := func(s string) { debugLog := func(s string) {
@ -732,6 +796,23 @@ func (i *InvoiceRegistry) NotifyExitHopHtlc(rHash lntypes.Hash,
mpp: mpp, mpp: mpp,
} }
// Process key send if present. Do this outside of the lock, because
// AddInvoice obtains its own lock. This is no problem, because the
// operation is idempotent.
if i.cfg.AcceptKeySend {
err := i.processKeySend(updateCtx, rHash)
if err != nil {
debugLog(fmt.Sprintf("key send error: %v", err))
return NewFailureResolution(
circuitKey, currentHeight, ResultKeySendError,
), nil
}
}
i.Lock()
defer i.Unlock()
// We'll attempt to settle an invoice matching this rHash on disk (if // We'll attempt to settle an invoice matching this rHash on disk (if
// one exists). The callback will update the invoice state and/or htlcs. // one exists). The callback will update the invoice state and/or htlcs.
var ( var (

@ -598,6 +598,110 @@ func TestUnknownInvoice(t *testing.T) {
} }
} }
// TestKeySend tests receiving a spontaneous payment with and without key send
// enabled.
func TestKeySend(t *testing.T) {
t.Run("enabled", func(t *testing.T) {
testKeySend(t, true)
})
t.Run("disabled", func(t *testing.T) {
testKeySend(t, false)
})
}
// testKeySend is the inner test function that tests key send for a particular
// enabled state on the receiver end.
func testKeySend(t *testing.T, keySendEnabled bool) {
defer timeout()()
ctx := newTestContext(t)
defer ctx.cleanup()
ctx.registry.cfg.AcceptKeySend = keySendEnabled
allSubscriptions := ctx.registry.SubscribeNotifications(0, 0)
defer allSubscriptions.Cancel()
hodlChan := make(chan interface{}, 1)
amt := lnwire.MilliSatoshi(1000)
expiry := uint32(testCurrentHeight + 20)
// Create key for key send.
preimage := lntypes.Preimage{1, 2, 3}
hash := preimage.Hash()
// Try to settle invoice with an invalid key send htlc.
invalidKeySendPayload := &mockPayload{
customRecords: map[uint64][]byte{
record.KeySendType: {1, 2, 3},
},
}
resolution, err := ctx.registry.NotifyExitHopHtlc(
hash, amt, expiry,
testCurrentHeight, getCircuitKey(10), hodlChan,
invalidKeySendPayload,
)
if err != nil {
t.Fatal(err)
}
// Expect a cancel resolution with the correct outcome.
if resolution.Preimage != nil {
t.Fatal("expected cancel resolution")
}
switch {
case !keySendEnabled && resolution.Outcome != ResultInvoiceNotFound:
t.Fatal("expected invoice not found outcome")
case keySendEnabled && resolution.Outcome != ResultKeySendError:
t.Fatal("expected key send error")
}
// Try to settle invoice with a valid key send htlc.
keySendPayload := &mockPayload{
customRecords: map[uint64][]byte{
record.KeySendType: preimage[:],
},
}
resolution, err = ctx.registry.NotifyExitHopHtlc(
hash, amt, expiry,
testCurrentHeight, getCircuitKey(10), hodlChan, keySendPayload,
)
if err != nil {
t.Fatal(err)
}
// Expect a cancel resolution if key send is disabled.
if !keySendEnabled {
if resolution.Outcome != ResultInvoiceNotFound {
t.Fatal("expected key send payment not to be accepted")
}
return
}
// Otherwise we expect no error and a settle resolution for the htlc.
if resolution.Preimage == nil || *resolution.Preimage != preimage {
t.Fatal("expected valid settle event")
}
// We expect a new invoice notification to be sent out.
newInvoice := <-allSubscriptions.NewInvoices
if newInvoice.State != channeldb.ContractOpen {
t.Fatalf("expected state ContractOpen, but got %v",
newInvoice.State)
}
// We expect a settled notification to be sent out.
settledInvoice := <-allSubscriptions.SettledInvoices
if settledInvoice.State != channeldb.ContractSettled {
t.Fatalf("expected state ContractOpen, but got %v",
settledInvoice.State)
}
}
// TestMppPayment tests settling of an invoice with multiple partial payments. // TestMppPayment tests settling of an invoice with multiple partial payments.
// It covers the case where there is a mpp timeout before the whole invoice is // It covers the case where there is a mpp timeout before the whole invoice is
// paid and the case where the invoice is settled in time. // paid and the case where the invoice is settled in time.
@ -770,7 +874,7 @@ func TestInvoiceExpiryWithRegistry(t *testing.T) {
testClock.SetTime(testTime.Add(24 * time.Hour)) testClock.SetTime(testTime.Add(24 * time.Hour))
// Give some time to the watcher to cancel everything. // Give some time to the watcher to cancel everything.
time.Sleep(testTimeout) time.Sleep(500 * time.Millisecond)
registry.Stop() registry.Stop()
// Create the expected cancellation set before the final check. // Create the expected cancellation set before the final check.

@ -21,7 +21,8 @@ import (
) )
type mockPayload struct { type mockPayload struct {
mpp *record.MPP mpp *record.MPP
customRecords record.CustomSet
} }
func (p *mockPayload) MultiPath() *record.MPP { func (p *mockPayload) MultiPath() *record.MPP {
@ -29,7 +30,13 @@ func (p *mockPayload) MultiPath() *record.MPP {
} }
func (p *mockPayload) CustomRecords() record.CustomSet { func (p *mockPayload) CustomRecords() record.CustomSet {
return make(record.CustomSet) // This function should always return a map instance, but for mock
// configuration we do accept nil.
if p.customRecords == nil {
return make(record.CustomSet)
}
return p.customRecords
} }
var ( var (

@ -85,6 +85,10 @@ const (
// ResultInvoiceNotFound is returned when an attempt is made to pay an // ResultInvoiceNotFound is returned when an attempt is made to pay an
// invoice that is unknown to us. // invoice that is unknown to us.
ResultInvoiceNotFound ResultInvoiceNotFound
// ResultKeySendError is returned when we receive invalid key send
// parameters.
ResultKeySendError
) )
// String returns a human-readable representation of the invoice update result. // String returns a human-readable representation of the invoice update result.
@ -145,6 +149,9 @@ func (u ResolutionResult) String() string {
case ResultHtlcSetOverpayment: case ResultHtlcSetOverpayment:
return "mpp is overpaying set total" return "mpp is overpaying set total"
case ResultKeySendError:
return "invalid key send parameters"
default: default:
return "unknown" return "unknown"
} }

@ -2,6 +2,7 @@ package invoicesrpc
import ( import (
"encoding/hex" "encoding/hex"
"errors"
"fmt" "fmt"
"github.com/btcsuite/btcd/chaincfg" "github.com/btcsuite/btcd/chaincfg"
@ -11,15 +12,42 @@ import (
"github.com/lightningnetwork/lnd/zpay32" "github.com/lightningnetwork/lnd/zpay32"
) )
// decodePayReq decodes the invoice payment request if present. This is needed,
// because not all information is stored in dedicated invoice fields. If there
// is no payment request present, a dummy request will be returned. This can
// happen with just-in-time inserted key send invoices.
func decodePayReq(invoice *channeldb.Invoice,
activeNetParams *chaincfg.Params) (*zpay32.Invoice, error) {
paymentRequest := string(invoice.PaymentRequest)
if paymentRequest == "" {
preimage := invoice.Terms.PaymentPreimage
if preimage == channeldb.UnknownPreimage {
return nil, errors.New("cannot reconstruct pay req")
}
hash := [32]byte(preimage.Hash())
return &zpay32.Invoice{
PaymentHash: &hash,
}, nil
}
var err error
decoded, err := zpay32.Decode(paymentRequest, activeNetParams)
if err != nil {
return nil, fmt.Errorf("unable to decode payment "+
"request: %v", err)
}
return decoded, nil
}
// CreateRPCInvoice creates an *lnrpc.Invoice from the *channeldb.Invoice. // CreateRPCInvoice creates an *lnrpc.Invoice from the *channeldb.Invoice.
func CreateRPCInvoice(invoice *channeldb.Invoice, func CreateRPCInvoice(invoice *channeldb.Invoice,
activeNetParams *chaincfg.Params) (*lnrpc.Invoice, error) { activeNetParams *chaincfg.Params) (*lnrpc.Invoice, error) {
paymentRequest := string(invoice.PaymentRequest) decoded, err := decodePayReq(invoice, activeNetParams)
decoded, err := zpay32.Decode(paymentRequest, activeNetParams)
if err != nil { if err != nil {
return nil, fmt.Errorf("unable to decode payment request: %v", return nil, err
err)
} }
var descHash []byte var descHash []byte
@ -103,7 +131,7 @@ func CreateRPCInvoice(invoice *channeldb.Invoice,
CreationDate: invoice.CreationDate.Unix(), CreationDate: invoice.CreationDate.Unix(),
SettleDate: settleDate, SettleDate: settleDate,
Settled: isSettled, Settled: isSettled,
PaymentRequest: paymentRequest, PaymentRequest: string(invoice.PaymentRequest),
DescriptionHash: descHash, DescriptionHash: descHash,
Expiry: int64(invoice.Terms.Expiry.Seconds()), Expiry: int64(invoice.Terms.Expiry.Seconds()),
CltvExpiry: uint64(invoice.Terms.FinalCltvDelta), CltvExpiry: uint64(invoice.Terms.FinalCltvDelta),
@ -118,6 +146,7 @@ func CreateRPCInvoice(invoice *channeldb.Invoice,
State: state, State: state,
Htlcs: rpcHtlcs, Htlcs: rpcHtlcs,
Features: CreateRPCFeatures(invoice.Terms.Features), Features: CreateRPCFeatures(invoice.Terms.Features),
IsKeySend: len(invoice.PaymentRequest) == 0,
} }
if preimage != channeldb.UnknownPreimage { if preimage != channeldb.UnknownPreimage {

@ -7794,10 +7794,14 @@ type Invoice struct {
/// List of HTLCs paying to this invoice [EXPERIMENTAL]. /// List of HTLCs paying to this invoice [EXPERIMENTAL].
Htlcs []*InvoiceHTLC `protobuf:"bytes,22,rep,name=htlcs,proto3" json:"htlcs,omitempty"` Htlcs []*InvoiceHTLC `protobuf:"bytes,22,rep,name=htlcs,proto3" json:"htlcs,omitempty"`
/// List of features advertised on the invoice. /// List of features advertised on the invoice.
Features map[uint32]*Feature `protobuf:"bytes,24,rep,name=features,proto3" json:"features,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` Features map[uint32]*Feature `protobuf:"bytes,24,rep,name=features,proto3" json:"features,omitempty" protobuf_key:"varint,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
XXX_NoUnkeyedLiteral struct{} `json:"-"` //*
XXX_unrecognized []byte `json:"-"` //Indicates if this invoice was a spontaneous payment that arrived via keysend
XXX_sizecache int32 `json:"-"` //[EXPERIMENTAL].
IsKeySend bool `protobuf:"varint,25,opt,name=is_key_send,proto3" json:"is_key_send,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
} }
func (m *Invoice) Reset() { *m = Invoice{} } func (m *Invoice) Reset() { *m = Invoice{} }
@ -7988,6 +7992,13 @@ func (m *Invoice) GetFeatures() map[uint32]*Feature {
return nil return nil
} }
func (m *Invoice) GetIsKeySend() bool {
if m != nil {
return m.IsKeySend
}
return false
}
/// Details of an HTLC that paid to an invoice /// Details of an HTLC that paid to an invoice
type InvoiceHTLC struct { type InvoiceHTLC struct {
/// Short channel id over which the htlc was received. /// Short channel id over which the htlc was received.
@ -10496,620 +10507,621 @@ func init() {
func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) } func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) }
var fileDescriptor_77a6da22d6a3feb1 = []byte{ var fileDescriptor_77a6da22d6a3feb1 = []byte{
// 9799 bytes of a gzipped FileDescriptorProto // 9815 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7d, 0x4d, 0x6c, 0x24, 0xc9, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7d, 0x4b, 0x6c, 0x24, 0xc9,
0x95, 0x5e, 0x67, 0xfd, 0x90, 0x55, 0xaf, 0x7e, 0x58, 0x0c, 0xb2, 0xc9, 0xea, 0xea, 0x9f, 0xe9, 0x95, 0x58, 0x67, 0x7d, 0xc8, 0xaa, 0x57, 0x1f, 0x16, 0x83, 0x6c, 0xb2, 0xba, 0xfa, 0x33, 0x3d,
0x49, 0xb5, 0x66, 0x5a, 0xad, 0x11, 0xbb, 0x87, 0x92, 0x66, 0x7b, 0xa7, 0xbd, 0x5a, 0xf1, 0xaf, 0xa9, 0xd6, 0x4c, 0xab, 0x35, 0x62, 0xf7, 0x50, 0xd2, 0x6c, 0xef, 0xb4, 0x57, 0x2b, 0xfe, 0xba,
0x9b, 0xd4, 0xb0, 0x49, 0x2a, 0xc9, 0x56, 0xaf, 0xa4, 0x5d, 0xa4, 0x92, 0x55, 0x41, 0x32, 0xd5, 0x49, 0x0d, 0x9b, 0xa4, 0x92, 0x6c, 0xf5, 0x4a, 0xda, 0x45, 0x2a, 0x59, 0x15, 0x24, 0x53, 0x5d,
0x55, 0x99, 0x35, 0x99, 0x59, 0x64, 0x53, 0xf2, 0xf8, 0x60, 0xd8, 0x86, 0xe1, 0x8b, 0x21, 0x2c, 0x95, 0x59, 0xca, 0xcc, 0x22, 0x9b, 0x1a, 0x8f, 0x0f, 0x86, 0x6d, 0x18, 0xbe, 0x18, 0xc2, 0xc2,
0x0c, 0x78, 0x0d, 0x1b, 0x0b, 0x68, 0x6d, 0x18, 0x86, 0x0f, 0xf6, 0xc5, 0xc6, 0xda, 0x90, 0x4f, 0x80, 0xd7, 0xb0, 0xb1, 0x80, 0xd6, 0x86, 0x61, 0xf8, 0x60, 0x5f, 0x6c, 0xac, 0x0d, 0xf9, 0xe4,
0x3e, 0xac, 0x2f, 0xb6, 0x0f, 0x36, 0x60, 0xc0, 0x06, 0x0c, 0x2c, 0xd6, 0x07, 0x2f, 0x0c, 0xdf, 0xc3, 0xfa, 0x62, 0xf8, 0x60, 0x03, 0x06, 0x6c, 0xc0, 0xc0, 0x62, 0x7d, 0xf0, 0xc2, 0x30, 0xe0,
0x6c, 0x9f, 0x8d, 0x78, 0xf1, 0x93, 0x11, 0x99, 0x59, 0xec, 0x1e, 0x49, 0x3b, 0x97, 0x6e, 0xc6, 0x83, 0xed, 0xb3, 0x11, 0x2f, 0x3e, 0x19, 0x91, 0x99, 0xc5, 0xee, 0x91, 0x66, 0x75, 0xe9, 0x66,
0xf7, 0x22, 0xe3, 0xf7, 0xbd, 0x17, 0x2f, 0xde, 0x8b, 0x88, 0x82, 0x7a, 0x34, 0xee, 0xaf, 0x8c, 0xbc, 0xf7, 0x32, 0xbe, 0xef, 0xbd, 0x78, 0x9f, 0x88, 0x28, 0xa8, 0x47, 0xe3, 0xfe, 0xca, 0x38,
0xa3, 0x30, 0x09, 0x49, 0x75, 0x18, 0x44, 0xe3, 0x7e, 0xef, 0xd6, 0x69, 0x18, 0x9e, 0x0e, 0xe9, 0x0a, 0x93, 0x90, 0x54, 0x87, 0x41, 0x34, 0xee, 0xf7, 0x6e, 0x9d, 0x86, 0xe1, 0xe9, 0x90, 0x3e,
0x43, 0x6f, 0xec, 0x3f, 0xf4, 0x82, 0x20, 0x4c, 0xbc, 0xc4, 0x0f, 0x83, 0x98, 0x67, 0xb2, 0x7f, 0xf4, 0xc6, 0xfe, 0x43, 0x2f, 0x08, 0xc2, 0xc4, 0x4b, 0xfc, 0x30, 0x88, 0x39, 0x91, 0xfd, 0x23,
0x04, 0xed, 0x67, 0x34, 0x38, 0xa4, 0x74, 0xe0, 0xd0, 0x4f, 0x27, 0x34, 0x4e, 0xc8, 0x57, 0x61, 0x68, 0x3f, 0xa3, 0xc1, 0x21, 0xa5, 0x03, 0x87, 0xfe, 0x64, 0x42, 0xe3, 0x84, 0x7c, 0x15, 0xe6,
0xde, 0xa3, 0x3f, 0xa1, 0x74, 0xe0, 0x8e, 0xbd, 0x38, 0x1e, 0x9f, 0x45, 0x5e, 0x4c, 0xbb, 0xd6, 0x3d, 0xfa, 0x53, 0x4a, 0x07, 0xee, 0xd8, 0x8b, 0xe3, 0xf1, 0x59, 0xe4, 0xc5, 0xb4, 0x6b, 0xdd,
0x5d, 0xeb, 0x7e, 0xd3, 0xe9, 0x70, 0xc2, 0x81, 0xc2, 0xc9, 0xbb, 0xd0, 0x8c, 0x59, 0x56, 0x1a, 0xb5, 0xee, 0x37, 0x9d, 0x0e, 0x47, 0x1c, 0x28, 0x38, 0x79, 0x17, 0x9a, 0x31, 0x23, 0xa5, 0x41,
0x24, 0x51, 0x38, 0xbe, 0xec, 0x96, 0x30, 0x5f, 0x83, 0x61, 0x5b, 0x1c, 0xb2, 0x87, 0x30, 0xa7, 0x12, 0x85, 0xe3, 0xcb, 0x6e, 0x09, 0xe9, 0x1a, 0x0c, 0xb6, 0xc5, 0x41, 0xf6, 0x10, 0xe6, 0x54,
0x6a, 0x88, 0xc7, 0x61, 0x10, 0x53, 0xf2, 0x08, 0x16, 0xfb, 0xfe, 0xf8, 0x8c, 0x46, 0x2e, 0x7e, 0x0b, 0xf1, 0x38, 0x0c, 0x62, 0x4a, 0x1e, 0xc1, 0x62, 0xdf, 0x1f, 0x9f, 0xd1, 0xc8, 0xc5, 0x8f,
0x3c, 0x0a, 0xe8, 0x28, 0x0c, 0xfc, 0x7e, 0xd7, 0xba, 0x5b, 0xbe, 0x5f, 0x77, 0x08, 0xa7, 0xb1, 0x47, 0x01, 0x1d, 0x85, 0x81, 0xdf, 0xef, 0x5a, 0x77, 0xcb, 0xf7, 0xeb, 0x0e, 0xe1, 0x38, 0xf6,
0x2f, 0x9e, 0x0b, 0x0a, 0x79, 0x1f, 0xe6, 0x68, 0xc0, 0x71, 0x3a, 0xc0, 0xaf, 0x44, 0x55, 0xed, 0xc5, 0x73, 0x81, 0x21, 0xef, 0xc3, 0x1c, 0x0d, 0x38, 0x9c, 0x0e, 0xf0, 0x2b, 0xd1, 0x54, 0x3b,
0x14, 0x66, 0x1f, 0xd8, 0x7f, 0xb3, 0x04, 0xf3, 0x3b, 0x81, 0x9f, 0xbc, 0xf4, 0x86, 0x43, 0x9a, 0x05, 0xb3, 0x0f, 0xec, 0xbf, 0x59, 0x82, 0xf9, 0x9d, 0xc0, 0x4f, 0x5e, 0x7a, 0xc3, 0x21, 0x4d,
0xc8, 0x3e, 0xbd, 0x0f, 0x73, 0x17, 0x08, 0x60, 0x9f, 0x2e, 0xc2, 0x68, 0x20, 0x7a, 0xd4, 0xe6, 0xe4, 0x98, 0xde, 0x87, 0xb9, 0x0b, 0x04, 0xe0, 0x98, 0x2e, 0xc2, 0x68, 0x20, 0x46, 0xd4, 0xe6,
0xf0, 0x81, 0x40, 0xa7, 0xb6, 0xac, 0x34, 0xb5, 0x65, 0x85, 0xc3, 0x55, 0x9e, 0x32, 0x5c, 0xef, 0xe0, 0x03, 0x01, 0x9d, 0xda, 0xb3, 0xd2, 0xd4, 0x9e, 0x15, 0x4e, 0x57, 0x79, 0xca, 0x74, 0xbd,
0xc3, 0x5c, 0x44, 0xfb, 0xe1, 0x39, 0x8d, 0x2e, 0xdd, 0x0b, 0x3f, 0x18, 0x84, 0x17, 0xdd, 0xca, 0x0f, 0x73, 0x11, 0xed, 0x87, 0xe7, 0x34, 0xba, 0x74, 0x2f, 0xfc, 0x60, 0x10, 0x5e, 0x74, 0x2b,
0x5d, 0xeb, 0x7e, 0xd5, 0x69, 0x4b, 0xf8, 0x25, 0xa2, 0x64, 0x1d, 0xe6, 0xfa, 0x67, 0x5e, 0x10, 0x77, 0xad, 0xfb, 0x55, 0xa7, 0x2d, 0xc1, 0x2f, 0x11, 0x4a, 0xd6, 0x61, 0xae, 0x7f, 0xe6, 0x05,
0xd0, 0xa1, 0x7b, 0xec, 0xf5, 0x5f, 0x4d, 0xc6, 0x71, 0xb7, 0x7a, 0xd7, 0xba, 0xdf, 0x58, 0xbd, 0x01, 0x1d, 0xba, 0xc7, 0x5e, 0xff, 0xd5, 0x64, 0x1c, 0x77, 0xab, 0x77, 0xad, 0xfb, 0x8d, 0xd5,
0xb1, 0x82, 0xb3, 0xba, 0xb2, 0x71, 0xe6, 0x05, 0xeb, 0x48, 0x39, 0x0c, 0xbc, 0x71, 0x7c, 0x16, 0x1b, 0x2b, 0xb8, 0xaa, 0x2b, 0x1b, 0x67, 0x5e, 0xb0, 0x8e, 0x98, 0xc3, 0xc0, 0x1b, 0xc7, 0x67,
0x26, 0x4e, 0x5b, 0x7c, 0xc1, 0xe1, 0xd8, 0x5e, 0x04, 0xa2, 0x8f, 0x04, 0x1f, 0x7b, 0xfb, 0x9f, 0x61, 0xe2, 0xb4, 0xc5, 0x17, 0x1c, 0x1c, 0xdb, 0x8b, 0x40, 0xf4, 0x99, 0xe0, 0x73, 0x6f, 0xff,
0x5a, 0xb0, 0xf0, 0x22, 0x18, 0x86, 0xfd, 0x57, 0xbf, 0xe4, 0x10, 0x15, 0xf4, 0xa1, 0xf4, 0xb6, 0x53, 0x0b, 0x16, 0x5e, 0x04, 0xc3, 0xb0, 0xff, 0xea, 0x97, 0x9c, 0xa2, 0x82, 0x31, 0x94, 0xde,
0x7d, 0x28, 0x7f, 0xde, 0x3e, 0x2c, 0xc1, 0xa2, 0xd9, 0x58, 0xd1, 0x0b, 0x0a, 0xd7, 0xd9, 0xd7, 0x76, 0x0c, 0xe5, 0xcf, 0x3b, 0x86, 0x25, 0x58, 0x34, 0x3b, 0x2b, 0x46, 0x41, 0xe1, 0x3a, 0xfb,
0xa7, 0x54, 0x36, 0x4b, 0x76, 0xe3, 0x2b, 0xd0, 0xe9, 0x4f, 0xa2, 0x88, 0x06, 0xb9, 0x7e, 0xcc, 0xfa, 0x94, 0xca, 0x6e, 0xc9, 0x61, 0x7c, 0x05, 0x3a, 0xfd, 0x49, 0x14, 0xd1, 0x20, 0x37, 0x8e,
0x09, 0x5c, 0x75, 0xe4, 0x5d, 0x68, 0x06, 0xf4, 0x22, 0xcd, 0x26, 0x78, 0x37, 0xa0, 0x17, 0x32, 0x39, 0x01, 0x57, 0x03, 0x79, 0x17, 0x9a, 0x01, 0xbd, 0x48, 0xc9, 0x04, 0xef, 0x06, 0xf4, 0x42,
0x8b, 0xdd, 0x85, 0xa5, 0x6c, 0x35, 0xa2, 0x01, 0x7f, 0x6a, 0x41, 0xe5, 0x45, 0xf2, 0x3a, 0x24, 0x92, 0xd8, 0x5d, 0x58, 0xca, 0x36, 0x23, 0x3a, 0xf0, 0xa7, 0x16, 0x54, 0x5e, 0x24, 0xaf, 0x43,
0x2b, 0x50, 0x49, 0x2e, 0xc7, 0x5c, 0x42, 0xda, 0xab, 0x44, 0x74, 0x6d, 0x6d, 0x30, 0x88, 0x68, 0xb2, 0x02, 0x95, 0xe4, 0x72, 0xcc, 0x25, 0xa4, 0xbd, 0x4a, 0xc4, 0xd0, 0xd6, 0x06, 0x83, 0x88,
0x1c, 0x1f, 0x5d, 0x8e, 0xa9, 0xd3, 0xf4, 0x78, 0xc2, 0x65, 0xf9, 0x48, 0x17, 0x66, 0x45, 0x1a, 0xc6, 0xf1, 0xd1, 0xe5, 0x98, 0x3a, 0x4d, 0x8f, 0x17, 0x5c, 0x46, 0x47, 0xba, 0x30, 0x2b, 0xca,
0x2b, 0xac, 0x3b, 0x32, 0x49, 0xee, 0x00, 0x78, 0xa3, 0x70, 0x12, 0x24, 0x6e, 0xec, 0x25, 0x38, 0xd8, 0x60, 0xdd, 0x91, 0x45, 0x72, 0x07, 0xc0, 0x1b, 0x85, 0x93, 0x20, 0x71, 0x63, 0x2f, 0xc1,
0x54, 0x65, 0x47, 0x43, 0xc8, 0x2d, 0xa8, 0x8f, 0x5f, 0xb9, 0x71, 0x3f, 0xf2, 0xc7, 0x09, 0xb2, 0xa9, 0x2a, 0x3b, 0x1a, 0x84, 0xdc, 0x82, 0xfa, 0xf8, 0x95, 0x1b, 0xf7, 0x23, 0x7f, 0x9c, 0x20,
0x4d, 0xdd, 0x49, 0x01, 0xf2, 0x55, 0xa8, 0x85, 0x93, 0x64, 0x1c, 0xfa, 0x41, 0x22, 0x58, 0x65, 0xdb, 0xd4, 0x9d, 0x14, 0x40, 0xbe, 0x0a, 0xb5, 0x70, 0x92, 0x8c, 0x43, 0x3f, 0x48, 0x04, 0xab,
0x4e, 0xb4, 0x65, 0x7f, 0x92, 0x1c, 0x30, 0xd8, 0x51, 0x19, 0xc8, 0x3d, 0x68, 0xf5, 0xc3, 0xe0, 0xcc, 0x89, 0xbe, 0xec, 0x4f, 0x92, 0x03, 0x06, 0x76, 0x14, 0x01, 0xb9, 0x07, 0xad, 0x7e, 0x18,
0xc4, 0x8f, 0x46, 0x5c, 0x19, 0x74, 0x67, 0xb0, 0x36, 0x13, 0xb4, 0xff, 0x55, 0x09, 0x1a, 0x47, 0x9c, 0xf8, 0xd1, 0x88, 0x2b, 0x83, 0xee, 0x0c, 0xb6, 0x66, 0x02, 0xed, 0x7f, 0x55, 0x82, 0xc6,
0x91, 0x17, 0xc4, 0x5e, 0x9f, 0x01, 0xac, 0xe9, 0xc9, 0x6b, 0xf7, 0xcc, 0x8b, 0xcf, 0xb0, 0xb7, 0x51, 0xe4, 0x05, 0xb1, 0xd7, 0x67, 0x00, 0xd6, 0xf5, 0xe4, 0xb5, 0x7b, 0xe6, 0xc5, 0x67, 0x38,
0x75, 0x47, 0x26, 0xc9, 0x12, 0xcc, 0xf0, 0x86, 0x62, 0x9f, 0xca, 0x8e, 0x48, 0x91, 0x0f, 0x60, 0xda, 0xba, 0x23, 0x8b, 0x64, 0x09, 0x66, 0x78, 0x47, 0x71, 0x4c, 0x65, 0x47, 0x94, 0xc8, 0x07,
0x3e, 0x98, 0x8c, 0x5c, 0xb3, 0xae, 0x32, 0x72, 0x4b, 0x9e, 0xc0, 0x06, 0xe0, 0x98, 0xcd, 0x35, 0x30, 0x1f, 0x4c, 0x46, 0xae, 0xd9, 0x56, 0x19, 0xb9, 0x25, 0x8f, 0x60, 0x13, 0x70, 0xcc, 0xd6,
0xaf, 0x82, 0xf7, 0x50, 0x43, 0x88, 0x0d, 0x4d, 0x91, 0xa2, 0xfe, 0xe9, 0x19, 0xef, 0x66, 0xd5, 0x9a, 0x37, 0xc1, 0x47, 0xa8, 0x41, 0x88, 0x0d, 0x4d, 0x51, 0xa2, 0xfe, 0xe9, 0x19, 0x1f, 0x66,
0x31, 0x30, 0x56, 0x46, 0xe2, 0x8f, 0xa8, 0x1b, 0x27, 0xde, 0x68, 0x2c, 0xba, 0xa5, 0x21, 0x48, 0xd5, 0x31, 0x60, 0xac, 0x8e, 0xc4, 0x1f, 0x51, 0x37, 0x4e, 0xbc, 0xd1, 0x58, 0x0c, 0x4b, 0x83,
0x0f, 0x13, 0x6f, 0xe8, 0x9e, 0x50, 0x1a, 0x77, 0x67, 0x05, 0x5d, 0x21, 0xe4, 0x3d, 0x68, 0x0f, 0x20, 0x3e, 0x4c, 0xbc, 0xa1, 0x7b, 0x42, 0x69, 0xdc, 0x9d, 0x15, 0x78, 0x05, 0x21, 0xef, 0x41,
0x68, 0x9c, 0xb8, 0x62, 0x52, 0x68, 0xdc, 0xad, 0xa1, 0xe8, 0x67, 0x50, 0x56, 0x4e, 0xe4, 0x5d, 0x7b, 0x40, 0xe3, 0xc4, 0x15, 0x8b, 0x42, 0xe3, 0x6e, 0x0d, 0x45, 0x3f, 0x03, 0x65, 0xf5, 0x44,
0xb8, 0x6c, 0x00, 0xe8, 0xeb, 0x6e, 0x9d, 0xb7, 0x35, 0x45, 0x18, 0xe7, 0x3c, 0xa3, 0x89, 0x36, 0xde, 0x85, 0xcb, 0x26, 0x80, 0xbe, 0xee, 0xd6, 0x79, 0x5f, 0x53, 0x08, 0xe3, 0x9c, 0x67, 0x34,
0x7a, 0xb1, 0xe0, 0x50, 0x7b, 0x17, 0x88, 0x06, 0x6f, 0xd2, 0xc4, 0xf3, 0x87, 0x31, 0xf9, 0x08, 0xd1, 0x66, 0x2f, 0x16, 0x1c, 0x6a, 0xef, 0x02, 0xd1, 0xc0, 0x9b, 0x34, 0xf1, 0xfc, 0x61, 0x4c,
0x9a, 0x89, 0x96, 0x19, 0x55, 0x61, 0x43, 0xb1, 0x93, 0xf6, 0x81, 0x63, 0xe4, 0xb3, 0xcf, 0xa0, 0x3e, 0x82, 0x66, 0xa2, 0x11, 0xa3, 0x2a, 0x6c, 0x28, 0x76, 0xd2, 0x3e, 0x70, 0x0c, 0x3a, 0xfb,
0xf6, 0x94, 0xd2, 0x5d, 0x7f, 0xe4, 0x27, 0x64, 0x09, 0xaa, 0x27, 0xfe, 0x6b, 0xca, 0x19, 0xbe, 0x0c, 0x6a, 0x4f, 0x29, 0xdd, 0xf5, 0x47, 0x7e, 0x42, 0x96, 0xa0, 0x7a, 0xe2, 0xbf, 0xa6, 0x9c,
0xbc, 0x7d, 0xcd, 0xe1, 0x49, 0xf2, 0x0e, 0x00, 0xfe, 0xe1, 0x8e, 0x14, 0x63, 0x6d, 0x5f, 0x73, 0xe1, 0xcb, 0xdb, 0xd7, 0x1c, 0x5e, 0x24, 0xef, 0x00, 0xe0, 0x1f, 0xee, 0x48, 0x31, 0xd6, 0xf6,
0xea, 0x88, 0x3d, 0x67, 0x9c, 0xd5, 0x83, 0xd9, 0x31, 0x8d, 0xfa, 0x54, 0xce, 0xdf, 0xf6, 0x35, 0x35, 0xa7, 0x8e, 0xb0, 0xe7, 0x8c, 0xb3, 0x7a, 0x30, 0x3b, 0xa6, 0x51, 0x9f, 0xca, 0xf5, 0xdb,
0x47, 0x02, 0xeb, 0xb3, 0x50, 0x1d, 0xb2, 0xd2, 0xed, 0x3f, 0xa9, 0x42, 0xe3, 0x90, 0x06, 0x4a, 0xbe, 0xe6, 0x48, 0xc0, 0xfa, 0x2c, 0x54, 0x87, 0xac, 0x76, 0xfb, 0x4f, 0xaa, 0xd0, 0x38, 0xa4,
0xd2, 0x08, 0x54, 0xd8, 0x98, 0x08, 0xe9, 0xc2, 0xbf, 0xc9, 0x97, 0xa0, 0x81, 0xe3, 0x14, 0x27, 0x81, 0x92, 0x34, 0x02, 0x15, 0x36, 0x27, 0x42, 0xba, 0xf0, 0x6f, 0xf2, 0x25, 0x68, 0xe0, 0x3c,
0x91, 0x1f, 0x9c, 0x72, 0x06, 0x5f, 0x2f, 0x75, 0x2d, 0x07, 0x18, 0x7c, 0x88, 0x28, 0xe9, 0x40, 0xc5, 0x49, 0xe4, 0x07, 0xa7, 0x9c, 0xc1, 0xd7, 0x4b, 0x5d, 0xcb, 0x01, 0x06, 0x3e, 0x44, 0x28,
0xd9, 0x1b, 0x49, 0x06, 0x67, 0x7f, 0x92, 0x1b, 0x50, 0xf3, 0x46, 0x09, 0x6f, 0x5e, 0x13, 0xe1, 0xe9, 0x40, 0xd9, 0x1b, 0x49, 0x06, 0x67, 0x7f, 0x92, 0x1b, 0x50, 0xf3, 0x46, 0x09, 0xef, 0x5e,
0x59, 0x6f, 0x94, 0x60, 0xd3, 0xde, 0x85, 0xe6, 0xd8, 0xbb, 0x1c, 0x31, 0x79, 0x56, 0x5c, 0xd1, 0x13, 0xc1, 0xb3, 0xde, 0x28, 0xc1, 0xae, 0xbd, 0x0b, 0xcd, 0xb1, 0x77, 0x39, 0x62, 0xf2, 0xac,
0x74, 0x1a, 0x02, 0xdb, 0x66, 0x6c, 0xb1, 0x0a, 0x0b, 0x7a, 0x16, 0x59, 0x79, 0x55, 0x55, 0x3e, 0xb8, 0xa2, 0xe9, 0x34, 0x04, 0x6c, 0x9b, 0xb1, 0xc5, 0x2a, 0x2c, 0xe8, 0x24, 0xb2, 0xf1, 0xaa,
0xaf, 0xe5, 0x16, 0x6d, 0x78, 0x1f, 0xe6, 0xe4, 0x37, 0x11, 0xef, 0x0f, 0xf2, 0x4a, 0xdd, 0x69, 0x6a, 0x7c, 0x5e, 0xa3, 0x16, 0x7d, 0x78, 0x1f, 0xe6, 0xe4, 0x37, 0x11, 0x1f, 0x0f, 0xf2, 0x4a,
0x0b, 0x58, 0xf6, 0xf2, 0x3e, 0x74, 0x4e, 0xfc, 0xc0, 0x1b, 0xba, 0xfd, 0x61, 0x72, 0xee, 0x0e, 0xdd, 0x69, 0x0b, 0xb0, 0x1c, 0xe5, 0x7d, 0xe8, 0x9c, 0xf8, 0x81, 0x37, 0x74, 0xfb, 0xc3, 0xe4,
0xe8, 0x30, 0xf1, 0x90, 0x6b, 0xaa, 0x4e, 0x1b, 0xf1, 0x8d, 0x61, 0x72, 0xbe, 0xc9, 0x50, 0xf2, 0xdc, 0x1d, 0xd0, 0x61, 0xe2, 0x21, 0xd7, 0x54, 0x9d, 0x36, 0xc2, 0x37, 0x86, 0xc9, 0xf9, 0x26,
0x01, 0xd4, 0x4f, 0x28, 0x75, 0x71, 0xb0, 0xba, 0x35, 0x43, 0x02, 0xe5, 0x0c, 0x39, 0xb5, 0x13, 0x83, 0x92, 0x0f, 0xa0, 0x7e, 0x42, 0xa9, 0x8b, 0x93, 0xd5, 0xad, 0x19, 0x12, 0x28, 0x57, 0xc8,
0x39, 0x57, 0x1f, 0x40, 0x27, 0x9c, 0x24, 0xa7, 0xa1, 0x1f, 0x9c, 0xba, 0x4c, 0xe7, 0xb9, 0xfe, 0xa9, 0x9d, 0xc8, 0xb5, 0xfa, 0x00, 0x3a, 0xe1, 0x24, 0x39, 0x0d, 0xfd, 0xe0, 0xd4, 0x65, 0x3a,
0x00, 0xb9, 0xa8, 0xb2, 0x5e, 0x7a, 0x64, 0x39, 0x6d, 0x49, 0x63, 0xda, 0x67, 0x67, 0x40, 0xde, 0xcf, 0xf5, 0x07, 0xc8, 0x45, 0x95, 0xf5, 0xd2, 0x23, 0xcb, 0x69, 0x4b, 0x1c, 0xd3, 0x3e, 0x3b,
0x83, 0xb9, 0xa1, 0x17, 0x27, 0xee, 0x59, 0x38, 0x76, 0xc7, 0x93, 0xe3, 0x57, 0xf4, 0xb2, 0xdb, 0x03, 0xf2, 0x1e, 0xcc, 0x0d, 0xbd, 0x38, 0x71, 0xcf, 0xc2, 0xb1, 0x3b, 0x9e, 0x1c, 0xbf, 0xa2,
0xc2, 0x81, 0x68, 0x31, 0x78, 0x3b, 0x1c, 0x1f, 0x20, 0x48, 0x6e, 0x03, 0x60, 0x3b, 0x79, 0x23, 0x97, 0xdd, 0x16, 0x4e, 0x44, 0x8b, 0x81, 0xb7, 0xc3, 0xf1, 0x01, 0x02, 0xc9, 0x6d, 0x00, 0xec,
0xe0, 0xae, 0x75, 0xbf, 0xe5, 0xd4, 0x19, 0xc2, 0x2b, 0xfd, 0x3e, 0x2c, 0xe0, 0xf4, 0xf4, 0x27, 0x27, 0xef, 0x04, 0xdc, 0xb5, 0xee, 0xb7, 0x9c, 0x3a, 0x83, 0xf0, 0x46, 0xbf, 0x0f, 0x0b, 0xb8,
0x71, 0x12, 0x8e, 0x5c, 0xa6, 0xaf, 0xa3, 0x41, 0xdc, 0x6d, 0x20, 0xaf, 0x7d, 0x45, 0x34, 0x56, 0x3c, 0xfd, 0x49, 0x9c, 0x84, 0x23, 0x97, 0xe9, 0xeb, 0x68, 0x10, 0x77, 0x1b, 0xc8, 0x6b, 0x5f,
0x9b, 0xe3, 0x95, 0x4d, 0x1a, 0x27, 0x1b, 0x98, 0xd9, 0xe1, 0x79, 0xd9, 0xa2, 0x7e, 0xe9, 0xcc, 0x11, 0x9d, 0xd5, 0xd6, 0x78, 0x65, 0x93, 0xc6, 0xc9, 0x06, 0x12, 0x3b, 0x9c, 0x96, 0x6d, 0xea,
0x0f, 0xb2, 0x38, 0xf9, 0x00, 0x88, 0x37, 0x1c, 0x86, 0x17, 0x6e, 0x4c, 0x87, 0x27, 0xae, 0x18, 0x97, 0xce, 0xfc, 0x20, 0x0b, 0x27, 0x1f, 0x00, 0xf1, 0x86, 0xc3, 0xf0, 0xc2, 0x8d, 0xe9, 0xf0,
0xc4, 0x6e, 0xfb, 0xae, 0x75, 0xbf, 0xe6, 0x74, 0x90, 0x72, 0x48, 0x87, 0x27, 0x07, 0x1c, 0x27, 0xc4, 0x15, 0x93, 0xd8, 0x6d, 0xdf, 0xb5, 0xee, 0xd7, 0x9c, 0x0e, 0x62, 0x0e, 0xe9, 0xf0, 0xe4,
0x1f, 0x41, 0x0b, 0x1b, 0x72, 0x42, 0xbd, 0x64, 0x12, 0xd1, 0xb8, 0x3b, 0x77, 0xb7, 0x7c, 0xbf, 0x80, 0xc3, 0xc9, 0x47, 0xd0, 0xc2, 0x8e, 0x9c, 0x50, 0x2f, 0x99, 0x44, 0x34, 0xee, 0xce, 0xdd,
0xbd, 0x3a, 0xaf, 0xc6, 0x0b, 0xe1, 0x75, 0x3f, 0x71, 0x9a, 0x2c, 0x9f, 0x48, 0xc7, 0xbd, 0x4d, 0x2d, 0xdf, 0x6f, 0xaf, 0xce, 0xab, 0xf9, 0x42, 0xf0, 0xba, 0x9f, 0x38, 0x4d, 0x46, 0x27, 0xca,
0x58, 0x2a, 0x6e, 0x12, 0x63, 0x2a, 0x36, 0x2a, 0x8c, 0x19, 0x2b, 0x0e, 0xfb, 0x93, 0x2c, 0x42, 0x71, 0x6f, 0x13, 0x96, 0x8a, 0xbb, 0xc4, 0x98, 0x8a, 0xcd, 0x0a, 0x63, 0xc6, 0x8a, 0xc3, 0xfe,
0xf5, 0xdc, 0x1b, 0x4e, 0xa8, 0xd0, 0xeb, 0x3c, 0xf1, 0x71, 0xe9, 0xb1, 0x65, 0xff, 0xb1, 0x05, 0x24, 0x8b, 0x50, 0x3d, 0xf7, 0x86, 0x13, 0x2a, 0xf4, 0x3a, 0x2f, 0x7c, 0x5c, 0x7a, 0x6c, 0xd9,
0x4d, 0xde, 0x4b, 0x61, 0x8f, 0xdc, 0x83, 0x96, 0xe4, 0x06, 0x1a, 0x45, 0x61, 0x24, 0xd4, 0x9b, 0x7f, 0x6c, 0x41, 0x93, 0x8f, 0x52, 0xd8, 0x23, 0xf7, 0xa0, 0x25, 0xb9, 0x81, 0x46, 0x51, 0x18,
0x09, 0x92, 0x07, 0xd0, 0x91, 0xc0, 0x38, 0xa2, 0xfe, 0xc8, 0x3b, 0x95, 0x65, 0xe7, 0x70, 0xb2, 0x09, 0xf5, 0x66, 0x02, 0xc9, 0x03, 0xe8, 0x48, 0xc0, 0x38, 0xa2, 0xfe, 0xc8, 0x3b, 0x95, 0x75,
0x9a, 0x96, 0x18, 0x85, 0x93, 0x84, 0x8a, 0x95, 0xaf, 0x29, 0x3a, 0xe8, 0x30, 0xcc, 0x31, 0xb3, 0xe7, 0xe0, 0x64, 0x35, 0xad, 0x31, 0x0a, 0x27, 0x09, 0x15, 0x3b, 0x5f, 0x53, 0x0c, 0xd0, 0x61,
0x30, 0xf5, 0x56, 0xc0, 0xea, 0x06, 0x66, 0xff, 0x1d, 0x0b, 0x08, 0x6b, 0xfa, 0x51, 0xc8, 0x8b, 0x30, 0xc7, 0x24, 0x61, 0xea, 0xad, 0x80, 0xd5, 0x0d, 0x98, 0xfd, 0x77, 0x2c, 0x20, 0xac, 0xeb,
0x10, 0x5c, 0x9a, 0x95, 0x12, 0xeb, 0xad, 0xa5, 0xa4, 0x74, 0x95, 0x94, 0xd8, 0x50, 0xe5, 0xad, 0x47, 0x21, 0xaf, 0x42, 0x70, 0x69, 0x56, 0x4a, 0xac, 0xb7, 0x96, 0x92, 0xd2, 0x55, 0x52, 0x62,
0xaf, 0x14, 0xb4, 0x9e, 0x93, 0xbe, 0x53, 0xa9, 0x95, 0x3b, 0x15, 0xfb, 0xbf, 0x96, 0x61, 0x71, 0x43, 0x95, 0xf7, 0xbe, 0x52, 0xd0, 0x7b, 0x8e, 0xfa, 0x4e, 0xa5, 0x56, 0xee, 0x54, 0xec, 0xff,
0x83, 0x2f, 0xdd, 0x6b, 0xfd, 0x3e, 0x1d, 0x2b, 0xf9, 0x79, 0x07, 0x1a, 0x41, 0x38, 0xa0, 0x92, 0x52, 0x86, 0xc5, 0x0d, 0xbe, 0x75, 0xaf, 0xf5, 0xfb, 0x74, 0xac, 0xe4, 0xe7, 0x1d, 0x68, 0x04,
0x6b, 0x79, 0xc3, 0x80, 0x41, 0x1a, 0xcb, 0x9e, 0x79, 0x7e, 0xc0, 0x1b, 0xce, 0xc7, 0xb3, 0x8e, 0xe1, 0x80, 0x4a, 0xae, 0xe5, 0x1d, 0x03, 0x06, 0xd2, 0x58, 0xf6, 0xcc, 0xf3, 0x03, 0xde, 0x71,
0x08, 0x36, 0xfb, 0x3d, 0x98, 0x1b, 0xd3, 0x60, 0xa0, 0x8b, 0x09, 0x37, 0xae, 0x5a, 0x02, 0x16, 0x3e, 0x9f, 0x75, 0x84, 0x60, 0xb7, 0xdf, 0x83, 0xb9, 0x31, 0x0d, 0x06, 0xba, 0x98, 0x70, 0xe3,
0x12, 0xf2, 0x0e, 0x34, 0x4e, 0x26, 0x3c, 0x1f, 0x53, 0x2e, 0x15, 0xe4, 0x03, 0x10, 0xd0, 0x1a, 0xaa, 0x25, 0xc0, 0x42, 0x42, 0xde, 0x81, 0xc6, 0xc9, 0x84, 0xd3, 0x31, 0xe5, 0x52, 0x41, 0x3e,
0xd7, 0x31, 0xe3, 0x49, 0x7c, 0x86, 0xd4, 0x2a, 0x52, 0x67, 0x59, 0x9a, 0x91, 0x6e, 0x03, 0x0c, 0x00, 0x01, 0x5a, 0xe3, 0x3a, 0x66, 0x3c, 0x89, 0xcf, 0x10, 0x5b, 0x45, 0xec, 0x2c, 0x2b, 0x33,
0x26, 0x71, 0x22, 0xa4, 0x66, 0x06, 0x89, 0x75, 0x86, 0x70, 0xa9, 0xf9, 0x1a, 0x2c, 0x8c, 0xbc, 0xd4, 0x6d, 0x80, 0xc1, 0x24, 0x4e, 0x84, 0xd4, 0xcc, 0x20, 0xb2, 0xce, 0x20, 0x5c, 0x6a, 0xbe,
0xd7, 0x2e, 0xf2, 0x8f, 0xeb, 0x07, 0xee, 0xc9, 0x10, 0x57, 0x9f, 0x59, 0xcc, 0xd7, 0x19, 0x79, 0x06, 0x0b, 0x23, 0xef, 0xb5, 0x8b, 0xfc, 0xe3, 0xfa, 0x81, 0x7b, 0x32, 0xc4, 0xdd, 0x67, 0x16,
0xaf, 0xbf, 0xc7, 0x28, 0x3b, 0xc1, 0x53, 0xc4, 0x99, 0x6a, 0x91, 0x66, 0x4f, 0x44, 0x63, 0x1a, 0xe9, 0x3a, 0x23, 0xef, 0xf5, 0xf7, 0x18, 0x66, 0x27, 0x78, 0x8a, 0x70, 0xa6, 0x5a, 0xa4, 0xd9,
0x9d, 0x53, 0xd4, 0x06, 0x15, 0x65, 0xdb, 0x38, 0x1c, 0x65, 0x2d, 0x1a, 0xb1, 0x7e, 0x27, 0xc3, 0x13, 0xd1, 0x98, 0x46, 0xe7, 0x14, 0xb5, 0x41, 0x45, 0xd9, 0x36, 0x0e, 0x87, 0xb2, 0x1e, 0x8d,
0x3e, 0x17, 0x7d, 0x67, 0x76, 0xe4, 0x07, 0xdb, 0xc9, 0xb0, 0x4f, 0x6e, 0x01, 0x30, 0x5d, 0x32, 0xd8, 0xb8, 0x93, 0x61, 0x9f, 0x8b, 0xbe, 0x33, 0x3b, 0xf2, 0x83, 0xed, 0x64, 0xd8, 0x27, 0xb7,
0xa6, 0x91, 0xfb, 0xea, 0x02, 0xe5, 0xb8, 0x82, 0xba, 0xe3, 0x80, 0x46, 0x9f, 0x5c, 0x90, 0x9b, 0x00, 0x98, 0x2e, 0x19, 0xd3, 0xc8, 0x7d, 0x75, 0x81, 0x72, 0x5c, 0x41, 0xdd, 0x71, 0x40, 0xa3,
0x50, 0xef, 0xc7, 0xa8, 0x8c, 0xbc, 0xcb, 0x6e, 0x03, 0x85, 0xbc, 0xd6, 0x8f, 0x99, 0x1a, 0xf2, 0x4f, 0x2e, 0xc8, 0x4d, 0xa8, 0xf7, 0x63, 0x54, 0x46, 0xde, 0x65, 0xb7, 0x81, 0x42, 0x5e, 0xeb,
0x2e, 0x99, 0x20, 0xb2, 0xd6, 0x7a, 0x38, 0x0b, 0x74, 0x80, 0xc5, 0xc7, 0xa8, 0x55, 0x5b, 0xd8, 0xc7, 0x4c, 0x0d, 0x79, 0x97, 0x4c, 0x10, 0x59, 0x6f, 0x3d, 0x5c, 0x05, 0x3a, 0xc0, 0xea, 0x63,
0xd8, 0x35, 0x41, 0x60, 0xf5, 0xc4, 0xe4, 0x4b, 0xd0, 0x92, 0x8d, 0x3d, 0x19, 0x7a, 0xa7, 0x31, 0xd4, 0xaa, 0x2d, 0xec, 0xec, 0x9a, 0x40, 0xb0, 0x76, 0x62, 0xf2, 0x25, 0x68, 0xc9, 0xce, 0x9e,
0xaa, 0x95, 0x96, 0xd3, 0x14, 0xe0, 0x53, 0x86, 0xd9, 0x2f, 0xb9, 0xb1, 0xa5, 0xcd, 0xad, 0x90, 0x0c, 0xbd, 0xd3, 0x18, 0xd5, 0x4a, 0xcb, 0x69, 0x0a, 0xe0, 0x53, 0x06, 0xb3, 0x5f, 0x72, 0x63,
0x1b, 0xb6, 0xec, 0x23, 0x82, 0xf3, 0x5a, 0x73, 0x44, 0xaa, 0x68, 0xd2, 0x4a, 0x05, 0x93, 0x66, 0x4b, 0x5b, 0x5b, 0x21, 0x37, 0x6c, 0xdb, 0x47, 0x08, 0xae, 0x6b, 0xcd, 0x11, 0xa5, 0xa2, 0x45,
0xff, 0xdc, 0x82, 0xa6, 0x28, 0x19, 0x2d, 0x14, 0xf2, 0x08, 0x88, 0x9c, 0xc5, 0xe4, 0xb5, 0x3f, 0x2b, 0x15, 0x2c, 0x9a, 0xfd, 0x73, 0x0b, 0x9a, 0xa2, 0x66, 0xb4, 0x50, 0xc8, 0x23, 0x20, 0x72,
0x70, 0x8f, 0x2f, 0x13, 0x1a, 0x73, 0xa6, 0xd9, 0xbe, 0xe6, 0x14, 0xd0, 0x98, 0x1e, 0x35, 0xd0, 0x15, 0x93, 0xd7, 0xfe, 0xc0, 0x3d, 0xbe, 0x4c, 0x68, 0xcc, 0x99, 0x66, 0xfb, 0x9a, 0x53, 0x80,
0x38, 0x89, 0x38, 0x4f, 0x6f, 0x5f, 0x73, 0x72, 0x14, 0x26, 0x62, 0xcc, 0x06, 0x9a, 0x24, 0xae, 0x63, 0x7a, 0xd4, 0x80, 0xc6, 0x49, 0xc4, 0x79, 0x7a, 0xfb, 0x9a, 0x93, 0xc3, 0x30, 0x11, 0x63,
0x1f, 0x0c, 0xe8, 0x6b, 0x64, 0xa5, 0x96, 0x63, 0x60, 0xeb, 0x6d, 0x68, 0xea, 0xdf, 0xd9, 0x3f, 0x36, 0xd0, 0x24, 0x71, 0xfd, 0x60, 0x40, 0x5f, 0x23, 0x2b, 0xb5, 0x1c, 0x03, 0xb6, 0xde, 0x86,
0x86, 0x9a, 0xb4, 0xa0, 0xd0, 0x7a, 0xc8, 0xb4, 0xcb, 0xd1, 0x10, 0xd2, 0x83, 0x9a, 0xd9, 0x0a, 0xa6, 0xfe, 0x9d, 0xfd, 0x63, 0xa8, 0x49, 0x0b, 0x0a, 0xad, 0x87, 0x4c, 0xbf, 0x1c, 0x0d, 0x42,
0xa7, 0xf6, 0x79, 0xea, 0xb6, 0xbf, 0x05, 0x9d, 0x5d, 0xc6, 0x44, 0x01, 0x63, 0x5a, 0x61, 0x16, 0x7a, 0x50, 0x33, 0x7b, 0xe1, 0xd4, 0x3e, 0x4f, 0xdb, 0xf6, 0xb7, 0xa0, 0xb3, 0xcb, 0x98, 0x28,
0x2e, 0xc1, 0x8c, 0x26, 0x3c, 0x75, 0x47, 0xa4, 0xd8, 0xfa, 0x7b, 0x16, 0xc6, 0x89, 0xa8, 0x07, 0x60, 0x4c, 0x2b, 0xcc, 0xc2, 0x25, 0x98, 0xd1, 0x84, 0xa7, 0xee, 0x88, 0x12, 0xdb, 0x7f, 0xcf,
0xff, 0xb6, 0xff, 0xc4, 0x02, 0xb2, 0x15, 0x27, 0xfe, 0xc8, 0x4b, 0xe8, 0x53, 0xaa, 0xd4, 0xc3, 0xc2, 0x38, 0x11, 0xed, 0xe0, 0xdf, 0xf6, 0x9f, 0x58, 0x40, 0xb6, 0xe2, 0xc4, 0x1f, 0x79, 0x09,
0x3e, 0x34, 0x59, 0x69, 0x47, 0xe1, 0x1a, 0x37, 0xd2, 0xb8, 0x71, 0xf1, 0x55, 0x21, 0xce, 0xf9, 0x7d, 0x4a, 0x95, 0x7a, 0xd8, 0x87, 0x26, 0xab, 0xed, 0x28, 0x5c, 0xe3, 0x46, 0x1a, 0x37, 0x2e,
0x0f, 0x56, 0xf4, 0xdc, 0x5c, 0xe5, 0x1b, 0x05, 0x30, 0x69, 0x4b, 0xbc, 0xe8, 0x94, 0x26, 0x68, 0xbe, 0x2a, 0xc4, 0x39, 0xff, 0xc1, 0x8a, 0x4e, 0xcd, 0x55, 0xbe, 0x51, 0x01, 0x93, 0xb6, 0xc4,
0xc1, 0x09, 0xfb, 0x1f, 0x38, 0xb4, 0x11, 0x06, 0x27, 0xbd, 0xdf, 0x86, 0xf9, 0x5c, 0x19, 0xba, 0x8b, 0x4e, 0x69, 0x82, 0x16, 0x9c, 0xb0, 0xff, 0x81, 0x83, 0x36, 0xc2, 0xe0, 0xa4, 0xf7, 0xdb,
0x8e, 0xae, 0x17, 0xe8, 0xe8, 0xb2, 0xae, 0xa3, 0xfb, 0xb0, 0x60, 0xb4, 0x4b, 0x70, 0x5c, 0x17, 0x30, 0x9f, 0xab, 0x43, 0xd7, 0xd1, 0xf5, 0x02, 0x1d, 0x5d, 0xd6, 0x75, 0x74, 0x1f, 0x16, 0x8c,
0x66, 0x99, 0x60, 0x30, 0x43, 0xc1, 0xe2, 0x86, 0x82, 0x48, 0x92, 0x55, 0x58, 0x3c, 0xa1, 0x34, 0x7e, 0x09, 0x8e, 0xeb, 0xc2, 0x2c, 0x13, 0x0c, 0x66, 0x28, 0x58, 0xdc, 0x50, 0x10, 0x45, 0xb2,
0xf2, 0x12, 0x4c, 0xa2, 0xe8, 0xb0, 0x39, 0x11, 0x25, 0x17, 0xd2, 0xec, 0x3f, 0xb3, 0x60, 0x8e, 0x0a, 0x8b, 0x27, 0x94, 0x46, 0x5e, 0x82, 0x45, 0x14, 0x1d, 0xb6, 0x26, 0xa2, 0xe6, 0x42, 0x9c,
0x69, 0xd3, 0xe7, 0x5e, 0x70, 0x29, 0xc7, 0x6a, 0xb7, 0x70, 0xac, 0xee, 0x6b, 0x8b, 0xa3, 0x96, 0xfd, 0x67, 0x16, 0xcc, 0x31, 0x6d, 0xfa, 0xdc, 0x0b, 0x2e, 0xe5, 0x5c, 0xed, 0x16, 0xce, 0xd5,
0xfb, 0xf3, 0x0e, 0x54, 0x39, 0x3b, 0x50, 0xe4, 0x2e, 0x34, 0x8d, 0xe6, 0x56, 0xb9, 0x45, 0x1a, 0x7d, 0x6d, 0x73, 0xd4, 0xa8, 0x3f, 0xef, 0x44, 0x95, 0xb3, 0x13, 0x45, 0xee, 0x42, 0xd3, 0xe8,
0x7b, 0xc9, 0x01, 0x8d, 0xd6, 0x2f, 0x13, 0xfa, 0xab, 0x0f, 0xe5, 0x7b, 0xd0, 0x49, 0x9b, 0x2d, 0x6e, 0x95, 0x5b, 0xa4, 0xb1, 0x97, 0x1c, 0xd0, 0x68, 0xfd, 0x32, 0xa1, 0xbf, 0xfa, 0x54, 0xbe,
0xc6, 0x91, 0x40, 0x85, 0x31, 0xa6, 0x28, 0x00, 0xff, 0xb6, 0xff, 0xbe, 0xc5, 0x33, 0x6e, 0x84, 0x07, 0x9d, 0xb4, 0xdb, 0x62, 0x1e, 0x09, 0x54, 0x18, 0x63, 0x8a, 0x0a, 0xf0, 0x6f, 0xfb, 0xef,
0xbe, 0xb2, 0x56, 0x59, 0x46, 0x66, 0xf4, 0xca, 0x8c, 0xec, 0xef, 0xa9, 0xd6, 0xfe, 0xaf, 0xde, 0x5b, 0x9c, 0x70, 0x23, 0xf4, 0x95, 0xb5, 0xca, 0x08, 0x99, 0xd1, 0x2b, 0x09, 0xd9, 0xdf, 0x53,
0x59, 0xa6, 0x13, 0x63, 0x1a, 0x0c, 0x5c, 0x6f, 0x38, 0x44, 0x45, 0x5c, 0x73, 0x66, 0x59, 0x7a, 0xad, 0xfd, 0x5f, 0x7d, 0xb0, 0x4c, 0x27, 0xc6, 0x34, 0x18, 0xb8, 0xde, 0x70, 0x88, 0x8a, 0xb8,
0x6d, 0x38, 0xb4, 0xdf, 0x87, 0x79, 0xad, 0x75, 0x57, 0xf4, 0x63, 0x0f, 0xc8, 0xae, 0x1f, 0x27, 0xe6, 0xcc, 0xb2, 0xf2, 0xda, 0x70, 0x68, 0xbf, 0x0f, 0xf3, 0x5a, 0xef, 0xae, 0x18, 0xc7, 0x1e,
0x2f, 0x82, 0x78, 0xac, 0x19, 0x72, 0x37, 0xa1, 0xce, 0xb4, 0x2d, 0x6b, 0x19, 0x97, 0xdc, 0xaa, 0x90, 0x5d, 0x3f, 0x4e, 0x5e, 0x04, 0xf1, 0x58, 0x33, 0xe4, 0x6e, 0x42, 0x9d, 0x69, 0x5b, 0xd6,
0xc3, 0xd4, 0x2f, 0x6b, 0x57, 0x8c, 0x44, 0xef, 0xb5, 0x20, 0x96, 0x04, 0xd1, 0x7b, 0x8d, 0x44, 0x33, 0x2e, 0xb9, 0x55, 0x87, 0xa9, 0x5f, 0xd6, 0xaf, 0x18, 0x91, 0xde, 0x6b, 0x81, 0x2c, 0x09,
0xfb, 0x31, 0x2c, 0x18, 0xe5, 0x89, 0xaa, 0xdf, 0x85, 0xea, 0x24, 0x79, 0x1d, 0x4a, 0x53, 0xbd, 0xa4, 0xf7, 0x1a, 0x91, 0xf6, 0x63, 0x58, 0x30, 0xea, 0x13, 0x4d, 0xbf, 0x0b, 0xd5, 0x49, 0xf2,
0x21, 0x38, 0x84, 0x6d, 0x0a, 0x1d, 0x4e, 0xb1, 0x9f, 0xc0, 0xfc, 0x1e, 0xbd, 0x10, 0x82, 0x2c, 0x3a, 0x94, 0xa6, 0x7a, 0x43, 0x70, 0x08, 0x73, 0x0a, 0x1d, 0x8e, 0xb1, 0x9f, 0xc0, 0xfc, 0x1e,
0x1b, 0xf2, 0xde, 0x1b, 0x37, 0x8c, 0x48, 0xb7, 0x57, 0x80, 0xe8, 0x1f, 0xa7, 0x02, 0x20, 0xb7, 0xbd, 0x10, 0x82, 0x2c, 0x3b, 0xf2, 0xde, 0x1b, 0x1d, 0x46, 0xc4, 0xdb, 0x2b, 0x40, 0xf4, 0x8f,
0x8f, 0x96, 0xb1, 0x7d, 0xb4, 0xdf, 0x03, 0x72, 0xe8, 0x9f, 0x06, 0xcf, 0x69, 0x1c, 0x7b, 0xa7, 0x53, 0x01, 0x90, 0xee, 0xa3, 0x65, 0xb8, 0x8f, 0xf6, 0x7b, 0x40, 0x0e, 0xfd, 0xd3, 0xe0, 0x39,
0x4a, 0xf4, 0x3b, 0x50, 0x1e, 0xc5, 0xa7, 0x42, 0x55, 0xb1, 0x3f, 0xed, 0xaf, 0xc3, 0x82, 0x91, 0x8d, 0x63, 0xef, 0x54, 0x89, 0x7e, 0x07, 0xca, 0xa3, 0xf8, 0x54, 0xa8, 0x2a, 0xf6, 0xa7, 0xfd,
0x4f, 0x14, 0x7c, 0x0b, 0xea, 0xb1, 0x7f, 0x1a, 0xa0, 0xa1, 0x25, 0x8a, 0x4e, 0x01, 0xfb, 0x29, 0x75, 0x58, 0x30, 0xe8, 0x44, 0xc5, 0xb7, 0xa0, 0x1e, 0xfb, 0xa7, 0x01, 0x1a, 0x5a, 0xa2, 0xea,
0x2c, 0x7e, 0x8f, 0x46, 0xfe, 0xc9, 0xe5, 0x9b, 0x8a, 0x37, 0xcb, 0x29, 0x65, 0xcb, 0xd9, 0x82, 0x14, 0x60, 0x3f, 0x85, 0xc5, 0xef, 0xd1, 0xc8, 0x3f, 0xb9, 0x7c, 0x53, 0xf5, 0x66, 0x3d, 0xa5,
0xeb, 0x99, 0x72, 0x44, 0xf5, 0x9c, 0x7d, 0xc5, 0x4c, 0xd6, 0x1c, 0x9e, 0xd0, 0x74, 0x5f, 0x49, 0x6c, 0x3d, 0x5b, 0x70, 0x3d, 0x53, 0x8f, 0x68, 0x9e, 0xb3, 0xaf, 0x58, 0xc9, 0x9a, 0xc3, 0x0b,
0xd7, 0x7d, 0xf6, 0x0b, 0x20, 0x1b, 0x61, 0x10, 0xd0, 0x7e, 0x72, 0x40, 0x69, 0x94, 0x7a, 0xae, 0x9a, 0xee, 0x2b, 0xe9, 0xba, 0xcf, 0x7e, 0x01, 0x64, 0x23, 0x0c, 0x02, 0xda, 0x4f, 0x0e, 0x28,
0x52, 0x5e, 0x6d, 0xac, 0x2e, 0x8b, 0x91, 0xcd, 0x2a, 0x54, 0xc1, 0xc4, 0x04, 0x2a, 0x63, 0x1a, 0x8d, 0xd2, 0xc8, 0x55, 0xca, 0xab, 0x8d, 0xd5, 0x65, 0x31, 0xb3, 0x59, 0x85, 0x2a, 0x98, 0x98,
0x8d, 0xb0, 0xe0, 0x9a, 0x83, 0x7f, 0xdb, 0xd7, 0x61, 0xc1, 0x28, 0x56, 0xec, 0xf5, 0x3f, 0x84, 0x40, 0x65, 0x4c, 0xa3, 0x11, 0x56, 0x5c, 0x73, 0xf0, 0x6f, 0xfb, 0x3a, 0x2c, 0x18, 0xd5, 0x0a,
0xeb, 0x9b, 0x7e, 0xdc, 0xcf, 0x57, 0xd8, 0x85, 0xd9, 0xf1, 0xe4, 0xd8, 0x4d, 0x25, 0x51, 0x26, 0x5f, 0xff, 0x43, 0xb8, 0xbe, 0xe9, 0xc7, 0xfd, 0x7c, 0x83, 0x5d, 0x98, 0x1d, 0x4f, 0x8e, 0xdd,
0xd9, 0xf6, 0x2f, 0xfb, 0x89, 0x28, 0xec, 0x6f, 0x58, 0x50, 0xd9, 0x3e, 0xda, 0xdd, 0x60, 0x6b, 0x54, 0x12, 0x65, 0x91, 0xb9, 0x7f, 0xd9, 0x4f, 0x44, 0x65, 0x7f, 0xc3, 0x82, 0xca, 0xf6, 0xd1,
0x85, 0x1f, 0xf4, 0xc3, 0x11, 0xb3, 0xc2, 0x78, 0xa7, 0x55, 0x7a, 0xaa, 0x84, 0xdd, 0x82, 0x3a, 0xee, 0x06, 0xdb, 0x2b, 0xfc, 0xa0, 0x1f, 0x8e, 0x98, 0x15, 0xc6, 0x07, 0xad, 0xca, 0x53, 0x25,
0x1a, 0x6f, 0x6c, 0xc7, 0x2b, 0xec, 0xa0, 0x14, 0x60, 0xbb, 0x6d, 0xfa, 0x7a, 0xec, 0x47, 0xb8, 0xec, 0x16, 0xd4, 0xd1, 0x78, 0x63, 0x1e, 0xaf, 0xb0, 0x83, 0x52, 0x00, 0xf3, 0xb6, 0xe9, 0xeb,
0x9d, 0x96, 0x9b, 0xe4, 0x0a, 0x2e, 0x33, 0x79, 0x82, 0xfd, 0xef, 0x66, 0x61, 0x56, 0x2c, 0xbe, 0xb1, 0x1f, 0xa1, 0x3b, 0x2d, 0x9d, 0xe4, 0x0a, 0x6e, 0x33, 0x79, 0x84, 0xfd, 0xef, 0x66, 0x61,
0x7c, 0x21, 0x4f, 0xfc, 0x73, 0x9a, 0x2e, 0xe4, 0x2c, 0xc5, 0x0c, 0xe3, 0x88, 0x8e, 0xc2, 0x44, 0x56, 0x6c, 0xbe, 0x7c, 0x23, 0x4f, 0xfc, 0x73, 0x9a, 0x6e, 0xe4, 0xac, 0xc4, 0x0c, 0xe3, 0x88,
0xd9, 0x6f, 0x7c, 0x1a, 0x4c, 0x10, 0xbd, 0x09, 0xc2, 0x88, 0xe0, 0xfe, 0x87, 0x32, 0xcf, 0x65, 0x8e, 0xc2, 0x44, 0xd9, 0x6f, 0x7c, 0x19, 0x4c, 0x20, 0x46, 0x13, 0x84, 0x11, 0xc1, 0xe3, 0x0f,
0x80, 0xe4, 0x16, 0xcc, 0x4a, 0x63, 0xa0, 0xa2, 0x36, 0x3a, 0x12, 0x62, 0xa3, 0xd1, 0xf7, 0xc6, 0x65, 0x4e, 0x65, 0x00, 0xc9, 0x2d, 0x98, 0x95, 0xc6, 0x40, 0x45, 0x39, 0x3a, 0x12, 0xc4, 0x66,
0x5e, 0xdf, 0x4f, 0x2e, 0x85, 0x5a, 0x50, 0x69, 0x56, 0xfe, 0x30, 0xec, 0x7b, 0x43, 0xf7, 0xd8, 0xa3, 0xef, 0x8d, 0xbd, 0xbe, 0x9f, 0x5c, 0x0a, 0xb5, 0xa0, 0xca, 0xac, 0xfe, 0x61, 0xd8, 0xf7,
0x1b, 0x7a, 0x41, 0x9f, 0x4a, 0x6f, 0x85, 0x01, 0xb2, 0x9d, 0xbb, 0x68, 0x96, 0xcc, 0xc6, 0x77, 0x86, 0xee, 0xb1, 0x37, 0xf4, 0x82, 0x3e, 0x95, 0xd1, 0x0a, 0x03, 0xc8, 0x3c, 0x77, 0xd1, 0x2d,
0xf7, 0x19, 0x94, 0xad, 0xe1, 0xfd, 0x70, 0x34, 0xf2, 0xd9, 0xee, 0x83, 0x9b, 0x66, 0x65, 0x47, 0x49, 0xc6, 0xbd, 0xfb, 0x0c, 0x94, 0xed, 0xe1, 0xfd, 0x70, 0x34, 0xf2, 0x99, 0xf7, 0xc1, 0x4d,
0x43, 0xb8, 0x6f, 0x04, 0x53, 0x17, 0x7c, 0x04, 0xeb, 0xd2, 0x37, 0xa2, 0x81, 0xac, 0x94, 0x8c, 0xb3, 0xb2, 0xa3, 0x41, 0x78, 0x6c, 0x04, 0x4b, 0x17, 0x7c, 0x06, 0xeb, 0x32, 0x36, 0xa2, 0x01,
0x85, 0x56, 0x76, 0x34, 0x84, 0xcd, 0xc5, 0x24, 0x88, 0x69, 0x92, 0x0c, 0xe9, 0x40, 0x35, 0xa8, 0x59, 0x2d, 0x19, 0x0b, 0xad, 0xec, 0x68, 0x10, 0xb6, 0x16, 0x93, 0x20, 0xa6, 0x49, 0x32, 0xa4,
0x81, 0xd9, 0xf2, 0x04, 0xf2, 0x08, 0x16, 0xb8, 0x0f, 0x22, 0xf6, 0x92, 0x30, 0x3e, 0xf3, 0x63, 0x03, 0xd5, 0xa1, 0x06, 0x92, 0xe5, 0x11, 0xe4, 0x11, 0x2c, 0xf0, 0x18, 0x44, 0xec, 0x25, 0x61,
0x37, 0x66, 0xdb, 0x27, 0xbe, 0x17, 0x2e, 0x22, 0x91, 0xc7, 0xb0, 0x9c, 0x81, 0x23, 0xda, 0xa7, 0x7c, 0xe6, 0xc7, 0x6e, 0xcc, 0xdc, 0x27, 0xee, 0x0b, 0x17, 0xa1, 0xc8, 0x63, 0x58, 0xce, 0x80,
0xfe, 0x39, 0x1d, 0xa0, 0x09, 0x57, 0x76, 0xa6, 0x91, 0xc9, 0x5d, 0x68, 0x04, 0x93, 0x91, 0x3b, 0x23, 0xda, 0xa7, 0xfe, 0x39, 0x1d, 0xa0, 0x09, 0x57, 0x76, 0xa6, 0xa1, 0xc9, 0x5d, 0x68, 0x04,
0x19, 0x0f, 0x3c, 0x66, 0xc4, 0xb4, 0xd1, 0xb8, 0xd4, 0x21, 0xf2, 0x21, 0x48, 0x3b, 0x4d, 0x58, 0x93, 0x91, 0x3b, 0x19, 0x0f, 0x3c, 0x66, 0xc4, 0xb4, 0xd1, 0xb8, 0xd4, 0x41, 0xe4, 0x43, 0x90,
0x8f, 0x73, 0x86, 0x86, 0x63, 0xdc, 0xeb, 0x98, 0x39, 0x18, 0x63, 0xa6, 0x26, 0x69, 0x47, 0xec, 0x76, 0x9a, 0xb0, 0x1e, 0xe7, 0x0c, 0x0d, 0xc7, 0xb8, 0xd7, 0x31, 0x29, 0x18, 0x63, 0xa6, 0x26,
0x3b, 0x25, 0x80, 0x72, 0x12, 0xf9, 0xe7, 0x5e, 0x42, 0xbb, 0xf3, 0x5c, 0xa9, 0x8b, 0x24, 0xfb, 0x69, 0x47, 0xf8, 0x9d, 0x12, 0x80, 0x72, 0x12, 0xf9, 0xe7, 0x5e, 0x42, 0xbb, 0xf3, 0x5c, 0xa9,
0xce, 0x0f, 0xfc, 0xc4, 0xf7, 0x92, 0x30, 0xea, 0x12, 0xa4, 0xa5, 0x00, 0x1b, 0x44, 0xe4, 0x8f, 0x8b, 0x22, 0xfb, 0xce, 0x0f, 0xfc, 0xc4, 0xf7, 0x92, 0x30, 0xea, 0x12, 0xc4, 0xa5, 0x00, 0x36,
0x38, 0xf1, 0x92, 0x49, 0x2c, 0x2c, 0xd4, 0x05, 0x64, 0xae, 0x3c, 0x81, 0x7c, 0x04, 0x4b, 0x9c, 0x89, 0xc8, 0x1f, 0x71, 0xe2, 0x25, 0x93, 0x58, 0x58, 0xa8, 0x0b, 0xc8, 0x5c, 0x79, 0x04, 0xf9,
0x23, 0x90, 0x24, 0x6c, 0x6f, 0x34, 0x15, 0x16, 0x71, 0x44, 0xa6, 0x50, 0xd9, 0x50, 0x0a, 0x16, 0x08, 0x96, 0x38, 0x47, 0x20, 0x4a, 0xd8, 0xde, 0x68, 0x2a, 0x2c, 0xe2, 0x8c, 0x4c, 0xc1, 0xb2,
0xc9, 0x7d, 0x78, 0x9d, 0x0f, 0xe5, 0x14, 0x32, 0x6b, 0x1f, 0x6b, 0x81, 0xdf, 0x77, 0x45, 0x0e, 0xa9, 0x14, 0x2c, 0x92, 0xfb, 0xf0, 0x3a, 0x9f, 0xca, 0x29, 0x68, 0xd6, 0x3f, 0xd6, 0x03, 0xbf,
0x26, 0x22, 0x4b, 0xd8, 0x8b, 0x3c, 0x81, 0xb1, 0xf8, 0xd0, 0x3f, 0xa1, 0x89, 0x3f, 0xa2, 0xdd, 0xef, 0x0a, 0x0a, 0x26, 0x22, 0x4b, 0x38, 0x8a, 0x3c, 0x82, 0xb1, 0xf8, 0xd0, 0x3f, 0xa1, 0x89,
0x65, 0xce, 0xe2, 0x32, 0xcd, 0x04, 0x70, 0x32, 0x46, 0x4a, 0x97, 0x0b, 0x3c, 0x4f, 0x21, 0x33, 0x3f, 0xa2, 0xdd, 0x65, 0xce, 0xe2, 0xb2, 0xcc, 0x04, 0x70, 0x32, 0x46, 0x4c, 0x97, 0x0b, 0x3c,
0x0e, 0xc3, 0x98, 0x4a, 0xcf, 0x53, 0xf7, 0x86, 0x10, 0x2d, 0x1d, 0xb4, 0xff, 0xd0, 0xe2, 0x4b, 0x2f, 0x21, 0x33, 0x0e, 0xc3, 0x98, 0xca, 0xc8, 0x53, 0xf7, 0x86, 0x10, 0x2d, 0x1d, 0x68, 0xff,
0x94, 0x10, 0xe7, 0x58, 0xdb, 0x7c, 0x71, 0x41, 0x76, 0xc3, 0x60, 0x78, 0x29, 0x64, 0x1b, 0x38, 0xa1, 0xc5, 0xb7, 0x28, 0x21, 0xce, 0xb1, 0xe6, 0x7c, 0x71, 0x41, 0x76, 0xc3, 0x60, 0x78, 0x29,
0xb4, 0x1f, 0x0c, 0x2f, 0x99, 0xf9, 0xef, 0x07, 0x7a, 0x16, 0xae, 0x0d, 0x9b, 0x12, 0xc4, 0x4c, 0x64, 0x1b, 0x38, 0x68, 0x3f, 0x18, 0x5e, 0x32, 0xf3, 0xdf, 0x0f, 0x74, 0x12, 0xae, 0x0d, 0x9b,
0xef, 0x40, 0x63, 0x3c, 0x39, 0x1e, 0xfa, 0x7d, 0x9e, 0xa5, 0xcc, 0x4b, 0xe1, 0x10, 0x66, 0x60, 0x12, 0x88, 0x44, 0xef, 0x40, 0x63, 0x3c, 0x39, 0x1e, 0xfa, 0x7d, 0x4e, 0x52, 0xe6, 0xb5, 0x70,
0xbb, 0x4f, 0x3e, 0x9f, 0x3c, 0x47, 0x05, 0x73, 0x34, 0x04, 0xc6, 0xb2, 0xd8, 0xeb, 0xb0, 0x68, 0x10, 0x12, 0x30, 0xef, 0x93, 0xaf, 0x27, 0xa7, 0xa8, 0x20, 0x45, 0x43, 0xc0, 0x18, 0x89, 0xbd,
0x36, 0x50, 0xa8, 0xfd, 0x07, 0x50, 0x13, 0x5a, 0x42, 0xba, 0x21, 0xda, 0x9a, 0x73, 0x98, 0x6d, 0x0e, 0x8b, 0x66, 0x07, 0x85, 0xda, 0x7f, 0x00, 0x35, 0xa1, 0x25, 0x64, 0x18, 0xa2, 0xad, 0x05,
0x96, 0x14, 0xdd, 0xfe, 0xd7, 0x15, 0x58, 0x10, 0xe8, 0x06, 0xeb, 0xfe, 0xe1, 0x64, 0x34, 0xf2, 0x87, 0x99, 0xb3, 0xa4, 0xf0, 0xf6, 0xbf, 0xae, 0xc0, 0x82, 0x80, 0x6e, 0xb0, 0xe1, 0x1f, 0x4e,
0xa2, 0x02, 0xf5, 0x63, 0xbd, 0x41, 0xfd, 0x94, 0xf2, 0xea, 0xe7, 0x8e, 0xb1, 0x0b, 0xe5, 0xfa, 0x46, 0x23, 0x2f, 0x2a, 0x50, 0x3f, 0xd6, 0x1b, 0xd4, 0x4f, 0x29, 0xaf, 0x7e, 0xee, 0x18, 0x5e,
0x4b, 0x43, 0xc8, 0x7d, 0x98, 0x63, 0x43, 0xce, 0x37, 0x05, 0xba, 0x7f, 0x32, 0x0b, 0xe7, 0x55, 0x28, 0xd7, 0x5f, 0x1a, 0x84, 0xdc, 0x87, 0x39, 0x36, 0xe5, 0xdc, 0x29, 0xd0, 0xe3, 0x93, 0x59,
0x66, 0xb5, 0x48, 0x65, 0xea, 0xea, 0x6e, 0x26, 0xa3, 0xee, 0x6c, 0x68, 0xf2, 0xe9, 0x15, 0x1a, 0x70, 0x5e, 0x65, 0x56, 0x8b, 0x54, 0xa6, 0xae, 0xee, 0x66, 0x32, 0xea, 0xce, 0x86, 0x26, 0x5f,
0x7c, 0x56, 0x6c, 0xc9, 0x34, 0x8c, 0xb5, 0x27, 0xab, 0x5c, 0xb8, 0x26, 0x9b, 0x2b, 0x52, 0x2d, 0x5e, 0xa1, 0xc1, 0x67, 0x85, 0x4b, 0xa6, 0xc1, 0x58, 0x7f, 0xb2, 0xca, 0x85, 0x6b, 0xb2, 0xb9,
0xfe, 0x88, 0xe2, 0x0a, 0xa1, 0xe5, 0xae, 0x0b, 0xd5, 0x92, 0x27, 0x91, 0xa7, 0x00, 0xbc, 0x2e, 0x22, 0xd5, 0xe2, 0x8f, 0x28, 0xee, 0x10, 0x1a, 0x75, 0x5d, 0xa8, 0x96, 0x3c, 0x8a, 0x3c, 0x05,
0x34, 0x53, 0x00, 0xcd, 0x94, 0xf7, 0xcc, 0x59, 0xd1, 0xc7, 0x7f, 0x85, 0x25, 0x26, 0x11, 0x45, 0xe0, 0x6d, 0xa1, 0x99, 0x02, 0x68, 0xa6, 0xbc, 0x67, 0xae, 0x8a, 0x3e, 0xff, 0x2b, 0xac, 0x30,
0xd3, 0x45, 0xfb, 0xd2, 0xfe, 0x5b, 0x16, 0x34, 0x34, 0x1a, 0xb9, 0x0e, 0xf3, 0x1b, 0xfb, 0xfb, 0x89, 0x28, 0x9a, 0x2e, 0xda, 0x97, 0xf6, 0xdf, 0xb2, 0xa0, 0xa1, 0xe1, 0xc8, 0x75, 0x98, 0xdf,
0x07, 0x5b, 0xce, 0xda, 0xd1, 0xce, 0xf7, 0xb6, 0xdc, 0x8d, 0xdd, 0xfd, 0xc3, 0xad, 0xce, 0x35, 0xd8, 0xdf, 0x3f, 0xd8, 0x72, 0xd6, 0x8e, 0x76, 0xbe, 0xb7, 0xe5, 0x6e, 0xec, 0xee, 0x1f, 0x6e,
0x06, 0xef, 0xee, 0x6f, 0xac, 0xed, 0xba, 0x4f, 0xf7, 0x9d, 0x0d, 0x09, 0x5b, 0x64, 0x09, 0x88, 0x75, 0xae, 0x31, 0xf0, 0xee, 0xfe, 0xc6, 0xda, 0xae, 0xfb, 0x74, 0xdf, 0xd9, 0x90, 0x60, 0x8b,
0xb3, 0xf5, 0x7c, 0xff, 0x68, 0xcb, 0xc0, 0x4b, 0xa4, 0x03, 0xcd, 0x75, 0x67, 0x6b, 0x6d, 0x63, 0x2c, 0x01, 0x71, 0xb6, 0x9e, 0xef, 0x1f, 0x6d, 0x19, 0xf0, 0x12, 0xe9, 0x40, 0x73, 0xdd, 0xd9,
0x5b, 0x20, 0x65, 0xb2, 0x08, 0x9d, 0xa7, 0x2f, 0xf6, 0x36, 0x77, 0xf6, 0x9e, 0xb9, 0x1b, 0x6b, 0x5a, 0xdb, 0xd8, 0x16, 0x90, 0x32, 0x59, 0x84, 0xce, 0xd3, 0x17, 0x7b, 0x9b, 0x3b, 0x7b, 0xcf,
0x7b, 0x1b, 0x5b, 0xbb, 0x5b, 0x9b, 0x9d, 0x0a, 0x69, 0x41, 0x7d, 0x6d, 0x7d, 0x6d, 0x6f, 0x73, 0xdc, 0x8d, 0xb5, 0xbd, 0x8d, 0xad, 0xdd, 0xad, 0xcd, 0x4e, 0x85, 0xb4, 0xa0, 0xbe, 0xb6, 0xbe,
0x7f, 0x6f, 0x6b, 0xb3, 0x53, 0xb5, 0xff, 0xbb, 0x05, 0xd7, 0xb1, 0xd5, 0x83, 0xac, 0x90, 0xdc, 0xb6, 0xb7, 0xb9, 0xbf, 0xb7, 0xb5, 0xd9, 0xa9, 0xda, 0xff, 0xcd, 0x82, 0xeb, 0xd8, 0xeb, 0x41,
0x85, 0x46, 0x3f, 0x0c, 0xc7, 0x6c, 0x7b, 0x90, 0x2e, 0x80, 0x3a, 0xc4, 0x04, 0x80, 0xab, 0x8e, 0x56, 0x48, 0xee, 0x42, 0xa3, 0x1f, 0x86, 0x63, 0xe6, 0x1e, 0xa4, 0x1b, 0xa0, 0x0e, 0x62, 0x02,
0x93, 0x30, 0xea, 0x53, 0x21, 0x23, 0x80, 0xd0, 0x53, 0x86, 0x30, 0x01, 0x10, 0xd3, 0xcb, 0x73, 0xc0, 0x55, 0xc7, 0x49, 0x18, 0xf5, 0xa9, 0x90, 0x11, 0x40, 0xd0, 0x53, 0x06, 0x61, 0x02, 0x20,
0x70, 0x11, 0x69, 0x70, 0x8c, 0x67, 0x59, 0x82, 0x99, 0xe3, 0x88, 0x7a, 0xfd, 0x33, 0x21, 0x1d, 0x96, 0x97, 0x53, 0x70, 0x11, 0x69, 0x70, 0x18, 0x27, 0x59, 0x82, 0x99, 0xe3, 0x88, 0x7a, 0xfd,
0x22, 0x45, 0xbe, 0x92, 0xee, 0x5f, 0xfb, 0x6c, 0xf4, 0x87, 0x74, 0x80, 0x1c, 0x53, 0x73, 0xe6, 0x33, 0x21, 0x1d, 0xa2, 0x44, 0xbe, 0x92, 0xfa, 0xaf, 0x7d, 0x36, 0xfb, 0x43, 0x3a, 0x40, 0x8e,
0x04, 0xbe, 0x21, 0x60, 0xa6, 0x2b, 0xbd, 0x63, 0x2f, 0x18, 0x84, 0x01, 0x1d, 0x08, 0xe3, 0x38, 0xa9, 0x39, 0x73, 0x02, 0xbe, 0x21, 0xc0, 0x4c, 0x57, 0x7a, 0xc7, 0x5e, 0x30, 0x08, 0x03, 0x3a,
0x05, 0xec, 0x03, 0x58, 0xca, 0xf6, 0x4f, 0xc8, 0xd8, 0x47, 0x9a, 0x8c, 0x71, 0x5b, 0xb5, 0x37, 0x10, 0xc6, 0x71, 0x0a, 0xb0, 0x0f, 0x60, 0x29, 0x3b, 0x3e, 0x21, 0x63, 0x1f, 0x69, 0x32, 0xc6,
0x7d, 0x36, 0x35, 0x79, 0xfb, 0xb3, 0x32, 0x54, 0x98, 0xe9, 0x32, 0xdd, 0xcc, 0xd1, 0xad, 0xd1, 0x6d, 0xd5, 0xde, 0xf4, 0xd5, 0xd4, 0xe4, 0xed, 0xcf, 0xca, 0x50, 0x61, 0xa6, 0xcb, 0x74, 0x33,
0x72, 0x2e, 0x98, 0x81, 0x5b, 0x62, 0xbe, 0x90, 0x09, 0x77, 0x4c, 0x8a, 0xa4, 0xf4, 0x88, 0xf6, 0x47, 0xb7, 0x46, 0xcb, 0xb9, 0x64, 0x06, 0xba, 0xc4, 0x7c, 0x23, 0x13, 0xe1, 0x98, 0x14, 0x92,
0xcf, 0x85, 0x43, 0x46, 0x43, 0x98, 0x80, 0xb0, 0xad, 0x02, 0x7e, 0x2d, 0x04, 0x44, 0xa6, 0x25, 0xe2, 0x23, 0xda, 0x3f, 0x17, 0x01, 0x19, 0x0d, 0xc2, 0x04, 0x84, 0xb9, 0x0a, 0xf8, 0xb5, 0x10,
0x0d, 0xbf, 0x9c, 0x4d, 0x69, 0xf8, 0x5d, 0x17, 0x66, 0xfd, 0xe0, 0x38, 0x9c, 0x04, 0x03, 0x14, 0x10, 0x59, 0x96, 0x38, 0xfc, 0x72, 0x36, 0xc5, 0xe1, 0x77, 0x5d, 0x98, 0xf5, 0x83, 0xe3, 0x70,
0x88, 0x9a, 0x23, 0x93, 0x18, 0x3e, 0x41, 0x41, 0x65, 0x5a, 0x96, 0xb3, 0x7f, 0x0a, 0x90, 0x55, 0x12, 0x0c, 0x50, 0x20, 0x6a, 0x8e, 0x2c, 0x62, 0xfa, 0x04, 0x05, 0x95, 0x69, 0x59, 0xce, 0xfe,
0xa8, 0xc7, 0x97, 0x41, 0x5f, 0xe7, 0xf9, 0x45, 0x31, 0x4a, 0x6c, 0x0c, 0x56, 0x0e, 0x2f, 0x83, 0x29, 0x80, 0xac, 0x42, 0x3d, 0xbe, 0x0c, 0xfa, 0x3a, 0xcf, 0x2f, 0x8a, 0x59, 0x62, 0x73, 0xb0,
0x3e, 0x72, 0x78, 0x9a, 0x8d, 0x7c, 0x13, 0x6a, 0xca, 0x81, 0xc9, 0x95, 0xd7, 0x0d, 0xfd, 0x13, 0x72, 0x78, 0x19, 0xf4, 0x91, 0xc3, 0x53, 0x32, 0xf2, 0x4d, 0xa8, 0xa9, 0x00, 0x26, 0x57, 0x5e,
0xe9, 0xb5, 0xe4, 0xfb, 0x42, 0x95, 0xb5, 0xf7, 0x09, 0xb4, 0x0c, 0x92, 0xbe, 0x99, 0x6b, 0xf1, 0x37, 0xf4, 0x4f, 0x64, 0xd4, 0x92, 0xfb, 0x85, 0x8a, 0xb4, 0xf7, 0x09, 0xb4, 0x0c, 0x94, 0xee,
0xcd, 0xdc, 0x3d, 0x7d, 0x33, 0x97, 0xea, 0x44, 0xf1, 0x99, 0xbe, 0xb9, 0xfb, 0x6d, 0xa8, 0xc9, 0xcc, 0xb5, 0xb8, 0x33, 0x77, 0x4f, 0x77, 0xe6, 0x52, 0x9d, 0x28, 0x3e, 0xd3, 0x9d, 0xbb, 0xdf,
0xa6, 0x31, 0xd1, 0x78, 0xb1, 0xf7, 0xc9, 0xde, 0xfe, 0xcb, 0x3d, 0xf7, 0xf0, 0xfb, 0x7b, 0x1b, 0x86, 0x9a, 0xec, 0x1a, 0x13, 0x8d, 0x17, 0x7b, 0x9f, 0xec, 0xed, 0xbf, 0xdc, 0x73, 0x0f, 0xbf,
0x9d, 0x6b, 0x64, 0x0e, 0x1a, 0x6b, 0x1b, 0x28, 0x6d, 0x08, 0x58, 0x2c, 0xcb, 0xc1, 0xda, 0xe1, 0xbf, 0xb7, 0xd1, 0xb9, 0x46, 0xe6, 0xa0, 0xb1, 0xb6, 0x81, 0xd2, 0x86, 0x00, 0x8b, 0x91, 0x1c,
0xa1, 0x42, 0x4a, 0x36, 0x81, 0x0e, 0xd3, 0xcc, 0xac, 0xc5, 0x2a, 0x44, 0xf1, 0x11, 0xcc, 0x6b, 0xac, 0x1d, 0x1e, 0x2a, 0x48, 0xc9, 0x26, 0xd0, 0x61, 0x9a, 0x99, 0xf5, 0x58, 0xa5, 0x28, 0x3e,
0x58, 0xba, 0xdf, 0x19, 0x33, 0x20, 0xb3, 0xdf, 0x41, 0xe3, 0x96, 0x53, 0xec, 0x65, 0xb8, 0xce, 0x82, 0x79, 0x0d, 0x96, 0xfa, 0x3b, 0x63, 0x06, 0xc8, 0xf8, 0x3b, 0x68, 0xdc, 0x72, 0x8c, 0xbd,
0x92, 0x5b, 0xe7, 0x34, 0x48, 0x0e, 0x27, 0xc7, 0x3c, 0x32, 0xe5, 0x87, 0x81, 0xfd, 0xd7, 0x2d, 0x0c, 0xd7, 0x59, 0x71, 0xeb, 0x9c, 0x06, 0xc9, 0xe1, 0xe4, 0x98, 0x67, 0xa6, 0xfc, 0x30, 0xb0,
0xa8, 0x2b, 0xca, 0x15, 0xfc, 0x24, 0x83, 0x69, 0x25, 0x9c, 0x80, 0x9e, 0x56, 0x05, 0x7e, 0xb9, 0xff, 0xba, 0x05, 0x75, 0x85, 0xb9, 0x82, 0x9f, 0x64, 0x32, 0xad, 0x84, 0x0b, 0xd0, 0xd3, 0x9a,
0x82, 0xff, 0x1a, 0x7b, 0xa4, 0xba, 0x82, 0x58, 0x67, 0x0f, 0xb6, 0xb6, 0x1c, 0x77, 0x7f, 0x6f, 0xc0, 0x2f, 0x57, 0xf0, 0x5f, 0xc3, 0x47, 0xaa, 0x2b, 0x10, 0x1b, 0xec, 0xc1, 0xd6, 0x96, 0xe3,
0x77, 0x67, 0x8f, 0x69, 0x16, 0xd6, 0x59, 0x04, 0x9e, 0x3e, 0x45, 0xc4, 0xb2, 0x3b, 0xd0, 0x7e, 0xee, 0xef, 0xed, 0xee, 0xec, 0x31, 0xcd, 0xc2, 0x06, 0x8b, 0x80, 0xa7, 0x4f, 0x11, 0x62, 0xd9,
0x46, 0x93, 0x9d, 0xe0, 0x24, 0x94, 0x5d, 0xfd, 0x7f, 0x55, 0x98, 0x53, 0x50, 0xba, 0xc7, 0x3a, 0x1d, 0x68, 0x3f, 0xa3, 0xc9, 0x4e, 0x70, 0x12, 0xca, 0xa1, 0xfe, 0xbf, 0x2a, 0xcc, 0x29, 0x50,
0xa7, 0x51, 0xec, 0x87, 0x01, 0x5a, 0x47, 0x75, 0x47, 0x26, 0x99, 0xda, 0xf5, 0x07, 0x34, 0x48, 0xea, 0x63, 0x9d, 0xd3, 0x28, 0xf6, 0xc3, 0x00, 0xad, 0xa3, 0xba, 0x23, 0x8b, 0x4c, 0xed, 0xfa,
0xfc, 0xe4, 0xd2, 0x35, 0x9c, 0x32, 0x59, 0x98, 0xed, 0x67, 0xbc, 0xa1, 0xef, 0xc9, 0x20, 0x1f, 0x03, 0x1a, 0x24, 0x7e, 0x72, 0xe9, 0x1a, 0x41, 0x99, 0x2c, 0x98, 0xf9, 0x33, 0xde, 0xd0, 0xf7,
0x4f, 0x30, 0xb4, 0x1f, 0x0e, 0xc3, 0x08, 0xcd, 0xa0, 0xba, 0xc3, 0x13, 0x64, 0x15, 0x16, 0x99, 0x64, 0x92, 0x8f, 0x17, 0x18, 0xb4, 0x1f, 0x0e, 0xc3, 0x08, 0xcd, 0xa0, 0xba, 0xc3, 0x0b, 0x64,
0xf9, 0xa5, 0xbb, 0xcc, 0x50, 0x58, 0xb9, 0x87, 0xa8, 0x90, 0xc6, 0xd4, 0x3a, 0xc3, 0xc5, 0xda, 0x15, 0x16, 0x99, 0xf9, 0xa5, 0x87, 0xcc, 0x50, 0x58, 0x79, 0x84, 0xa8, 0x10, 0xc7, 0xd4, 0x3a,
0xad, 0x3e, 0xe1, 0xd6, 0x7e, 0x11, 0x89, 0x7c, 0x03, 0xae, 0x33, 0x58, 0xad, 0xf7, 0xea, 0x9b, 0x83, 0x8b, 0xbd, 0x5b, 0x7d, 0xc2, 0xad, 0xfd, 0x22, 0x14, 0xf9, 0x06, 0x5c, 0x67, 0x60, 0xb5,
0x39, 0xfc, 0xa6, 0x98, 0xc8, 0xa4, 0x86, 0xd7, 0xcf, 0x66, 0xbe, 0xca, 0x0d, 0x3b, 0x05, 0xe4, 0xdf, 0xab, 0x6f, 0xe6, 0xf0, 0x9b, 0x62, 0x24, 0x93, 0x1a, 0xde, 0x3e, 0x5b, 0xf9, 0x2a, 0x37,
0x22, 0x72, 0x33, 0x7c, 0xa9, 0xca, 0x46, 0xe4, 0xb4, 0xa8, 0x5e, 0x2d, 0x17, 0xd5, 0xfb, 0x06, 0xec, 0x14, 0x20, 0x97, 0x91, 0x9b, 0xe1, 0x5b, 0x55, 0x36, 0x23, 0xa7, 0x65, 0xf5, 0x6a, 0xb9,
0x5c, 0x3f, 0xa6, 0x71, 0xe2, 0x9e, 0x51, 0x6f, 0x40, 0x23, 0x94, 0x46, 0x1e, 0xbc, 0xe3, 0x76, 0xac, 0xde, 0x37, 0xe0, 0xfa, 0x31, 0x8d, 0x13, 0xf7, 0x8c, 0x7a, 0x03, 0x1a, 0xa1, 0x34, 0xf2,
0x6c, 0x31, 0x11, 0x17, 0xc0, 0xcb, 0xa0, 0x4f, 0x07, 0x6e, 0x12, 0xba, 0xb8, 0x50, 0xa3, 0x4c, 0xe4, 0x1d, 0xb7, 0x63, 0x8b, 0x91, 0xb8, 0x01, 0x5e, 0x06, 0x7d, 0x3a, 0x70, 0x93, 0xd0, 0xc5,
0xd7, 0x9c, 0x2c, 0x6c, 0xe6, 0x3c, 0x8d, 0xbc, 0xf1, 0x99, 0x30, 0x34, 0xb3, 0x30, 0x33, 0x11, 0x8d, 0x1a, 0x65, 0xba, 0xe6, 0x64, 0xc1, 0x26, 0xe5, 0x69, 0xe4, 0x8d, 0xcf, 0x84, 0xa1, 0x99,
0x12, 0x1a, 0x27, 0x01, 0xe5, 0xa1, 0x93, 0x1a, 0xba, 0xc5, 0x25, 0x44, 0xee, 0xc1, 0x0c, 0x16, 0x05, 0x33, 0x13, 0x21, 0xa1, 0x71, 0x12, 0x50, 0x9e, 0x3a, 0xa9, 0x61, 0x58, 0x5c, 0x82, 0xc8,
0x18, 0x77, 0x3b, 0x28, 0x00, 0xcd, 0x54, 0x89, 0xfa, 0x81, 0x23, 0x68, 0x6c, 0x5b, 0x39, 0x89, 0x3d, 0x98, 0xc1, 0x0a, 0xe3, 0x6e, 0x07, 0x05, 0xa0, 0x99, 0x2a, 0x51, 0x3f, 0x70, 0x04, 0x8e,
0xfc, 0xb8, 0xdb, 0xc4, 0xa8, 0x21, 0xfe, 0x4d, 0xbe, 0xad, 0xe9, 0x89, 0x05, 0xfc, 0xf6, 0x9e, 0xb9, 0x95, 0x93, 0xc8, 0x8f, 0xbb, 0x4d, 0xcc, 0x1a, 0xe2, 0xdf, 0xe4, 0xdb, 0x9a, 0x9e, 0x58,
0xf8, 0x36, 0xc3, 0x79, 0x5f, 0x88, 0xca, 0xf8, 0x4e, 0xa5, 0xd6, 0xe8, 0x34, 0xed, 0xdf, 0x80, 0xc0, 0x6f, 0xef, 0x89, 0x6f, 0x33, 0x9c, 0xf7, 0x6b, 0x51, 0x19, 0xdf, 0xa9, 0xd4, 0x1a, 0x9d,
0x2a, 0xb6, 0x1c, 0x79, 0x12, 0xc7, 0xcf, 0x12, 0x3c, 0x89, 0x68, 0x17, 0x66, 0x03, 0x9a, 0x5c, 0xa6, 0xfd, 0x1b, 0x50, 0xc5, 0x9e, 0x23, 0x4f, 0xe2, 0xfc, 0x59, 0x82, 0x27, 0x11, 0xda, 0x85,
0x84, 0xd1, 0x2b, 0x19, 0xa6, 0x16, 0x49, 0xfb, 0x27, 0xb8, 0xf7, 0x56, 0x61, 0xdb, 0x17, 0xb8, 0xd9, 0x80, 0x26, 0x17, 0x61, 0xf4, 0x4a, 0xa6, 0xa9, 0x45, 0xd1, 0xfe, 0x29, 0xfa, 0xde, 0x2a,
0x69, 0x20, 0x37, 0xa1, 0xce, 0xe7, 0x34, 0x3e, 0xf3, 0x84, 0x3b, 0xa0, 0x86, 0xc0, 0xe1, 0x99, 0x6d, 0xfb, 0x02, 0x9d, 0x06, 0x72, 0x13, 0xea, 0x7c, 0x4d, 0xe3, 0x33, 0x4f, 0x84, 0x03, 0x6a,
0xc7, 0xd6, 0x47, 0x83, 0x4d, 0xb8, 0x87, 0xa5, 0x81, 0xd8, 0x36, 0xe7, 0x92, 0x7b, 0xd0, 0x96, 0x08, 0x38, 0x3c, 0xf3, 0xd8, 0xfe, 0x68, 0xb0, 0x09, 0x8f, 0xb0, 0x34, 0x10, 0xb6, 0xcd, 0xb9,
0x01, 0xe1, 0xd8, 0x1d, 0xd2, 0x93, 0x44, 0xfa, 0x47, 0x83, 0xc9, 0x08, 0xdd, 0x30, 0xbb, 0xf4, 0xe4, 0x1e, 0xb4, 0x65, 0x42, 0x38, 0x76, 0x87, 0xf4, 0x24, 0x91, 0xf1, 0xd1, 0x60, 0x32, 0xc2,
0x24, 0xb1, 0xf7, 0x60, 0x5e, 0xac, 0x59, 0xfb, 0x63, 0x2a, 0xab, 0xfe, 0xcd, 0x22, 0xfb, 0xaf, 0x30, 0xcc, 0x2e, 0x3d, 0x49, 0xec, 0x3d, 0x98, 0x17, 0x7b, 0xd6, 0xfe, 0x98, 0xca, 0xa6, 0x7f,
0xb1, 0xba, 0x60, 0x2e, 0x72, 0x3c, 0x04, 0x6e, 0xe6, 0xb4, 0x1d, 0x20, 0xfa, 0x1a, 0x28, 0x0a, 0xb3, 0xc8, 0xfe, 0x6b, 0xac, 0x2e, 0x98, 0x9b, 0x1c, 0x4f, 0x81, 0x9b, 0x94, 0xb6, 0x03, 0x44,
0x14, 0x06, 0x98, 0xf4, 0x00, 0x8b, 0xee, 0x18, 0x18, 0x1b, 0x9f, 0x78, 0xd2, 0xef, 0xcb, 0x30, 0xdf, 0x03, 0x45, 0x85, 0xc2, 0x00, 0x93, 0x11, 0x60, 0x31, 0x1c, 0x03, 0xc6, 0xe6, 0x27, 0x9e,
0x7e, 0xcd, 0x91, 0x49, 0xfb, 0x3f, 0x5b, 0xb0, 0x80, 0xa5, 0x49, 0x0b, 0x56, 0xd8, 0x19, 0x8f, 0xf4, 0xfb, 0x32, 0x8d, 0x5f, 0x73, 0x64, 0xd1, 0xfe, 0x4f, 0x16, 0x2c, 0x60, 0x6d, 0xd2, 0x82,
0x3f, 0x47, 0x33, 0xa5, 0xff, 0x9d, 0x7b, 0x9d, 0x17, 0xa1, 0xaa, 0x5b, 0x1e, 0x3c, 0xf1, 0xf9, 0x15, 0x76, 0xc6, 0xe3, 0xcf, 0xd1, 0x4d, 0x19, 0x7f, 0xe7, 0x51, 0xe7, 0x45, 0xa8, 0xea, 0x96,
0xbd, 0x6d, 0x95, 0x9c, 0xb7, 0xed, 0x01, 0x74, 0x06, 0x74, 0xe8, 0xe3, 0x51, 0x0e, 0xb9, 0x8e, 0x07, 0x2f, 0x7c, 0xfe, 0x68, 0x5b, 0x25, 0x17, 0x6d, 0x7b, 0x00, 0x9d, 0x01, 0x1d, 0xfa, 0x78,
0x73, 0x73, 0x35, 0x87, 0xdb, 0x7f, 0xd7, 0x82, 0x79, 0x6e, 0x28, 0xe0, 0x9e, 0x4b, 0x0c, 0xd5, 0x94, 0x43, 0xee, 0xe3, 0xdc, 0x5c, 0xcd, 0xc1, 0xed, 0xbf, 0x6b, 0xc1, 0x3c, 0x37, 0x14, 0xd0,
0x5f, 0x92, 0xfb, 0x13, 0xa1, 0xa0, 0x44, 0xa7, 0xd2, 0xa5, 0x13, 0x51, 0x9e, 0x79, 0xfb, 0x9a, 0xe7, 0x12, 0x53, 0xf5, 0x97, 0xa4, 0x7f, 0x22, 0x14, 0x94, 0x18, 0x54, 0xba, 0x75, 0x22, 0x94,
0x63, 0x66, 0x26, 0x4f, 0xd0, 0xea, 0x0e, 0x5c, 0x44, 0x0b, 0x0e, 0x87, 0x98, 0xf3, 0xb2, 0x7d, 0x13, 0x6f, 0x5f, 0x73, 0x4c, 0x62, 0xf2, 0x04, 0xad, 0xee, 0xc0, 0x45, 0x68, 0xc1, 0xe1, 0x10,
0xcd, 0xd1, 0xb2, 0xaf, 0xd7, 0xd8, 0x96, 0x89, 0xe1, 0xf6, 0x33, 0x68, 0x19, 0x15, 0x19, 0x5e, 0x73, 0x5d, 0xb6, 0xaf, 0x39, 0x1a, 0xf9, 0x7a, 0x8d, 0xb9, 0x4c, 0x0c, 0x6e, 0x3f, 0x83, 0x96,
0xc1, 0x26, 0xf7, 0x0a, 0xe6, 0xdc, 0xef, 0xa5, 0x02, 0xf7, 0xfb, 0xef, 0x57, 0x80, 0x30, 0xc6, 0xd1, 0x90, 0x11, 0x15, 0x6c, 0xf2, 0xa8, 0x60, 0x2e, 0xfc, 0x5e, 0x2a, 0x08, 0xbf, 0xff, 0x7e,
0xca, 0xcc, 0xdc, 0x5d, 0x33, 0x86, 0x25, 0xcf, 0x89, 0xa4, 0x10, 0x59, 0x05, 0xa2, 0x25, 0x65, 0x05, 0x08, 0x63, 0xac, 0xcc, 0xca, 0xdd, 0x35, 0x73, 0x58, 0xf2, 0x9c, 0x48, 0x0a, 0x22, 0xab,
0x6c, 0xad, 0xac, 0x62, 0x6b, 0x05, 0x54, 0xa6, 0xf5, 0x85, 0x55, 0xa9, 0xe2, 0x56, 0xe8, 0xf1, 0x40, 0xb4, 0xa2, 0xcc, 0xad, 0x95, 0x55, 0x6e, 0xad, 0x00, 0xcb, 0xb4, 0xbe, 0xb0, 0x2a, 0x55,
0xe1, 0xd3, 0x54, 0x48, 0x63, 0x96, 0x0f, 0x06, 0xb1, 0xd8, 0xde, 0x54, 0x78, 0x49, 0x64, 0x3a, 0xde, 0x0a, 0x23, 0x3e, 0x7c, 0x99, 0x0a, 0x71, 0xcc, 0xf2, 0xc1, 0x24, 0x16, 0xf3, 0x4d, 0x45,
0xcb, 0x0f, 0x33, 0x6f, 0xe4, 0x87, 0xd9, 0x1c, 0x3f, 0x68, 0xfb, 0xf4, 0x9a, 0xb9, 0x4f, 0xbf, 0x94, 0x44, 0x96, 0xb3, 0xfc, 0x30, 0xf3, 0x46, 0x7e, 0x98, 0xcd, 0xf1, 0x83, 0xe6, 0xa7, 0xd7,
0x07, 0x2d, 0x19, 0xab, 0xe2, 0x61, 0x7a, 0xe1, 0x14, 0x31, 0x40, 0xc6, 0x4f, 0x72, 0xab, 0xac, 0x4c, 0x3f, 0xfd, 0x1e, 0xb4, 0x64, 0xae, 0x8a, 0xa7, 0xe9, 0x45, 0x50, 0xc4, 0x00, 0x32, 0x7e,
0x9c, 0x01, 0x3c, 0x08, 0x9d, 0xc3, 0xd9, 0xc2, 0x92, 0xfa, 0x63, 0x1b, 0xd8, 0xd8, 0x14, 0xc0, 0x92, 0xae, 0xb2, 0x0a, 0x06, 0xf0, 0x24, 0x74, 0x0e, 0xce, 0x36, 0x96, 0x34, 0x1e, 0xdb, 0xc0,
0x9d, 0x35, 0xe3, 0x12, 0x77, 0x12, 0x88, 0x33, 0x22, 0x74, 0x80, 0xee, 0x10, 0xb6, 0xb3, 0xce, 0xce, 0xa6, 0x00, 0xf4, 0xac, 0x19, 0x97, 0xb8, 0x93, 0x40, 0x9c, 0x11, 0xa1, 0x03, 0x0c, 0x87,
0x12, 0xf2, 0xbb, 0xe4, 0x56, 0xc1, 0x2e, 0x99, 0x7c, 0x94, 0x06, 0x76, 0xe2, 0x33, 0x7f, 0x84, 0x30, 0xcf, 0x3a, 0x8b, 0xc8, 0x7b, 0xc9, 0xad, 0x02, 0x2f, 0x99, 0x7c, 0x94, 0x26, 0x76, 0xe2,
0x6b, 0x7b, 0x7a, 0xc4, 0xe2, 0x29, 0x27, 0x1d, 0x9e, 0xf9, 0x23, 0xc7, 0xc8, 0x67, 0xff, 0xc2, 0x33, 0x7f, 0x84, 0x7b, 0x7b, 0x7a, 0xc4, 0xe2, 0x29, 0x47, 0x1d, 0x9e, 0xf9, 0x23, 0xc7, 0xa0,
0x82, 0x0e, 0xe3, 0x0a, 0x83, 0xf1, 0x3f, 0x06, 0x94, 0xd1, 0xb7, 0xe4, 0x7b, 0x23, 0x2f, 0x79, 0xb3, 0x7f, 0x61, 0x41, 0x87, 0x71, 0x85, 0xc1, 0xf8, 0x1f, 0x03, 0xca, 0xe8, 0x5b, 0xf2, 0xbd,
0x0c, 0x75, 0x4c, 0x87, 0x63, 0x1a, 0x08, 0xae, 0xef, 0x9a, 0x5c, 0x9f, 0x6a, 0xb7, 0xed, 0x6b, 0x41, 0x4b, 0x1e, 0x43, 0x1d, 0xcb, 0xe1, 0x98, 0x06, 0x82, 0xeb, 0xbb, 0x26, 0xd7, 0xa7, 0xda,
0x4e, 0x9a, 0x99, 0xad, 0x65, 0xd9, 0xc0, 0x1a, 0x8f, 0x12, 0x67, 0x61, 0x4d, 0x3a, 0xb6, 0x01, 0x6d, 0xfb, 0x9a, 0x93, 0x12, 0xb3, 0xbd, 0x2c, 0x9b, 0x58, 0xe3, 0x59, 0xe2, 0x2c, 0x58, 0x93,
0x3e, 0xa1, 0x97, 0xbb, 0x61, 0x1f, 0x5d, 0x2a, 0xb7, 0x01, 0x18, 0x0f, 0x9e, 0x78, 0x23, 0x5f, 0x8e, 0x6d, 0x80, 0x4f, 0xe8, 0xe5, 0x6e, 0xd8, 0xc7, 0x90, 0xca, 0x6d, 0x00, 0xc6, 0x83, 0x27,
0x78, 0x04, 0xaa, 0x4e, 0xfd, 0x15, 0xbd, 0x7c, 0x8a, 0x00, 0x53, 0xe3, 0x8c, 0x9c, 0x8a, 0x48, 0xde, 0xc8, 0x17, 0x11, 0x81, 0xaa, 0x53, 0x7f, 0x45, 0x2f, 0x9f, 0x22, 0x80, 0xa9, 0x71, 0x86,
0xd5, 0xa9, 0xbd, 0xa2, 0x97, 0x3b, 0x28, 0x1e, 0x2e, 0xb4, 0x3e, 0xa1, 0x97, 0x9b, 0x94, 0xdb, 0x4e, 0x45, 0xa4, 0xea, 0xd4, 0x5e, 0xd1, 0xcb, 0x1d, 0x14, 0x0f, 0x17, 0x5a, 0x9f, 0xd0, 0xcb,
0x75, 0x61, 0x44, 0x6c, 0x68, 0x45, 0xde, 0x05, 0xb3, 0xdc, 0x8c, 0x88, 0x58, 0x23, 0xf2, 0x2e, 0x4d, 0xca, 0xed, 0xba, 0x30, 0x22, 0x36, 0xb4, 0x22, 0xef, 0x82, 0x59, 0x6e, 0x46, 0x46, 0xac,
0x3e, 0xa1, 0x97, 0xeb, 0x18, 0x12, 0x7b, 0x00, 0xb3, 0x8c, 0x3e, 0x0c, 0xfb, 0x62, 0x65, 0x92, 0x11, 0x79, 0x17, 0x9f, 0xd0, 0xcb, 0x75, 0x4c, 0x89, 0x3d, 0x80, 0x59, 0x86, 0x1f, 0x86, 0x7d,
0x41, 0xfe, 0xb4, 0x51, 0xce, 0xcc, 0x2b, 0xfc, 0xdb, 0xfe, 0x8f, 0x16, 0xb4, 0xd8, 0x08, 0xa0, 0xb1, 0x33, 0xc9, 0x24, 0x7f, 0xda, 0x29, 0x67, 0xe6, 0x15, 0xfe, 0x6d, 0xff, 0x07, 0x0b, 0x5a,
0xda, 0x63, 0x33, 0x21, 0xcf, 0x8a, 0x58, 0xe9, 0x59, 0x91, 0x55, 0xa1, 0x33, 0xb8, 0x0e, 0x2d, 0x6c, 0x06, 0x50, 0xed, 0xb1, 0x95, 0x90, 0x67, 0x45, 0xac, 0xf4, 0xac, 0xc8, 0xaa, 0xd0, 0x19,
0x4d, 0xd7, 0xa1, 0x38, 0x6c, 0x5c, 0x81, 0x7e, 0x08, 0x75, 0x2e, 0x4e, 0x4c, 0x7c, 0xcb, 0xc6, 0x5c, 0x87, 0x96, 0xa6, 0xeb, 0x50, 0x9c, 0x36, 0xae, 0x40, 0x3f, 0x84, 0x3a, 0x17, 0x27, 0x26,
0x4c, 0x19, 0x1d, 0x72, 0x6a, 0x98, 0xed, 0x13, 0x1e, 0x96, 0xd6, 0x7c, 0x3a, 0x7c, 0x90, 0xeb, 0xbe, 0x65, 0x63, 0xa5, 0x8c, 0x01, 0x39, 0x35, 0x24, 0xfb, 0x84, 0xa7, 0xa5, 0xb5, 0x98, 0x0e,
0x1c, 0x61, 0xe4, 0x82, 0x08, 0x67, 0xb5, 0x28, 0xc2, 0xf9, 0x02, 0x1a, 0x1a, 0x63, 0x91, 0x6f, 0x9f, 0xe4, 0x3a, 0x87, 0x30, 0x74, 0x41, 0x86, 0xb3, 0x5a, 0x94, 0xe1, 0x7c, 0x01, 0x0d, 0x8d,
0xf1, 0xd8, 0x30, 0x6f, 0x3c, 0xe7, 0x42, 0x93, 0x71, 0x8c, 0xde, 0xa3, 0xc2, 0xd4, 0x81, 0xf5, 0xb1, 0xc8, 0xb7, 0x78, 0x6e, 0x98, 0x77, 0x9e, 0x73, 0xa1, 0xc9, 0x38, 0xc6, 0xe8, 0x51, 0x61,
0x19, 0xa8, 0x20, 0x4b, 0x3e, 0x81, 0x79, 0xad, 0x58, 0xbe, 0x43, 0x2c, 0x6a, 0x93, 0x55, 0xd4, 0xea, 0x80, 0xf5, 0x19, 0xa8, 0x20, 0x4b, 0x3e, 0x81, 0x79, 0xad, 0x5a, 0xee, 0x21, 0x16, 0xf5,
0xa6, 0x3f, 0xb0, 0x60, 0x51, 0x7c, 0x8d, 0xe7, 0x8a, 0x7c, 0xb6, 0x8c, 0x3f, 0x8f, 0x4f, 0xd9, 0xc9, 0x2a, 0xea, 0xd3, 0x1f, 0x58, 0xb0, 0x28, 0xbe, 0xc6, 0x73, 0x45, 0x3e, 0xdb, 0xc6, 0x9f,
0x42, 0xca, 0x4a, 0x77, 0x23, 0x7a, 0xea, 0xc7, 0x09, 0x95, 0x8e, 0xf4, 0x02, 0x09, 0x61, 0x2c, 0xc7, 0xa7, 0x6c, 0x23, 0x65, 0xb5, 0xbb, 0x11, 0x3d, 0xf5, 0xe3, 0x84, 0xca, 0x40, 0x7a, 0x81,
0xcd, 0xb2, 0x3a, 0x22, 0x27, 0x79, 0x02, 0x0d, 0xfc, 0x94, 0xef, 0x61, 0xc5, 0xb4, 0x74, 0xf3, 0x84, 0x30, 0x96, 0x66, 0xa4, 0x8e, 0xa0, 0x24, 0x4f, 0xa0, 0x81, 0x9f, 0x72, 0x1f, 0x56, 0x2c,
0x1f, 0xf2, 0xa6, 0x32, 0x4d, 0x1e, 0xab, 0xd4, 0x7a, 0x1d, 0x66, 0x93, 0xc8, 0x3f, 0x3d, 0xa5, 0x4b, 0x37, 0xff, 0x21, 0xef, 0x2a, 0xd3, 0xe4, 0xb1, 0x2a, 0xad, 0xd7, 0x61, 0x36, 0x89, 0xfc,
0x91, 0xbd, 0xa4, 0x9a, 0xc6, 0xa4, 0x8d, 0x1e, 0x26, 0x74, 0xcc, 0x8c, 0x23, 0xc6, 0x19, 0x0d, 0xd3, 0x53, 0x1a, 0xd9, 0x4b, 0xaa, 0x6b, 0x4c, 0xda, 0xe8, 0x61, 0x42, 0xc7, 0xcc, 0x38, 0x62,
0x21, 0x54, 0xbf, 0xb4, 0xf3, 0xbc, 0xa7, 0x9d, 0x90, 0xe3, 0xbb, 0xd5, 0xf4, 0x40, 0xdc, 0x7d, 0x9c, 0xd1, 0x10, 0x42, 0xf5, 0x4b, 0x07, 0xcf, 0x7b, 0xda, 0x09, 0x39, 0xee, 0xad, 0xa6, 0x07,
0x98, 0x1b, 0x31, 0x43, 0x89, 0x59, 0xf0, 0x86, 0xe3, 0x3c, 0x0b, 0x33, 0xc3, 0x1b, 0xed, 0x96, 0xe2, 0xee, 0xc3, 0xdc, 0x88, 0x19, 0x4a, 0xcc, 0x82, 0x37, 0x02, 0xe7, 0x59, 0x30, 0x33, 0xbc,
0xd8, 0x4d, 0xfc, 0xa1, 0x2b, 0xa9, 0xe2, 0x2c, 0x5a, 0x11, 0x89, 0x2d, 0xdf, 0x71, 0xe2, 0x9d, 0xd1, 0x6e, 0x89, 0xdd, 0xc4, 0x1f, 0xba, 0x12, 0x2b, 0xce, 0xa2, 0x15, 0xa1, 0xd8, 0xf6, 0x1d,
0x52, 0x61, 0x1d, 0xf3, 0x84, 0xdd, 0x85, 0xa5, 0x83, 0x74, 0x5a, 0x34, 0x87, 0x84, 0xfd, 0xcf, 0x27, 0xde, 0x29, 0x15, 0xd6, 0x31, 0x2f, 0xd8, 0x5d, 0x58, 0x3a, 0x48, 0x97, 0x45, 0x0b, 0x48,
0x5a, 0xb0, 0x9c, 0x23, 0xa9, 0x93, 0xb3, 0xc2, 0x1b, 0x3c, 0xf4, 0x47, 0xc7, 0xa1, 0xf2, 0xe6, 0xd8, 0xff, 0xac, 0x05, 0xcb, 0x39, 0x94, 0x3a, 0x39, 0x2b, 0xa2, 0xc1, 0x43, 0x7f, 0x74, 0x1c,
0x58, 0xba, 0xa3, 0xd8, 0x20, 0x91, 0x53, 0xb8, 0x2e, 0xb9, 0x82, 0xa9, 0x90, 0xd4, 0xec, 0x2f, 0xaa, 0x68, 0x8e, 0xa5, 0x07, 0x8a, 0x0d, 0x14, 0x39, 0x85, 0xeb, 0x92, 0x2b, 0x98, 0x0a, 0x49,
0xa1, 0x25, 0xfa, 0xa1, 0xa9, 0xb1, 0xb2, 0x15, 0x4a, 0x5c, 0x5f, 0x15, 0x8b, 0xcb, 0x23, 0x67, 0xcd, 0xfe, 0x12, 0x5a, 0xa2, 0x1f, 0x9a, 0x1a, 0x2b, 0xdb, 0xa0, 0x84, 0xeb, 0xbb, 0x62, 0x71,
0xd0, 0x55, 0xec, 0x27, 0x2c, 0x25, 0x6d, 0x27, 0xc3, 0xea, 0xfa, 0xe0, 0x0d, 0x75, 0x19, 0xfe, 0x7d, 0xe4, 0x0c, 0xba, 0x8a, 0xfd, 0x84, 0xa5, 0xa4, 0x79, 0x32, 0xac, 0xad, 0x0f, 0xde, 0xd0,
0x0b, 0x67, 0x6a, 0x69, 0xe4, 0x12, 0xee, 0x48, 0x1a, 0x9a, 0x42, 0xf9, 0xfa, 0x2a, 0x6f, 0xd5, 0x96, 0x11, 0xbf, 0x70, 0xa6, 0xd6, 0x46, 0x2e, 0xe1, 0x8e, 0xc4, 0xa1, 0x29, 0x94, 0x6f, 0xaf,
0x37, 0xf4, 0xcc, 0x98, 0x95, 0xbe, 0xa1, 0x60, 0xf2, 0x63, 0x58, 0xba, 0xf0, 0xfc, 0x44, 0x36, 0xf2, 0x56, 0x63, 0xc3, 0xc8, 0x8c, 0xd9, 0xe8, 0x1b, 0x2a, 0x26, 0x3f, 0x86, 0xa5, 0x0b, 0xcf,
0x4b, 0xdb, 0x45, 0x55, 0xb1, 0xca, 0xd5, 0x37, 0x54, 0xf9, 0x92, 0x7f, 0x6c, 0xd8, 0x87, 0x53, 0x4f, 0x64, 0xb7, 0x34, 0x2f, 0xaa, 0x8a, 0x4d, 0xae, 0xbe, 0xa1, 0xc9, 0x97, 0xfc, 0x63, 0xc3,
0x4a, 0xec, 0xfd, 0xa2, 0x04, 0x6d, 0xb3, 0x1c, 0xc6, 0xa6, 0x42, 0x2b, 0x49, 0x83, 0x42, 0xee, 0x3e, 0x9c, 0x52, 0x63, 0xef, 0x17, 0x25, 0x68, 0x9b, 0xf5, 0x30, 0x36, 0x15, 0x5a, 0x49, 0x1a,
0x3f, 0x33, 0x70, 0xde, 0x29, 0x5a, 0x2a, 0x72, 0x8a, 0xea, 0x6e, 0xc8, 0xf2, 0x9b, 0xa2, 0x2e, 0x14, 0xd2, 0xff, 0xcc, 0x80, 0xf3, 0x41, 0xd1, 0x52, 0x51, 0x50, 0x54, 0x0f, 0x43, 0x96, 0xdf,
0x95, 0xb7, 0x8b, 0xba, 0x54, 0x0b, 0xa3, 0x2e, 0xd3, 0x9d, 0xf3, 0x33, 0xbf, 0xac, 0x73, 0x7e, 0x94, 0x75, 0xa9, 0xbc, 0x5d, 0xd6, 0xa5, 0x5a, 0x98, 0x75, 0x99, 0x1e, 0x9c, 0x9f, 0xf9, 0x65,
0xf6, 0x4a, 0xe7, 0x7c, 0xef, 0xff, 0x5a, 0x40, 0xf2, 0xdc, 0x4b, 0x9e, 0x71, 0x3f, 0x70, 0x40, 0x83, 0xf3, 0xb3, 0x57, 0x06, 0xe7, 0x7b, 0xff, 0xd7, 0x02, 0x92, 0xe7, 0x5e, 0xf2, 0x8c, 0xc7,
0x87, 0x42, 0xbd, 0x7d, 0xed, 0xed, 0x24, 0x40, 0xce, 0x96, 0xfc, 0x9a, 0x89, 0xa2, 0x7e, 0x7c, 0x81, 0x03, 0x3a, 0x14, 0xea, 0xed, 0x6b, 0x6f, 0x27, 0x01, 0x72, 0xb5, 0xe4, 0xd7, 0x4c, 0x14,
0x55, 0xdf, 0xdb, 0xb4, 0x9c, 0x22, 0x52, 0x26, 0xf2, 0x54, 0x79, 0x73, 0xe4, 0xa9, 0xfa, 0xe6, 0xf5, 0xe3, 0xab, 0xba, 0x6f, 0xd3, 0x72, 0x8a, 0x50, 0x99, 0xcc, 0x53, 0xe5, 0xcd, 0x99, 0xa7,
0xc8, 0xd3, 0x4c, 0x36, 0xf2, 0xd4, 0xfb, 0x6b, 0x16, 0x2c, 0x14, 0xb0, 0xd9, 0xaf, 0xaf, 0xe3, 0xea, 0x9b, 0x33, 0x4f, 0x33, 0xd9, 0xcc, 0x53, 0xef, 0xaf, 0x59, 0xb0, 0x50, 0xc0, 0x66, 0x5f,
0x8c, 0x31, 0x0c, 0xed, 0x53, 0x12, 0x8c, 0xa1, 0x83, 0xbd, 0xbf, 0x0c, 0x2d, 0x43, 0xb4, 0x7e, 0xdc, 0xc0, 0x19, 0x63, 0x18, 0xda, 0xa7, 0x24, 0x18, 0x43, 0x07, 0xf6, 0xfe, 0x32, 0xb4, 0x0c,
0x7d, 0xf5, 0x67, 0xb7, 0x67, 0x9c, 0xb3, 0x0d, 0xac, 0xf7, 0xbf, 0x4a, 0x40, 0xf2, 0xe2, 0xfd, 0xd1, 0xfa, 0xe2, 0xda, 0xcf, 0xba, 0x67, 0x9c, 0xb3, 0x0d, 0x58, 0xef, 0x7f, 0x96, 0x80, 0xe4,
0x85, 0xb6, 0x21, 0x3f, 0x4e, 0xe5, 0x82, 0x71, 0xfa, 0x0b, 0x5d, 0x79, 0x3e, 0x80, 0x79, 0x71, 0xc5, 0xfb, 0xd7, 0xda, 0x87, 0xfc, 0x3c, 0x95, 0x0b, 0xe6, 0xe9, 0x2f, 0x74, 0xe7, 0xf9, 0x00,
0x26, 0x5f, 0xf3, 0xfc, 0x73, 0x8e, 0xc9, 0x13, 0xd8, 0x06, 0xd5, 0x0c, 0xfb, 0xd5, 0x8c, 0x33, 0xe6, 0xc5, 0x99, 0x7c, 0x2d, 0xf2, 0xcf, 0x39, 0x26, 0x8f, 0x60, 0x0e, 0xaa, 0x99, 0xf6, 0xab,
0xc8, 0xda, 0xf2, 0x9b, 0x89, 0xfe, 0xd9, 0x3d, 0xe8, 0x8a, 0x11, 0xca, 0xbb, 0xfe, 0xfe, 0x45, 0x19, 0x67, 0x90, 0xb5, 0xed, 0x37, 0x93, 0xfd, 0xb3, 0x7b, 0xd0, 0x15, 0x33, 0x94, 0x0f, 0xfd,
0x59, 0xed, 0xb1, 0x91, 0x28, 0xec, 0xe7, 0x6f, 0x40, 0x53, 0x5f, 0x3e, 0xc4, 0x74, 0x64, 0x82, 0xfd, 0x8b, 0xb2, 0xf2, 0xb1, 0x11, 0x29, 0xec, 0xe7, 0x6f, 0x40, 0x53, 0xdf, 0x3e, 0xc4, 0x72,
0x3f, 0xcc, 0xcc, 0xd0, 0x73, 0x91, 0x4d, 0x68, 0xa3, 0x92, 0x1c, 0xa8, 0xef, 0xb8, 0xa5, 0x71, 0x64, 0x92, 0x3f, 0xcc, 0xcc, 0xd0, 0xa9, 0xc8, 0x26, 0xb4, 0x51, 0x49, 0x0e, 0xd4, 0x77, 0xdc,
0x85, 0x43, 0x7b, 0xfb, 0x9a, 0x93, 0xf9, 0x86, 0xfc, 0x16, 0xb4, 0x4d, 0x37, 0x97, 0xb0, 0x09, 0xd2, 0xb8, 0x22, 0xa0, 0xbd, 0x7d, 0xcd, 0xc9, 0x7c, 0x43, 0x7e, 0x0b, 0xda, 0x66, 0x98, 0x4b,
0x8b, 0xcc, 0x48, 0xf6, 0xb9, 0x99, 0x99, 0xac, 0x41, 0x27, 0xeb, 0x27, 0x13, 0x07, 0x24, 0xa7, 0xd8, 0x84, 0x45, 0x66, 0x24, 0xfb, 0xdc, 0x24, 0x26, 0x6b, 0xd0, 0xc9, 0xc6, 0xc9, 0xc4, 0x01,
0x14, 0x90, 0xcb, 0x4e, 0x1e, 0x0b, 0x3f, 0x67, 0x15, 0xfd, 0x9c, 0xf7, 0xcc, 0xcf, 0xb4, 0x61, 0xc9, 0x29, 0x15, 0xe4, 0xc8, 0xc9, 0x63, 0x11, 0xe7, 0xac, 0x62, 0x9c, 0xf3, 0x9e, 0xf9, 0x99,
0x5a, 0xe1, 0xff, 0x69, 0x1e, 0xcf, 0xdf, 0x05, 0x48, 0x31, 0xd2, 0x81, 0xe6, 0xfe, 0xc1, 0xd6, 0x36, 0x4d, 0x2b, 0xfc, 0x3f, 0x2d, 0xe2, 0xf9, 0xbb, 0x00, 0x29, 0x8c, 0x74, 0xa0, 0xb9, 0x7f,
0x9e, 0xbb, 0xb1, 0xbd, 0xb6, 0xb7, 0xb7, 0xb5, 0xdb, 0xb9, 0x46, 0x08, 0xb4, 0x31, 0x2e, 0xb2, 0xb0, 0xb5, 0xe7, 0x6e, 0x6c, 0xaf, 0xed, 0xed, 0x6d, 0xed, 0x76, 0xae, 0x11, 0x02, 0x6d, 0xcc,
0xa9, 0x30, 0x8b, 0x61, 0xc2, 0x0b, 0x2c, 0xb1, 0x12, 0x59, 0x84, 0xce, 0xce, 0x5e, 0x06, 0x2d, 0x8b, 0x6c, 0x2a, 0x98, 0xc5, 0x60, 0x22, 0x0a, 0x2c, 0x61, 0x25, 0xb2, 0x08, 0x9d, 0x9d, 0xbd,
0x33, 0x4b, 0x4c, 0x34, 0x91, 0x59, 0x62, 0xfc, 0xce, 0xc5, 0x3a, 0x67, 0x0f, 0x69, 0x9d, 0xfc, 0x0c, 0xb4, 0xcc, 0x2c, 0x31, 0xd1, 0x45, 0x66, 0x89, 0xf1, 0x3b, 0x17, 0xeb, 0x9c, 0x3d, 0xa4,
0x03, 0x0b, 0xae, 0x67, 0x08, 0xe9, 0x29, 0x5a, 0x6e, 0x80, 0x98, 0x56, 0x89, 0x09, 0x62, 0x4c, 0x75, 0xf2, 0x0f, 0x2c, 0xb8, 0x9e, 0x41, 0xa4, 0xa7, 0x68, 0xb9, 0x01, 0x62, 0x5a, 0x25, 0x26,
0x57, 0x6e, 0xdc, 0x32, 0x1a, 0x24, 0x4f, 0x60, 0x3c, 0xaf, 0x6d, 0xf4, 0x32, 0x92, 0x54, 0x44, 0x10, 0x73, 0xba, 0xd2, 0x71, 0xcb, 0x68, 0x90, 0x3c, 0x82, 0xf1, 0xbc, 0xe6, 0xe8, 0x65, 0x24,
0xb2, 0x97, 0xd5, 0x61, 0xc5, 0x4c, 0xc3, 0x4f, 0xf8, 0x5d, 0x0e, 0x9d, 0x90, 0xfa, 0x7b, 0xcd, 0xa9, 0x08, 0x65, 0x2f, 0xab, 0xc3, 0x8a, 0x99, 0x8e, 0x9f, 0xf0, 0xbb, 0x1c, 0x3a, 0x22, 0x8d,
0x26, 0xcb, 0x24, 0xdb, 0xa3, 0x1b, 0xc6, 0x8e, 0xd9, 0xde, 0x42, 0x9a, 0xfd, 0xbf, 0x2b, 0x40, 0xf7, 0x9a, 0x5d, 0x96, 0x45, 0xe6, 0xa3, 0x1b, 0xc6, 0x8e, 0xd9, 0xdf, 0x42, 0x9c, 0xfd, 0xbf,
0xbe, 0x3b, 0xa1, 0xd1, 0x25, 0x1e, 0x93, 0x55, 0x61, 0xa6, 0xe5, 0xac, 0xd3, 0x7b, 0x66, 0x3c, 0x2a, 0x40, 0xbe, 0x3b, 0xa1, 0xd1, 0x25, 0x1e, 0x93, 0x55, 0x69, 0xa6, 0xe5, 0x6c, 0xd0, 0x7b,
0x39, 0x66, 0x5b, 0x09, 0xb1, 0xc5, 0x29, 0xbd, 0xd5, 0x71, 0xf8, 0xa2, 0xe3, 0xe8, 0x95, 0x37, 0x66, 0x3c, 0x39, 0x66, 0xae, 0x84, 0x70, 0x71, 0x4a, 0x6f, 0x75, 0x1c, 0xbe, 0xe8, 0x38, 0x7a,
0x1f, 0x47, 0xaf, 0xbe, 0xe9, 0x38, 0xfa, 0x97, 0xa0, 0xe5, 0x9f, 0x06, 0x21, 0x53, 0x07, 0xcc, 0xe5, 0xcd, 0xc7, 0xd1, 0xab, 0x6f, 0x3a, 0x8e, 0xfe, 0x25, 0x68, 0xf9, 0xa7, 0x41, 0xc8, 0xd4,
0x84, 0x88, 0xbb, 0x33, 0x77, 0xcb, 0xf7, 0x9b, 0x4e, 0x53, 0x80, 0x7b, 0x0c, 0x23, 0x4f, 0xd2, 0x01, 0x33, 0x21, 0xe2, 0xee, 0xcc, 0xdd, 0xf2, 0xfd, 0xa6, 0xd3, 0x14, 0xc0, 0x3d, 0x06, 0x23,
0x4c, 0x74, 0x70, 0x8a, 0xd7, 0x27, 0x74, 0x05, 0xb1, 0x35, 0x38, 0xa5, 0x62, 0x47, 0x87, 0x4e, 0x4f, 0x52, 0x22, 0x3a, 0x38, 0xc5, 0xeb, 0x13, 0xba, 0x82, 0xd8, 0x1a, 0x9c, 0x52, 0xe1, 0xd1,
0x0f, 0xf9, 0x31, 0xc3, 0x63, 0x72, 0x0f, 0xda, 0x71, 0x38, 0x61, 0x46, 0x95, 0x1c, 0x06, 0xee, 0x61, 0xd0, 0x43, 0x7e, 0xcc, 0xe0, 0x31, 0xb9, 0x07, 0xed, 0x38, 0x9c, 0x30, 0xa3, 0x4a, 0x4e,
0x0a, 0x6e, 0x72, 0xf4, 0x80, 0x0f, 0xc6, 0x0a, 0x2c, 0x4c, 0x62, 0xea, 0x8e, 0xfc, 0x38, 0x66, 0x03, 0x0f, 0x05, 0x37, 0x39, 0xf4, 0x80, 0x4f, 0xc6, 0x0a, 0x2c, 0x4c, 0x62, 0xea, 0x8e, 0xfc,
0x0b, 0x67, 0x3f, 0x0c, 0x92, 0x28, 0x1c, 0x0a, 0xd7, 0xee, 0xfc, 0x24, 0xa6, 0xcf, 0x39, 0x65, 0x38, 0x66, 0x1b, 0x67, 0x3f, 0x0c, 0x92, 0x28, 0x1c, 0x8a, 0xd0, 0xee, 0xfc, 0x24, 0xa6, 0xcf,
0x83, 0x13, 0xc8, 0x37, 0xd2, 0x26, 0x8d, 0x3d, 0x3f, 0x8a, 0xbb, 0x80, 0x4d, 0x92, 0x3d, 0x65, 0x39, 0x66, 0x83, 0x23, 0xc8, 0x37, 0xd2, 0x2e, 0x8d, 0x3d, 0x3f, 0x8a, 0xbb, 0x80, 0x5d, 0x92,
0xed, 0x3e, 0xf0, 0xfc, 0x48, 0xb5, 0x85, 0x25, 0xe2, 0xcc, 0x31, 0xf9, 0x46, 0xf6, 0x98, 0xfc, 0x23, 0x65, 0xfd, 0x3e, 0xf0, 0xfc, 0x48, 0xf5, 0x85, 0x15, 0xe2, 0xcc, 0x31, 0xf9, 0x46, 0xf6,
0x8f, 0x8a, 0x8f, 0xc9, 0xb7, 0xb0, 0xe8, 0x47, 0xa2, 0xe8, 0xfc, 0x14, 0xbf, 0xfd, 0x69, 0xf9, 0x98, 0xfc, 0x8f, 0x8a, 0x8f, 0xc9, 0xb7, 0xb0, 0xea, 0x47, 0xa2, 0xea, 0xfc, 0x12, 0xbf, 0xfd,
0x5f, 0xcf, 0x39, 0x76, 0x71, 0xf4, 0x7a, 0x05, 0x6a, 0xb2, 0x9b, 0x84, 0x40, 0xe5, 0x24, 0x0a, 0x69, 0xf9, 0x2f, 0xe6, 0x1c, 0xbb, 0x38, 0x7a, 0xbd, 0x02, 0x35, 0x39, 0x4c, 0x42, 0xa0, 0x72,
0x47, 0xd2, 0xf1, 0xc5, 0xfe, 0x26, 0x6d, 0x28, 0x25, 0xa1, 0xf8, 0xb8, 0x94, 0x84, 0xf6, 0xef, 0x12, 0x85, 0x23, 0x19, 0xf8, 0x62, 0x7f, 0x93, 0x36, 0x94, 0x92, 0x50, 0x7c, 0x5c, 0x4a, 0x42,
0x41, 0x43, 0x9b, 0x29, 0xf2, 0x2e, 0xdf, 0x4f, 0x33, 0x9b, 0x50, 0x6c, 0x18, 0x79, 0x68, 0xbc, 0xfb, 0xf7, 0xa0, 0xa1, 0xad, 0x14, 0x79, 0x97, 0xfb, 0xd3, 0xcc, 0x26, 0x14, 0x0e, 0x23, 0x4f,
0x2e, 0xd0, 0x9d, 0x01, 0xf9, 0x2a, 0xcc, 0x0f, 0xfc, 0x88, 0xe2, 0x8d, 0x13, 0x37, 0xa2, 0xe7, 0x8d, 0xd7, 0x05, 0x74, 0x67, 0x40, 0xbe, 0x0a, 0xf3, 0x03, 0x3f, 0xa2, 0x78, 0xe3, 0xc4, 0x8d,
0x34, 0x8a, 0xa5, 0x2f, 0xb2, 0xa3, 0x08, 0x0e, 0xc7, 0x6d, 0x17, 0x16, 0x8c, 0xa1, 0x51, 0xca, 0xe8, 0x39, 0x8d, 0x62, 0x19, 0x8b, 0xec, 0x28, 0x84, 0xc3, 0xe1, 0xb6, 0x0b, 0x0b, 0xc6, 0xd4,
0x61, 0x06, 0xcf, 0x8b, 0xcb, 0xf0, 0x91, 0x79, 0x96, 0x5c, 0xd0, 0xd8, 0xb2, 0x2a, 0xdc, 0xa8, 0x28, 0xe5, 0x30, 0x83, 0xe7, 0xc5, 0x65, 0xfa, 0xc8, 0x3c, 0x4b, 0x2e, 0x70, 0x6c, 0x5b, 0x15,
0xee, 0x38, 0x0a, 0x8f, 0xb1, 0x12, 0xcb, 0x31, 0x30, 0xfb, 0x7f, 0x96, 0xa1, 0xbc, 0x1d, 0x8e, 0x61, 0x54, 0x77, 0x1c, 0x85, 0xc7, 0xd8, 0x88, 0xe5, 0x18, 0x30, 0xfb, 0x7f, 0x94, 0xa1, 0xbc,
0xf5, 0x80, 0xbe, 0x95, 0x0f, 0xe8, 0x0b, 0xfb, 0xd7, 0x55, 0xe6, 0xad, 0x30, 0x52, 0x0c, 0x90, 0x1d, 0x8e, 0xf5, 0x84, 0xbe, 0x95, 0x4f, 0xe8, 0x0b, 0xfb, 0xd7, 0x55, 0xe6, 0xad, 0x30, 0x52,
0x3c, 0x80, 0x36, 0x93, 0xb4, 0x24, 0x64, 0xf6, 0xfe, 0x85, 0x17, 0xf1, 0xc3, 0xe5, 0x65, 0x64, 0x0c, 0x20, 0x79, 0x00, 0x6d, 0x26, 0x69, 0x49, 0xc8, 0xec, 0xfd, 0x0b, 0x2f, 0xe2, 0x87, 0xcb,
0xdf, 0x0c, 0x85, 0x2c, 0x42, 0x59, 0x99, 0x6d, 0x98, 0x81, 0x25, 0xd9, 0x66, 0x13, 0x8f, 0x56, 0xcb, 0xc8, 0xbe, 0x19, 0x0c, 0x59, 0x84, 0xb2, 0x32, 0xdb, 0x90, 0x80, 0x15, 0x99, 0xb3, 0x89,
0x5d, 0x8a, 0xe0, 0x88, 0x48, 0x31, 0xc5, 0x65, 0x7e, 0xcf, 0xc5, 0x99, 0x2f, 0xbe, 0x45, 0x24, 0x47, 0xab, 0x2e, 0x45, 0x72, 0x44, 0x94, 0x98, 0xe2, 0x32, 0xbf, 0xe7, 0xe2, 0xcc, 0x37, 0xdf,
0x66, 0x8b, 0x33, 0x81, 0x1d, 0xa5, 0xa6, 0xad, 0x4a, 0xeb, 0x11, 0xb3, 0x9a, 0x19, 0x31, 0xbb, 0x22, 0x14, 0xb3, 0xc5, 0x99, 0xc0, 0x8e, 0x52, 0xd3, 0x56, 0x95, 0xf5, 0x8c, 0x59, 0xcd, 0xcc,
0x0b, 0x8d, 0x64, 0x78, 0xee, 0x8e, 0xbd, 0xcb, 0x61, 0xe8, 0x0d, 0x84, 0xa0, 0xe8, 0x10, 0x79, 0x98, 0xdd, 0x85, 0x46, 0x32, 0x3c, 0x77, 0xc7, 0xde, 0xe5, 0x30, 0xf4, 0x06, 0x42, 0x50, 0x74,
0x04, 0x30, 0x1a, 0x8f, 0x05, 0x17, 0xa3, 0x3b, 0xae, 0xb1, 0xda, 0x11, 0xa3, 0xff, 0xfc, 0xe0, 0x10, 0x79, 0x04, 0x30, 0x1a, 0x8f, 0x05, 0x17, 0x63, 0x38, 0xae, 0xb1, 0xda, 0x11, 0xb3, 0xff,
0x80, 0x73, 0x9f, 0xa3, 0xe5, 0x21, 0x5b, 0xd0, 0x2e, 0xbc, 0x21, 0x72, 0x5b, 0x1e, 0x00, 0x0a, 0xfc, 0xe0, 0x80, 0x73, 0x9f, 0xa3, 0xd1, 0x90, 0x2d, 0x68, 0x17, 0xde, 0x10, 0xb9, 0x2d, 0x0f,
0xc7, 0x2b, 0x05, 0x7c, 0x9e, 0xf9, 0xa8, 0xf7, 0x6d, 0x20, 0xbf, 0xe2, 0x45, 0x8d, 0x97, 0x50, 0x00, 0x85, 0xe3, 0x95, 0x02, 0x3e, 0xcf, 0x7c, 0xd4, 0xfb, 0x36, 0x90, 0x5f, 0xf1, 0xa2, 0xc6,
0x57, 0x2d, 0xd4, 0xaf, 0x47, 0xe0, 0x29, 0xbf, 0x86, 0x79, 0x3d, 0x02, 0x0f, 0xf5, 0xbd, 0x07, 0x4b, 0xa8, 0xab, 0x1e, 0xea, 0xd7, 0x23, 0xf0, 0x94, 0x5f, 0xc3, 0xbc, 0x1e, 0x81, 0x87, 0xfa,
0x6d, 0xbe, 0xda, 0x28, 0xfd, 0xc9, 0x4f, 0x66, 0x65, 0x50, 0xfb, 0xcf, 0x2d, 0xa8, 0x22, 0xe7, 0xde, 0x83, 0x36, 0xdf, 0x6d, 0x94, 0xfe, 0xe4, 0x27, 0xb3, 0x32, 0x50, 0xfb, 0xcf, 0x2d, 0xa8,
0x31, 0xf3, 0x8b, 0xd3, 0xd4, 0x49, 0x08, 0x11, 0x54, 0xc9, 0xc2, 0xc4, 0x36, 0x6e, 0x8e, 0x95, 0x22, 0xe7, 0x31, 0xf3, 0x8b, 0xe3, 0xd4, 0x49, 0x08, 0x91, 0x54, 0xc9, 0x82, 0x89, 0x6d, 0xdc,
0x14, 0x1b, 0xe8, 0xb7, 0xc7, 0xee, 0x42, 0x5d, 0xd5, 0xa4, 0xb1, 0x52, 0x0a, 0x92, 0x3b, 0x50, 0x1c, 0x2b, 0x29, 0x36, 0xd0, 0x6f, 0x8f, 0xdd, 0x85, 0xba, 0x6a, 0x49, 0x63, 0xa5, 0x14, 0x48,
0x39, 0x0b, 0xc7, 0x72, 0x87, 0x0a, 0xe9, 0x88, 0x3a, 0x88, 0xa7, 0xed, 0x61, 0xe5, 0xf1, 0x2e, 0xee, 0x40, 0xe5, 0x2c, 0x1c, 0x4b, 0x0f, 0x15, 0xd2, 0x19, 0x75, 0x10, 0x9e, 0xf6, 0x87, 0xd5,
0xf0, 0x5d, 0x40, 0x16, 0x2e, 0xe8, 0xeb, 0x4c, 0x61, 0x5f, 0x5f, 0xc0, 0x1c, 0xd3, 0x0f, 0x5a, 0xc7, 0x87, 0xc0, 0xbd, 0x80, 0x2c, 0xb8, 0x60, 0xac, 0x33, 0x85, 0x63, 0x7d, 0x01, 0x73, 0x4c,
0xd0, 0x73, 0xfa, 0x5a, 0xf4, 0x15, 0x66, 0xda, 0xf4, 0x87, 0x93, 0x01, 0xd5, 0xfd, 0x04, 0x18, 0x3f, 0x68, 0x49, 0xcf, 0xe9, 0x7b, 0xd1, 0x57, 0x98, 0x69, 0xd3, 0x1f, 0x4e, 0x06, 0x54, 0x8f,
0x2c, 0x13, 0xb8, 0xb4, 0x90, 0xed, 0x7f, 0x6e, 0x71, 0xbd, 0xc3, 0xca, 0x25, 0xf7, 0xa1, 0xc2, 0x13, 0x60, 0xb2, 0x4c, 0xc0, 0xa5, 0x85, 0x6c, 0xff, 0x73, 0x8b, 0xeb, 0x1d, 0x56, 0x2f, 0xb9,
0x96, 0x8d, 0x8c, 0x33, 0x4b, 0x9d, 0xbc, 0x64, 0xf9, 0x1c, 0xcc, 0xc1, 0x66, 0x11, 0xe3, 0x3c, 0x0f, 0x15, 0xb6, 0x6d, 0x64, 0x82, 0x59, 0xea, 0xe4, 0x25, 0xa3, 0x73, 0x90, 0x82, 0xad, 0x22,
0x7a, 0xe9, 0x3c, 0xca, 0x93, 0x6e, 0xb2, 0x55, 0xcf, 0x32, 0x7b, 0xd3, 0x0c, 0x4a, 0x56, 0xb4, 0xe6, 0x79, 0xf4, 0xda, 0x79, 0x96, 0x27, 0x75, 0xb2, 0xd5, 0xc8, 0x32, 0xbe, 0x69, 0x06, 0x4a,
0x83, 0x0d, 0x15, 0x63, 0x29, 0x92, 0x96, 0xd4, 0xe0, 0x94, 0x6a, 0x07, 0x1a, 0xfe, 0x65, 0x09, 0x56, 0xb4, 0x83, 0x0d, 0x15, 0x63, 0x2b, 0x92, 0x96, 0xd4, 0xe0, 0x94, 0x6a, 0x07, 0x1a, 0xfe,
0x5a, 0x46, 0x9b, 0x98, 0xf4, 0xe0, 0xbd, 0x2a, 0xee, 0x2a, 0x15, 0x33, 0xaf, 0x43, 0xba, 0xe4, 0x65, 0x09, 0x5a, 0x46, 0x9f, 0x98, 0xf4, 0xe0, 0xbd, 0x2a, 0x1e, 0x2a, 0x15, 0x2b, 0xaf, 0x83,
0x95, 0x4c, 0xc9, 0x53, 0x11, 0xde, 0xb2, 0x1e, 0xe1, 0x7d, 0x04, 0xf5, 0xf4, 0xea, 0xa0, 0xd9, 0x74, 0xc9, 0x2b, 0x99, 0x92, 0xa7, 0x32, 0xbc, 0x65, 0x3d, 0xc3, 0xfb, 0x08, 0xea, 0xe9, 0xd5,
0x28, 0x56, 0xa3, 0x3c, 0x83, 0x9a, 0x66, 0x4a, 0x63, 0xc2, 0x55, 0x3d, 0x26, 0xfc, 0x2d, 0x2d, 0x41, 0xb3, 0x53, 0xac, 0x45, 0x79, 0x06, 0x35, 0x25, 0x4a, 0x73, 0xc2, 0x55, 0x3d, 0x27, 0xfc,
0x66, 0x38, 0x83, 0xc5, 0xd8, 0x45, 0xa3, 0xfa, 0xc5, 0x1c, 0x32, 0x78, 0x02, 0x0d, 0xad, 0xf1, 0x2d, 0x2d, 0x67, 0x38, 0x83, 0xd5, 0xd8, 0x45, 0xb3, 0xfa, 0xeb, 0x39, 0x64, 0xf0, 0x04, 0x1a,
0x7a, 0x6c, 0xd0, 0x32, 0x62, 0x83, 0xea, 0xb4, 0x78, 0x29, 0x3d, 0x2d, 0x6e, 0xff, 0xac, 0x04, 0x5a, 0xe7, 0xf5, 0xdc, 0xa0, 0x65, 0xe4, 0x06, 0xd5, 0x69, 0xf1, 0x52, 0x7a, 0x5a, 0xdc, 0xfe,
0x2d, 0x26, 0x6b, 0x7e, 0x70, 0x7a, 0x10, 0x0e, 0xfd, 0xfe, 0x25, 0xf2, 0xb8, 0x14, 0x2b, 0x61, 0x59, 0x09, 0x5a, 0x4c, 0xd6, 0xfc, 0xe0, 0xf4, 0x20, 0x1c, 0xfa, 0xfd, 0x4b, 0xe4, 0x71, 0x29,
0xc3, 0x48, 0x99, 0x33, 0x61, 0xa6, 0x13, 0xd5, 0x15, 0x19, 0xae, 0xc0, 0x55, 0x9a, 0x69, 0x78, 0x56, 0xc2, 0x86, 0x91, 0x32, 0x67, 0x82, 0x99, 0x4e, 0x54, 0x57, 0x64, 0xb8, 0x02, 0x57, 0x65,
0xa6, 0x1f, 0x8f, 0xbd, 0x98, 0x6a, 0x17, 0x1b, 0x1d, 0x13, 0x64, 0x7a, 0x98, 0x01, 0x78, 0xf6, 0xa6, 0xe1, 0x99, 0x7e, 0x3c, 0xf6, 0x62, 0xaa, 0x5d, 0x6c, 0x74, 0x4c, 0x20, 0xd3, 0xc3, 0x0c,
0x7f, 0xe4, 0x0f, 0x87, 0x3e, 0xcf, 0xcb, 0x37, 0xdf, 0x45, 0x24, 0x56, 0xe7, 0xc0, 0x8f, 0xbd, 0x80, 0x67, 0xff, 0x47, 0xfe, 0x70, 0xe8, 0x73, 0x5a, 0xee, 0x7c, 0x17, 0xa1, 0x58, 0x9b, 0x03,
0xe3, 0xf4, 0x24, 0x8e, 0x4a, 0x63, 0x18, 0xc4, 0x7b, 0xad, 0x85, 0x41, 0xf8, 0x65, 0x21, 0x13, 0x3f, 0xf6, 0x8e, 0xd3, 0x93, 0x38, 0xaa, 0x8c, 0x69, 0x10, 0xef, 0xb5, 0x96, 0x06, 0xe1, 0x97,
0xcc, 0x72, 0xd5, 0x6c, 0x8e, 0xab, 0xec, 0x7f, 0x5b, 0x82, 0x86, 0xc6, 0xa3, 0x4c, 0xb7, 0x14, 0x85, 0x4c, 0x60, 0x96, 0xab, 0x66, 0x73, 0x5c, 0x65, 0xff, 0xdb, 0x12, 0x34, 0x34, 0x1e, 0x65,
0x2e, 0xc2, 0x1a, 0x2a, 0x8e, 0xa8, 0x05, 0x86, 0x3b, 0x47, 0x43, 0xc8, 0x3d, 0xb3, 0x56, 0x0c, 0xba, 0xa5, 0x70, 0x13, 0xd6, 0xa0, 0xe2, 0x88, 0x5a, 0x60, 0x84, 0x73, 0x34, 0x08, 0xb9, 0x67,
0x9f, 0xa2, 0xf6, 0x31, 0xf8, 0xf9, 0x16, 0xd4, 0x99, 0x1c, 0x7e, 0x88, 0xbe, 0x23, 0x71, 0x89, 0xb6, 0x8a, 0xe9, 0x53, 0xd4, 0x3e, 0x06, 0x3f, 0xdf, 0x82, 0x3a, 0x93, 0xc3, 0x0f, 0x31, 0x76,
0x58, 0x01, 0x92, 0xba, 0x8a, 0xd4, 0x6a, 0x4a, 0x45, 0xe0, 0xca, 0x43, 0x6b, 0x8f, 0xa1, 0x29, 0x24, 0x2e, 0x11, 0x2b, 0x80, 0xc4, 0xae, 0x22, 0xb6, 0x9a, 0x62, 0x11, 0x70, 0xe5, 0xa1, 0xb5,
0x8a, 0xc1, 0x39, 0xc6, 0x4e, 0xa7, 0x9a, 0xc0, 0x98, 0x7f, 0xc7, 0xc8, 0x29, 0xbf, 0x5c, 0x95, 0xc7, 0xd0, 0x14, 0xd5, 0xe0, 0x1a, 0xe3, 0xa0, 0x53, 0x4d, 0x60, 0xac, 0xbf, 0x63, 0x50, 0xca,
0x5f, 0xd6, 0xde, 0xf4, 0xa5, 0xcc, 0x69, 0x3f, 0x53, 0xe7, 0x01, 0x9f, 0x45, 0xde, 0xf8, 0x4c, 0x2f, 0x57, 0xe5, 0x97, 0xb5, 0x37, 0x7d, 0x29, 0x29, 0xed, 0x67, 0xea, 0x3c, 0xe0, 0xb3, 0xc8,
0x6a, 0xb7, 0x47, 0xb0, 0x20, 0x95, 0xd8, 0x24, 0xf0, 0x82, 0x20, 0x9c, 0x04, 0x7d, 0x2a, 0x0f, 0x1b, 0x9f, 0x49, 0xed, 0xf6, 0x08, 0x16, 0xa4, 0x12, 0x9b, 0x04, 0x5e, 0x10, 0x84, 0x93, 0xa0,
0x96, 0x17, 0x91, 0xec, 0x81, 0xba, 0x86, 0x84, 0x05, 0x91, 0x07, 0x50, 0xe5, 0x56, 0x30, 0xb7, 0x4f, 0xe5, 0xc1, 0xf2, 0x22, 0x94, 0x3d, 0x50, 0xd7, 0x90, 0xb0, 0x22, 0xf2, 0x00, 0xaa, 0xdc,
0x55, 0x8a, 0xf5, 0x19, 0xcf, 0x42, 0xee, 0x43, 0x95, 0x1b, 0xc3, 0xa5, 0xa9, 0x1a, 0x88, 0x67, 0x0a, 0xe6, 0xb6, 0x4a, 0xb1, 0x3e, 0xe3, 0x24, 0xe4, 0x3e, 0x54, 0xb9, 0x31, 0x5c, 0x9a, 0xaa,
0xb0, 0x57, 0x60, 0x0e, 0x3d, 0xf0, 0x9a, 0x22, 0xbe, 0x59, 0x64, 0xc3, 0xcc, 0xf4, 0xb9, 0x9f, 0x81, 0x38, 0x81, 0xbd, 0x02, 0x73, 0x18, 0x81, 0xd7, 0x14, 0xf1, 0xcd, 0x22, 0x1b, 0x66, 0xa6,
0x7e, 0x11, 0xc8, 0x1e, 0x97, 0x2b, 0xfd, 0xc0, 0xca, 0x9f, 0x97, 0xa1, 0xa1, 0xc1, 0x4c, 0x59, 0xcf, 0xe3, 0xf4, 0x8b, 0x40, 0xf6, 0xb8, 0x5c, 0xe9, 0x07, 0x56, 0xfe, 0xbc, 0x0c, 0x0d, 0x0d,
0xe2, 0xe9, 0x05, 0x77, 0xe0, 0x7b, 0x23, 0x2a, 0xbd, 0xf6, 0x2d, 0x27, 0x83, 0xb2, 0x7c, 0xde, 0xcc, 0x94, 0x25, 0x9e, 0x5e, 0x70, 0x07, 0xbe, 0x37, 0xa2, 0x32, 0x6a, 0xdf, 0x72, 0x32, 0x50,
0xf9, 0xa9, 0x1b, 0x4e, 0x12, 0x77, 0x40, 0x4f, 0x23, 0x4a, 0x85, 0x71, 0x95, 0x41, 0x59, 0x3e, 0x46, 0xe7, 0x9d, 0x9f, 0xba, 0xe1, 0x24, 0x71, 0x07, 0xf4, 0x34, 0xa2, 0x54, 0x18, 0x57, 0x19,
0xc6, 0xcd, 0x5a, 0x3e, 0x1e, 0x88, 0xcf, 0xa0, 0xf2, 0x60, 0x08, 0x1f, 0xa7, 0x4a, 0x7a, 0x30, 0x28, 0xa3, 0x63, 0xdc, 0xac, 0xd1, 0xf1, 0x44, 0x7c, 0x06, 0x2a, 0x0f, 0x86, 0xf0, 0x79, 0xaa,
0x84, 0x8f, 0x4a, 0x56, 0xcd, 0x57, 0x0b, 0xd4, 0xfc, 0x47, 0xb0, 0xc4, 0x15, 0xba, 0xd0, 0x1e, 0xa4, 0x07, 0x43, 0xf8, 0xac, 0x64, 0xd5, 0x7c, 0xb5, 0x40, 0xcd, 0x7f, 0x04, 0x4b, 0x5c, 0xa1,
0x6e, 0x86, 0xb9, 0xa6, 0x50, 0xc9, 0x03, 0xe8, 0xb0, 0x36, 0x4b, 0xd1, 0x88, 0xfd, 0x9f, 0x70, 0x0b, 0xed, 0xe1, 0x66, 0x98, 0x6b, 0x0a, 0x96, 0x3c, 0x80, 0x0e, 0xeb, 0xb3, 0x14, 0x8d, 0xd8,
0x19, 0xb3, 0x9c, 0x1c, 0xce, 0xf2, 0x62, 0x50, 0x51, 0xcf, 0xcb, 0x0f, 0x4a, 0xe6, 0x70, 0xcc, 0xff, 0x29, 0x97, 0x31, 0xcb, 0xc9, 0xc1, 0x19, 0x2d, 0x26, 0x15, 0x75, 0x5a, 0x7e, 0x50, 0x32,
0xeb, 0xbd, 0x36, 0xf3, 0xd6, 0x45, 0xde, 0x0c, 0x4e, 0x1e, 0xc3, 0xf2, 0x88, 0x0e, 0x7c, 0xcf, 0x07, 0x47, 0x5a, 0xef, 0xb5, 0x49, 0x5b, 0x17, 0xb4, 0x19, 0x38, 0x79, 0x0c, 0xcb, 0x23, 0x3a,
0x2c, 0xc2, 0x4d, 0x2d, 0x8e, 0x69, 0x64, 0x56, 0x0b, 0x1b, 0x85, 0x9f, 0x84, 0xa3, 0x63, 0x9f, 0xf0, 0x3d, 0xb3, 0x0a, 0x37, 0xb5, 0x38, 0xa6, 0xa1, 0x59, 0x2b, 0x6c, 0x16, 0x7e, 0x1a, 0x8e,
0xaf, 0xb2, 0x3c, 0xfc, 0x59, 0x71, 0x72, 0xb8, 0xdd, 0x82, 0xc6, 0x61, 0x12, 0x8e, 0xe5, 0xd4, 0x8e, 0x7d, 0xbe, 0xcb, 0xf2, 0xf4, 0x67, 0xc5, 0xc9, 0xc1, 0xed, 0x16, 0x34, 0x0e, 0x93, 0x70,
0xb7, 0xa1, 0xc9, 0x93, 0xe2, 0x2a, 0xc1, 0x4d, 0xb8, 0x81, 0xfc, 0x7a, 0x14, 0x8e, 0xc3, 0x61, 0x2c, 0x97, 0xbe, 0x0d, 0x4d, 0x5e, 0x14, 0x57, 0x09, 0x6e, 0xc2, 0x0d, 0xe4, 0xd7, 0xa3, 0x70,
0x78, 0x7a, 0x69, 0xf8, 0x5d, 0xfe, 0xbd, 0x05, 0x0b, 0x06, 0x35, 0x75, 0xbc, 0xa0, 0x93, 0x58, 0x1c, 0x0e, 0xc3, 0xd3, 0x4b, 0x23, 0xee, 0xf2, 0xef, 0x2d, 0x58, 0x30, 0xb0, 0x69, 0xe0, 0x05,
0x9e, 0xff, 0xe6, 0x2c, 0x3e, 0xaf, 0xad, 0x51, 0x3c, 0x23, 0x0f, 0x70, 0xbf, 0x10, 0x47, 0xc2, 0x83, 0xc4, 0xf2, 0xfc, 0x37, 0x67, 0xf1, 0x79, 0x6d, 0x8f, 0xe2, 0x84, 0x3c, 0xc1, 0xfd, 0x42,
0xd7, 0xd2, 0x4b, 0x8d, 0xf2, 0x43, 0xce, 0xef, 0xdd, 0x3c, 0xbf, 0x8b, 0xef, 0xe5, 0x75, 0x47, 0x1c, 0x09, 0x5f, 0x4b, 0x2f, 0x35, 0xca, 0x0f, 0x39, 0xbf, 0x77, 0xf3, 0xfc, 0x2e, 0xbe, 0x97,
0x59, 0xc4, 0x6f, 0x89, 0x63, 0xad, 0x03, 0xd1, 0xe9, 0xb2, 0x79, 0x14, 0x51, 0xf7, 0xd3, 0xc9, 0xd7, 0x1d, 0x65, 0x15, 0xbf, 0x25, 0x8e, 0xb5, 0x0e, 0xc4, 0xa0, 0xcb, 0xe6, 0x51, 0x44, 0x3d,
0x16, 0xf4, 0x15, 0x18, 0xdb, 0x3f, 0xb7, 0x00, 0xd2, 0xd6, 0xe1, 0x61, 0x48, 0xb5, 0xce, 0xf2, 0x4e, 0x27, 0x7b, 0xd0, 0x57, 0xc0, 0xd8, 0xfe, 0xb9, 0x05, 0x90, 0xf6, 0x0e, 0x0f, 0x43, 0xaa,
0x77, 0x43, 0xb4, 0x35, 0xf5, 0x5d, 0x68, 0xaa, 0x03, 0x59, 0xe9, 0xd2, 0xdd, 0x90, 0x18, 0x33, 0x7d, 0x96, 0xbf, 0x1b, 0xa2, 0xed, 0xa9, 0xef, 0x42, 0x53, 0x1d, 0xc8, 0x4a, 0xb7, 0xee, 0x86,
0x75, 0xde, 0x87, 0xb9, 0xd3, 0x61, 0x78, 0x8c, 0x26, 0x95, 0x58, 0x67, 0xf9, 0x85, 0x8a, 0x36, 0x84, 0x31, 0x53, 0xe7, 0x7d, 0x98, 0x3b, 0x1d, 0x86, 0xc7, 0x68, 0x52, 0x89, 0x7d, 0x96, 0x5f,
0x87, 0xe5, 0xea, 0x99, 0xae, 0xf3, 0x95, 0xc2, 0x93, 0x5c, 0xfa, 0xaa, 0xcd, 0xd6, 0xba, 0xf9, 0xa8, 0x68, 0x73, 0xb0, 0xdc, 0x3d, 0xd3, 0x7d, 0xbe, 0x52, 0x78, 0x92, 0x4b, 0xdf, 0xb5, 0xd9,
0xdc, 0x48, 0x5c, 0x29, 0xe5, 0xbf, 0x54, 0x3c, 0xf3, 0x2a, 0xb7, 0xfd, 0x13, 0x68, 0x47, 0x5c, 0x5e, 0x37, 0x9f, 0x9b, 0x89, 0x2b, 0xa5, 0xfc, 0x97, 0xca, 0x67, 0x5e, 0x15, 0xb6, 0x7f, 0x02,
0x67, 0x4a, 0x85, 0x5a, 0xb9, 0x42, 0xa1, 0xb6, 0x22, 0x63, 0x65, 0xfe, 0x0a, 0x74, 0xbc, 0xc1, 0xed, 0x88, 0xeb, 0x4c, 0xa9, 0x50, 0x2b, 0x57, 0x28, 0xd4, 0x56, 0x64, 0xec, 0xcc, 0x5f, 0x81,
0x39, 0x8d, 0x12, 0x1f, 0xdd, 0x98, 0x68, 0xd3, 0xf1, 0x0e, 0xce, 0x69, 0x38, 0x9a, 0x4e, 0xef, 0x8e, 0x37, 0x38, 0xa7, 0x51, 0xe2, 0x63, 0x18, 0x13, 0x6d, 0x3a, 0x3e, 0xc0, 0x39, 0x0d, 0x8e,
0xc3, 0x9c, 0xb8, 0xde, 0xa2, 0x72, 0x8a, 0x1b, 0xf4, 0x29, 0xcc, 0x32, 0xda, 0xff, 0x58, 0x9e, 0xa6, 0xd3, 0xfb, 0x30, 0x27, 0xae, 0xb7, 0x28, 0x4a, 0x71, 0x83, 0x3e, 0x05, 0x33, 0x42, 0xfb,
0x87, 0x31, 0x67, 0xf7, 0xea, 0x51, 0xd1, 0x7b, 0x58, 0xca, 0xf4, 0xf0, 0x4b, 0x22, 0xda, 0x3f, 0x1f, 0xcb, 0xf3, 0x30, 0xe6, 0xea, 0x5e, 0x3d, 0x2b, 0xfa, 0x08, 0x4b, 0x99, 0x11, 0x7e, 0x49,
0x90, 0xfe, 0xd2, 0xb2, 0x76, 0x40, 0x7a, 0x20, 0xce, 0x13, 0x99, 0xc3, 0x5a, 0x79, 0x9b, 0x61, 0x64, 0xfb, 0x07, 0x32, 0x5e, 0x5a, 0xd6, 0x0e, 0x48, 0x0f, 0xc4, 0x79, 0x22, 0x73, 0x5a, 0x2b,
0xb5, 0xff, 0x8b, 0x05, 0xb3, 0xdb, 0xe1, 0x78, 0xdb, 0xe7, 0x67, 0x14, 0x51, 0x4c, 0xd4, 0xdd, 0x6f, 0x33, 0xad, 0xf6, 0x7f, 0xb6, 0x60, 0x76, 0x3b, 0x1c, 0x6f, 0xfb, 0xfc, 0x8c, 0x22, 0x8a,
0x32, 0x99, 0x7c, 0xc3, 0x41, 0xf2, 0x42, 0xab, 0xa4, 0x95, 0xb5, 0x4a, 0xbe, 0x0d, 0x37, 0xd1, 0x89, 0xba, 0x5b, 0x26, 0x8b, 0x6f, 0x38, 0x48, 0x5e, 0x68, 0x95, 0xb4, 0xb2, 0x56, 0xc9, 0xb7,
0x63, 0x1f, 0x85, 0xe3, 0x30, 0x62, 0xe2, 0xea, 0x0d, 0xb9, 0x09, 0x12, 0x06, 0xc9, 0x99, 0x54, 0xe1, 0x26, 0x46, 0xec, 0xa3, 0x70, 0x1c, 0x46, 0x4c, 0x5c, 0xbd, 0x21, 0x37, 0x41, 0xc2, 0x20,
0xa7, 0x57, 0x65, 0x41, 0x37, 0xda, 0x30, 0x39, 0x77, 0xf9, 0x76, 0x53, 0x58, 0x51, 0x5c, 0xcb, 0x39, 0x93, 0xea, 0xf4, 0x2a, 0x12, 0x0c, 0xa3, 0x0d, 0x93, 0x73, 0x97, 0xbb, 0x9b, 0xc2, 0x8a,
0xe6, 0x09, 0xf6, 0x6f, 0x42, 0x1d, 0xb7, 0x3b, 0xd8, 0xb5, 0x0f, 0xa0, 0x7e, 0x16, 0x8e, 0xdd, 0xe2, 0x5a, 0x36, 0x8f, 0xb0, 0x7f, 0x13, 0xea, 0xe8, 0xee, 0xe0, 0xd0, 0x3e, 0x80, 0xfa, 0x59,
0x33, 0x3f, 0x48, 0xa4, 0xf8, 0xb7, 0xd3, 0x7d, 0xc8, 0x36, 0x0e, 0x8a, 0xca, 0x60, 0xff, 0x87, 0x38, 0x76, 0xcf, 0xfc, 0x20, 0x91, 0xe2, 0xdf, 0x4e, 0xfd, 0x90, 0x6d, 0x9c, 0x14, 0x45, 0x60,
0x59, 0x98, 0xdd, 0x09, 0xce, 0x43, 0xbf, 0x8f, 0xe7, 0x6a, 0x46, 0x74, 0x14, 0xca, 0xdb, 0x76, 0xff, 0xef, 0x59, 0x98, 0xdd, 0x09, 0xce, 0x43, 0xbf, 0x8f, 0xe7, 0x6a, 0x46, 0x74, 0x14, 0xca,
0xec, 0x6f, 0x7c, 0x08, 0x23, 0xbd, 0x0f, 0xcf, 0x45, 0x48, 0x43, 0xd8, 0x06, 0x39, 0xd2, 0xef, 0xdb, 0x76, 0xec, 0x6f, 0x7c, 0x08, 0x23, 0xbd, 0x0f, 0xcf, 0x45, 0x48, 0x83, 0x30, 0x07, 0x39,
0xb3, 0x8b, 0x54, 0xba, 0xeb, 0xab, 0x6a, 0xf7, 0x15, 0x59, 0x69, 0xfc, 0x9e, 0x35, 0x8e, 0x1d, 0xd2, 0xef, 0xb3, 0x8b, 0x52, 0xea, 0xf5, 0x55, 0xb5, 0xfb, 0x8a, 0xac, 0x36, 0x7e, 0xcf, 0x1a,
0xbf, 0x25, 0xa1, 0x21, 0x6c, 0xf0, 0xc5, 0x01, 0x77, 0x7e, 0x02, 0x9a, 0x1f, 0xd1, 0x13, 0x10, 0xe7, 0x8e, 0xdf, 0x92, 0xd0, 0x20, 0x6c, 0xf2, 0xc5, 0x01, 0x77, 0x7e, 0x02, 0x9a, 0x1f, 0xd1,
0x6e, 0xfa, 0x23, 0xca, 0x63, 0x2e, 0xca, 0xf4, 0x62, 0x9b, 0x7e, 0x1d, 0x64, 0xe6, 0x19, 0xff, 0x13, 0x20, 0x74, 0xfa, 0x23, 0xca, 0x73, 0x2e, 0xca, 0xf4, 0x62, 0x4e, 0xbf, 0x0e, 0x64, 0xe6,
0x80, 0xe7, 0xe1, 0xcb, 0x81, 0x0e, 0xe1, 0x31, 0x8b, 0xcc, 0xeb, 0x10, 0xfc, 0x85, 0x8f, 0x2c, 0x19, 0xff, 0x80, 0xd3, 0xf0, 0xed, 0x40, 0x07, 0xe1, 0x31, 0x8b, 0xcc, 0xeb, 0x10, 0xfc, 0x85,
0xcc, 0x4f, 0x50, 0x29, 0xa5, 0xcb, 0xfb, 0x09, 0xfc, 0x4d, 0x80, 0x2c, 0xae, 0xb9, 0x0a, 0xf8, 0x8f, 0x2c, 0x98, 0x9f, 0xa0, 0x52, 0x4a, 0x97, 0x8f, 0x13, 0xf8, 0x9b, 0x00, 0x59, 0xb8, 0x16,
0x3d, 0x20, 0xe9, 0x2a, 0x60, 0x2c, 0xe3, 0x0d, 0x87, 0xc7, 0x5e, 0xff, 0x15, 0xdf, 0xd9, 0x36, 0x2a, 0xe0, 0xf7, 0x80, 0x64, 0xa8, 0x80, 0xb1, 0x8c, 0x37, 0x1c, 0x1e, 0x7b, 0xfd, 0x57, 0xdc,
0x79, 0xa8, 0xce, 0x00, 0xf1, 0x98, 0x7a, 0x3a, 0xaf, 0x78, 0xc2, 0xa5, 0xe2, 0xe8, 0x10, 0x59, 0xb3, 0x6d, 0xf2, 0x54, 0x9d, 0x01, 0xc4, 0x63, 0xea, 0xe9, 0xba, 0xe2, 0x09, 0x97, 0x8a, 0xa3,
0x85, 0x06, 0xba, 0x51, 0xc4, 0xcc, 0xb6, 0x71, 0x66, 0x3b, 0xba, 0x9f, 0x05, 0xe7, 0x56, 0xcf, 0x83, 0xc8, 0x2a, 0x34, 0x30, 0x8c, 0x22, 0x56, 0xb6, 0x8d, 0x2b, 0xdb, 0xd1, 0xe3, 0x2c, 0xb8,
0xa4, 0x9f, 0xf8, 0x99, 0xcb, 0xdd, 0xcc, 0xf1, 0x06, 0x03, 0x71, 0x12, 0xa4, 0xc3, 0xef, 0xc4, 0xb6, 0x3a, 0x91, 0x7e, 0xe2, 0x67, 0x2e, 0x77, 0x33, 0xc7, 0x1b, 0x0c, 0xc4, 0x49, 0x90, 0x0e,
0x2b, 0x00, 0x1d, 0x35, 0x7c, 0xc0, 0x78, 0x86, 0x79, 0xcc, 0x60, 0x60, 0xe4, 0x0e, 0x77, 0x63, 0xbf, 0x13, 0xaf, 0x00, 0x18, 0xa8, 0xe1, 0x13, 0xc6, 0x09, 0xe6, 0x91, 0xc0, 0x80, 0x91, 0x3b,
0x8e, 0x3d, 0x7f, 0x80, 0x27, 0x2e, 0xf9, 0x5e, 0x58, 0x61, 0xac, 0x0c, 0xf9, 0x37, 0x2e, 0x9c, 0x3c, 0x8c, 0x39, 0xf6, 0xfc, 0x01, 0x9e, 0xb8, 0xe4, 0xbe, 0xb0, 0x82, 0xb1, 0x3a, 0xe4, 0xdf,
0x0b, 0x38, 0x2a, 0x06, 0xc6, 0xc6, 0x46, 0xa5, 0x47, 0xe9, 0x55, 0x1e, 0x13, 0x24, 0x1f, 0x62, 0xb8, 0x71, 0x2e, 0xe0, 0xac, 0x18, 0x30, 0x36, 0x37, 0xaa, 0x3c, 0x4a, 0xaf, 0xf2, 0x98, 0x40,
0x84, 0x3d, 0xa1, 0x78, 0x5f, 0xa7, 0xbd, 0x7a, 0x53, 0xf4, 0x59, 0xb0, 0xad, 0xfc, 0x1f, 0x4f, 0xf2, 0x21, 0x66, 0xd8, 0x13, 0x8a, 0xf7, 0x75, 0xda, 0xab, 0x37, 0xc5, 0x98, 0x05, 0xdb, 0xca,
0x14, 0x38, 0x3c, 0x27, 0x33, 0xdb, 0x78, 0x90, 0x63, 0xc9, 0x30, 0xdb, 0x44, 0x56, 0x0c, 0x72, 0xff, 0xf1, 0x44, 0x81, 0xc3, 0x29, 0x99, 0xd9, 0xc6, 0x93, 0x1c, 0x4b, 0x86, 0xd9, 0x26, 0x48,
0xf0, 0x0c, 0xe4, 0xb1, 0xb6, 0x13, 0xeb, 0x62, 0xe6, 0x5b, 0x99, 0xf2, 0xbf, 0x90, 0x3d, 0xd8, 0x31, 0xc9, 0xc1, 0x09, 0xc8, 0x63, 0xcd, 0x13, 0xeb, 0x22, 0xf1, 0xad, 0x4c, 0xfd, 0x53, 0x7c,
0x1a, 0x34, 0xf5, 0x7e, 0x90, 0x1a, 0x54, 0xf6, 0x0f, 0xb6, 0xf6, 0x3a, 0xd7, 0x48, 0x03, 0x66, 0x30, 0xb6, 0x64, 0x7e, 0x8c, 0xa7, 0x63, 0x62, 0x1a, 0x0c, 0xf0, 0xea, 0x4e, 0xcd, 0xd1, 0x41,
0x0f, 0xb7, 0x8e, 0x8e, 0x76, 0xb7, 0x36, 0x3b, 0x16, 0x69, 0x42, 0x4d, 0x5d, 0x82, 0x28, 0xb1, 0x5f, 0xac, 0x97, 0xb6, 0x06, 0x4d, 0x7d, 0xa4, 0xa4, 0x06, 0x95, 0xfd, 0x83, 0xad, 0xbd, 0xce,
0xd4, 0xda, 0xc6, 0xc6, 0xd6, 0xc1, 0xd1, 0xd6, 0x66, 0xa7, 0xfc, 0x9d, 0x4a, 0xad, 0xd4, 0x29, 0x35, 0xd2, 0x80, 0xd9, 0xc3, 0xad, 0xa3, 0xa3, 0xdd, 0xad, 0xcd, 0x8e, 0x45, 0x9a, 0x50, 0x53,
0xa3, 0x01, 0xa9, 0x75, 0xf3, 0x0d, 0x7e, 0xb4, 0x3b, 0x00, 0xb8, 0xb1, 0x49, 0x4f, 0x04, 0x55, 0xd7, 0x24, 0x4a, 0xac, 0xb4, 0xb6, 0xb1, 0xb1, 0x75, 0x70, 0xb4, 0xb5, 0xd9, 0x29, 0x7f, 0xa7,
0x1c, 0x0d, 0x61, 0x8a, 0x5a, 0xf9, 0x1f, 0xca, 0xfc, 0x9d, 0x02, 0x99, 0xc6, 0xc9, 0xc3, 0x07, 0x52, 0x2b, 0x75, 0xca, 0x68, 0x62, 0x6a, 0x13, 0xf1, 0x86, 0x48, 0xdb, 0x1d, 0x00, 0x74, 0x7d,
0x01, 0xf4, 0xc0, 0x56, 0xd5, 0x31, 0x41, 0xc6, 0xd8, 0x02, 0xc0, 0x93, 0xf9, 0x5c, 0x1d, 0xe8, 0xd2, 0x33, 0x43, 0x15, 0x47, 0x83, 0x30, 0x55, 0xae, 0x22, 0x14, 0x65, 0xfe, 0x92, 0x81, 0x2c,
0x10, 0x63, 0x94, 0x88, 0xc6, 0xe1, 0xf0, 0x9c, 0xf2, 0x2c, 0xdc, 0x3c, 0x34, 0x30, 0x56, 0x97, 0xe3, 0xf2, 0xe2, 0x93, 0x01, 0x7a, 0xea, 0xab, 0xea, 0x98, 0x40, 0x36, 0x8f, 0x02, 0x80, 0x67,
0xd0, 0x78, 0xda, 0xad, 0x99, 0xaa, 0x63, 0x82, 0xe4, 0x6b, 0x92, 0x51, 0x6a, 0xc8, 0x28, 0xcb, 0xf7, 0xb9, 0xc2, 0xd0, 0x41, 0x8c, 0x95, 0x22, 0x1a, 0x87, 0xc3, 0x73, 0xca, 0x49, 0xb8, 0x01,
0xf9, 0x59, 0x37, 0x98, 0xe4, 0x79, 0xce, 0x11, 0x56, 0x47, 0x06, 0xf8, 0x72, 0xfe, 0xbb, 0xb7, 0x69, 0xc0, 0x58, 0x5b, 0x42, 0x27, 0x6a, 0xf7, 0x6a, 0xaa, 0x8e, 0x09, 0x24, 0x5f, 0x93, 0xac,
0x70, 0x88, 0x91, 0x15, 0x20, 0xa3, 0xf1, 0xd8, 0x2d, 0xf0, 0x50, 0x55, 0x9c, 0x02, 0xca, 0xaf, 0x54, 0x43, 0x56, 0x5a, 0xce, 0xf3, 0x85, 0xc1, 0x46, 0xcf, 0x73, 0xa1, 0xb2, 0x3a, 0xb2, 0xc8,
0xc1, 0x81, 0x96, 0x00, 0x59, 0x1b, 0x0c, 0x44, 0x33, 0xf5, 0x67, 0x1b, 0x22, 0xfd, 0x9d, 0x10, 0x97, 0xf3, 0xdf, 0xbd, 0x45, 0xc8, 0x8c, 0xac, 0x00, 0x19, 0x8d, 0xc7, 0x6e, 0x41, 0x0c, 0xab,
0xa9, 0x92, 0x0b, 0xd4, 0x5e, 0xa9, 0x58, 0xed, 0x5d, 0xa9, 0x1c, 0xec, 0x1d, 0x68, 0x1c, 0x68, 0xe2, 0x14, 0x60, 0xbe, 0x80, 0x10, 0x5b, 0x02, 0x64, 0x6d, 0x30, 0x10, 0xdd, 0xd4, 0x1f, 0x76,
0x2f, 0x8f, 0xd8, 0x6c, 0x85, 0x90, 0x6f, 0x8e, 0xf0, 0xb5, 0x83, 0x3b, 0xce, 0x52, 0x54, 0x6b, 0x88, 0xf4, 0x97, 0x44, 0xa4, 0xd2, 0x2e, 0x50, 0x8c, 0xa5, 0x62, 0xc5, 0x78, 0xa5, 0xfa, 0xb0,
0x52, 0x49, 0x6f, 0x92, 0xfd, 0x0f, 0x2d, 0x7e, 0x99, 0x5b, 0x75, 0x81, 0xd7, 0x6f, 0x43, 0x53, 0x77, 0xa0, 0x71, 0xa0, 0xbd, 0x4d, 0x62, 0xb3, 0x3d, 0x44, 0xbe, 0x4a, 0xc2, 0x77, 0x17, 0x1e,
0xc5, 0x5e, 0xd2, 0x9b, 0x6d, 0x06, 0xc6, 0xf2, 0x60, 0x73, 0xdc, 0xf0, 0xe4, 0x24, 0xa6, 0xf2, 0x5a, 0x4b, 0xa1, 0x5a, 0x97, 0x4a, 0x7a, 0x97, 0xec, 0x7f, 0x68, 0xf1, 0xeb, 0xde, 0x6a, 0x08,
0x0e, 0x8a, 0x81, 0x49, 0x63, 0x9c, 0x99, 0xf7, 0x3e, 0xaf, 0x21, 0x16, 0x77, 0x51, 0x72, 0x38, 0xbc, 0x7d, 0x1b, 0x9a, 0x2a, 0x3b, 0x93, 0xde, 0x7d, 0x33, 0x60, 0x8c, 0x06, 0xbb, 0xe3, 0x86,
0xe3, 0x74, 0xe1, 0xfb, 0x96, 0xb7, 0x6f, 0x54, 0x5a, 0x5d, 0xc0, 0xcb, 0x8e, 0xf4, 0x03, 0xa8, 0x27, 0x27, 0x31, 0x95, 0xb7, 0x54, 0x0c, 0x98, 0x34, 0xd7, 0x99, 0x03, 0xe0, 0xf3, 0x16, 0x62,
0xa9, 0x72, 0xcd, 0x95, 0x56, 0xe6, 0x54, 0x74, 0xb6, 0xa2, 0xe3, 0x46, 0xdd, 0x68, 0x34, 0x17, 0x71, 0x5b, 0x25, 0x07, 0x67, 0x9c, 0x2e, 0xa2, 0xe3, 0xf2, 0x7e, 0x8e, 0x2a, 0xab, 0x2b, 0x7a,
0xb8, 0x3c, 0x81, 0xf1, 0xd2, 0x89, 0x1f, 0x65, 0xb3, 0x73, 0x09, 0x2c, 0xa0, 0xd8, 0x2f, 0x61, 0xd9, 0x99, 0x7e, 0x00, 0x35, 0x55, 0xaf, 0xb9, 0x17, 0x4b, 0x4a, 0x85, 0x67, 0x7b, 0x3e, 0xba,
0x41, 0xaa, 0x0f, 0x6d, 0x97, 0x60, 0x4e, 0xa4, 0xf5, 0x26, 0x2d, 0x5f, 0xca, 0x6b, 0x79, 0xfb, 0xf2, 0x46, 0xa7, 0xb9, 0xc0, 0xe5, 0x11, 0x8c, 0x97, 0x4e, 0xfc, 0x28, 0x4b, 0xce, 0x25, 0xb0,
0xdf, 0x54, 0x60, 0x56, 0x3e, 0xeb, 0x63, 0x17, 0x3c, 0x43, 0x53, 0x37, 0x5f, 0xb0, 0x21, 0x5d, 0x00, 0x63, 0xbf, 0x84, 0x05, 0xa9, 0x3e, 0x34, 0x3f, 0xc2, 0x5c, 0x48, 0xeb, 0x4d, 0xfb, 0x40,
0xe3, 0x9d, 0x02, 0x64, 0x04, 0xb1, 0xf6, 0xdf, 0xcf, 0xae, 0xde, 0xa9, 0x03, 0x35, 0xb3, 0x82, 0x29, 0xbf, 0x0f, 0xd8, 0xff, 0xa6, 0x02, 0xb3, 0xf2, 0xe1, 0x1f, 0xbb, 0xe0, 0xa1, 0x9a, 0xba,
0x2f, 0x41, 0x65, 0xec, 0x25, 0x67, 0xe8, 0x5f, 0xe3, 0xbc, 0x84, 0x69, 0xe9, 0xa2, 0xaf, 0x9a, 0xf9, 0xc6, 0x0d, 0xe9, 0x1a, 0x2f, 0x19, 0x20, 0x23, 0x08, 0xeb, 0xe0, 0x7e, 0x76, 0x7f, 0x4f,
0x2e, 0xfa, 0xa2, 0x77, 0x7b, 0xb8, 0xa9, 0x9a, 0x7f, 0xb7, 0xe7, 0x16, 0xd4, 0xb9, 0xb5, 0x91, 0x43, 0xac, 0x99, 0x3d, 0x7e, 0x09, 0x2a, 0x63, 0x2f, 0x39, 0xc3, 0x08, 0x1c, 0xe7, 0x25, 0x2c,
0x7a, 0xe1, 0x53, 0x20, 0x63, 0x9d, 0xd4, 0x72, 0xd6, 0xc9, 0xdb, 0xdb, 0x0d, 0xdf, 0x80, 0x19, 0xcb, 0x20, 0x7e, 0xd5, 0x0c, 0xe2, 0x17, 0xbd, 0xec, 0xc3, 0x8d, 0xd9, 0xfc, 0xcb, 0x3e, 0xb7,
0x7e, 0x77, 0x55, 0xdc, 0x35, 0x92, 0x4b, 0x8a, 0x18, 0x49, 0xf9, 0x3f, 0x3f, 0x72, 0xea, 0x88, 0xa0, 0xce, 0xed, 0x91, 0x34, 0x4e, 0x9f, 0x02, 0x32, 0xf6, 0x4b, 0x2d, 0x67, 0xbf, 0xbc, 0xbd,
0xbc, 0xfa, 0xeb, 0x17, 0x0d, 0xf3, 0xf5, 0x0b, 0x3d, 0x78, 0xd0, 0xcc, 0x04, 0x0f, 0x1e, 0x40, 0x65, 0xf1, 0x0d, 0x98, 0xe1, 0xb7, 0x5b, 0xc5, 0x6d, 0x24, 0xb9, 0xe9, 0x88, 0x99, 0x94, 0xff,
0x47, 0x0d, 0x1f, 0x3a, 0xd8, 0x82, 0x58, 0xdc, 0xad, 0xc8, 0xe1, 0xe9, 0xb2, 0xd8, 0x36, 0x96, 0xf3, 0x43, 0xa9, 0x8e, 0xa0, 0xd5, 0xdf, 0xc7, 0x68, 0x98, 0xef, 0x63, 0xe8, 0xe9, 0x85, 0x66,
0x45, 0xa6, 0xe1, 0xd6, 0x92, 0x84, 0x8e, 0xc6, 0x89, 0x58, 0x16, 0xed, 0xa7, 0xd0, 0x32, 0x1a, 0x26, 0xbd, 0xf0, 0x00, 0x3a, 0x6a, 0xfa, 0x30, 0x04, 0x17, 0xc4, 0xe2, 0xf6, 0x45, 0x0e, 0x9e,
0xc9, 0x96, 0x21, 0x71, 0xfb, 0xa8, 0x73, 0x8d, 0xb4, 0xa0, 0xbe, 0xb3, 0xe7, 0x3e, 0xdd, 0xdd, 0x6e, 0x9c, 0x6d, 0x63, 0xe3, 0x64, 0x1a, 0x6e, 0x2d, 0x49, 0xe8, 0x68, 0x9c, 0x88, 0x8d, 0xd3,
0x79, 0xb6, 0x7d, 0xd4, 0xb1, 0x58, 0xf2, 0xf0, 0xc5, 0xc6, 0xc6, 0xd6, 0xd6, 0x26, 0x2e, 0x4b, 0x7e, 0x0a, 0x2d, 0xa3, 0x93, 0x6c, 0x1b, 0x12, 0xf7, 0x93, 0x3a, 0xd7, 0x48, 0x0b, 0xea, 0x3b,
0x00, 0x33, 0x4f, 0xd7, 0x76, 0xd8, 0x12, 0x55, 0xb6, 0xff, 0x8f, 0x05, 0x0d, 0xad, 0x78, 0xf2, 0x7b, 0xee, 0xd3, 0xdd, 0x9d, 0x67, 0xdb, 0x47, 0x1d, 0x8b, 0x15, 0x0f, 0x5f, 0x6c, 0x6c, 0x6c,
0x4d, 0x35, 0x32, 0xfc, 0x81, 0x84, 0xdb, 0xf9, 0x26, 0xac, 0x48, 0x45, 0xad, 0x0d, 0x8d, 0x7a, 0x6d, 0x6d, 0xe2, 0xb6, 0x04, 0x30, 0xf3, 0x74, 0x6d, 0x87, 0x6d, 0x51, 0x65, 0xfb, 0xff, 0x58,
0xaa, 0xa8, 0x34, 0xf5, 0xa9, 0x22, 0x36, 0x3d, 0x1e, 0x2f, 0x41, 0x8d, 0x03, 0xdf, 0x3d, 0x65, 0xd0, 0xd0, 0xaa, 0x27, 0xdf, 0x54, 0x33, 0xc3, 0x9f, 0x50, 0xb8, 0x9d, 0xef, 0xc2, 0x8a, 0x54,
0x61, 0x7e, 0xce, 0x2a, 0x5d, 0x5d, 0x58, 0x4e, 0xee, 0x31, 0xcc, 0xc2, 0xf6, 0x47, 0x00, 0x69, 0xd4, 0xda, 0xd4, 0xa8, 0xc7, 0x8c, 0x4a, 0x53, 0x1f, 0x33, 0x62, 0xcb, 0xe3, 0xf1, 0x1a, 0xd4,
0x6b, 0xcc, 0x6e, 0x5f, 0x33, 0xbb, 0x6d, 0x69, 0xdd, 0x2e, 0xd9, 0x9b, 0x5c, 0x61, 0x88, 0x21, 0x3c, 0x70, 0xff, 0x2a, 0x0b, 0xe6, 0x27, 0xb1, 0xd2, 0xdd, 0x85, 0x51, 0xf2, 0x98, 0x62, 0x16,
0x54, 0x51, 0xe2, 0xaf, 0x01, 0x91, 0x0e, 0x2a, 0x3c, 0xcf, 0x38, 0x1e, 0xd2, 0x44, 0xde, 0x49, 0x6c, 0x7f, 0x04, 0x90, 0xf6, 0xc6, 0x1c, 0xf6, 0x35, 0x73, 0xd8, 0x96, 0x36, 0xec, 0x92, 0xbd,
0x9c, 0x17, 0x94, 0x1d, 0x45, 0x90, 0xd7, 0x6a, 0xd3, 0x52, 0x52, 0xbd, 0x23, 0x38, 0x2e, 0xab, 0xc9, 0x15, 0x86, 0x98, 0x42, 0x95, 0x47, 0xfe, 0x1a, 0x10, 0x19, 0xc2, 0xc2, 0x13, 0x8f, 0xe3,
0x77, 0x44, 0x56, 0x47, 0xd1, 0xed, 0x1e, 0x74, 0x37, 0x29, 0x2b, 0x6d, 0x6d, 0x38, 0xcc, 0x34, 0x21, 0x4d, 0xe4, 0xad, 0xc5, 0x79, 0x81, 0xd9, 0x51, 0x08, 0x79, 0xf1, 0x36, 0xad, 0x25, 0xd5,
0xc7, 0xbe, 0x09, 0x37, 0x0a, 0x68, 0xc2, 0xfd, 0xf0, 0x5d, 0xb8, 0xbe, 0xc6, 0xaf, 0x1f, 0xfe, 0x3b, 0x82, 0xe3, 0xb2, 0x7a, 0x47, 0x90, 0x3a, 0x0a, 0x6f, 0xf7, 0xa0, 0xbb, 0x49, 0x59, 0x6d,
0xba, 0x6e, 0x3a, 0xd8, 0x5d, 0x58, 0xca, 0x16, 0x29, 0x2a, 0x7b, 0x0a, 0xf3, 0x9b, 0xf4, 0x78, 0x6b, 0xc3, 0x61, 0xa6, 0x3b, 0xf6, 0x4d, 0xb8, 0x51, 0x80, 0x13, 0x01, 0x8a, 0xef, 0xc2, 0xf5,
0x72, 0xba, 0x4b, 0xcf, 0xd3, 0x8a, 0x08, 0x54, 0xe2, 0xb3, 0xf0, 0x42, 0x8c, 0x0f, 0xfe, 0x4d, 0x35, 0x7e, 0x41, 0xf1, 0x8b, 0xba, 0x0b, 0x61, 0x77, 0x61, 0x29, 0x5b, 0xa5, 0x68, 0xec, 0x29,
0x6e, 0x03, 0x0c, 0x59, 0x1e, 0x37, 0x1e, 0xd3, 0xbe, 0x7c, 0x80, 0x02, 0x91, 0xc3, 0x31, 0xed, 0xcc, 0x6f, 0xd2, 0xe3, 0xc9, 0xe9, 0x2e, 0x3d, 0x4f, 0x1b, 0x22, 0x50, 0x89, 0xcf, 0xc2, 0x0b,
0xdb, 0x1f, 0x01, 0xd1, 0xcb, 0x11, 0xe3, 0xc5, 0xb6, 0x04, 0x93, 0x63, 0x37, 0xbe, 0x8c, 0x13, 0x31, 0x3f, 0xf8, 0x37, 0xb9, 0x0d, 0x30, 0x64, 0x34, 0x6e, 0x3c, 0xa6, 0x7d, 0xf9, 0x44, 0x05,
0x3a, 0x92, 0x2f, 0x6b, 0xe8, 0x90, 0xfd, 0x3e, 0x34, 0x0f, 0xbc, 0x4b, 0x87, 0x7e, 0x2a, 0x9e, 0x42, 0x0e, 0xc7, 0xb4, 0x6f, 0x7f, 0x04, 0x44, 0xaf, 0x47, 0xcc, 0x17, 0x73, 0x1a, 0x26, 0xc7,
0xc6, 0x5a, 0x86, 0xd9, 0xb1, 0x77, 0xc9, 0xe4, 0x59, 0x85, 0x50, 0x90, 0x6c, 0xff, 0x71, 0x05, 0x6e, 0x7c, 0x19, 0x27, 0x74, 0x24, 0xdf, 0xde, 0xd0, 0x41, 0xf6, 0xfb, 0xd0, 0x3c, 0xf0, 0x2e,
0x66, 0x78, 0x4e, 0x56, 0xea, 0x80, 0xc6, 0x89, 0x1f, 0xa0, 0x8c, 0xc9, 0x52, 0x35, 0x28, 0xa7, 0x1d, 0xfa, 0x13, 0xf1, 0x78, 0xd6, 0x32, 0xcc, 0x8e, 0xbd, 0x4b, 0x26, 0xcf, 0x2a, 0xc9, 0x82,
0x30, 0x4b, 0x05, 0x0a, 0x53, 0xb8, 0xd2, 0xe4, 0x45, 0x7e, 0xc1, 0xb2, 0x06, 0xc6, 0xd4, 0x56, 0x68, 0xfb, 0x8f, 0x2b, 0x30, 0xc3, 0x29, 0x59, 0xad, 0x03, 0x1a, 0x27, 0x7e, 0x80, 0x32, 0x26,
0x7a, 0x6f, 0x8a, 0x73, 0x6a, 0x0a, 0x64, 0x62, 0x94, 0xe9, 0xc6, 0x83, 0xb7, 0x4f, 0xae, 0x05, 0x6b, 0xd5, 0x40, 0x39, 0x85, 0x59, 0x2a, 0x50, 0x98, 0x22, 0xd8, 0x26, 0xaf, 0xfa, 0x0b, 0x96,
0x42, 0x27, 0xea, 0x50, 0xe1, 0xf6, 0x66, 0x56, 0x5e, 0x10, 0xc9, 0x6c, 0x6f, 0x72, 0xdb, 0x98, 0x35, 0x60, 0x4c, 0x6d, 0xa5, 0x37, 0xab, 0x38, 0xa7, 0xa6, 0x80, 0x4c, 0x16, 0x33, 0x75, 0x4d,
0xda, 0x5b, 0x6c, 0x63, 0xb8, 0x7f, 0xed, 0xaa, 0x6d, 0x0c, 0xbc, 0xcd, 0x36, 0xe6, 0x6d, 0x62, 0x78, 0xff, 0xe4, 0x5e, 0x20, 0x74, 0xa2, 0x0e, 0x2a, 0x74, 0x80, 0x66, 0xe5, 0x15, 0x92, 0x8c,
0x83, 0x3d, 0xa8, 0xe1, 0x9a, 0xae, 0xa9, 0x48, 0x99, 0x26, 0xbf, 0xa1, 0xd9, 0xf8, 0x3c, 0xcc, 0x03, 0x94, 0x73, 0x74, 0x6a, 0x6f, 0xe1, 0xe8, 0xf0, 0x08, 0xdc, 0x55, 0x8e, 0x0e, 0xbc, 0x8d,
0x7f, 0x33, 0x95, 0x17, 0x87, 0x7e, 0xfa, 0xc5, 0x98, 0xf8, 0x3f, 0x84, 0x59, 0x81, 0x32, 0xce, 0xa3, 0xf3, 0x36, 0xd9, 0xc3, 0x1e, 0xd4, 0x70, 0x4f, 0xd7, 0x54, 0xa4, 0x2c, 0x93, 0xdf, 0xd0,
0x0e, 0xbc, 0x91, 0x7c, 0x40, 0x05, 0xff, 0x66, 0x43, 0x87, 0xef, 0x38, 0x7c, 0x3a, 0xf1, 0x23, 0xbc, 0x00, 0x7e, 0x10, 0xe0, 0x66, 0x2a, 0x2f, 0x0e, 0xfd, 0xc9, 0xaf, 0x27, 0x11, 0xf3, 0x43,
0x3a, 0x90, 0x97, 0x8c, 0x35, 0x08, 0x4f, 0x45, 0xc7, 0xee, 0xab, 0x20, 0xbc, 0x08, 0xc4, 0x35, 0x98, 0x15, 0x50, 0xc6, 0xd9, 0x81, 0x37, 0x92, 0x4f, 0xac, 0xe0, 0xdf, 0xc2, 0xe1, 0x60, 0x3b,
0x63, 0x95, 0xb6, 0x09, 0x74, 0xf0, 0x21, 0xa5, 0x71, 0x18, 0xc9, 0x37, 0x71, 0xec, 0x3f, 0xb0, 0x88, 0x1f, 0xd1, 0x81, 0xbc, 0x86, 0xac, 0x81, 0xf0, 0xdc, 0x74, 0xec, 0xbe, 0x0a, 0xc2, 0x8b,
0xa0, 0x23, 0x04, 0x4d, 0xd1, 0xe4, 0x81, 0x80, 0xab, 0xee, 0xd2, 0xdf, 0x83, 0x16, 0xfa, 0x32, 0x40, 0x5c, 0x44, 0x56, 0x65, 0x9b, 0x40, 0x07, 0x9f, 0x5a, 0x1a, 0x87, 0x91, 0x7c, 0x35, 0xc7,
0xd4, 0x92, 0x23, 0x82, 0xeb, 0x06, 0xc8, 0xda, 0x2b, 0x8f, 0x25, 0x8e, 0xfc, 0xa1, 0xe0, 0x5b, 0xfe, 0x03, 0x0b, 0x3a, 0x42, 0xd0, 0x14, 0x4e, 0x1e, 0x19, 0xb8, 0xea, 0xb6, 0xfd, 0x3d, 0x68,
0x1d, 0x92, 0xab, 0x56, 0xe4, 0x89, 0xdb, 0x49, 0x96, 0xa3, 0xd2, 0xf6, 0x2f, 0x2c, 0x98, 0xd7, 0x61, 0xb4, 0x43, 0x6d, 0x39, 0x22, 0xfd, 0x6e, 0x00, 0x59, 0x7f, 0xe5, 0xc1, 0xc5, 0x91, 0x3f,
0x1a, 0x2c, 0x04, 0xf5, 0x09, 0x34, 0xd5, 0x7b, 0x65, 0x54, 0x19, 0x55, 0xcb, 0xa6, 0x66, 0x49, 0x14, 0x7c, 0xab, 0x83, 0xe4, 0xae, 0x15, 0x79, 0xe2, 0xfe, 0x92, 0xe5, 0xa8, 0xb2, 0xfd, 0x0b,
0x3f, 0x33, 0x32, 0x23, 0xbf, 0x7b, 0x97, 0xd8, 0xc0, 0x78, 0x32, 0x12, 0xd6, 0x8c, 0x0e, 0x31, 0x0b, 0xe6, 0xb5, 0x0e, 0x0b, 0x41, 0x7d, 0x02, 0x4d, 0xf5, 0xa2, 0x19, 0x55, 0x46, 0xd5, 0xb2,
0x3e, 0xba, 0xa0, 0xf4, 0x95, 0xca, 0xc2, 0xed, 0x29, 0x03, 0xc3, 0x18, 0x50, 0x18, 0x24, 0x67, 0xa9, 0x59, 0xd2, 0xcf, 0x0c, 0x62, 0xe4, 0x77, 0xef, 0x12, 0x3b, 0x18, 0x4f, 0x46, 0xc2, 0x9a,
0x2a, 0x53, 0x45, 0xc4, 0x80, 0x74, 0xd0, 0xfe, 0x6f, 0x25, 0x58, 0xe0, 0x4e, 0x35, 0xe1, 0xcc, 0xd1, 0x41, 0x8c, 0x8f, 0x2e, 0x28, 0x7d, 0xa5, 0x48, 0xb8, 0x3d, 0x65, 0xc0, 0x30, 0x4b, 0x14,
0x54, 0x4f, 0xc6, 0xcc, 0x70, 0xff, 0x22, 0x57, 0x5a, 0xdb, 0xd7, 0x1c, 0x91, 0x26, 0xdf, 0x7c, 0x06, 0xc9, 0x99, 0x22, 0xaa, 0x88, 0x2c, 0x91, 0x0e, 0xb4, 0xff, 0x6b, 0x09, 0x16, 0x78, 0xd8,
0x4b, 0x47, 0xa0, 0xba, 0x06, 0x35, 0x65, 0x2e, 0xca, 0x45, 0x73, 0x71, 0xc5, 0x48, 0x17, 0x85, 0x4d, 0x84, 0x3b, 0xd5, 0xa3, 0x32, 0x33, 0x3c, 0x02, 0xc9, 0x95, 0xd6, 0xf6, 0x35, 0x47, 0x94,
0xe3, 0xaa, 0xc5, 0xe1, 0xb8, 0xb7, 0x0b, 0x7f, 0xe5, 0xee, 0x0a, 0xcd, 0x8a, 0x5c, 0xc6, 0x5d, 0xc9, 0x37, 0xdf, 0x32, 0x54, 0xa8, 0x2e, 0x4a, 0x4d, 0x59, 0x8b, 0x72, 0xd1, 0x5a, 0x5c, 0x31,
0xa1, 0x55, 0x58, 0x36, 0x00, 0xd4, 0xd7, 0xfe, 0x89, 0x4f, 0xe5, 0xc5, 0xed, 0xf9, 0x98, 0x26, 0xd3, 0x45, 0x09, 0xbb, 0x6a, 0x71, 0xc2, 0xee, 0xed, 0x12, 0x64, 0xb9, 0xdb, 0x44, 0xb3, 0x82,
0xae, 0x91, 0x65, 0x7d, 0x16, 0xaa, 0x71, 0x3f, 0x1c, 0x53, 0x7b, 0x09, 0x16, 0xcd, 0xc1, 0x15, 0xca, 0xb8, 0x4d, 0xb4, 0x0a, 0xcb, 0x06, 0x00, 0xf5, 0xb5, 0x7f, 0xe2, 0x53, 0x79, 0xb5, 0x7b,
0xab, 0xc4, 0xcf, 0x2d, 0xe8, 0x3e, 0xe5, 0x87, 0x2a, 0xfc, 0xe0, 0x74, 0xdb, 0x8f, 0x93, 0x30, 0x3e, 0xa6, 0x89, 0x6b, 0x90, 0xac, 0xcf, 0x42, 0x35, 0xee, 0x87, 0x63, 0x6a, 0x2f, 0xc1, 0xa2,
0x52, 0x2f, 0x7b, 0xdd, 0x01, 0x88, 0x13, 0x2f, 0x12, 0xfb, 0x4c, 0x6e, 0xec, 0x6a, 0x08, 0x1b, 0x39, 0xb9, 0x62, 0x97, 0xf8, 0xb9, 0x05, 0xdd, 0xa7, 0xfc, 0xd8, 0x85, 0x1f, 0x9c, 0x6e, 0xfb,
0x23, 0x1a, 0x0c, 0x38, 0x95, 0xf3, 0x86, 0x4a, 0xe7, 0x36, 0x13, 0xc2, 0xe5, 0x68, 0x98, 0xe4, 0x71, 0x12, 0x46, 0xea, 0xed, 0xaf, 0x3b, 0x00, 0x71, 0xe2, 0x45, 0xc2, 0xcf, 0xe4, 0xc6, 0xae,
0xef, 0xf1, 0x2b, 0x8c, 0x6c, 0x30, 0xe8, 0x39, 0x2e, 0xbd, 0xdc, 0x8f, 0x97, 0x41, 0xed, 0x3f, 0x06, 0x61, 0x73, 0x44, 0x83, 0x01, 0xc7, 0x72, 0xde, 0x50, 0xe5, 0x9c, 0x33, 0x21, 0x82, 0x92,
0x2c, 0xc1, 0x5c, 0xda, 0x48, 0x7e, 0x25, 0xda, 0x50, 0xe0, 0xc2, 0x0e, 0x4f, 0x15, 0xb8, 0x08, 0x86, 0x49, 0xfe, 0x1e, 0xbf, 0xe4, 0xc8, 0x26, 0x83, 0x9e, 0xe3, 0xd6, 0xcb, 0x23, 0x7d, 0x19,
0x0f, 0xba, 0x3e, 0x33, 0xcc, 0x35, 0xaf, 0xa3, 0x86, 0x92, 0x7b, 0xd0, 0x90, 0xa9, 0x70, 0x92, 0xa8, 0xfd, 0x87, 0x25, 0x98, 0x4b, 0x3b, 0xc9, 0x2f, 0x4d, 0x1b, 0x0a, 0x5c, 0xd8, 0xe1, 0xa9,
0x68, 0x4f, 0xec, 0xe8, 0x30, 0xbf, 0x1b, 0xc1, 0xb6, 0x06, 0x62, 0x9b, 0x23, 0x52, 0x78, 0x91, 0x02, 0x17, 0x09, 0x44, 0xd7, 0x67, 0x86, 0xb9, 0x16, 0x97, 0xd4, 0xa0, 0xe4, 0x1e, 0x34, 0x64,
0x7f, 0x94, 0xe0, 0x97, 0x7c, 0x4e, 0x65, 0x92, 0x29, 0x34, 0x66, 0x53, 0xf3, 0x39, 0x44, 0x7b, 0x29, 0x9c, 0x24, 0xda, 0x23, 0x3c, 0x3a, 0x98, 0xdf, 0x9e, 0x60, 0xae, 0x81, 0x70, 0x73, 0x44,
0x5a, 0xb7, 0x35, 0x6b, 0xea, 0x69, 0x42, 0x25, 0xf3, 0xbc, 0xc4, 0xf4, 0x96, 0x58, 0xc5, 0xd1, 0x09, 0xaf, 0xfa, 0x8f, 0x12, 0xfc, 0x92, 0xaf, 0xa9, 0x2c, 0x32, 0x85, 0xc6, 0x6c, 0x6a, 0xbe,
0x21, 0xe9, 0xf5, 0x09, 0x27, 0xc6, 0xf6, 0xd7, 0xc0, 0xec, 0xbf, 0x6d, 0xc1, 0x8d, 0x82, 0x69, 0x86, 0x68, 0x4f, 0xeb, 0xb6, 0x66, 0x4d, 0x3d, 0x5e, 0xa8, 0x64, 0x9e, 0xd7, 0x98, 0xde, 0x23,
0x14, 0x3a, 0x60, 0x13, 0xe6, 0x4f, 0x14, 0x51, 0x0e, 0x35, 0x57, 0x04, 0x4b, 0x52, 0xb9, 0x9a, 0xab, 0x38, 0x3a, 0x48, 0xc6, 0x85, 0xc2, 0x89, 0xe1, 0xfe, 0x1a, 0x30, 0xfb, 0x6f, 0x5b, 0x70,
0xc3, 0xeb, 0xe4, 0x3f, 0x50, 0xdb, 0x2d, 0x3e, 0x79, 0xc6, 0xa5, 0xc0, 0x3c, 0xc1, 0x3e, 0x80, 0xa3, 0x60, 0x19, 0x85, 0x0e, 0xd8, 0x84, 0xf9, 0x13, 0x85, 0x94, 0x53, 0xcd, 0x15, 0xc1, 0x92,
0xde, 0xd6, 0x6b, 0xa6, 0x52, 0x36, 0xf4, 0xf7, 0xa9, 0x25, 0x67, 0xad, 0xe6, 0x54, 0xe6, 0x9b, 0x54, 0xae, 0xe6, 0xf4, 0x3a, 0xf9, 0x0f, 0x94, 0xbb, 0xc5, 0x17, 0xcf, 0xb8, 0x36, 0x98, 0x47,
0x9d, 0xcd, 0x27, 0xfc, 0xaa, 0x93, 0x2a, 0x8b, 0x7c, 0xfd, 0x6d, 0x0b, 0xd1, 0xa5, 0xff, 0xae, 0xd8, 0x07, 0xd0, 0xdb, 0x7a, 0xcd, 0x54, 0xca, 0x86, 0xfe, 0x82, 0xb5, 0xe4, 0xac, 0xd5, 0x9c,
0x98, 0x75, 0xfe, 0xc0, 0xb6, 0xbc, 0x9a, 0xa8, 0x41, 0xf6, 0x39, 0xcc, 0x3d, 0x9f, 0x0c, 0x13, 0xca, 0x7c, 0x73, 0x38, 0xfa, 0x84, 0x5f, 0x86, 0x52, 0x75, 0x91, 0xaf, 0xbf, 0x6d, 0x25, 0xba,
0x3f, 0x7d, 0x6c, 0x9b, 0x7c, 0x53, 0x7c, 0x84, 0x45, 0xc8, 0xa1, 0x2b, 0xac, 0x4a, 0xcf, 0xc7, 0xf4, 0xdf, 0x15, 0xab, 0xce, 0x9f, 0xe0, 0x96, 0x97, 0x17, 0x35, 0x90, 0x7d, 0x0e, 0x73, 0xcf,
0x46, 0x6c, 0xc4, 0x4a, 0x72, 0xf3, 0x35, 0xe6, 0x09, 0xf6, 0x0d, 0x58, 0x4e, 0xab, 0xe4, 0x63, 0x27, 0xc3, 0xc4, 0x4f, 0x9f, 0xe3, 0x26, 0xdf, 0x14, 0x1f, 0x61, 0x15, 0x72, 0xea, 0x0a, 0x9b,
0x27, 0x97, 0x9d, 0x3f, 0xb2, 0xf8, 0x91, 0x60, 0xf3, 0xed, 0x6f, 0xf2, 0x0c, 0x16, 0x62, 0x3f, 0xd2, 0xe9, 0xd8, 0x8c, 0x8d, 0x58, 0x4d, 0x6e, 0xbe, 0xc5, 0x3c, 0xc2, 0xbe, 0x01, 0xcb, 0x69,
0x38, 0x1d, 0x52, 0xbd, 0x9c, 0x58, 0x8c, 0xc4, 0x75, 0xb3, 0x79, 0xe2, 0x7d, 0x70, 0xa7, 0xe8, 0x93, 0x7c, 0xee, 0xe4, 0xb6, 0xf3, 0x47, 0x16, 0x3f, 0x34, 0x6c, 0xbe, 0x0e, 0x4e, 0x9e, 0xc1,
0x0b, 0xc6, 0x20, 0xc5, 0x0d, 0x4d, 0x19, 0x24, 0x33, 0x24, 0x45, 0x1d, 0xf8, 0x0e, 0xb4, 0xcd, 0x42, 0xec, 0x07, 0xa7, 0x43, 0xaa, 0xd7, 0x13, 0x8b, 0x99, 0xb8, 0x6e, 0x76, 0x4f, 0xbc, 0x20,
0xca, 0xc8, 0x63, 0x71, 0xe7, 0x2f, 0x6d, 0x59, 0x39, 0x73, 0x75, 0x2b, 0xe5, 0x0c, 0x23, 0xa7, 0xee, 0x14, 0x7d, 0xc1, 0x18, 0xa4, 0xb8, 0xa3, 0x29, 0x83, 0x64, 0xa6, 0xa4, 0x68, 0x00, 0xdf,
0xfd, 0x33, 0x0b, 0xba, 0x0e, 0x65, 0x6c, 0x4c, 0xb5, 0x4a, 0x05, 0xf7, 0x3c, 0xc9, 0x15, 0x3b, 0x81, 0xb6, 0xd9, 0x18, 0x79, 0x2c, 0x6e, 0x05, 0xa6, 0x3d, 0x2b, 0x67, 0x2e, 0x77, 0xa5, 0x9c,
0xbd, 0xc3, 0xea, 0x2e, 0xa1, 0xec, 0xeb, 0xca, 0xd4, 0x49, 0xd9, 0xbe, 0x56, 0xd0, 0xab, 0xf5, 0x61, 0x50, 0xda, 0x3f, 0xb3, 0xa0, 0xeb, 0x50, 0xc6, 0xc6, 0x54, 0x6b, 0x54, 0x70, 0xcf, 0x93,
0x1a, 0xcc, 0x88, 0xfe, 0x2d, 0xc3, 0x75, 0xd1, 0x24, 0xd9, 0x9c, 0x34, 0xac, 0x68, 0x54, 0x6a, 0x5c, 0xb5, 0xd3, 0x07, 0xac, 0x6e, 0x1b, 0xca, 0xb1, 0xae, 0x4c, 0x5d, 0x94, 0xed, 0x6b, 0x05,
0x84, 0x15, 0x7b, 0xd0, 0xe5, 0x0f, 0xb8, 0xe9, 0xfd, 0x10, 0x1f, 0x6e, 0x02, 0x79, 0xee, 0xf5, 0xa3, 0x5a, 0xaf, 0xc1, 0x8c, 0x18, 0xdf, 0x32, 0x5c, 0x17, 0x5d, 0x92, 0xdd, 0x49, 0x13, 0x8f,
0xbd, 0x28, 0x0c, 0x83, 0x03, 0x1a, 0x89, 0x33, 0x9c, 0x68, 0x7d, 0x62, 0xd4, 0x4d, 0x1a, 0xca, 0x46, 0xa3, 0x46, 0xe2, 0xb1, 0x07, 0x5d, 0xfe, 0xc4, 0x9b, 0x3e, 0x0e, 0xf1, 0xe1, 0x26, 0x90,
0x3c, 0x25, 0xdf, 0x1c, 0x0b, 0x03, 0xf9, 0xb6, 0x1b, 0x4f, 0xd9, 0x0e, 0x2c, 0xac, 0x7b, 0xaf, 0xe7, 0x5e, 0xdf, 0x8b, 0xc2, 0x30, 0x38, 0xa0, 0x91, 0x38, 0xe5, 0x89, 0xd6, 0x27, 0xe6, 0xe5,
0xa8, 0x2c, 0x29, 0x1d, 0xa5, 0xc6, 0x58, 0x15, 0x2a, 0xc7, 0x5e, 0x5e, 0x16, 0xce, 0x57, 0xeb, 0xa4, 0xa1, 0xcc, 0x4b, 0xf2, 0x55, 0xb2, 0x30, 0x90, 0xaf, 0xbf, 0xf1, 0x92, 0xed, 0xc0, 0xc2,
0xe8, 0xb9, 0xed, 0x55, 0x58, 0x34, 0xcb, 0x14, 0xaa, 0xa4, 0x07, 0xb5, 0x91, 0xc0, 0x44, 0xeb, 0xba, 0xf7, 0x8a, 0xca, 0x9a, 0xd2, 0x59, 0x6a, 0x8c, 0x55, 0xa5, 0x72, 0xee, 0xe5, 0x75, 0xe2,
0x54, 0xfa, 0xc1, 0x67, 0xd0, 0xd0, 0x1e, 0xe5, 0x23, 0xcb, 0xb0, 0xf0, 0x72, 0xe7, 0x68, 0x6f, 0x7c, 0xb3, 0x8e, 0x4e, 0x6d, 0xaf, 0xc2, 0xa2, 0x59, 0xa7, 0x50, 0x25, 0x3d, 0xa8, 0x8d, 0x04,
0xeb, 0xf0, 0xd0, 0x3d, 0x78, 0xb1, 0xfe, 0xc9, 0xd6, 0xf7, 0xdd, 0xed, 0xb5, 0xc3, 0xed, 0xce, 0x4c, 0xf4, 0x4e, 0x95, 0x1f, 0x7c, 0x06, 0x0d, 0xed, 0xd9, 0x3e, 0xb2, 0x0c, 0x0b, 0x2f, 0x77,
0x35, 0xb2, 0x04, 0x64, 0x6f, 0xeb, 0xf0, 0x68, 0x6b, 0xd3, 0xc0, 0x2d, 0x72, 0x07, 0x7a, 0x2f, 0x8e, 0xf6, 0xb6, 0x0e, 0x0f, 0xdd, 0x83, 0x17, 0xeb, 0x9f, 0x6c, 0x7d, 0xdf, 0xdd, 0x5e, 0x3b,
0xf6, 0x5e, 0x1c, 0x6e, 0x6d, 0xba, 0x45, 0xdf, 0x95, 0xc8, 0x6d, 0xb8, 0x21, 0xe8, 0x05, 0x9f, 0xdc, 0xee, 0x5c, 0x23, 0x4b, 0x40, 0xf6, 0xb6, 0x0e, 0x8f, 0xb6, 0x36, 0x0d, 0xb8, 0x45, 0xee,
0x97, 0x1f, 0x3c, 0x81, 0x4e, 0xd6, 0x2d, 0x69, 0xb8, 0x73, 0xaf, 0xf2, 0xfb, 0x3e, 0xf8, 0x47, 0x40, 0xef, 0xc5, 0xde, 0x8b, 0xc3, 0xad, 0x4d, 0xb7, 0xe8, 0xbb, 0x12, 0xb9, 0x0d, 0x37, 0x04,
0x65, 0x80, 0xf4, 0x11, 0x65, 0xd2, 0x85, 0xc5, 0xcd, 0xb5, 0xa3, 0xb5, 0xdd, 0x7d, 0xd6, 0x08, 0xbe, 0xe0, 0xf3, 0xf2, 0x83, 0x27, 0xd0, 0xc9, 0x86, 0x25, 0x8d, 0x70, 0xee, 0x55, 0x71, 0xdf,
0x67, 0xff, 0x68, 0x6b, 0xe3, 0xc8, 0x75, 0xb6, 0xbe, 0xdb, 0xb9, 0x56, 0x48, 0xd9, 0x3f, 0x60, 0x07, 0xff, 0xa8, 0x0c, 0x90, 0x3e, 0xb3, 0x4c, 0xba, 0xb0, 0xb8, 0xb9, 0x76, 0xb4, 0xb6, 0xbb,
0x5b, 0xf6, 0x65, 0x58, 0xd8, 0xd9, 0xdb, 0x39, 0xda, 0x59, 0xdb, 0x75, 0x9d, 0xfd, 0x17, 0x3b, 0xcf, 0x3a, 0xe1, 0xec, 0x1f, 0x6d, 0x6d, 0x1c, 0xb9, 0xce, 0xd6, 0x77, 0x3b, 0xd7, 0x0a, 0x31,
0x7b, 0xcf, 0xf8, 0x83, 0x21, 0x65, 0xf2, 0x0e, 0xdc, 0x7c, 0x71, 0xf0, 0xd4, 0xd9, 0xdf, 0x3b, 0xfb, 0x07, 0xcc, 0x65, 0x5f, 0x86, 0x85, 0x9d, 0xbd, 0x9d, 0xa3, 0x9d, 0xb5, 0x5d, 0xd7, 0xd9,
0x72, 0x0f, 0xb7, 0x5f, 0x1c, 0x6d, 0xe2, 0x73, 0x23, 0x1b, 0xce, 0xce, 0x01, 0x2f, 0xb3, 0x72, 0x7f, 0xb1, 0xb3, 0xf7, 0x8c, 0x3f, 0x29, 0x52, 0x26, 0xef, 0xc0, 0xcd, 0x17, 0x07, 0x4f, 0x9d,
0x55, 0x06, 0x56, 0x74, 0x95, 0x8d, 0xd8, 0xb3, 0xfd, 0xc3, 0xc3, 0x9d, 0x03, 0xf7, 0xbb, 0x2f, 0xfd, 0xbd, 0x23, 0xf7, 0x70, 0xfb, 0xc5, 0xd1, 0x26, 0x3e, 0x48, 0xb2, 0xe1, 0xec, 0x1c, 0xf0,
0xb6, 0x9c, 0x9d, 0xad, 0x43, 0xfc, 0x70, 0xa6, 0x00, 0x67, 0xf9, 0x67, 0xc9, 0x3c, 0xb4, 0x8e, 0x3a, 0x2b, 0x57, 0x11, 0xb0, 0xaa, 0xab, 0x6c, 0xc6, 0x9e, 0xed, 0x1f, 0x1e, 0xee, 0x1c, 0xb8,
0x76, 0xbf, 0xe7, 0xee, 0xef, 0xed, 0xec, 0xef, 0x61, 0xd6, 0x9a, 0x09, 0xb1, 0x5c, 0x75, 0xd2, 0xdf, 0x7d, 0xb1, 0xe5, 0xec, 0x6c, 0x1d, 0xe2, 0x87, 0x33, 0x05, 0x70, 0x46, 0x3f, 0x4b, 0xe6,
0x83, 0xa5, 0xad, 0xdf, 0x39, 0x72, 0x0b, 0x4a, 0x86, 0x29, 0x34, 0xf6, 0x5d, 0x83, 0xdc, 0x80, 0xa1, 0x75, 0xb4, 0xfb, 0x3d, 0x77, 0x7f, 0x6f, 0x67, 0x7f, 0x0f, 0x49, 0x6b, 0x26, 0x88, 0x51,
0xeb, 0x87, 0x47, 0x6b, 0x47, 0x3b, 0x1b, 0xae, 0x78, 0x6f, 0x88, 0x4d, 0x02, 0xfb, 0xac, 0x59, 0xd5, 0x49, 0x0f, 0x96, 0xb6, 0x7e, 0xe7, 0xc8, 0x2d, 0xa8, 0x19, 0xa6, 0xe0, 0xd8, 0x77, 0x0d,
0x4c, 0x62, 0x5f, 0xb5, 0xc8, 0x22, 0x74, 0x0e, 0xd6, 0xbe, 0xff, 0x7c, 0x6b, 0xef, 0xc8, 0x5d, 0x72, 0x03, 0xae, 0x1f, 0x1e, 0xad, 0x1d, 0xed, 0x6c, 0xb8, 0xe2, 0x45, 0x22, 0xb6, 0x08, 0xec,
0xdb, 0xdc, 0x74, 0xf0, 0x83, 0x76, 0x0e, 0x65, 0x79, 0xe7, 0xd8, 0x44, 0x3d, 0x3f, 0x38, 0xc0, 0xb3, 0x66, 0x31, 0x8a, 0x7d, 0xd5, 0x22, 0x8b, 0xd0, 0x39, 0x58, 0xfb, 0xfe, 0xf3, 0xad, 0xbd,
0x2c, 0x1d, 0x99, 0x60, 0x94, 0xf9, 0xd5, 0x9f, 0x95, 0xa1, 0xcd, 0x0f, 0xd3, 0xf3, 0x5f, 0x39, 0x23, 0x77, 0x6d, 0x73, 0xd3, 0xc1, 0x0f, 0xda, 0x39, 0x28, 0xa3, 0x9d, 0x63, 0x0b, 0xf5, 0xfc,
0xa0, 0x11, 0x79, 0x0e, 0xb3, 0xe2, 0xe7, 0x32, 0xc8, 0x75, 0xf5, 0x4a, 0x84, 0xfe, 0x03, 0x1d, 0xe0, 0x00, 0x49, 0x3a, 0xb2, 0xc0, 0x30, 0xf3, 0xab, 0x3f, 0x2b, 0x43, 0x9b, 0x1f, 0xb7, 0xe7,
0xbd, 0xa5, 0x2c, 0x2c, 0xc4, 0x6f, 0xe1, 0xaf, 0xfe, 0xa7, 0xff, 0xf1, 0xfb, 0xa5, 0x16, 0x69, 0xbf, 0x83, 0x40, 0x23, 0xf2, 0x1c, 0x66, 0xc5, 0x0f, 0x6a, 0x90, 0xeb, 0xea, 0x1d, 0x09, 0xfd,
0x3c, 0x3c, 0xff, 0xf0, 0xe1, 0x29, 0x0d, 0x62, 0x56, 0xc6, 0xef, 0x02, 0xa4, 0x3f, 0x02, 0x41, 0x27, 0x3c, 0x7a, 0x4b, 0x59, 0xb0, 0x10, 0xbf, 0x85, 0xbf, 0xfa, 0x1f, 0xff, 0xfb, 0xef, 0x97,
0xba, 0xca, 0xfb, 0x98, 0xf9, 0x85, 0x8c, 0xde, 0x8d, 0x02, 0x8a, 0x28, 0xf7, 0x06, 0x96, 0xbb, 0x5a, 0xa4, 0xf1, 0xf0, 0xfc, 0xc3, 0x87, 0xa7, 0x34, 0x88, 0x59, 0x1d, 0xbf, 0x0b, 0x90, 0xfe,
0x60, 0xb7, 0x59, 0xb9, 0x7e, 0xe0, 0x27, 0xfc, 0x07, 0x21, 0x3e, 0xb6, 0x1e, 0x90, 0x01, 0x34, 0x4c, 0x04, 0xe9, 0xaa, 0xe8, 0x63, 0xe6, 0x37, 0x34, 0x7a, 0x37, 0x0a, 0x30, 0xa2, 0xde, 0x1b,
0xf5, 0x9f, 0x67, 0x20, 0x32, 0x9a, 0x5f, 0xf0, 0x03, 0x13, 0xbd, 0x9b, 0x85, 0x34, 0xa9, 0x73, 0x58, 0xef, 0x82, 0xdd, 0x66, 0xf5, 0xfa, 0x81, 0x9f, 0xf0, 0x9f, 0x8c, 0xf8, 0xd8, 0x7a, 0x40,
0xb0, 0x8e, 0xeb, 0x76, 0x87, 0xd5, 0x31, 0xc1, 0x1c, 0x69, 0x2d, 0x43, 0xae, 0x89, 0xd3, 0x5f, 0x06, 0xd0, 0xd4, 0x7f, 0xc0, 0x81, 0xc8, 0x7c, 0x7f, 0xc1, 0x4f, 0x50, 0xf4, 0x6e, 0x16, 0xe2,
0x61, 0x20, 0xb7, 0x34, 0xe5, 0x98, 0xfb, 0x0d, 0x88, 0xde, 0xed, 0x29, 0x54, 0x51, 0xd7, 0x6d, 0xa4, 0xce, 0xc1, 0x36, 0xae, 0xdb, 0x1d, 0xd6, 0xc6, 0x04, 0x29, 0xd2, 0x56, 0x86, 0x5c, 0x13,
0xac, 0x6b, 0xd9, 0x26, 0xac, 0xae, 0x3e, 0xe6, 0x91, 0xbf, 0x01, 0xf1, 0xb1, 0xf5, 0x60, 0xf5, 0xa7, 0xbf, 0xd3, 0x40, 0x6e, 0x69, 0xca, 0x31, 0xf7, 0x2b, 0x11, 0xbd, 0xdb, 0x53, 0xb0, 0xa2,
0x4f, 0xef, 0x43, 0x5d, 0x9d, 0xf4, 0x21, 0x3f, 0x86, 0x96, 0x71, 0xdb, 0x81, 0xc8, 0x6e, 0x14, 0xad, 0xdb, 0xd8, 0xd6, 0xb2, 0x4d, 0x58, 0x5b, 0x7d, 0xa4, 0x91, 0xbf, 0x12, 0xf1, 0xb1, 0xf5,
0x5d, 0x8e, 0xe8, 0xdd, 0x2a, 0x26, 0x8a, 0x8a, 0xef, 0x60, 0xc5, 0x5d, 0xb2, 0xc4, 0x2a, 0x16, 0x60, 0xf5, 0x4f, 0xef, 0x43, 0x5d, 0x9d, 0x05, 0x22, 0x3f, 0x86, 0x96, 0x71, 0x1f, 0x82, 0xc8,
0xd7, 0x05, 0x1e, 0xe2, 0xbd, 0x1d, 0xfe, 0xe6, 0xc6, 0x2b, 0x6d, 0xc5, 0xe1, 0x95, 0xdd, 0xca, 0x61, 0x14, 0x5d, 0x9f, 0xe8, 0xdd, 0x2a, 0x46, 0x8a, 0x86, 0xef, 0x60, 0xc3, 0x5d, 0xb2, 0xc4,
0x2e, 0x02, 0x46, 0x6d, 0xb7, 0xa7, 0x50, 0x45, 0x75, 0xb7, 0xb0, 0xba, 0x25, 0xb2, 0xa8, 0x57, 0x1a, 0x16, 0x17, 0x0a, 0x1e, 0xe2, 0xcd, 0x1e, 0xfe, 0x2a, 0xc7, 0x2b, 0x6d, 0xc7, 0xe1, 0x8d,
0xa7, 0x4e, 0xdf, 0x50, 0x7c, 0xf7, 0x46, 0xff, 0x81, 0x02, 0x72, 0x3b, 0x7d, 0x95, 0xa4, 0xe0, 0xdd, 0xca, 0x6e, 0x02, 0x46, 0x6b, 0xb7, 0xa7, 0x60, 0x45, 0x73, 0xb7, 0xb0, 0xb9, 0x25, 0xb2,
0x87, 0x0b, 0x14, 0x8b, 0xe4, 0x7f, 0xbd, 0xc0, 0xee, 0x62, 0x55, 0x84, 0xe0, 0xf4, 0xe9, 0xbf, 0xa8, 0x37, 0xa7, 0xce, 0xe7, 0x50, 0x7c, 0x19, 0x47, 0xff, 0x09, 0x03, 0x72, 0x3b, 0x7d, 0xb7,
0x4f, 0x40, 0x8e, 0xa1, 0xa1, 0xbd, 0xe3, 0x4b, 0x6e, 0x4c, 0x7d, 0x73, 0xb8, 0xd7, 0x2b, 0x22, 0xa4, 0xe0, 0xa7, 0x0d, 0x14, 0x8b, 0xe4, 0x7f, 0xdf, 0xc0, 0xee, 0x62, 0x53, 0x84, 0xe0, 0xf2,
0x15, 0x75, 0x45, 0x2f, 0xff, 0x21, 0x33, 0x48, 0x7f, 0x08, 0x75, 0xf5, 0x32, 0x2c, 0x59, 0xd6, 0xe9, 0xbf, 0x60, 0x40, 0x8e, 0xa1, 0xa1, 0xbd, 0xf4, 0x4b, 0x6e, 0x4c, 0x7d, 0x95, 0xb8, 0xd7,
0x5e, 0xea, 0xd5, 0x5f, 0xb2, 0xed, 0x75, 0xf3, 0x84, 0x22, 0xe6, 0xd3, 0x4b, 0x67, 0xcc, 0xf7, 0x2b, 0x42, 0x15, 0x0d, 0x45, 0xaf, 0xff, 0x21, 0x33, 0x48, 0x7f, 0x08, 0x75, 0xf5, 0x76, 0x2c,
0x12, 0x1a, 0xda, 0xeb, 0xaf, 0xaa, 0x03, 0xf9, 0x17, 0x66, 0x55, 0x07, 0x0a, 0x1e, 0x8b, 0xb5, 0x59, 0xd6, 0xde, 0xf2, 0xd5, 0xdf, 0xba, 0xed, 0x75, 0xf3, 0x88, 0x22, 0xe6, 0xd3, 0x6b, 0x67,
0xe7, 0xb1, 0x8a, 0x06, 0xa9, 0x23, 0x7f, 0x27, 0xaf, 0xc3, 0x98, 0xec, 0xc2, 0x75, 0xb1, 0xb2, 0xcc, 0xf7, 0x12, 0x1a, 0xda, 0xfb, 0xb0, 0x6a, 0x00, 0xf9, 0x37, 0x68, 0xd5, 0x00, 0x0a, 0x9e,
0x1e, 0xd3, 0xcf, 0x33, 0x0d, 0x05, 0xbf, 0x09, 0xf1, 0xc8, 0x22, 0x4f, 0xa0, 0x26, 0x1f, 0xf9, 0x93, 0xb5, 0xe7, 0xb1, 0x89, 0x06, 0xa9, 0x23, 0x7f, 0x27, 0xaf, 0xc3, 0x98, 0xec, 0xc2, 0x75,
0x25, 0x4b, 0xc5, 0x8f, 0x15, 0xf7, 0x96, 0x73, 0xb8, 0x58, 0x06, 0xbf, 0x0f, 0x90, 0x3e, 0x35, 0xb1, 0xb3, 0x1e, 0xd3, 0xcf, 0xb3, 0x0c, 0x05, 0xbf, 0x1a, 0xf1, 0xc8, 0x22, 0x4f, 0xa0, 0x26,
0xab, 0x94, 0x44, 0xee, 0xe9, 0x5a, 0xc5, 0x01, 0xf9, 0x77, 0x69, 0xed, 0x25, 0xec, 0x60, 0x87, 0x9f, 0x01, 0x26, 0x4b, 0xc5, 0xcf, 0x19, 0xf7, 0x96, 0x73, 0x70, 0xb1, 0x0d, 0x7e, 0x1f, 0x20,
0xa0, 0x92, 0x08, 0xe8, 0x85, 0x7c, 0x74, 0xe1, 0x47, 0xd0, 0xd0, 0x5e, 0x9b, 0x55, 0xc3, 0x97, 0x7d, 0x8c, 0x56, 0x29, 0x89, 0xdc, 0xe3, 0xb6, 0x8a, 0x03, 0xf2, 0x2f, 0xd7, 0xda, 0x4b, 0x38,
0x7f, 0xa9, 0x56, 0x0d, 0x5f, 0xc1, 0xe3, 0xb4, 0x76, 0x0f, 0x4b, 0x5f, 0xb4, 0xe7, 0x58, 0xe9, 0xc0, 0x0e, 0x41, 0x25, 0x11, 0xd0, 0x0b, 0xf9, 0x2c, 0xc3, 0x8f, 0xa0, 0xa1, 0xbd, 0x47, 0xab,
0xb1, 0x7f, 0x1a, 0x8c, 0x78, 0x06, 0x36, 0x41, 0x67, 0xd0, 0x32, 0x9e, 0x94, 0x55, 0x12, 0x5a, 0xa6, 0x2f, 0xff, 0x96, 0xad, 0x9a, 0xbe, 0x82, 0xe7, 0x6b, 0xed, 0x1e, 0xd6, 0xbe, 0x68, 0xcf,
0xf4, 0x60, 0xad, 0x92, 0xd0, 0xc2, 0x57, 0x68, 0x25, 0x9f, 0xd9, 0xf3, 0xac, 0x9e, 0x73, 0xcc, 0xb1, 0xda, 0x63, 0xff, 0x34, 0x18, 0x71, 0x02, 0xb6, 0x40, 0x67, 0xd0, 0x32, 0x1e, 0x9d, 0x55,
0xa2, 0xd5, 0xf4, 0x03, 0x68, 0x68, 0xcf, 0xc3, 0xaa, 0xbe, 0xe4, 0x5f, 0xa2, 0x55, 0x7d, 0x29, 0x12, 0x5a, 0xf4, 0xa4, 0xad, 0x92, 0xd0, 0xc2, 0x77, 0x6a, 0x25, 0x9f, 0xd9, 0xf3, 0xac, 0x9d,
0x7a, 0x4d, 0x76, 0x11, 0xeb, 0x68, 0xdb, 0xc8, 0x0a, 0xf8, 0x8c, 0x12, 0x2b, 0xfb, 0xc7, 0xd0, 0x73, 0x24, 0xd1, 0x5a, 0xfa, 0x01, 0x34, 0xb4, 0x07, 0x64, 0xd5, 0x58, 0xf2, 0x6f, 0xd5, 0xaa,
0x36, 0x1f, 0x8c, 0x55, 0xb2, 0x5f, 0xf8, 0xf4, 0xac, 0x92, 0xfd, 0x29, 0xaf, 0xcc, 0x0a, 0x96, 0xb1, 0x14, 0xbd, 0x37, 0xbb, 0x88, 0x6d, 0xb4, 0x6d, 0x64, 0x05, 0x7c, 0x68, 0x89, 0xd5, 0xfd,
0x7e, 0xb0, 0xa0, 0x2a, 0x79, 0xf8, 0x53, 0x71, 0x70, 0xf9, 0x33, 0xf2, 0x5d, 0xa6, 0xe0, 0xc4, 0x63, 0x68, 0x9b, 0x4f, 0xca, 0x2a, 0xd9, 0x2f, 0x7c, 0x9c, 0x56, 0xc9, 0xfe, 0x94, 0x77, 0x68,
0xf3, 0x5e, 0x64, 0x59, 0xe3, 0x5a, 0xfd, 0x11, 0x30, 0x25, 0x2f, 0xb9, 0x97, 0xc0, 0x4c, 0x66, 0x05, 0x4b, 0x3f, 0x58, 0x50, 0x8d, 0x3c, 0xfc, 0x54, 0x1c, 0x6d, 0xfe, 0x8c, 0x7c, 0x97, 0x29,
0xe6, 0x0f, 0x41, 0x3d, 0x83, 0x05, 0xc5, 0xcc, 0xea, 0xb9, 0xae, 0x58, 0xf5, 0xa1, 0xf0, 0x55, 0x38, 0xf1, 0x00, 0x18, 0x59, 0xd6, 0xb8, 0x56, 0x7f, 0x26, 0x4c, 0xc9, 0x4b, 0xee, 0xad, 0x30,
0xb0, 0x5e, 0x27, 0x4b, 0x7d, 0x64, 0xf1, 0xe5, 0x0f, 0x1f, 0x45, 0xd2, 0x96, 0x3f, 0xfd, 0xc5, 0x93, 0x99, 0xf9, 0x53, 0x51, 0xcf, 0x60, 0x41, 0x31, 0xb3, 0x7a, 0xd0, 0x2b, 0x56, 0x63, 0x28,
0x2e, 0x6d, 0xf9, 0x33, 0xde, 0x4e, 0xca, 0x2e, 0x7f, 0x89, 0xcf, 0xca, 0x08, 0x60, 0x2e, 0x73, 0x7c, 0x37, 0xac, 0xd7, 0xc9, 0x62, 0x1f, 0x59, 0x7c, 0xfb, 0xc3, 0x67, 0x93, 0xb4, 0xed, 0x4f,
0xb5, 0x53, 0x89, 0x57, 0xf1, 0xed, 0xfb, 0xde, 0x9d, 0xab, 0x6f, 0x84, 0x9a, 0xaa, 0x48, 0x6a, 0x7f, 0xd3, 0x4b, 0xdb, 0xfe, 0x8c, 0xd7, 0x95, 0xb2, 0xdb, 0x5f, 0xe2, 0xb3, 0x3a, 0x02, 0x98,
0xd3, 0x87, 0xf2, 0x69, 0x8f, 0xdf, 0x83, 0xa6, 0xfe, 0xce, 0x25, 0xd1, 0x75, 0x42, 0xb6, 0xa6, 0xcb, 0x5c, 0xfe, 0x54, 0xe2, 0x55, 0x7c, 0x3f, 0xbf, 0x77, 0xe7, 0xea, 0x3b, 0xa3, 0xa6, 0x2a,
0x9b, 0x85, 0x34, 0x93, 0x4b, 0x48, 0x53, 0xaf, 0x86, 0x7c, 0x0f, 0x96, 0xd4, 0x30, 0xeb, 0xb7, 0x92, 0xda, 0xf4, 0xa1, 0x7c, 0xfc, 0xe3, 0xf7, 0xa0, 0xa9, 0xbf, 0x84, 0x49, 0x74, 0x9d, 0x90,
0x05, 0x63, 0xf2, 0x4e, 0xc1, 0x1d, 0x42, 0x63, 0xb0, 0x6f, 0x4c, 0xbd, 0x64, 0xf8, 0xc8, 0x62, 0x6d, 0xe9, 0x66, 0x21, 0xce, 0xe4, 0x12, 0xd2, 0xd4, 0x9b, 0x21, 0xdf, 0x83, 0x25, 0x35, 0xcd,
0xdc, 0x67, 0x3e, 0x1e, 0x98, 0xae, 0x3c, 0x45, 0x6f, 0x26, 0xa6, 0x2b, 0x4f, 0xe1, 0x8b, 0x83, 0xfa, 0x7d, 0xc2, 0x98, 0xbc, 0x53, 0x70, 0xcb, 0xd0, 0x98, 0xec, 0x1b, 0x53, 0xaf, 0x21, 0x3e,
0x92, 0xfb, 0xc8, 0x82, 0x31, 0x46, 0xfc, 0x7c, 0x16, 0xf9, 0x01, 0xcc, 0x69, 0xf7, 0xb1, 0x0f, 0xb2, 0x18, 0xf7, 0x99, 0xcf, 0x0b, 0xa6, 0x3b, 0x4f, 0xd1, 0xab, 0x8a, 0xe9, 0xce, 0x53, 0xf8,
0x2f, 0x83, 0xbe, 0x92, 0xa4, 0xfc, 0xdb, 0x3b, 0xbd, 0xa2, 0x6d, 0xa9, 0xbd, 0x8c, 0xe5, 0xcf, 0x26, 0xa1, 0xe4, 0x3e, 0xb2, 0x60, 0xcc, 0x11, 0x3f, 0xc1, 0x45, 0x7e, 0x00, 0x73, 0xda, 0x8d,
0xdb, 0xc6, 0xe0, 0x30, 0x29, 0xda, 0x80, 0x86, 0x7e, 0xd7, 0xfb, 0x8a, 0x72, 0x97, 0x35, 0x92, 0xed, 0xc3, 0xcb, 0xa0, 0xaf, 0x24, 0x29, 0xff, 0x3a, 0x4f, 0xaf, 0xc8, 0x2d, 0xb5, 0x97, 0xb1,
0xfe, 0xb0, 0xcb, 0x23, 0x8b, 0xec, 0x42, 0x27, 0xfb, 0x06, 0x85, 0xd2, 0x29, 0x45, 0xef, 0x66, 0xfe, 0x79, 0xdb, 0x98, 0x1c, 0x26, 0x45, 0x1b, 0xd0, 0xd0, 0x6f, 0x83, 0x5f, 0x51, 0xef, 0xb2,
0xf4, 0x32, 0x44, 0xe3, 0xe5, 0x0a, 0x72, 0xc0, 0x4f, 0xfd, 0xaa, 0x1f, 0x4f, 0x08, 0xa3, 0xec, 0x86, 0xd2, 0x9f, 0x7e, 0x79, 0x64, 0x91, 0x5d, 0xe8, 0x64, 0x5f, 0xa9, 0x50, 0x3a, 0xa5, 0xe8,
0xaa, 0x6e, 0xfe, 0xa8, 0x82, 0x2a, 0xad, 0xe8, 0xe7, 0x34, 0xee, 0x5b, 0x8f, 0x2c, 0xf2, 0xf7, 0x65, 0x8d, 0x5e, 0x06, 0x69, 0xbc, 0x6d, 0x41, 0x0e, 0xf8, 0xb9, 0x60, 0xf5, 0xf3, 0x0a, 0x61,
0x2c, 0x68, 0x1a, 0x37, 0xbb, 0x8d, 0x33, 0x94, 0x99, 0x7e, 0x76, 0x75, 0x9a, 0xde, 0x51, 0xdb, 0x94, 0xdd, 0xd5, 0xcd, 0x9f, 0x5d, 0x50, 0xb5, 0x15, 0xfd, 0xe0, 0xc6, 0x7d, 0xeb, 0x91, 0x45,
0xc1, 0x41, 0xdc, 0x7d, 0xf0, 0x1d, 0x63, 0x92, 0x7e, 0x6a, 0x78, 0x7a, 0x57, 0xb2, 0xbf, 0xa0, 0xfe, 0x9e, 0x05, 0x4d, 0xe3, 0xee, 0xb7, 0x71, 0xca, 0x32, 0x33, 0xce, 0xae, 0x8e, 0xd3, 0x07,
0xf0, 0x59, 0x36, 0x83, 0xfe, 0x7e, 0xd2, 0x67, 0x8f, 0x2c, 0xf2, 0x4f, 0x2c, 0x68, 0x9b, 0x21, 0x6a, 0x3b, 0x38, 0x89, 0xbb, 0x0f, 0xbe, 0x63, 0x2c, 0xd2, 0xa7, 0x46, 0xa4, 0x77, 0x25, 0xfb,
0x1c, 0xd5, 0xdd, 0xc2, 0x60, 0x91, 0x62, 0xa5, 0x29, 0x71, 0x9f, 0x1f, 0x60, 0x2b, 0x8f, 0x1e, 0x1b, 0x0b, 0x9f, 0x65, 0x09, 0xf4, 0x17, 0x96, 0x3e, 0x7b, 0x64, 0x91, 0x7f, 0x62, 0x41, 0xdb,
0x38, 0x46, 0x2b, 0xc5, 0xb3, 0x97, 0xbf, 0x5a, 0x6b, 0xc9, 0xc7, 0xfc, 0x07, 0x8d, 0x64, 0xf4, 0x4c, 0xe1, 0xa8, 0xe1, 0x16, 0x26, 0x8b, 0x14, 0x2b, 0x4d, 0xc9, 0xfb, 0xfc, 0x00, 0x7b, 0x79,
0x9a, 0xe4, 0x7f, 0x00, 0x47, 0xb1, 0x9f, 0xfe, 0x73, 0x31, 0x38, 0x09, 0x3f, 0xe2, 0xbf, 0x1c, 0xf4, 0xc0, 0x31, 0x7a, 0x29, 0x1e, 0xc6, 0xfc, 0xd5, 0x7a, 0x4b, 0x3e, 0xe6, 0x3f, 0x79, 0x24,
0x20, 0x43, 0xa0, 0x8c, 0x8b, 0xdf, 0xf6, 0x7b, 0xfb, 0x1e, 0xf6, 0xe9, 0x8e, 0x7d, 0xc3, 0xe8, 0xb3, 0xd7, 0x24, 0xff, 0x13, 0x39, 0x8a, 0xfd, 0xf4, 0x1f, 0x94, 0xc1, 0x45, 0xf8, 0x11, 0xff,
0x53, 0xd6, 0xf0, 0x58, 0xe3, 0xad, 0x13, 0xbf, 0xf4, 0x92, 0xae, 0x9c, 0xb9, 0x5f, 0x7f, 0x99, 0x6d, 0x01, 0x99, 0x02, 0x65, 0x5c, 0xfc, 0xb6, 0xdf, 0xdb, 0xf7, 0x70, 0x4c, 0x77, 0xec, 0x1b,
0xde, 0xc8, 0x11, 0x6f, 0xa4, 0xc8, 0x6e, 0x88, 0xda, 0x5b, 0x16, 0x63, 0x3f, 0xc0, 0xb6, 0xde, 0xc6, 0x98, 0xb2, 0x86, 0xc7, 0x1a, 0xef, 0x9d, 0xf8, 0x2d, 0x98, 0x74, 0xe7, 0xcc, 0xfd, 0x3e,
0xb3, 0xdf, 0x99, 0xda, 0xd6, 0x87, 0x18, 0x88, 0x61, 0x2d, 0x3e, 0x00, 0x48, 0x4f, 0x9b, 0x90, 0xcc, 0xf4, 0x4e, 0x8e, 0x78, 0x27, 0x05, 0xb9, 0x21, 0x6a, 0x6f, 0x59, 0x8d, 0xfd, 0x00, 0xfb,
0xcc, 0x49, 0x07, 0xa5, 0x80, 0xf2, 0x07, 0x52, 0x4c, 0x79, 0x96, 0x07, 0x22, 0x58, 0x89, 0x3f, 0x7a, 0xcf, 0x7e, 0x67, 0x6a, 0x5f, 0x1f, 0x62, 0x22, 0x86, 0xf5, 0xf8, 0x00, 0x20, 0x3d, 0x6d,
0xe4, 0xea, 0x74, 0x47, 0x9e, 0x91, 0xd0, 0xad, 0x2f, 0xf3, 0x48, 0x88, 0x61, 0x7d, 0x65, 0xcb, 0x42, 0x32, 0x27, 0x1d, 0x94, 0x02, 0xca, 0x1f, 0x48, 0x31, 0xe5, 0x59, 0x1e, 0x88, 0x60, 0x35,
0x37, 0x94, 0xa9, 0x3a, 0x70, 0xf1, 0x02, 0x5a, 0xbb, 0x61, 0xf8, 0x6a, 0x32, 0x56, 0xc7, 0x1b, 0xfe, 0x90, 0xab, 0xd3, 0x1d, 0x79, 0x46, 0x42, 0xb7, 0xbe, 0xcc, 0x23, 0x21, 0x86, 0xf5, 0x95,
0xcd, 0x18, 0xe9, 0xb6, 0x17, 0x9f, 0xf5, 0x32, 0xbd, 0xb0, 0xef, 0x62, 0x51, 0x3d, 0xd2, 0xd5, 0xad, 0xdf, 0x50, 0xa6, 0xea, 0xc0, 0xc5, 0x0b, 0x68, 0xed, 0x86, 0xe1, 0xab, 0xc9, 0x58, 0x1d,
0x8a, 0x7a, 0xf8, 0xd3, 0xf4, 0x24, 0xcb, 0x67, 0xc4, 0x83, 0x79, 0xa5, 0xa3, 0x55, 0xc3, 0x7b, 0x80, 0x34, 0x73, 0xa4, 0xdb, 0x5e, 0x7c, 0xd6, 0xcb, 0x8c, 0xc2, 0xbe, 0x8b, 0x55, 0xf5, 0x48,
0x66, 0x31, 0x86, 0x66, 0xce, 0x56, 0x61, 0x6c, 0x13, 0x64, 0x6b, 0x1f, 0xc6, 0xb2, 0xcc, 0x47, 0x57, 0xab, 0xea, 0xe1, 0xa7, 0xe9, 0x49, 0x96, 0xcf, 0x88, 0x07, 0xf3, 0x4a, 0x47, 0xab, 0x8e,
0x16, 0x39, 0x80, 0xe6, 0x26, 0xed, 0xe3, 0xa5, 0x4f, 0x0c, 0x34, 0x2e, 0x18, 0xc1, 0x2a, 0x1e, 0xf7, 0xcc, 0x6a, 0x0c, 0xcd, 0x9c, 0x6d, 0xc2, 0x70, 0x13, 0x64, 0x6f, 0x1f, 0xc6, 0xb2, 0xce,
0xa1, 0xec, 0xb5, 0x0c, 0xd0, 0x5c, 0xb7, 0xc6, 0xde, 0x65, 0x44, 0x3f, 0x7d, 0xf8, 0x53, 0x11, 0x47, 0x16, 0x39, 0x80, 0xe6, 0x26, 0xed, 0xe3, 0xb5, 0x50, 0x4c, 0x34, 0x2e, 0x18, 0xc9, 0x2a,
0xc2, 0xfc, 0x4c, 0xae, 0x5b, 0x32, 0xc6, 0x6b, 0xac, 0x5b, 0x99, 0xa0, 0xb0, 0xb1, 0x6e, 0xe5, 0x9e, 0xa1, 0xec, 0xb5, 0x0c, 0xa0, 0xb9, 0x6f, 0x8d, 0xbd, 0xcb, 0x88, 0xfe, 0xe4, 0xe1, 0xa7,
0x82, 0xc2, 0xc6, 0x50, 0xcb, 0x18, 0x33, 0x19, 0xc2, 0x7c, 0x2e, 0x8e, 0xac, 0x96, 0xac, 0x69, 0x22, 0x85, 0xf9, 0x99, 0xdc, 0xb7, 0x64, 0x8e, 0xd7, 0xd8, 0xb7, 0x32, 0x49, 0x61, 0x63, 0xdf,
0xd1, 0xe7, 0xde, 0xdd, 0xe9, 0x19, 0xcc, 0xda, 0x1e, 0x98, 0xb5, 0x1d, 0x42, 0x8b, 0xbf, 0xe9, 0xca, 0x25, 0x85, 0x8d, 0xa9, 0x96, 0x39, 0x66, 0x32, 0x84, 0xf9, 0x5c, 0x1e, 0x59, 0x6d, 0x59,
0x74, 0x4c, 0xf9, 0x7d, 0x8e, 0xcc, 0xf3, 0x00, 0xfa, 0x6d, 0x91, 0xec, 0x02, 0x83, 0x34, 0xd3, 0xd3, 0xb2, 0xcf, 0xbd, 0xbb, 0xd3, 0x09, 0xcc, 0xd6, 0x1e, 0x98, 0xad, 0x1d, 0x42, 0x8b, 0xbf,
0xc2, 0xe1, 0x8f, 0x43, 0xfe, 0x10, 0x1a, 0xcf, 0x68, 0x22, 0x2f, 0x70, 0x28, 0x1b, 0x3b, 0x73, 0xfa, 0x74, 0x4c, 0xf9, 0x8d, 0x8f, 0xcc, 0x03, 0x02, 0xfa, 0x7d, 0x92, 0xec, 0x06, 0x83, 0x38,
0xa3, 0xa3, 0x57, 0x70, 0xff, 0xc3, 0xe4, 0x19, 0x2c, 0xed, 0x21, 0x1d, 0x9c, 0x52, 0xae, 0x9c, 0xd3, 0xc2, 0xe1, 0xcf, 0x47, 0xfe, 0x10, 0x1a, 0xcf, 0x68, 0x22, 0xaf, 0x78, 0x28, 0x1b, 0x3b,
0x5c, 0x7f, 0xf0, 0x19, 0xf9, 0x1d, 0x2c, 0x5c, 0x5d, 0xa7, 0x5b, 0xd2, 0x4e, 0xe3, 0xeb, 0x85, 0x73, 0xe7, 0xa3, 0x57, 0x70, 0x43, 0xc4, 0xe4, 0x19, 0xac, 0xed, 0x21, 0x1d, 0x9c, 0x52, 0xae,
0xcf, 0x65, 0xf0, 0xa2, 0x92, 0x83, 0x70, 0x40, 0x35, 0x5b, 0x2f, 0x80, 0x86, 0x76, 0x1d, 0x57, 0x9c, 0x5c, 0x7f, 0xf0, 0x19, 0xf9, 0x1d, 0xac, 0x5c, 0x5d, 0xb8, 0x5b, 0xd2, 0xce, 0xeb, 0xeb,
0x09, 0x50, 0xfe, 0xf6, 0xb2, 0x12, 0xa0, 0x82, 0xdb, 0xbb, 0xf6, 0x7d, 0xac, 0xc7, 0x26, 0x77, 0x95, 0xcf, 0x65, 0xe0, 0x45, 0x35, 0x07, 0xe1, 0x80, 0x6a, 0xb6, 0x5e, 0x00, 0x0d, 0xed, 0xc2,
0xd3, 0x7a, 0xf8, 0x8d, 0xdd, 0xb4, 0xa6, 0x87, 0x3f, 0xf5, 0x46, 0xc9, 0x67, 0xe4, 0x25, 0xbe, 0xae, 0x12, 0xa0, 0xfc, 0xfd, 0x66, 0x25, 0x40, 0x05, 0xf7, 0x7b, 0xed, 0xfb, 0xd8, 0x8e, 0x4d,
0xb0, 0xaa, 0x5f, 0x50, 0x49, 0x37, 0x0d, 0xd9, 0xbb, 0x2c, 0x6a, 0xb0, 0x34, 0x92, 0xb9, 0x91, 0xee, 0xa6, 0xed, 0xf0, 0x3b, 0xbd, 0x69, 0x4b, 0x0f, 0x3f, 0xf5, 0x46, 0xc9, 0x67, 0xe4, 0x25,
0xe0, 0x55, 0xa1, 0x25, 0xf7, 0x4d, 0x80, 0xc3, 0x24, 0x1c, 0x6f, 0x7a, 0x74, 0x14, 0x06, 0xa9, 0xbe, 0xc1, 0xaa, 0x5f, 0x61, 0x49, 0x9d, 0x86, 0xec, 0x6d, 0x17, 0x35, 0x59, 0x1a, 0xca, 0x74,
0xae, 0x4d, 0xaf, 0x47, 0xa4, 0xfa, 0x4b, 0xbb, 0x23, 0x41, 0x5e, 0x6a, 0xbb, 0x2c, 0xe3, 0x8e, 0x24, 0x78, 0x53, 0x68, 0xc9, 0x7d, 0x13, 0xe0, 0x30, 0x09, 0xc7, 0x9b, 0x1e, 0x1d, 0x85, 0x41,
0x8f, 0x64, 0xae, 0xa9, 0x37, 0x28, 0xd4, 0x80, 0x14, 0xdc, 0xa2, 0x78, 0x64, 0x91, 0x35, 0x80, 0xaa, 0x6b, 0xd3, 0x0b, 0x14, 0xa9, 0xfe, 0xd2, 0x6e, 0x51, 0x90, 0x97, 0x9a, 0x97, 0x65, 0xdc,
0xf4, 0x20, 0x81, 0xda, 0x33, 0xe5, 0xce, 0x28, 0x28, 0xb5, 0x57, 0x70, 0xea, 0xe0, 0x00, 0xea, 0x02, 0x92, 0xcc, 0x35, 0xf5, 0x8e, 0x85, 0x9a, 0x90, 0x82, 0x7b, 0x16, 0x8f, 0x2c, 0xb2, 0x06,
0x69, 0xd8, 0x75, 0x39, 0xbd, 0x9c, 0x6f, 0x04, 0x69, 0xd5, 0x0a, 0x9e, 0x0b, 0x86, 0xda, 0x1d, 0x90, 0x1e, 0x24, 0x50, 0x3e, 0x53, 0xee, 0x8c, 0x82, 0x52, 0x7b, 0x05, 0xa7, 0x0e, 0x0e, 0xa0,
0x1c, 0x2a, 0x20, 0x35, 0x36, 0x54, 0x18, 0xe1, 0xf4, 0x61, 0x81, 0x37, 0x50, 0x99, 0x4b, 0x78, 0x9e, 0xa6, 0x5d, 0x97, 0xd3, 0xeb, 0xfb, 0x46, 0x92, 0x56, 0xed, 0xe0, 0xb9, 0x64, 0xa8, 0xdd,
0xac, 0x5f, 0x3d, 0xa4, 0x9b, 0x0f, 0x48, 0x2a, 0x69, 0x2e, 0x8c, 0xa7, 0x19, 0xae, 0x1f, 0xc6, 0xc1, 0xa9, 0x02, 0x52, 0x63, 0x53, 0x85, 0x19, 0x4e, 0x1f, 0x16, 0x78, 0x07, 0x95, 0xb9, 0x84,
0xad, 0xfc, 0x4a, 0x01, 0x53, 0xcd, 0x23, 0x98, 0xcf, 0x85, 0x68, 0x94, 0x48, 0x4f, 0x8b, 0xc1, 0x07, 0xff, 0xd5, 0x53, 0xbb, 0xf9, 0x84, 0xa4, 0x92, 0xe6, 0xc2, 0x7c, 0x9a, 0x11, 0xfa, 0x61,
0x29, 0x91, 0x9e, 0x1a, 0xdd, 0xb1, 0xaf, 0x63, 0x95, 0x73, 0x36, 0xe0, 0x56, 0xef, 0xc2, 0x4f, 0xdc, 0xca, 0x2f, 0x1d, 0x30, 0xd5, 0x3c, 0x82, 0xf9, 0x5c, 0x8a, 0x46, 0x89, 0xf4, 0xb4, 0x1c,
0xfa, 0x67, 0xac, 0xba, 0x3f, 0xb2, 0x60, 0xa1, 0x20, 0x02, 0x43, 0xde, 0x95, 0x5e, 0x83, 0xa9, 0x9c, 0x12, 0xe9, 0xa9, 0xd9, 0x1d, 0xfb, 0x3a, 0x36, 0x39, 0x67, 0x03, 0xba, 0x7a, 0x17, 0x7e,
0xd1, 0x99, 0x5e, 0xa1, 0x83, 0xde, 0x3e, 0xc4, 0x7a, 0x9e, 0x93, 0x4f, 0x8c, 0x85, 0x8d, 0xfb, 0xd2, 0x3f, 0x63, 0xcd, 0xfd, 0x91, 0x05, 0x0b, 0x05, 0x19, 0x18, 0xf2, 0xae, 0x8c, 0x1a, 0x4c,
0xc6, 0x85, 0x64, 0x5e, 0x69, 0x54, 0x14, 0x5a, 0x14, 0x9f, 0xc2, 0x32, 0x6f, 0xc8, 0xda, 0x70, 0xcd, 0xce, 0xf4, 0x0a, 0x03, 0xf4, 0xf6, 0x21, 0xb6, 0xf3, 0x9c, 0x7c, 0x62, 0x6c, 0x6c, 0x3c,
0x98, 0x09, 0x1e, 0xdc, 0xc9, 0xfd, 0xe8, 0xa9, 0x11, 0x14, 0xe9, 0x4d, 0xff, 0x51, 0xd4, 0x29, 0x36, 0x2e, 0x24, 0xf3, 0x4a, 0xa3, 0xa2, 0xd0, 0xa2, 0xf8, 0x09, 0x2c, 0xf3, 0x8e, 0xac, 0x0d,
0xe6, 0x34, 0x6f, 0x2a, 0x99, 0x40, 0x27, 0xeb, 0x90, 0x27, 0xd3, 0xcb, 0xea, 0xbd, 0x63, 0xec, 0x87, 0x99, 0xe4, 0xc1, 0x9d, 0xdc, 0xcf, 0xa2, 0x1a, 0x49, 0x91, 0xde, 0xf4, 0x9f, 0x4d, 0x9d,
0x7f, 0x0b, 0x9c, 0xf8, 0x5f, 0xc6, 0xca, 0xde, 0xb1, 0x7b, 0x45, 0xe3, 0xc2, 0xb7, 0xc4, 0x6c, 0x62, 0x4e, 0xf3, 0xae, 0x92, 0x09, 0x74, 0xb2, 0x01, 0x79, 0x32, 0xbd, 0xae, 0xde, 0x3b, 0x86,
0x3e, 0xfe, 0x8a, 0x8a, 0x1e, 0x64, 0xfa, 0x29, 0x2b, 0x98, 0x16, 0xee, 0x50, 0x3b, 0xf0, 0xe2, 0xff, 0x5b, 0x10, 0xc4, 0xff, 0x32, 0x36, 0xf6, 0x8e, 0xdd, 0x2b, 0x9a, 0x17, 0xee, 0x12, 0xb3,
0xe0, 0xc3, 0x7b, 0x58, 0xfd, 0x5d, 0xfb, 0x66, 0x51, 0xf5, 0x11, 0xff, 0x84, 0xef, 0xc5, 0x97, 0xf5, 0xf8, 0x2b, 0x2a, 0x7b, 0x90, 0x19, 0xa7, 0x6c, 0x60, 0x5a, 0xba, 0x43, 0x79, 0xe0, 0xc5,
0xb3, 0x72, 0x2d, 0x5b, 0x70, 0xb7, 0x68, 0xbe, 0xa7, 0xee, 0x85, 0x32, 0x63, 0x7d, 0x0d, 0x6d, 0xc9, 0x87, 0xf7, 0xb0, 0xf9, 0xbb, 0xf6, 0xcd, 0xa2, 0xe6, 0x23, 0xfe, 0x09, 0xf7, 0xc5, 0x97,
0xbb, 0xa6, 0x1e, 0x2d, 0x50, 0xe2, 0x53, 0x10, 0x96, 0x50, 0xe2, 0x53, 0x14, 0x5e, 0x30, 0xed, 0xb3, 0x72, 0x2d, 0x7b, 0x70, 0xb7, 0x68, 0xbd, 0xa7, 0xfa, 0x42, 0x99, 0xb9, 0xbe, 0x86, 0xb6,
0x1a, 0x19, 0x58, 0xf8, 0xd8, 0x7a, 0xb0, 0xfe, 0xfe, 0x0f, 0xbe, 0x7c, 0xea, 0x27, 0x67, 0x93, 0x5d, 0x53, 0xcf, 0x16, 0x28, 0xf1, 0x29, 0x48, 0x4b, 0x28, 0xf1, 0x29, 0x4a, 0x2f, 0x98, 0x76,
0xe3, 0x95, 0x7e, 0x38, 0x7a, 0x38, 0x94, 0xde, 0x46, 0x71, 0xd5, 0xed, 0xe1, 0x30, 0x18, 0x3c, 0x8d, 0x4c, 0x2c, 0x7c, 0x6c, 0x3d, 0x58, 0x7f, 0xff, 0x07, 0x5f, 0x3e, 0xf5, 0x93, 0xb3, 0xc9,
0xc4, 0x62, 0x8f, 0x67, 0xf0, 0x57, 0x9a, 0xbf, 0xfe, 0xff, 0x03, 0x00, 0x00, 0xff, 0xff, 0x83, 0xf1, 0x4a, 0x3f, 0x1c, 0x3d, 0x1c, 0xca, 0x68, 0xa3, 0xb8, 0x0c, 0xf7, 0x70, 0x18, 0x0c, 0x1e,
0x91, 0xdc, 0xd2, 0xd7, 0x79, 0x00, 0x00, 0x62, 0xb5, 0xc7, 0x33, 0xf8, 0x3b, 0xce, 0x5f, 0xff, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0xbd,
0x86, 0x9b, 0xea, 0xf9, 0x79, 0x00, 0x00,
} }
// Reference imports to suppress errors if they are not otherwise used. // Reference imports to suppress errors if they are not otherwise used.

@ -2545,6 +2545,12 @@ message Invoice {
/// List of features advertised on the invoice. /// List of features advertised on the invoice.
map<uint32, Feature> features = 24 [json_name = "features"]; map<uint32, Feature> features = 24 [json_name = "features"];
/**
Indicates if this invoice was a spontaneous payment that arrived via keysend
[EXPERIMENTAL].
*/
bool is_key_send = 25 [json_name = "is_key_send"];
} }
enum InvoiceHTLCState { enum InvoiceHTLCState {

@ -2896,6 +2896,11 @@
"$ref": "#/definitions/lnrpcFeature" "$ref": "#/definitions/lnrpcFeature"
}, },
"description": "/ List of features advertised on the invoice." "description": "/ List of features advertised on the invoice."
},
"is_key_send": {
"type": "boolean",
"format": "boolean",
"description": "*\nIndicates if this invoice was a spontaneous payment that arrived via keysend\n[EXPERIMENTAL]."
} }
} }
}, },

@ -0,0 +1,177 @@
// +build rpctest
package itest
import (
"bytes"
"context"
"time"
"github.com/btcsuite/btcutil"
"github.com/davecgh/go-spew/spew"
"github.com/lightningnetwork/lnd/lnrpc"
"github.com/lightningnetwork/lnd/lntest"
"github.com/lightningnetwork/lnd/lntest/wait"
"github.com/lightningnetwork/lnd/lntypes"
"github.com/lightningnetwork/lnd/record"
)
func testSingleHopInvoice(net *lntest.NetworkHarness, t *harnessTest) {
ctxb := context.Background()
// Open a channel with 100k satoshis between Alice and Bob with Alice being
// the sole funder of the channel.
ctxt, _ := context.WithTimeout(ctxb, channelOpenTimeout)
chanAmt := btcutil.Amount(100000)
chanPoint := openChannelAndAssert(
ctxt, t, net, net.Alice, net.Bob,
lntest.OpenChannelParams{
Amt: chanAmt,
},
)
// Now that the channel is open, create an invoice for Bob which
// expects a payment of 1000 satoshis from Alice paid via a particular
// preimage.
const paymentAmt = 1000
preimage := bytes.Repeat([]byte("A"), 32)
invoice := &lnrpc.Invoice{
Memo: "testing",
RPreimage: preimage,
Value: paymentAmt,
}
ctxt, _ = context.WithTimeout(ctxt, defaultTimeout)
invoiceResp, err := net.Bob.AddInvoice(ctxb, invoice)
if err != nil {
t.Fatalf("unable to add invoice: %v", err)
}
// Wait for Alice to recognize and advertise the new channel generated
// above.
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
err = net.Alice.WaitForNetworkChannelOpen(ctxt, chanPoint)
if err != nil {
t.Fatalf("alice didn't advertise channel before "+
"timeout: %v", err)
}
err = net.Bob.WaitForNetworkChannelOpen(ctxt, chanPoint)
if err != nil {
t.Fatalf("bob didn't advertise channel before "+
"timeout: %v", err)
}
// With the invoice for Bob added, send a payment towards Alice paying
// to the above generated invoice.
sendReq := &lnrpc.SendRequest{
PaymentRequest: invoiceResp.PaymentRequest,
}
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
resp, err := net.Alice.SendPaymentSync(ctxt, sendReq)
if err != nil {
t.Fatalf("unable to send payment: %v", err)
}
// Ensure we obtain the proper preimage in the response.
if resp.PaymentError != "" {
t.Fatalf("error when attempting recv: %v", resp.PaymentError)
} else if !bytes.Equal(preimage, resp.PaymentPreimage) {
t.Fatalf("preimage mismatch: expected %v, got %v", preimage,
resp.GetPaymentPreimage())
}
// Bob's invoice should now be found and marked as settled.
payHash := &lnrpc.PaymentHash{
RHash: invoiceResp.RHash,
}
ctxt, _ = context.WithTimeout(ctxt, defaultTimeout)
dbInvoice, err := net.Bob.LookupInvoice(ctxt, payHash)
if err != nil {
t.Fatalf("unable to lookup invoice: %v", err)
}
if !dbInvoice.Settled {
t.Fatalf("bob's invoice should be marked as settled: %v",
spew.Sdump(dbInvoice))
}
// With the payment completed all balance related stats should be
// properly updated.
err = wait.NoError(
assertAmountSent(paymentAmt, net.Alice, net.Bob),
3*time.Second,
)
if err != nil {
t.Fatalf(err.Error())
}
// Create another invoice for Bob, this time leaving off the preimage
// to one will be randomly generated. We'll test the proper
// encoding/decoding of the zpay32 payment requests.
invoice = &lnrpc.Invoice{
Memo: "test3",
Value: paymentAmt,
}
ctxt, _ = context.WithTimeout(ctxt, defaultTimeout)
invoiceResp, err = net.Bob.AddInvoice(ctxt, invoice)
if err != nil {
t.Fatalf("unable to add invoice: %v", err)
}
// Next send another payment, but this time using a zpay32 encoded
// invoice rather than manually specifying the payment details.
sendReq = &lnrpc.SendRequest{
PaymentRequest: invoiceResp.PaymentRequest,
}
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
resp, err = net.Alice.SendPaymentSync(ctxt, sendReq)
if err != nil {
t.Fatalf("unable to send payment: %v", err)
}
if resp.PaymentError != "" {
t.Fatalf("error when attempting recv: %v", resp.PaymentError)
}
// The second payment should also have succeeded, with the balances
// being update accordingly.
err = wait.NoError(
assertAmountSent(2*paymentAmt, net.Alice, net.Bob),
3*time.Second,
)
if err != nil {
t.Fatalf(err.Error())
}
// Next send a key send payment.
keySendPreimage := lntypes.Preimage{3, 4, 5, 11}
keySendHash := keySendPreimage.Hash()
sendReq = &lnrpc.SendRequest{
Dest: net.Bob.PubKey[:],
Amt: paymentAmt,
FinalCltvDelta: 40,
PaymentHash: keySendHash[:],
DestCustomRecords: map[uint64][]byte{
record.KeySendType: keySendPreimage[:],
},
}
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
resp, err = net.Alice.SendPaymentSync(ctxt, sendReq)
if err != nil {
t.Fatalf("unable to send payment: %v", err)
}
if resp.PaymentError != "" {
t.Fatalf("error when attempting recv: %v", resp.PaymentError)
}
// The key send payment should also have succeeded, with the balances
// being update accordingly.
err = wait.NoError(
assertAmountSent(3*paymentAmt, net.Alice, net.Bob),
3*time.Second,
)
if err != nil {
t.Fatalf(err.Error())
}
ctxt, _ = context.WithTimeout(ctxb, channelCloseTimeout)
closeChannelAndAssert(ctxt, t, net, net.Alice, chanPoint, false)
}

@ -3910,134 +3910,6 @@ func testSphinxReplayPersistence(net *lntest.NetworkHarness, t *harnessTest) {
cleanupForceClose(t, net, carol, chanPoint) cleanupForceClose(t, net, carol, chanPoint)
} }
func testSingleHopInvoice(net *lntest.NetworkHarness, t *harnessTest) {
ctxb := context.Background()
// Open a channel with 100k satoshis between Alice and Bob with Alice being
// the sole funder of the channel.
ctxt, _ := context.WithTimeout(ctxb, channelOpenTimeout)
chanAmt := btcutil.Amount(100000)
chanPoint := openChannelAndAssert(
ctxt, t, net, net.Alice, net.Bob,
lntest.OpenChannelParams{
Amt: chanAmt,
},
)
// Now that the channel is open, create an invoice for Bob which
// expects a payment of 1000 satoshis from Alice paid via a particular
// preimage.
const paymentAmt = 1000
preimage := bytes.Repeat([]byte("A"), 32)
invoice := &lnrpc.Invoice{
Memo: "testing",
RPreimage: preimage,
Value: paymentAmt,
}
ctxt, _ = context.WithTimeout(ctxt, defaultTimeout)
invoiceResp, err := net.Bob.AddInvoice(ctxb, invoice)
if err != nil {
t.Fatalf("unable to add invoice: %v", err)
}
// Wait for Alice to recognize and advertise the new channel generated
// above.
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
err = net.Alice.WaitForNetworkChannelOpen(ctxt, chanPoint)
if err != nil {
t.Fatalf("alice didn't advertise channel before "+
"timeout: %v", err)
}
err = net.Bob.WaitForNetworkChannelOpen(ctxt, chanPoint)
if err != nil {
t.Fatalf("bob didn't advertise channel before "+
"timeout: %v", err)
}
// With the invoice for Bob added, send a payment towards Alice paying
// to the above generated invoice.
sendReq := &lnrpc.SendRequest{
PaymentRequest: invoiceResp.PaymentRequest,
}
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
resp, err := net.Alice.SendPaymentSync(ctxt, sendReq)
if err != nil {
t.Fatalf("unable to send payment: %v", err)
}
// Ensure we obtain the proper preimage in the response.
if resp.PaymentError != "" {
t.Fatalf("error when attempting recv: %v", resp.PaymentError)
} else if !bytes.Equal(preimage, resp.PaymentPreimage) {
t.Fatalf("preimage mismatch: expected %v, got %v", preimage,
resp.GetPaymentPreimage())
}
// Bob's invoice should now be found and marked as settled.
payHash := &lnrpc.PaymentHash{
RHash: invoiceResp.RHash,
}
ctxt, _ = context.WithTimeout(ctxt, defaultTimeout)
dbInvoice, err := net.Bob.LookupInvoice(ctxt, payHash)
if err != nil {
t.Fatalf("unable to lookup invoice: %v", err)
}
if !dbInvoice.Settled {
t.Fatalf("bob's invoice should be marked as settled: %v",
spew.Sdump(dbInvoice))
}
// With the payment completed all balance related stats should be
// properly updated.
err = wait.NoError(
assertAmountSent(paymentAmt, net.Alice, net.Bob),
3*time.Second,
)
if err != nil {
t.Fatalf(err.Error())
}
// Create another invoice for Bob, this time leaving off the preimage
// to one will be randomly generated. We'll test the proper
// encoding/decoding of the zpay32 payment requests.
invoice = &lnrpc.Invoice{
Memo: "test3",
Value: paymentAmt,
}
ctxt, _ = context.WithTimeout(ctxt, defaultTimeout)
invoiceResp, err = net.Bob.AddInvoice(ctxt, invoice)
if err != nil {
t.Fatalf("unable to add invoice: %v", err)
}
// Next send another payment, but this time using a zpay32 encoded
// invoice rather than manually specifying the payment details.
sendReq = &lnrpc.SendRequest{
PaymentRequest: invoiceResp.PaymentRequest,
}
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
resp, err = net.Alice.SendPaymentSync(ctxt, sendReq)
if err != nil {
t.Fatalf("unable to send payment: %v", err)
}
if resp.PaymentError != "" {
t.Fatalf("error when attempting recv: %v", resp.PaymentError)
}
// The second payment should also have succeeded, with the balances
// being update accordingly.
err = wait.NoError(
assertAmountSent(2*paymentAmt, net.Alice, net.Bob),
3*time.Second,
)
if err != nil {
t.Fatalf(err.Error())
}
ctxt, _ = context.WithTimeout(ctxb, channelCloseTimeout)
closeChannelAndAssert(ctxt, t, net, net.Alice, chanPoint, false)
}
func testListPayments(net *lntest.NetworkHarness, t *harnessTest) { func testListPayments(net *lntest.NetworkHarness, t *harnessTest) {
ctxb := context.Background() ctxb := context.Background()

@ -152,6 +152,8 @@ type nodeConfig struct {
RPCPort int RPCPort int
RESTPort int RESTPort int
ProfilePort int ProfilePort int
AcceptKeySend bool
} }
func (cfg nodeConfig) P2PAddr() string { func (cfg nodeConfig) P2PAddr() string {
@ -225,6 +227,10 @@ func (cfg nodeConfig) genArgs() []string {
args = append(args, cfg.ExtraArgs...) args = append(args, cfg.ExtraArgs...)
} }
if cfg.AcceptKeySend {
args = append(args, "--accept-key-send")
}
return args return args
} }
@ -304,6 +310,11 @@ func newNode(cfg nodeConfig) (*HarnessNode, error) {
cfg.P2PPort, cfg.RPCPort, cfg.RESTPort, cfg.ProfilePort = generateListeningPorts() cfg.P2PPort, cfg.RPCPort, cfg.RESTPort, cfg.ProfilePort = generateListeningPorts()
// Run all tests with accept key send. The key send code is very
// isolated and it is highly unlikely that it would affect regular
// itests when enabled.
cfg.AcceptKeySend = true
numActiveNodesMtx.Lock() numActiveNodesMtx.Lock()
nodeNum := numActiveNodes nodeNum := numActiveNodes
numActiveNodes++ numActiveNodes++

6
record/experimental.go Normal file

@ -0,0 +1,6 @@
package record
const (
// KeySendType is the custom record identifier for key send preimages.
KeySendType uint64 = 5482373484
)

@ -384,6 +384,7 @@ func newServer(listenAddrs []net.Addr, chanDB *channeldb.DB,
FinalCltvRejectDelta: defaultFinalCltvRejectDelta, FinalCltvRejectDelta: defaultFinalCltvRejectDelta,
HtlcHoldDuration: invoices.DefaultHtlcHoldDuration, HtlcHoldDuration: invoices.DefaultHtlcHoldDuration,
Clock: clock.NewDefaultClock(), Clock: clock.NewDefaultClock(),
AcceptKeySend: cfg.AcceptKeySend,
} }
s := &server{ s := &server{