Merge pull request #4147 from joostjager/unify-pay-responses

router+routerrpc: unify sendtoroute and payment responses
This commit is contained in:
Joost Jager 2020-05-13 20:36:14 +02:00 committed by GitHub
commit 1bd211a722
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
20 changed files with 1138 additions and 984 deletions

@ -2,6 +2,7 @@ package channeldb
import (
"bytes"
"errors"
"io"
"time"
@ -177,6 +178,18 @@ func (m *MPPayment) InFlightHTLCs() []HTLCAttempt {
return inflights
}
// GetAttempt returns the specified htlc attempt on the payment.
func (m *MPPayment) GetAttempt(id uint64) (*HTLCAttempt, error) {
for _, htlc := range m.HTLCs {
htlc := htlc
if htlc.AttemptID == id {
return &htlc, nil
}
}
return nil, errors.New("htlc attempt not found on payment")
}
// serializeHTLCSettleInfo serializes the details of a settled htlc.
func serializeHTLCSettleInfo(w io.Writer, s *HTLCSettleInfo) error {
if _, err := w.Write(s.Preimage[:]); err != nil {

@ -836,7 +836,7 @@ func sendToRoute(ctx *cli.Context) error {
route = routes.Route
}
req := &lnrpc.SendToRouteRequest{
req := &routerrpc.SendToRouteRequest{
PaymentHash: rHash,
Route: route,
}
@ -844,20 +844,13 @@ func sendToRoute(ctx *cli.Context) error {
return sendToRouteRequest(ctx, req)
}
func sendToRouteRequest(ctx *cli.Context, req *lnrpc.SendToRouteRequest) error {
client, cleanUp := getClient(ctx)
defer cleanUp()
func sendToRouteRequest(ctx *cli.Context, req *routerrpc.SendToRouteRequest) error {
conn := getClientConn(ctx, false)
defer conn.Close()
paymentStream, err := client.SendToRoute(context.Background())
if err != nil {
return err
}
client := routerrpc.NewRouterClient(conn)
if err := paymentStream.Send(req); err != nil {
return err
}
resp, err := paymentStream.Recv()
resp, err := client.SendToRouteV2(context.Background(), req)
if err != nil {
return err
}

@ -1759,149 +1759,150 @@ func init() {
func init() { proto.RegisterFile("routerrpc/router.proto", fileDescriptor_7a0613f69d37b0a5) }
var fileDescriptor_7a0613f69d37b0a5 = []byte{
// 2268 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x58, 0xcf, 0x77, 0xdb, 0xc6,
0xf1, 0x0f, 0x48, 0x50, 0x22, 0x87, 0x3f, 0x04, 0x2d, 0x1d, 0x19, 0x5f, 0x2a, 0x4e, 0x18, 0x7c,
0x13, 0x87, 0xcf, 0x4d, 0x24, 0x47, 0xed, 0x6b, 0xf3, 0xda, 0x26, 0x2d, 0x45, 0x42, 0x11, 0x6c,
0x0a, 0x60, 0x96, 0x94, 0x6c, 0xd7, 0x87, 0x7d, 0x10, 0xb9, 0x14, 0x51, 0x81, 0x00, 0x0b, 0x2c,
0xed, 0xe8, 0xd8, 0x5b, 0x5f, 0xaf, 0xfd, 0x23, 0x7a, 0xeb, 0x5f, 0xd0, 0xff, 0xa5, 0xd7, 0xde,
0xfb, 0x5e, 0xcf, 0x7d, 0xbb, 0x58, 0x90, 0xa0, 0x44, 0xd9, 0xed, 0x45, 0xc2, 0x7e, 0xe6, 0xb3,
0xb3, 0x33, 0x3b, 0x33, 0x3b, 0xbb, 0x84, 0xbd, 0x28, 0x5c, 0x30, 0x1a, 0x45, 0xf3, 0xd1, 0x61,
0xf2, 0x75, 0x30, 0x8f, 0x42, 0x16, 0xa2, 0xd2, 0x12, 0x6f, 0x94, 0xa2, 0xf9, 0x28, 0x41, 0x8d,
0x7f, 0x6d, 0x01, 0x1a, 0xd0, 0x60, 0xdc, 0x77, 0x6f, 0x66, 0x34, 0x60, 0x98, 0xfe, 0x61, 0x41,
0x63, 0x86, 0x10, 0xa8, 0x63, 0x1a, 0x33, 0x5d, 0x69, 0x2a, 0xad, 0x0a, 0x16, 0xdf, 0x48, 0x83,
0xbc, 0x3b, 0x63, 0x7a, 0xae, 0xa9, 0xb4, 0xf2, 0x98, 0x7f, 0xa2, 0xff, 0x83, 0xa2, 0x3b, 0x63,
0x64, 0x16, 0xbb, 0x4c, 0xaf, 0x08, 0x78, 0xdb, 0x9d, 0xb1, 0xb3, 0xd8, 0x65, 0xe8, 0x53, 0xa8,
0xcc, 0x13, 0x95, 0x64, 0xea, 0xc6, 0x53, 0x3d, 0x2f, 0x14, 0x95, 0x25, 0x76, 0xea, 0xc6, 0x53,
0xd4, 0x02, 0x6d, 0xe2, 0x05, 0xae, 0x4f, 0x46, 0x3e, 0x7b, 0x43, 0xc6, 0xd4, 0x67, 0xae, 0xae,
0x36, 0x95, 0x56, 0x01, 0xd7, 0x04, 0xde, 0xf1, 0xd9, 0x9b, 0x2e, 0x47, 0xd1, 0x17, 0xb0, 0x93,
0x2a, 0x8b, 0x12, 0x03, 0xf5, 0x42, 0x53, 0x69, 0x95, 0x70, 0x6d, 0xbe, 0x6e, 0xf6, 0x17, 0xb0,
0xc3, 0xbc, 0x19, 0x0d, 0x17, 0x8c, 0xc4, 0x74, 0x14, 0x06, 0xe3, 0x58, 0xdf, 0x4a, 0x34, 0x4a,
0x78, 0x90, 0xa0, 0xc8, 0x80, 0xea, 0x84, 0x52, 0xe2, 0x7b, 0x33, 0x8f, 0x11, 0x6e, 0xfe, 0xb6,
0x30, 0xbf, 0x3c, 0xa1, 0xb4, 0xc7, 0xb1, 0x81, 0xcb, 0xd0, 0x67, 0x50, 0x5b, 0x71, 0x84, 0x8f,
0x55, 0x41, 0xaa, 0xa4, 0x24, 0xe1, 0xe8, 0x01, 0x68, 0xe1, 0x82, 0x5d, 0x85, 0x5e, 0x70, 0x45,
0x46, 0x53, 0x37, 0x20, 0xde, 0x58, 0x2f, 0x36, 0x95, 0x96, 0x7a, 0xac, 0xea, 0xca, 0x53, 0x05,
0xd7, 0x52, 0x69, 0x67, 0xea, 0x06, 0xd6, 0x18, 0x3d, 0x81, 0xdd, 0xdb, 0xfc, 0x58, 0xaf, 0x37,
0xf3, 0x2d, 0x15, 0xef, 0xac, 0x53, 0x63, 0xf4, 0x18, 0x76, 0x7c, 0x37, 0x66, 0x64, 0x1a, 0xce,
0xc9, 0x7c, 0x71, 0x79, 0x4d, 0x6f, 0xf4, 0x9a, 0xd8, 0xc7, 0x2a, 0x87, 0x4f, 0xc3, 0x79, 0x5f,
0x80, 0xe8, 0x11, 0x80, 0xd8, 0x43, 0x61, 0xaa, 0x5e, 0x12, 0x1e, 0x97, 0x38, 0x22, 0xcc, 0x44,
0x5f, 0x43, 0x59, 0xc4, 0x9e, 0x4c, 0xbd, 0x80, 0xc5, 0x3a, 0x34, 0xf3, 0xad, 0xf2, 0x91, 0x76,
0xe0, 0x07, 0x3c, 0x0d, 0x30, 0x97, 0x9c, 0x7a, 0x01, 0xc3, 0x10, 0xa5, 0x9f, 0x31, 0x1a, 0x43,
0x9d, 0xc7, 0x9c, 0x8c, 0x16, 0x31, 0x0b, 0x67, 0x24, 0xa2, 0xa3, 0x30, 0x1a, 0xc7, 0x7a, 0x59,
0x4c, 0xfd, 0xd9, 0xc1, 0x32, 0x95, 0x0e, 0xee, 0xe6, 0xce, 0x41, 0x97, 0xc6, 0xac, 0x23, 0xe6,
0xe1, 0x64, 0x9a, 0x19, 0xb0, 0xe8, 0x06, 0xef, 0x8e, 0x6f, 0xe3, 0xe8, 0x4b, 0x40, 0xae, 0xef,
0x87, 0x6f, 0x49, 0x4c, 0xfd, 0x09, 0x91, 0xb1, 0xd4, 0x77, 0x9a, 0x4a, 0xab, 0x88, 0x35, 0x21,
0x19, 0x50, 0x7f, 0x22, 0xd5, 0xa3, 0x9f, 0x43, 0x55, 0xd8, 0x34, 0xa1, 0x2e, 0x5b, 0x44, 0x34,
0xd6, 0xb5, 0x66, 0xbe, 0x55, 0x3b, 0xda, 0x95, 0x8e, 0x9c, 0x24, 0xf0, 0xb1, 0xc7, 0x70, 0x85,
0xf3, 0xe4, 0x38, 0x46, 0xfb, 0x50, 0x9a, 0xb9, 0x3f, 0x92, 0xb9, 0x1b, 0xb1, 0x58, 0xdf, 0x6d,
0x2a, 0xad, 0x2a, 0x2e, 0xce, 0xdc, 0x1f, 0xfb, 0x7c, 0x8c, 0x0e, 0xa0, 0x1e, 0x84, 0xc4, 0x0b,
0x26, 0xbe, 0x77, 0x35, 0x65, 0x64, 0x31, 0x1f, 0xbb, 0x8c, 0xc6, 0x3a, 0x12, 0x36, 0xec, 0x06,
0xa1, 0x25, 0x25, 0xe7, 0x89, 0xa0, 0xd1, 0x85, 0xbd, 0xcd, 0xfe, 0xf1, 0xf2, 0xe0, 0x01, 0xe2,
0x15, 0xa3, 0x62, 0xfe, 0x89, 0x1e, 0x40, 0xe1, 0x8d, 0xeb, 0x2f, 0xa8, 0x28, 0x99, 0x0a, 0x4e,
0x06, 0xbf, 0xcc, 0x7d, 0xa3, 0x18, 0x53, 0xa8, 0x0f, 0x23, 0x77, 0x74, 0x7d, 0xab, 0xea, 0x6e,
0x17, 0x8d, 0x72, 0xb7, 0x68, 0xee, 0xb1, 0x37, 0x77, 0x8f, 0xbd, 0xc6, 0x77, 0xb0, 0x23, 0x22,
0x7c, 0x42, 0xe9, 0xbb, 0x6a, 0xfb, 0x21, 0xf0, 0xca, 0x15, 0x95, 0x90, 0xd4, 0xf7, 0x96, 0x3b,
0xe3, 0x45, 0x60, 0x8c, 0x41, 0x5b, 0xcd, 0x8f, 0xe7, 0x61, 0x10, 0x53, 0x5e, 0xb8, 0x3c, 0x01,
0x78, 0x06, 0xf3, 0x02, 0x11, 0xa5, 0xa1, 0x88, 0x59, 0x35, 0x89, 0x9f, 0x50, 0x2a, 0x8a, 0xe3,
0x71, 0x52, 0x8f, 0xc4, 0x0f, 0x47, 0xd7, 0xbc, 0xc2, 0xdd, 0x1b, 0xa9, 0xbe, 0xca, 0xe1, 0x5e,
0x38, 0xba, 0xee, 0x72, 0xd0, 0x78, 0x9d, 0x1c, 0x42, 0xc3, 0x50, 0xac, 0xf5, 0x3f, 0x6c, 0x87,
0x01, 0x05, 0x91, 0x8b, 0x42, 0x6d, 0xf9, 0xa8, 0x92, 0x4d, 0x6a, 0x9c, 0x88, 0x8c, 0xd7, 0x50,
0x5f, 0x53, 0x2e, 0xbd, 0x68, 0x40, 0x71, 0x1e, 0x51, 0x6f, 0xe6, 0x5e, 0x51, 0xa9, 0x79, 0x39,
0x46, 0x2d, 0xd8, 0x9e, 0xb8, 0x9e, 0xbf, 0x88, 0x52, 0xc5, 0xb5, 0x34, 0xc9, 0x12, 0x14, 0xa7,
0x62, 0xe3, 0x23, 0x68, 0x60, 0x1a, 0x53, 0x76, 0xe6, 0xc5, 0xb1, 0x17, 0x06, 0x9d, 0x30, 0x60,
0x51, 0xe8, 0x4b, 0x0f, 0x8c, 0x47, 0xb0, 0xbf, 0x51, 0x9a, 0x98, 0xc0, 0x27, 0xff, 0xb0, 0xa0,
0xd1, 0xcd, 0xe6, 0xc9, 0x3f, 0xc0, 0xfe, 0x46, 0xa9, 0xb4, 0xff, 0x4b, 0x28, 0xcc, 0x5d, 0x2f,
0xe2, 0xb1, 0xe7, 0x45, 0xb9, 0x97, 0x29, 0xca, 0xbe, 0xeb, 0x45, 0xa7, 0x5e, 0xcc, 0xc2, 0xe8,
0x06, 0x27, 0xa4, 0x67, 0x6a, 0x51, 0xd1, 0x72, 0xc6, 0x9f, 0x15, 0x28, 0x67, 0x84, 0xbc, 0x34,
0x82, 0x70, 0x4c, 0xc9, 0x24, 0x0a, 0x67, 0xe9, 0x26, 0x70, 0xe0, 0x24, 0x0a, 0x67, 0x3c, 0x27,
0x84, 0x90, 0x85, 0x32, 0x81, 0xb7, 0xf8, 0x70, 0x18, 0xa2, 0xaf, 0x60, 0x7b, 0x9a, 0x28, 0x10,
0xc7, 0x66, 0xf9, 0xa8, 0x7e, 0x6b, 0xed, 0xae, 0xcb, 0x5c, 0x9c, 0x72, 0x9e, 0xa9, 0xc5, 0xbc,
0xa6, 0x3e, 0x53, 0x8b, 0xaa, 0x56, 0x78, 0xa6, 0x16, 0x0b, 0xda, 0xd6, 0x33, 0xb5, 0xb8, 0xa5,
0x6d, 0x1b, 0xff, 0x54, 0xa0, 0x98, 0xb2, 0xb9, 0x25, 0x7c, 0x4b, 0x09, 0xcf, 0x0b, 0x99, 0x4c,
0x45, 0x0e, 0x0c, 0xbd, 0x19, 0x45, 0x4d, 0xa8, 0x08, 0xe1, 0x7a, 0x8a, 0x02, 0xc7, 0xda, 0x22,
0x4d, 0xc5, 0x79, 0x9e, 0x32, 0x44, 0x3e, 0xaa, 0xf2, 0x3c, 0x4f, 0x28, 0x69, 0x4b, 0x8a, 0x17,
0xa3, 0x11, 0x8d, 0xe3, 0x64, 0x95, 0x42, 0x42, 0x91, 0x98, 0x58, 0xe8, 0x31, 0xec, 0xa4, 0x94,
0x74, 0xad, 0xad, 0x24, 0x5f, 0x25, 0x2c, 0x97, 0x6b, 0x81, 0x96, 0xe5, 0xcd, 0x56, 0x1d, 0xa4,
0xb6, 0x22, 0xf2, 0x45, 0x13, 0xe7, 0x8d, 0xdf, 0xc3, 0x43, 0x11, 0xca, 0x7e, 0x14, 0x5e, 0xba,
0x97, 0x9e, 0xef, 0xb1, 0x9b, 0x34, 0xc9, 0xb9, 0xe3, 0x51, 0x38, 0x23, 0x7c, 0x6f, 0xd3, 0x10,
0x70, 0xc0, 0x0e, 0xc7, 0x94, 0x87, 0x80, 0x85, 0x89, 0x48, 0x86, 0x80, 0x85, 0x42, 0x90, 0xed,
0xbc, 0xf9, 0xb5, 0xce, 0x6b, 0x5c, 0x83, 0x7e, 0x77, 0x2d, 0x99, 0x33, 0x4d, 0x28, 0xcf, 0x57,
0xb0, 0x58, 0x4e, 0xc1, 0x59, 0x28, 0x1b, 0xdb, 0xdc, 0xfb, 0x63, 0x6b, 0xfc, 0x55, 0x81, 0xdd,
0xe3, 0x85, 0xe7, 0x8f, 0xd7, 0x0a, 0x37, 0x6b, 0x9d, 0xb2, 0x7e, 0x2f, 0xd8, 0xd4, 0xf4, 0x73,
0x1b, 0x9b, 0xfe, 0x97, 0x1b, 0x1a, 0x6b, 0x5e, 0x34, 0xd6, 0xdc, 0x86, 0xb6, 0xfa, 0x09, 0x94,
0x57, 0x5d, 0x32, 0xd6, 0xd5, 0x66, 0xbe, 0x55, 0xc1, 0x30, 0x4d, 0x5b, 0x64, 0x6c, 0x7c, 0x03,
0x28, 0x6b, 0xa8, 0xdc, 0x90, 0xe5, 0xf9, 0xa1, 0xdc, 0x7f, 0x7e, 0x7c, 0x04, 0x8d, 0xc1, 0xe2,
0x32, 0x1e, 0x45, 0xde, 0x25, 0x3d, 0x65, 0xfe, 0xc8, 0x7c, 0x43, 0x03, 0x16, 0xa7, 0x55, 0xfa,
0x6f, 0x15, 0x4a, 0x4b, 0x94, 0x1f, 0xcf, 0x5e, 0x30, 0x0a, 0x67, 0xa9, 0xd1, 0x01, 0xf5, 0xb9,
0xdd, 0x49, 0x53, 0xd8, 0x4d, 0x45, 0x9d, 0x44, 0x62, 0x8d, 0x39, 0x7f, 0xcd, 0x49, 0xc9, 0xcf,
0x25, 0xfc, 0xac, 0x8f, 0x09, 0xbf, 0x05, 0xda, 0x52, 0xff, 0x94, 0xf9, 0xa3, 0xe5, 0xa6, 0xe0,
0x5a, 0x8a, 0x73, 0x63, 0x12, 0xe6, 0x52, 0x73, 0xca, 0x54, 0x13, 0x66, 0x8a, 0x4b, 0xe6, 0xa7,
0x50, 0xe1, 0xf5, 0x10, 0x33, 0x77, 0x36, 0x27, 0x41, 0x2c, 0xea, 0x42, 0xc5, 0xe5, 0x25, 0x66,
0xc7, 0xe8, 0x5b, 0x00, 0xca, 0xfd, 0x23, 0xec, 0x66, 0x4e, 0x45, 0x49, 0xd4, 0x8e, 0x3e, 0xce,
0x24, 0xc6, 0x72, 0x03, 0x0e, 0xc4, 0xdf, 0xe1, 0xcd, 0x9c, 0xe2, 0x12, 0x4d, 0x3f, 0xd1, 0x77,
0x50, 0x9d, 0x84, 0xd1, 0x5b, 0x37, 0x1a, 0x13, 0x01, 0xca, 0x63, 0xe3, 0x61, 0x46, 0xc3, 0x49,
0x22, 0x17, 0xd3, 0x4f, 0x3f, 0xc0, 0x95, 0x49, 0x66, 0x8c, 0x9e, 0x03, 0x4a, 0xe7, 0x8b, 0x2a,
0x4f, 0x94, 0x14, 0x85, 0x92, 0xfd, 0xbb, 0x4a, 0xf8, 0x21, 0x9d, 0x2a, 0xd2, 0x26, 0xb7, 0x30,
0xf4, 0x2b, 0xa8, 0xc4, 0x94, 0x31, 0x9f, 0x4a, 0x35, 0x25, 0xa1, 0x66, 0x6f, 0xed, 0x4e, 0xc3,
0xc5, 0xa9, 0x86, 0x72, 0xbc, 0x1a, 0xa2, 0x63, 0xd8, 0xf1, 0xbd, 0xe0, 0x3a, 0x6b, 0x06, 0x88,
0xf9, 0x7a, 0x66, 0x7e, 0xcf, 0x0b, 0xae, 0xb3, 0x36, 0x54, 0xfd, 0x2c, 0x60, 0xfc, 0x1a, 0x4a,
0xcb, 0x5d, 0x42, 0x65, 0xd8, 0x3e, 0xb7, 0x9f, 0xdb, 0xce, 0x0b, 0x5b, 0xfb, 0x00, 0x15, 0x41,
0x1d, 0x98, 0x76, 0x57, 0x53, 0x38, 0x8c, 0xcd, 0x8e, 0x69, 0x5d, 0x98, 0x5a, 0x8e, 0x0f, 0x4e,
0x1c, 0xfc, 0xa2, 0x8d, 0xbb, 0x5a, 0xfe, 0x78, 0x1b, 0x0a, 0x62, 0x5d, 0xe3, 0xef, 0x0a, 0x14,
0x45, 0x04, 0x83, 0x49, 0x88, 0x7e, 0x02, 0xcb, 0xe4, 0x12, 0x87, 0x1b, 0x6f, 0xb8, 0x22, 0xeb,
0xaa, 0x78, 0x99, 0x30, 0x43, 0x89, 0x73, 0xf2, 0x32, 0x35, 0x96, 0xe4, 0x5c, 0x42, 0x4e, 0x05,
0x4b, 0xf2, 0x93, 0x8c, 0xe6, 0xb5, 0x23, 0x47, 0xc5, 0x3b, 0xa9, 0x20, 0x3d, 0x61, 0xb3, 0x77,
0xdb, 0xb5, 0x93, 0x38, 0x73, 0xb7, 0x95, 0x5c, 0xe3, 0x17, 0x50, 0xc9, 0xc6, 0x1c, 0x7d, 0x01,
0xaa, 0x17, 0x4c, 0x42, 0x59, 0x88, 0xf5, 0x5b, 0xc9, 0xc5, 0x9d, 0xc4, 0x82, 0x60, 0x20, 0xd0,
0x6e, 0xc7, 0xd9, 0xa8, 0x42, 0x39, 0x13, 0x34, 0xe3, 0x1f, 0x0a, 0x54, 0xd7, 0x82, 0xf0, 0x5f,
0x6b, 0x47, 0xdf, 0x42, 0xe5, 0xad, 0x17, 0x51, 0x92, 0x6d, 0xff, 0xb5, 0xa3, 0xc6, 0x7a, 0xfb,
0x4f, 0xff, 0x77, 0xc2, 0x31, 0xc5, 0x65, 0xce, 0x97, 0x00, 0xfa, 0x0d, 0xd4, 0xe4, 0x4c, 0x32,
0xa6, 0xcc, 0xf5, 0x7c, 0xb1, 0x55, 0xb5, 0xb5, 0xf4, 0x90, 0xdc, 0xae, 0x90, 0xe3, 0xea, 0x24,
0x3b, 0x44, 0x9f, 0xaf, 0x14, 0xc4, 0x2c, 0xf2, 0x82, 0x2b, 0xb1, 0x7f, 0xa5, 0x25, 0x6d, 0x20,
0x40, 0xde, 0xc8, 0xab, 0xf2, 0xf2, 0x38, 0x60, 0x2e, 0x5b, 0xc4, 0xe8, 0x2b, 0x28, 0xc4, 0xcc,
0x95, 0x27, 0x59, 0x6d, 0xad, 0xb6, 0x32, 0x44, 0x8a, 0x13, 0xd6, 0xda, 0xed, 0x27, 0x77, 0xe7,
0xf6, 0x53, 0xe0, 0x27, 0x46, 0x72, 0x8a, 0x96, 0x8f, 0x90, 0x74, 0xfe, 0x74, 0xd8, 0xeb, 0xb4,
0x19, 0xa3, 0xb3, 0x39, 0xc3, 0x09, 0x21, 0xe9, 0x6e, 0x4f, 0xfe, 0xa8, 0x42, 0x75, 0xcd, 0xa9,
0xf5, 0xac, 0xae, 0x42, 0xc9, 0x76, 0x48, 0xd7, 0x1c, 0xb6, 0xad, 0x9e, 0xa6, 0x20, 0x0d, 0x2a,
0x8e, 0x6d, 0x39, 0x36, 0xe9, 0x9a, 0x1d, 0xa7, 0xcb, 0xf3, 0xfb, 0x43, 0xd8, 0xed, 0x59, 0xf6,
0x73, 0x62, 0x3b, 0x43, 0x62, 0xf6, 0xac, 0xef, 0xad, 0xe3, 0x9e, 0xa9, 0xe5, 0xd1, 0x03, 0xd0,
0x1c, 0x9b, 0x74, 0x4e, 0xdb, 0x96, 0x4d, 0x86, 0xd6, 0x99, 0xe9, 0x9c, 0x0f, 0x35, 0x95, 0xa3,
0xdc, 0x10, 0x62, 0xbe, 0xec, 0x98, 0x66, 0x77, 0x40, 0xce, 0xda, 0x2f, 0xb5, 0x02, 0xd2, 0xe1,
0x81, 0x65, 0x0f, 0xce, 0x4f, 0x4e, 0xac, 0x8e, 0x65, 0xda, 0x43, 0x72, 0xdc, 0xee, 0xb5, 0xed,
0x8e, 0xa9, 0x6d, 0xa1, 0x3d, 0x40, 0x96, 0xdd, 0x71, 0xce, 0xfa, 0x3d, 0x73, 0x68, 0x92, 0xb4,
0x8e, 0xb6, 0x51, 0x1d, 0x76, 0x84, 0x9e, 0x76, 0xb7, 0x4b, 0x4e, 0xda, 0x56, 0xcf, 0xec, 0x6a,
0x45, 0x6e, 0x89, 0x64, 0x0c, 0x48, 0xd7, 0x1a, 0xb4, 0x8f, 0x39, 0x5c, 0xe2, 0x6b, 0x5a, 0xf6,
0x85, 0x63, 0x75, 0x4c, 0xd2, 0xe1, 0x6a, 0x39, 0x0a, 0x9c, 0x9c, 0xa2, 0xe7, 0x76, 0xd7, 0xc4,
0xfd, 0xb6, 0xd5, 0xd5, 0xca, 0x68, 0x1f, 0x1e, 0xa6, 0xb0, 0xf9, 0xb2, 0x6f, 0xe1, 0x57, 0x64,
0xe8, 0x38, 0x64, 0xe0, 0x38, 0xb6, 0x56, 0xc9, 0x6a, 0xe2, 0xde, 0x3a, 0x7d, 0xd3, 0xd6, 0xaa,
0xe8, 0x21, 0xd4, 0xcf, 0xfa, 0x7d, 0x92, 0x4a, 0x52, 0x67, 0x6b, 0x9c, 0xde, 0xee, 0x76, 0xb1,
0x39, 0x18, 0x90, 0x33, 0x6b, 0x70, 0xd6, 0x1e, 0x76, 0x4e, 0xb5, 0x1d, 0xee, 0xd2, 0xc0, 0x1c,
0x92, 0xa1, 0x33, 0x6c, 0xf7, 0x56, 0xb8, 0xc6, 0x0d, 0x5a, 0xe1, 0x7c, 0xd1, 0x9e, 0xf3, 0x42,
0xdb, 0xe5, 0x1b, 0xce, 0x61, 0xe7, 0x42, 0x9a, 0x88, 0xb8, 0xef, 0x32, 0x3c, 0xe9, 0x9a, 0x5a,
0x9d, 0x83, 0x96, 0x7d, 0xd1, 0xee, 0x59, 0x5d, 0xf2, 0xdc, 0x7c, 0x25, 0xce, 0xa1, 0x07, 0x1c,
0x4c, 0x2c, 0x23, 0x7d, 0xec, 0x7c, 0xcf, 0x0d, 0xd1, 0x3e, 0x44, 0x08, 0x6a, 0x1d, 0x0b, 0x77,
0xce, 0x7b, 0x6d, 0x4c, 0xb0, 0x73, 0x3e, 0x34, 0xb5, 0xbd, 0x27, 0x7f, 0x53, 0xa0, 0x92, 0xcd,
0x33, 0x1e, 0x75, 0xcb, 0x26, 0x27, 0x3d, 0xeb, 0xfb, 0xd3, 0x61, 0x92, 0x04, 0x83, 0xf3, 0x0e,
0x0f, 0x99, 0xc9, 0xcf, 0x37, 0x04, 0xb5, 0x64, 0xd3, 0x97, 0xce, 0xe6, 0xf8, 0x5a, 0x12, 0xb3,
0x1d, 0xa9, 0x37, 0xcf, 0x8d, 0x97, 0xa0, 0x89, 0xb1, 0x83, 0x35, 0x15, 0x7d, 0x06, 0x4d, 0x89,
0xf0, 0xb8, 0x62, 0x6c, 0x76, 0x86, 0xa4, 0xdf, 0x7e, 0x75, 0xc6, 0xc3, 0x9e, 0x24, 0xd9, 0x40,
0x2b, 0xa0, 0x4f, 0x60, 0x7f, 0xc9, 0xda, 0x94, 0x17, 0x47, 0x7f, 0xd9, 0x86, 0x2d, 0xd1, 0xe6,
0x23, 0xf4, 0x5b, 0xa8, 0x66, 0x9e, 0xb1, 0x17, 0x47, 0xe8, 0xd1, 0x3b, 0x1f, 0xb8, 0x8d, 0xf4,
0x31, 0x20, 0xe1, 0xa7, 0x0a, 0x3a, 0x86, 0x5a, 0xf6, 0x3d, 0x77, 0x71, 0x84, 0xb2, 0xdd, 0x71,
0xc3, 0x53, 0x6f, 0x83, 0x8e, 0xe7, 0xa0, 0x99, 0x31, 0xf3, 0x66, 0xbc, 0x48, 0xe5, 0x8b, 0x0b,
0x35, 0x32, 0x5a, 0x6e, 0x3d, 0xe3, 0x1a, 0xfb, 0x1b, 0x65, 0xf2, 0x5e, 0xd3, 0xe3, 0x07, 0xe2,
0xf2, 0xcd, 0x73, 0xc7, 0xa1, 0xf5, 0x87, 0x56, 0xe3, 0xe3, 0xfb, 0xc4, 0x52, 0xdb, 0x18, 0xea,
0x1b, 0x9e, 0x31, 0xe8, 0xf3, 0xac, 0x05, 0xf7, 0x3e, 0x82, 0x1a, 0x8f, 0xdf, 0x47, 0x5b, 0xad,
0xb2, 0xe1, 0xbd, 0xb3, 0xb6, 0xca, 0xfd, 0xaf, 0xa5, 0xb5, 0x55, 0xde, 0xf5, 0x6c, 0x7a, 0x0d,
0xda, 0xed, 0xeb, 0x31, 0x32, 0x6e, 0xcf, 0xbd, 0x7b, 0x4f, 0x6f, 0xfc, 0xff, 0x3b, 0x39, 0x52,
0xb9, 0x05, 0xb0, 0xba, 0x64, 0xa2, 0x8f, 0x32, 0x53, 0xee, 0x5c, 0x92, 0x1b, 0x8f, 0xee, 0x91,
0x4a, 0x55, 0x43, 0xa8, 0x6f, 0xb8, 0x75, 0xae, 0xed, 0xc6, 0xfd, 0xb7, 0xd2, 0xc6, 0x83, 0x4d,
0x97, 0xb3, 0xa7, 0x0a, 0x3a, 0x4b, 0xf2, 0x22, 0xfd, 0x49, 0xe5, 0x3d, 0x89, 0xae, 0x6f, 0x6e,
0x22, 0x8b, 0xd8, 0xc8, 0xff, 0x29, 0xa7, 0x3c, 0x55, 0x90, 0x03, 0x95, 0x6c, 0x72, 0xbf, 0x37,
0xeb, 0xdf, 0xa7, 0xf0, 0xf8, 0xeb, 0xdf, 0x1d, 0x5e, 0x79, 0x6c, 0xba, 0xb8, 0x3c, 0x18, 0x85,
0xb3, 0x43, 0xf1, 0x4b, 0x46, 0xe0, 0x05, 0x57, 0x01, 0x65, 0x6f, 0xc3, 0xe8, 0xfa, 0xd0, 0x0f,
0xc6, 0x87, 0xa2, 0x6e, 0x0e, 0x97, 0x7a, 0x2e, 0xb7, 0xc4, 0x0f, 0x99, 0x3f, 0xfd, 0x4f, 0x00,
0x00, 0x00, 0xff, 0xff, 0x61, 0x45, 0xd3, 0x59, 0xf8, 0x14, 0x00, 0x00,
// 2283 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x58, 0x5d, 0x73, 0xdb, 0xc6,
0xd5, 0x0e, 0x48, 0x50, 0x22, 0x0f, 0x3f, 0x04, 0x2d, 0x1d, 0x19, 0x2f, 0x15, 0x27, 0x0c, 0xde,
0xc4, 0xe1, 0xb8, 0x89, 0xe4, 0xa8, 0x9d, 0x36, 0xd3, 0x36, 0x69, 0x29, 0x12, 0x8a, 0x60, 0x53,
0x00, 0xb3, 0xa4, 0x64, 0xbb, 0xbe, 0xd8, 0x81, 0xc8, 0xa5, 0x88, 0x0a, 0x04, 0x58, 0x60, 0x69,
0x47, 0x97, 0xbd, 0xeb, 0xf4, 0x8f, 0xf4, 0xae, 0xbf, 0xa0, 0x3f, 0xa5, 0x33, 0xbd, 0xed, 0x7d,
0x67, 0x7a, 0xdd, 0xd9, 0xc5, 0x82, 0x02, 0x29, 0xca, 0x6e, 0x6f, 0x6c, 0xe2, 0x39, 0xcf, 0x9e,
0x3d, 0x67, 0xcf, 0xd7, 0xae, 0x60, 0x2f, 0x0a, 0x17, 0x8c, 0x46, 0xd1, 0x7c, 0x74, 0x98, 0xfc,
0x3a, 0x98, 0x47, 0x21, 0x0b, 0x51, 0x69, 0x89, 0x37, 0x4a, 0xd1, 0x7c, 0x94, 0xa0, 0xc6, 0xbf,
0xb6, 0x00, 0x0d, 0x68, 0x30, 0xee, 0xbb, 0x37, 0x33, 0x1a, 0x30, 0x4c, 0xff, 0xb0, 0xa0, 0x31,
0x43, 0x08, 0xd4, 0x31, 0x8d, 0x99, 0xae, 0x34, 0x95, 0x56, 0x05, 0x8b, 0xdf, 0x48, 0x83, 0xbc,
0x3b, 0x63, 0x7a, 0xae, 0xa9, 0xb4, 0xf2, 0x98, 0xff, 0x44, 0xff, 0x07, 0x45, 0x77, 0xc6, 0xc8,
0x2c, 0x76, 0x99, 0x5e, 0x11, 0xf0, 0xb6, 0x3b, 0x63, 0x67, 0xb1, 0xcb, 0xd0, 0xa7, 0x50, 0x99,
0x27, 0x2a, 0xc9, 0xd4, 0x8d, 0xa7, 0x7a, 0x5e, 0x28, 0x2a, 0x4b, 0xec, 0xd4, 0x8d, 0xa7, 0xa8,
0x05, 0xda, 0xc4, 0x0b, 0x5c, 0x9f, 0x8c, 0x7c, 0xf6, 0x86, 0x8c, 0xa9, 0xcf, 0x5c, 0x5d, 0x6d,
0x2a, 0xad, 0x02, 0xae, 0x09, 0xbc, 0xe3, 0xb3, 0x37, 0x5d, 0x8e, 0xa2, 0x2f, 0x60, 0x27, 0x55,
0x16, 0x25, 0x06, 0xea, 0x85, 0xa6, 0xd2, 0x2a, 0xe1, 0xda, 0x7c, 0xd5, 0xec, 0x2f, 0x60, 0x87,
0x79, 0x33, 0x1a, 0x2e, 0x18, 0x89, 0xe9, 0x28, 0x0c, 0xc6, 0xb1, 0xbe, 0x95, 0x68, 0x94, 0xf0,
0x20, 0x41, 0x91, 0x01, 0xd5, 0x09, 0xa5, 0xc4, 0xf7, 0x66, 0x1e, 0x23, 0xdc, 0xfc, 0x6d, 0x61,
0x7e, 0x79, 0x42, 0x69, 0x8f, 0x63, 0x03, 0x97, 0xa1, 0xcf, 0xa0, 0x76, 0xcb, 0x11, 0x3e, 0x56,
0x05, 0xa9, 0x92, 0x92, 0x84, 0xa3, 0x07, 0xa0, 0x85, 0x0b, 0x76, 0x15, 0x7a, 0xc1, 0x15, 0x19,
0x4d, 0xdd, 0x80, 0x78, 0x63, 0xbd, 0xd8, 0x54, 0x5a, 0xea, 0xb1, 0xaa, 0x2b, 0x4f, 0x15, 0x5c,
0x4b, 0xa5, 0x9d, 0xa9, 0x1b, 0x58, 0x63, 0xf4, 0x04, 0x76, 0xd7, 0xf9, 0xb1, 0x5e, 0x6f, 0xe6,
0x5b, 0x2a, 0xde, 0x59, 0xa5, 0xc6, 0xe8, 0x31, 0xec, 0xf8, 0x6e, 0xcc, 0xc8, 0x34, 0x9c, 0x93,
0xf9, 0xe2, 0xf2, 0x9a, 0xde, 0xe8, 0x35, 0x71, 0x8e, 0x55, 0x0e, 0x9f, 0x86, 0xf3, 0xbe, 0x00,
0xd1, 0x23, 0x00, 0x71, 0x86, 0xc2, 0x54, 0xbd, 0x24, 0x3c, 0x2e, 0x71, 0x44, 0x98, 0x89, 0xbe,
0x86, 0xb2, 0x88, 0x3d, 0x99, 0x7a, 0x01, 0x8b, 0x75, 0x68, 0xe6, 0x5b, 0xe5, 0x23, 0xed, 0xc0,
0x0f, 0x78, 0x1a, 0x60, 0x2e, 0x39, 0xf5, 0x02, 0x86, 0x21, 0x4a, 0x7f, 0xc6, 0x68, 0x0c, 0x75,
0x1e, 0x73, 0x32, 0x5a, 0xc4, 0x2c, 0x9c, 0x91, 0x88, 0x8e, 0xc2, 0x68, 0x1c, 0xeb, 0x65, 0xb1,
0xf4, 0x67, 0x07, 0xcb, 0x54, 0x3a, 0xb8, 0x9b, 0x3b, 0x07, 0x5d, 0x1a, 0xb3, 0x8e, 0x58, 0x87,
0x93, 0x65, 0x66, 0xc0, 0xa2, 0x1b, 0xbc, 0x3b, 0x5e, 0xc7, 0xd1, 0x97, 0x80, 0x5c, 0xdf, 0x0f,
0xdf, 0x92, 0x98, 0xfa, 0x13, 0x22, 0x63, 0xa9, 0xef, 0x34, 0x95, 0x56, 0x11, 0x6b, 0x42, 0x32,
0xa0, 0xfe, 0x44, 0xaa, 0x47, 0x3f, 0x87, 0xaa, 0xb0, 0x69, 0x42, 0x5d, 0xb6, 0x88, 0x68, 0xac,
0x6b, 0xcd, 0x7c, 0xab, 0x76, 0xb4, 0x2b, 0x1d, 0x39, 0x49, 0xe0, 0x63, 0x8f, 0xe1, 0x0a, 0xe7,
0xc9, 0xef, 0x18, 0xed, 0x43, 0x69, 0xe6, 0xfe, 0x48, 0xe6, 0x6e, 0xc4, 0x62, 0x7d, 0xb7, 0xa9,
0xb4, 0xaa, 0xb8, 0x38, 0x73, 0x7f, 0xec, 0xf3, 0x6f, 0x74, 0x00, 0xf5, 0x20, 0x24, 0x5e, 0x30,
0xf1, 0xbd, 0xab, 0x29, 0x23, 0x8b, 0xf9, 0xd8, 0x65, 0x34, 0xd6, 0x91, 0xb0, 0x61, 0x37, 0x08,
0x2d, 0x29, 0x39, 0x4f, 0x04, 0x8d, 0x2e, 0xec, 0x6d, 0xf6, 0x8f, 0x97, 0x07, 0x0f, 0x10, 0xaf,
0x18, 0x15, 0xf3, 0x9f, 0xe8, 0x01, 0x14, 0xde, 0xb8, 0xfe, 0x82, 0x8a, 0x92, 0xa9, 0xe0, 0xe4,
0xe3, 0x97, 0xb9, 0x6f, 0x14, 0x63, 0x0a, 0xf5, 0x61, 0xe4, 0x8e, 0xae, 0xd7, 0xaa, 0x6e, 0xbd,
0x68, 0x94, 0xbb, 0x45, 0x73, 0x8f, 0xbd, 0xb9, 0x7b, 0xec, 0x35, 0xbe, 0x83, 0x1d, 0x11, 0xe1,
0x13, 0x4a, 0xdf, 0x55, 0xdb, 0x0f, 0x81, 0x57, 0xae, 0xa8, 0x84, 0xa4, 0xbe, 0xb7, 0xdc, 0x19,
0x2f, 0x02, 0x63, 0x0c, 0xda, 0xed, 0xfa, 0x78, 0x1e, 0x06, 0x31, 0xe5, 0x85, 0xcb, 0x13, 0x80,
0x67, 0x30, 0x2f, 0x10, 0x51, 0x1a, 0x8a, 0x58, 0x55, 0x93, 0xf8, 0x09, 0xa5, 0xa2, 0x38, 0x1e,
0x27, 0xf5, 0x48, 0xfc, 0x70, 0x74, 0xcd, 0x2b, 0xdc, 0xbd, 0x91, 0xea, 0xab, 0x1c, 0xee, 0x85,
0xa3, 0xeb, 0x2e, 0x07, 0x8d, 0xd7, 0x49, 0x13, 0x1a, 0x86, 0x62, 0xaf, 0xff, 0xe1, 0x38, 0x0c,
0x28, 0x88, 0x5c, 0x14, 0x6a, 0xcb, 0x47, 0x95, 0x6c, 0x52, 0xe3, 0x44, 0x64, 0xbc, 0x86, 0xfa,
0x8a, 0x72, 0xe9, 0x45, 0x03, 0x8a, 0xf3, 0x88, 0x7a, 0x33, 0xf7, 0x8a, 0x4a, 0xcd, 0xcb, 0x6f,
0xd4, 0x82, 0xed, 0x89, 0xeb, 0xf9, 0x8b, 0x28, 0x55, 0x5c, 0x4b, 0x93, 0x2c, 0x41, 0x71, 0x2a,
0x36, 0x3e, 0x82, 0x06, 0xa6, 0x31, 0x65, 0x67, 0x5e, 0x1c, 0x7b, 0x61, 0xd0, 0x09, 0x03, 0x16,
0x85, 0xbe, 0xf4, 0xc0, 0x78, 0x04, 0xfb, 0x1b, 0xa5, 0x89, 0x09, 0x7c, 0xf1, 0x0f, 0x0b, 0x1a,
0xdd, 0x6c, 0x5e, 0xfc, 0x03, 0xec, 0x6f, 0x94, 0x4a, 0xfb, 0xbf, 0x84, 0xc2, 0xdc, 0xf5, 0x22,
0x1e, 0x7b, 0x5e, 0x94, 0x7b, 0x99, 0xa2, 0xec, 0xbb, 0x5e, 0x74, 0xea, 0xc5, 0x2c, 0x8c, 0x6e,
0x70, 0x42, 0x7a, 0xa6, 0x16, 0x15, 0x2d, 0x67, 0xfc, 0x59, 0x81, 0x72, 0x46, 0xc8, 0x4b, 0x23,
0x08, 0xc7, 0x94, 0x4c, 0xa2, 0x70, 0x96, 0x1e, 0x02, 0x07, 0x4e, 0xa2, 0x70, 0xc6, 0x73, 0x42,
0x08, 0x59, 0x28, 0x13, 0x78, 0x8b, 0x7f, 0x0e, 0x43, 0xf4, 0x15, 0x6c, 0x4f, 0x13, 0x05, 0xa2,
0x6d, 0x96, 0x8f, 0xea, 0x6b, 0x7b, 0x77, 0x5d, 0xe6, 0xe2, 0x94, 0xf3, 0x4c, 0x2d, 0xe6, 0x35,
0xf5, 0x99, 0x5a, 0x54, 0xb5, 0xc2, 0x33, 0xb5, 0x58, 0xd0, 0xb6, 0x9e, 0xa9, 0xc5, 0x2d, 0x6d,
0xdb, 0xf8, 0xa7, 0x02, 0xc5, 0x94, 0xcd, 0x2d, 0xe1, 0x47, 0x4a, 0x78, 0x5e, 0xc8, 0x64, 0x2a,
0x72, 0x60, 0xe8, 0xcd, 0x28, 0x6a, 0x42, 0x45, 0x08, 0x57, 0x53, 0x14, 0x38, 0xd6, 0x16, 0x69,
0x2a, 0xfa, 0x79, 0xca, 0x10, 0xf9, 0xa8, 0xca, 0x7e, 0x9e, 0x50, 0xd2, 0x91, 0x14, 0x2f, 0x46,
0x23, 0x1a, 0xc7, 0xc9, 0x2e, 0x85, 0x84, 0x22, 0x31, 0xb1, 0xd1, 0x63, 0xd8, 0x49, 0x29, 0xe9,
0x5e, 0x5b, 0x49, 0xbe, 0x4a, 0x58, 0x6e, 0xd7, 0x02, 0x2d, 0xcb, 0x9b, 0xdd, 0x4e, 0x90, 0xda,
0x2d, 0x91, 0x6f, 0x9a, 0x38, 0x6f, 0xfc, 0x1e, 0x1e, 0x8a, 0x50, 0xf6, 0xa3, 0xf0, 0xd2, 0xbd,
0xf4, 0x7c, 0x8f, 0xdd, 0xa4, 0x49, 0xce, 0x1d, 0x8f, 0xc2, 0x19, 0xe1, 0x67, 0x9b, 0x86, 0x80,
0x03, 0x76, 0x38, 0xa6, 0x3c, 0x04, 0x2c, 0x4c, 0x44, 0x32, 0x04, 0x2c, 0x14, 0x82, 0xec, 0xe4,
0xcd, 0xaf, 0x4c, 0x5e, 0xe3, 0x1a, 0xf4, 0xbb, 0x7b, 0xc9, 0x9c, 0x69, 0x42, 0x79, 0x7e, 0x0b,
0x8b, 0xed, 0x14, 0x9c, 0x85, 0xb2, 0xb1, 0xcd, 0xbd, 0x3f, 0xb6, 0xc6, 0x5f, 0x14, 0xd8, 0x3d,
0x5e, 0x78, 0xfe, 0x78, 0xa5, 0x70, 0xb3, 0xd6, 0x29, 0xab, 0xf7, 0x82, 0x4d, 0x43, 0x3f, 0xb7,
0x71, 0xe8, 0x7f, 0xb9, 0x61, 0xb0, 0xe6, 0xc5, 0x60, 0xcd, 0x6d, 0x18, 0xab, 0x9f, 0x40, 0xf9,
0x76, 0x4a, 0xc6, 0xba, 0xda, 0xcc, 0xb7, 0x2a, 0x18, 0xa6, 0xe9, 0x88, 0x8c, 0x8d, 0x6f, 0x00,
0x65, 0x0d, 0x95, 0x07, 0xb2, 0xec, 0x1f, 0xca, 0xfd, 0xfd, 0xe3, 0x23, 0x68, 0x0c, 0x16, 0x97,
0xf1, 0x28, 0xf2, 0x2e, 0xe9, 0x29, 0xf3, 0x47, 0xe6, 0x1b, 0x1a, 0xb0, 0x38, 0xad, 0xd2, 0x7f,
0xab, 0x50, 0x5a, 0xa2, 0xbc, 0x3d, 0x7b, 0xc1, 0x28, 0x9c, 0xa5, 0x46, 0x07, 0xd4, 0xe7, 0x76,
0x27, 0x43, 0x61, 0x37, 0x15, 0x75, 0x12, 0x89, 0x35, 0xe6, 0xfc, 0x15, 0x27, 0x25, 0x3f, 0x97,
0xf0, 0xb3, 0x3e, 0x26, 0xfc, 0x16, 0x68, 0x4b, 0xfd, 0x53, 0xe6, 0x8f, 0x96, 0x87, 0x82, 0x6b,
0x29, 0xce, 0x8d, 0x49, 0x98, 0x4b, 0xcd, 0x29, 0x53, 0x4d, 0x98, 0x29, 0x2e, 0x99, 0x9f, 0x42,
0x85, 0xd7, 0x43, 0xcc, 0xdc, 0xd9, 0x9c, 0x04, 0xb1, 0xa8, 0x0b, 0x15, 0x97, 0x97, 0x98, 0x1d,
0xa3, 0x6f, 0x01, 0x28, 0xf7, 0x8f, 0xb0, 0x9b, 0x39, 0x15, 0x25, 0x51, 0x3b, 0xfa, 0x38, 0x93,
0x18, 0xcb, 0x03, 0x38, 0x10, 0xff, 0x0e, 0x6f, 0xe6, 0x14, 0x97, 0x68, 0xfa, 0x13, 0x7d, 0x07,
0xd5, 0x49, 0x18, 0xbd, 0x75, 0xa3, 0x31, 0x11, 0xa0, 0x6c, 0x1b, 0x0f, 0x33, 0x1a, 0x4e, 0x12,
0xb9, 0x58, 0x7e, 0xfa, 0x01, 0xae, 0x4c, 0x32, 0xdf, 0xe8, 0x39, 0xa0, 0x74, 0xbd, 0xa8, 0xf2,
0x44, 0x49, 0x51, 0x28, 0xd9, 0xbf, 0xab, 0x84, 0x37, 0xe9, 0x54, 0x91, 0x36, 0x59, 0xc3, 0xd0,
0xaf, 0xa0, 0x12, 0x53, 0xc6, 0x7c, 0x2a, 0xd5, 0x94, 0x84, 0x9a, 0xbd, 0x95, 0x3b, 0x0d, 0x17,
0xa7, 0x1a, 0xca, 0xf1, 0xed, 0x27, 0x3a, 0x86, 0x1d, 0xdf, 0x0b, 0xae, 0xb3, 0x66, 0x80, 0x58,
0xaf, 0x67, 0xd6, 0xf7, 0xbc, 0xe0, 0x3a, 0x6b, 0x43, 0xd5, 0xcf, 0x02, 0xc6, 0xaf, 0xa1, 0xb4,
0x3c, 0x25, 0x54, 0x86, 0xed, 0x73, 0xfb, 0xb9, 0xed, 0xbc, 0xb0, 0xb5, 0x0f, 0x50, 0x11, 0xd4,
0x81, 0x69, 0x77, 0x35, 0x85, 0xc3, 0xd8, 0xec, 0x98, 0xd6, 0x85, 0xa9, 0xe5, 0xf8, 0xc7, 0x89,
0x83, 0x5f, 0xb4, 0x71, 0x57, 0xcb, 0x1f, 0x6f, 0x43, 0x41, 0xec, 0x6b, 0xfc, 0x4d, 0x81, 0xa2,
0x88, 0x60, 0x30, 0x09, 0xd1, 0x4f, 0x60, 0x99, 0x5c, 0xa2, 0xb9, 0xf1, 0x81, 0x2b, 0xb2, 0xae,
0x8a, 0x97, 0x09, 0x33, 0x94, 0x38, 0x27, 0x2f, 0x53, 0x63, 0x49, 0xce, 0x25, 0xe4, 0x54, 0xb0,
0x24, 0x3f, 0xc9, 0x68, 0x5e, 0x69, 0x39, 0x2a, 0xde, 0x49, 0x05, 0x69, 0x87, 0xcd, 0xde, 0x6d,
0x57, 0x3a, 0x71, 0xe6, 0x6e, 0x2b, 0xb9, 0xc6, 0x2f, 0xa0, 0x92, 0x8d, 0x39, 0xfa, 0x02, 0x54,
0x2f, 0x98, 0x84, 0xb2, 0x10, 0xeb, 0x6b, 0xc9, 0xc5, 0x9d, 0xc4, 0x82, 0x60, 0x20, 0xd0, 0xd6,
0xe3, 0x6c, 0x54, 0xa1, 0x9c, 0x09, 0x9a, 0xf1, 0x0f, 0x05, 0xaa, 0x2b, 0x41, 0xf8, 0xaf, 0xb5,
0xa3, 0x6f, 0xa1, 0xf2, 0xd6, 0x8b, 0x28, 0xc9, 0x8e, 0xff, 0xda, 0x51, 0x63, 0x75, 0xfc, 0xa7,
0xff, 0x77, 0xc2, 0x31, 0xc5, 0x65, 0xce, 0x97, 0x00, 0xfa, 0x0d, 0xd4, 0xe4, 0x4a, 0x32, 0xa6,
0xcc, 0xf5, 0x7c, 0x71, 0x54, 0xb5, 0x95, 0xf4, 0x90, 0xdc, 0xae, 0x90, 0xe3, 0xea, 0x24, 0xfb,
0x89, 0x3e, 0xbf, 0x55, 0x10, 0xb3, 0xc8, 0x0b, 0xae, 0xc4, 0xf9, 0x95, 0x96, 0xb4, 0x81, 0x00,
0xf9, 0x20, 0xaf, 0xca, 0xcb, 0xe3, 0x80, 0xb9, 0x6c, 0x11, 0xa3, 0xaf, 0xa0, 0x10, 0x33, 0x57,
0x76, 0xb2, 0xda, 0x4a, 0x6d, 0x65, 0x88, 0x14, 0x27, 0xac, 0x95, 0xdb, 0x4f, 0xee, 0xce, 0xed,
0xa7, 0xc0, 0x3b, 0x46, 0xd2, 0x45, 0xcb, 0x47, 0x48, 0x3a, 0x7f, 0x3a, 0xec, 0x75, 0xda, 0x8c,
0xd1, 0xd9, 0x9c, 0xe1, 0x84, 0x90, 0x4c, 0xb7, 0x27, 0x7f, 0x54, 0xa1, 0xba, 0xe2, 0xd4, 0x6a,
0x56, 0x57, 0xa1, 0x64, 0x3b, 0xa4, 0x6b, 0x0e, 0xdb, 0x56, 0x4f, 0x53, 0x90, 0x06, 0x15, 0xc7,
0xb6, 0x1c, 0x9b, 0x74, 0xcd, 0x8e, 0xd3, 0xe5, 0xf9, 0xfd, 0x21, 0xec, 0xf6, 0x2c, 0xfb, 0x39,
0xb1, 0x9d, 0x21, 0x31, 0x7b, 0xd6, 0xf7, 0xd6, 0x71, 0xcf, 0xd4, 0xf2, 0xe8, 0x01, 0x68, 0x8e,
0x4d, 0x3a, 0xa7, 0x6d, 0xcb, 0x26, 0x43, 0xeb, 0xcc, 0x74, 0xce, 0x87, 0x9a, 0xca, 0x51, 0x6e,
0x08, 0x31, 0x5f, 0x76, 0x4c, 0xb3, 0x3b, 0x20, 0x67, 0xed, 0x97, 0x5a, 0x01, 0xe9, 0xf0, 0xc0,
0xb2, 0x07, 0xe7, 0x27, 0x27, 0x56, 0xc7, 0x32, 0xed, 0x21, 0x39, 0x6e, 0xf7, 0xda, 0x76, 0xc7,
0xd4, 0xb6, 0xd0, 0x1e, 0x20, 0xcb, 0xee, 0x38, 0x67, 0xfd, 0x9e, 0x39, 0x34, 0x49, 0x5a, 0x47,
0xdb, 0xa8, 0x0e, 0x3b, 0x42, 0x4f, 0xbb, 0xdb, 0x25, 0x27, 0x6d, 0xab, 0x67, 0x76, 0xb5, 0x22,
0xb7, 0x44, 0x32, 0x06, 0xa4, 0x6b, 0x0d, 0xda, 0xc7, 0x1c, 0x2e, 0xf1, 0x3d, 0x2d, 0xfb, 0xc2,
0xb1, 0x3a, 0x26, 0xe9, 0x70, 0xb5, 0x1c, 0x05, 0x4e, 0x4e, 0xd1, 0x73, 0xbb, 0x6b, 0xe2, 0x7e,
0xdb, 0xea, 0x6a, 0x65, 0xb4, 0x0f, 0x0f, 0x53, 0xd8, 0x7c, 0xd9, 0xb7, 0xf0, 0x2b, 0x32, 0x74,
0x1c, 0x32, 0x70, 0x1c, 0x5b, 0xab, 0x64, 0x35, 0x71, 0x6f, 0x9d, 0xbe, 0x69, 0x6b, 0x55, 0xf4,
0x10, 0xea, 0x67, 0xfd, 0x3e, 0x49, 0x25, 0xa9, 0xb3, 0x35, 0x4e, 0x6f, 0x77, 0xbb, 0xd8, 0x1c,
0x0c, 0xc8, 0x99, 0x35, 0x38, 0x6b, 0x0f, 0x3b, 0xa7, 0xda, 0x0e, 0x77, 0x69, 0x60, 0x0e, 0xc9,
0xd0, 0x19, 0xb6, 0x7b, 0xb7, 0xb8, 0xc6, 0x0d, 0xba, 0xc5, 0xf9, 0xa6, 0x3d, 0xe7, 0x85, 0xb6,
0xcb, 0x0f, 0x9c, 0xc3, 0xce, 0x85, 0x34, 0x11, 0x71, 0xdf, 0x65, 0x78, 0xd2, 0x3d, 0xb5, 0x3a,
0x07, 0x2d, 0xfb, 0xa2, 0xdd, 0xb3, 0xba, 0xe4, 0xb9, 0xf9, 0x4a, 0xf4, 0xa1, 0x07, 0x1c, 0x4c,
0x2c, 0x23, 0x7d, 0xec, 0x7c, 0xcf, 0x0d, 0xd1, 0x3e, 0x44, 0x08, 0x6a, 0x1d, 0x0b, 0x77, 0xce,
0x7b, 0x6d, 0x4c, 0xb0, 0x73, 0x3e, 0x34, 0xb5, 0xbd, 0x27, 0x7f, 0x55, 0xa0, 0x92, 0xcd, 0x33,
0x1e, 0x75, 0xcb, 0x26, 0x27, 0x3d, 0xeb, 0xfb, 0xd3, 0x61, 0x92, 0x04, 0x83, 0xf3, 0x0e, 0x0f,
0x99, 0xc9, 0xfb, 0x1b, 0x82, 0x5a, 0x72, 0xe8, 0x4b, 0x67, 0x73, 0x7c, 0x2f, 0x89, 0xd9, 0x8e,
0xd4, 0x9b, 0xe7, 0xc6, 0x4b, 0xd0, 0xc4, 0xd8, 0xc1, 0x9a, 0x8a, 0x3e, 0x83, 0xa6, 0x44, 0x78,
0x5c, 0x31, 0x36, 0x3b, 0x43, 0xd2, 0x6f, 0xbf, 0x3a, 0xe3, 0x61, 0x4f, 0x92, 0x6c, 0xa0, 0x15,
0xd0, 0x27, 0xb0, 0xbf, 0x64, 0x6d, 0xca, 0x8b, 0xa3, 0xbf, 0x6f, 0xc3, 0x96, 0x18, 0xf3, 0x11,
0xfa, 0x2d, 0x54, 0x33, 0xcf, 0xd8, 0x8b, 0x23, 0xf4, 0xe8, 0x9d, 0x0f, 0xdc, 0x46, 0xfa, 0x18,
0x90, 0xf0, 0x53, 0x05, 0x1d, 0x43, 0x2d, 0xfb, 0x9e, 0xbb, 0x38, 0x42, 0xd9, 0xe9, 0xb8, 0xe1,
0xa9, 0xb7, 0x41, 0xc7, 0x73, 0xd0, 0xcc, 0x98, 0x79, 0x33, 0x5e, 0xa4, 0xf2, 0xc5, 0x85, 0x1a,
0x19, 0x2d, 0x6b, 0xcf, 0xb8, 0xc6, 0xfe, 0x46, 0x99, 0xbc, 0xd7, 0xfc, 0xc0, 0x1b, 0xe2, 0xf2,
0xcd, 0x73, 0xc7, 0xa1, 0xd5, 0x87, 0x56, 0xe3, 0xe3, 0xfb, 0xc4, 0xf2, 0x9d, 0x92, 0xff, 0x53,
0x8e, 0xfb, 0x58, 0xcd, 0xc8, 0x36, 0x9c, 0xd2, 0x9a, 0xd2, 0x0d, 0x6d, 0x03, 0x8d, 0xa1, 0xbe,
0xe1, 0x3d, 0x84, 0x3e, 0xcf, 0xba, 0x72, 0xef, 0x6b, 0xaa, 0xf1, 0xf8, 0x7d, 0x34, 0xe9, 0xfc,
0x18, 0xea, 0x1b, 0x1e, 0x4e, 0x2b, 0xbb, 0xdc, 0xff, 0xec, 0x5a, 0xd9, 0xe5, 0x5d, 0xef, 0xaf,
0xd7, 0xa0, 0xad, 0xdf, 0xb3, 0x91, 0xb1, 0xbe, 0xf6, 0xee, 0x85, 0xbf, 0xf1, 0xff, 0xef, 0xe4,
0x48, 0xe5, 0x16, 0xc0, 0xed, 0x6d, 0x15, 0x7d, 0x94, 0x59, 0x72, 0xe7, 0xb6, 0xdd, 0x78, 0x74,
0x8f, 0x54, 0xaa, 0x1a, 0x42, 0x7d, 0xc3, 0xf5, 0x75, 0xe5, 0x34, 0xee, 0xbf, 0xde, 0x36, 0x1e,
0x6c, 0xba, 0xe5, 0x3d, 0x55, 0xd0, 0x59, 0x92, 0x60, 0xe9, 0xdf, 0x66, 0xde, 0x53, 0x31, 0xfa,
0xe6, 0x69, 0xb4, 0x88, 0x45, 0x6a, 0x3d, 0x55, 0x90, 0x03, 0x95, 0x6c, 0x95, 0xbc, 0xb7, 0x7c,
0xde, 0xa7, 0xf0, 0xf8, 0xeb, 0xdf, 0x1d, 0x5e, 0x79, 0x6c, 0xba, 0xb8, 0x3c, 0x18, 0x85, 0xb3,
0x43, 0xf1, 0x27, 0x91, 0xc0, 0x0b, 0xae, 0x02, 0xca, 0xde, 0x86, 0xd1, 0xf5, 0xa1, 0x1f, 0x8c,
0x0f, 0x45, 0x7a, 0x1e, 0x2e, 0xf5, 0x5c, 0x6e, 0x89, 0xbf, 0x88, 0xfe, 0xf4, 0x3f, 0x01, 0x00,
0x00, 0xff, 0xff, 0x77, 0xd4, 0x07, 0xd1, 0x41, 0x15, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@ -1930,10 +1931,17 @@ type RouterClient interface {
//may cost to send an HTLC to the target end destination.
EstimateRouteFee(ctx context.Context, in *RouteFeeRequest, opts ...grpc.CallOption) (*RouteFeeResponse, error)
//
//SendToRoute attempts to make a payment via the specified route. This method
//Deprecated, use SendToRouteV2. SendToRoute attempts to make a payment via
//the specified route. This method differs from SendPayment in that it
//allows users to specify a full route manually. This can be used for
//things like rebalancing, and atomic swaps. It differs from the newer
//SendToRouteV2 in that it doesn't return the full HTLC information.
SendToRoute(ctx context.Context, in *SendToRouteRequest, opts ...grpc.CallOption) (*SendToRouteResponse, error)
//
//SendToRouteV2 attempts to make a payment via the specified route. This method
//differs from SendPayment in that it allows users to specify a full route
//manually. This can be used for things like rebalancing, and atomic swaps.
SendToRoute(ctx context.Context, in *SendToRouteRequest, opts ...grpc.CallOption) (*SendToRouteResponse, error)
SendToRouteV2(ctx context.Context, in *SendToRouteRequest, opts ...grpc.CallOption) (*lnrpc.HTLCAttempt, error)
//
//ResetMissionControl clears all mission control state and starts with a clean
//slate.
@ -2047,6 +2055,7 @@ func (c *routerClient) EstimateRouteFee(ctx context.Context, in *RouteFeeRequest
return out, nil
}
// Deprecated: Do not use.
func (c *routerClient) SendToRoute(ctx context.Context, in *SendToRouteRequest, opts ...grpc.CallOption) (*SendToRouteResponse, error) {
out := new(SendToRouteResponse)
err := c.cc.Invoke(ctx, "/routerrpc.Router/SendToRoute", in, out, opts...)
@ -2056,6 +2065,15 @@ func (c *routerClient) SendToRoute(ctx context.Context, in *SendToRouteRequest,
return out, nil
}
func (c *routerClient) SendToRouteV2(ctx context.Context, in *SendToRouteRequest, opts ...grpc.CallOption) (*lnrpc.HTLCAttempt, error) {
out := new(lnrpc.HTLCAttempt)
err := c.cc.Invoke(ctx, "/routerrpc.Router/SendToRouteV2", in, out, opts...)
if err != nil {
return nil, err
}
return out, nil
}
func (c *routerClient) ResetMissionControl(ctx context.Context, in *ResetMissionControlRequest, opts ...grpc.CallOption) (*ResetMissionControlResponse, error) {
out := new(ResetMissionControlResponse)
err := c.cc.Invoke(ctx, "/routerrpc.Router/ResetMissionControl", in, out, opts...)
@ -2206,10 +2224,17 @@ type RouterServer interface {
//may cost to send an HTLC to the target end destination.
EstimateRouteFee(context.Context, *RouteFeeRequest) (*RouteFeeResponse, error)
//
//SendToRoute attempts to make a payment via the specified route. This method
//Deprecated, use SendToRouteV2. SendToRoute attempts to make a payment via
//the specified route. This method differs from SendPayment in that it
//allows users to specify a full route manually. This can be used for
//things like rebalancing, and atomic swaps. It differs from the newer
//SendToRouteV2 in that it doesn't return the full HTLC information.
SendToRoute(context.Context, *SendToRouteRequest) (*SendToRouteResponse, error)
//
//SendToRouteV2 attempts to make a payment via the specified route. This method
//differs from SendPayment in that it allows users to specify a full route
//manually. This can be used for things like rebalancing, and atomic swaps.
SendToRoute(context.Context, *SendToRouteRequest) (*SendToRouteResponse, error)
SendToRouteV2(context.Context, *SendToRouteRequest) (*lnrpc.HTLCAttempt, error)
//
//ResetMissionControl clears all mission control state and starts with a clean
//slate.
@ -2324,6 +2349,24 @@ func _Router_SendToRoute_Handler(srv interface{}, ctx context.Context, dec func(
return interceptor(ctx, in, info, handler)
}
func _Router_SendToRouteV2_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(SendToRouteRequest)
if err := dec(in); err != nil {
return nil, err
}
if interceptor == nil {
return srv.(RouterServer).SendToRouteV2(ctx, in)
}
info := &grpc.UnaryServerInfo{
Server: srv,
FullMethod: "/routerrpc.Router/SendToRouteV2",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(RouterServer).SendToRouteV2(ctx, req.(*SendToRouteRequest))
}
return interceptor(ctx, in, info, handler)
}
func _Router_ResetMissionControl_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(ResetMissionControlRequest)
if err := dec(in); err != nil {
@ -2471,6 +2514,10 @@ var _Router_serviceDesc = grpc.ServiceDesc{
MethodName: "SendToRoute",
Handler: _Router_SendToRoute_Handler,
},
{
MethodName: "SendToRouteV2",
Handler: _Router_SendToRouteV2_Handler,
},
{
MethodName: "ResetMissionControl",
Handler: _Router_ResetMissionControl_Handler,

@ -29,11 +29,22 @@ service Router {
rpc EstimateRouteFee (RouteFeeRequest) returns (RouteFeeResponse);
/*
SendToRoute attempts to make a payment via the specified route. This method
Deprecated, use SendToRouteV2. SendToRoute attempts to make a payment via
the specified route. This method differs from SendPayment in that it
allows users to specify a full route manually. This can be used for
things like rebalancing, and atomic swaps. It differs from the newer
SendToRouteV2 in that it doesn't return the full HTLC information.
*/
rpc SendToRoute (SendToRouteRequest) returns (SendToRouteResponse) {
option deprecated = true;
}
/*
SendToRouteV2 attempts to make a payment via the specified route. This method
differs from SendPayment in that it allows users to specify a full route
manually. This can be used for things like rebalancing, and atomic swaps.
*/
rpc SendToRoute (SendToRouteRequest) returns (SendToRouteResponse);
rpc SendToRouteV2 (SendToRouteRequest) returns (lnrpc.HTLCAttempt);
/*
ResetMissionControl clears all mission control state and starts with a clean
@ -71,7 +82,7 @@ service Router {
returns (stream HtlcEvent);
/*
Deprecated, use SendPaymentV2. SendPayment attempts to route a payment
Deprecated, use SendPaymentV2. SendPayment attempts to route a payment
described by the passed PaymentRequest to the final destination. The call
returns a stream of payment status updates.
*/
@ -567,3 +578,4 @@ message PaymentStatus {
*/
repeated lnrpc.HTLCAttempt htlcs = 4;
}

@ -214,6 +214,11 @@
"failure": {
"$ref": "#/definitions/lnrpcFailure",
"description": "Detailed htlc failure info."
},
"preimage": {
"type": "string",
"format": "byte",
"description": "The preimage that was used to settle the HTLC."
}
}
},

@ -872,6 +872,7 @@ func (r *RouterBackend) MarshalHTLCAttempt(
rpcAttempt.ResolveTimeNs = MarshalTimeNano(
htlc.Settle.SettleTime,
)
rpcAttempt.Preimage = htlc.Settle.Preimage[:]
case htlc.Failure != nil:
rpcAttempt.Status = lnrpc.HTLCAttempt_FAILED

@ -52,6 +52,10 @@ var (
Entity: "offchain",
Action: "write",
}},
"/routerrpc.Router/SendToRouteV2": {{
Entity: "offchain",
Action: "write",
}},
"/routerrpc.Router/SendToRoute": {{
Entity: "offchain",
Action: "write",
@ -299,10 +303,10 @@ func (s *Server) EstimateRouteFee(ctx context.Context,
}, nil
}
// SendToRoute sends a payment through a predefined route. The response of this
// SendToRouteV2 sends a payment through a predefined route. The response of this
// call contains structured error information.
func (s *Server) SendToRoute(ctx context.Context,
req *SendToRouteRequest) (*SendToRouteResponse, error) {
func (s *Server) SendToRouteV2(ctx context.Context,
req *SendToRouteRequest) (*lnrpc.HTLCAttempt, error) {
if req.Route == nil {
return nil, fmt.Errorf("unable to send, no routes provided")
@ -318,25 +322,24 @@ func (s *Server) SendToRoute(ctx context.Context,
return nil, err
}
preimage, err := s.cfg.Router.SendToRoute(hash, route)
// In the success case, return the preimage.
if err == nil {
return &SendToRouteResponse{
Preimage: preimage[:],
}, nil
// Pass route to the router. This call returns the full htlc attempt
// information as it is stored in the database. It is possible that both
// the attempt return value and err are non-nil. This can happen when
// the attempt was already initiated before the error happened. In that
// case, we give precedence to the attempt information as stored in the
// db.
attempt, err := s.cfg.Router.SendToRoute(hash, route)
if attempt != nil {
rpcAttempt, err := s.cfg.RouterBackend.MarshalHTLCAttempt(
*attempt,
)
if err != nil {
return nil, err
}
return rpcAttempt, nil
}
// In the failure case, marshall the failure message to the rpc format
// before returning it to the caller.
rpcErr, err := marshallError(err)
if err != nil {
return nil, err
}
return &SendToRouteResponse{
Failure: rpcErr,
}, nil
return nil, err
}
// ResetMissionControl clears all mission control state and starts with a clean

@ -1,6 +1,7 @@
package routerrpc
import (
"context"
"encoding/hex"
"errors"
"fmt"
@ -93,3 +94,27 @@ func (s *Server) SendPayment(request *SendPaymentRequest,
}
return s.SendPaymentV2(request, &legacyStream)
}
// SendToRoute sends a payment through a predefined route. The response of this
// call contains structured error information.
func (s *Server) SendToRoute(ctx context.Context,
req *SendToRouteRequest) (*SendToRouteResponse, error) {
resp, err := s.SendToRouteV2(ctx, req)
if err != nil {
return nil, err
}
if resp == nil {
return nil, nil
}
// Need to convert to legacy response message because proto identifiers
// don't line up.
legacyResp := &SendToRouteResponse{
Preimage: resp.Preimage,
Failure: resp.Failure,
}
return legacyResp, err
}

@ -9313,7 +9313,9 @@ type HTLCAttempt struct {
//This value will not be set if the HTLC is still IN_FLIGHT.
ResolveTimeNs int64 `protobuf:"varint,4,opt,name=resolve_time_ns,json=resolveTimeNs,proto3" json:"resolve_time_ns,omitempty"`
// Detailed htlc failure info.
Failure *Failure `protobuf:"bytes,5,opt,name=failure,proto3" json:"failure,omitempty"`
Failure *Failure `protobuf:"bytes,5,opt,name=failure,proto3" json:"failure,omitempty"`
// The preimage that was used to settle the HTLC.
Preimage []byte `protobuf:"bytes,6,opt,name=preimage,proto3" json:"preimage,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -9379,6 +9381,13 @@ func (m *HTLCAttempt) GetFailure() *Failure {
return nil
}
func (m *HTLCAttempt) GetPreimage() []byte {
if m != nil {
return m.Preimage
}
return nil
}
type ListPaymentsRequest struct {
//
//If true, then return payments that have not yet fully completed. This means
@ -11598,738 +11607,738 @@ func init() {
func init() { proto.RegisterFile("rpc.proto", fileDescriptor_77a6da22d6a3feb1) }
var fileDescriptor_77a6da22d6a3feb1 = []byte{
// 11691 bytes of a gzipped FileDescriptorProto
// 11696 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x7d, 0x5b, 0x6c, 0x23, 0x59,
0x76, 0x58, 0xf3, 0x25, 0x92, 0x87, 0x0f, 0x51, 0x57, 0x2f, 0xb6, 0x7a, 0x7a, 0xba, 0xa7, 0x66,
0x76, 0xa6, 0xa7, 0x67, 0x56, 0xdd, 0xd3, 0xbb, 0x3d, 0xb3, 0xbb, 0x13, 0xaf, 0x97, 0x92, 0xa8,
0x11, 0xb7, 0x25, 0x4a, 0x53, 0xa4, 0x66, 0xdc, 0xeb, 0x47, 0xb9, 0x44, 0x5e, 0x49, 0xe5, 0x26,
0xab, 0x38, 0x55, 0x45, 0xb5, 0xb4, 0x8b, 0xc9, 0x47, 0x90, 0x17, 0x8c, 0x24, 0x40, 0x90, 0x38,
0x40, 0x1c, 0x1b, 0x79, 0x18, 0x49, 0x90, 0x1f, 0xc3, 0xc0, 0x3a, 0x1f, 0x01, 0xf2, 0xef, 0x9f,
0x3c, 0x10, 0xd8, 0xf9, 0x48, 0x60, 0x18, 0x08, 0x92, 0x38, 0x7f, 0x81, 0x81, 0x7c, 0x07, 0x08,
0xee, 0x39, 0xf7, 0x56, 0xdd, 0x22, 0x4b, 0xdd, 0x3d, 0xbb, 0x9b, 0xfd, 0x91, 0x58, 0xe7, 0x9c,
0xfb, 0xa8, 0x7b, 0xcf, 0x3d, 0xf7, 0xbc, 0xee, 0x2d, 0x28, 0xfb, 0x93, 0xc1, 0xe6, 0xc4, 0xf7,
0x42, 0x8f, 0x15, 0x46, 0xae, 0x3f, 0x19, 0x6c, 0xbc, 0x76, 0xe6, 0x79, 0x67, 0x23, 0xfe, 0xc0,
0x9e, 0x38, 0x0f, 0x6c, 0xd7, 0xf5, 0x42, 0x3b, 0x74, 0x3c, 0x37, 0x20, 0x22, 0xe3, 0xcf, 0x33,
0x90, 0x3f, 0x0e, 0x2f, 0x3d, 0xf6, 0x18, 0xaa, 0xf6, 0x70, 0xe8, 0xf3, 0x20, 0xb0, 0xc2, 0xab,
0x09, 0x6f, 0x66, 0xee, 0x66, 0xee, 0xd5, 0x1f, 0xb1, 0x4d, 0xac, 0x64, 0xb3, 0x45, 0xa8, 0xfe,
0xd5, 0x84, 0x9b, 0x15, 0x3b, 0x7e, 0x60, 0x4d, 0x28, 0xca, 0xc7, 0x66, 0xf6, 0x6e, 0xe6, 0x5e,
0xd9, 0x54, 0x8f, 0xec, 0x36, 0x80, 0x3d, 0xf6, 0xa6, 0x6e, 0x68, 0x05, 0x76, 0xd8, 0xcc, 0xdd,
0xcd, 0xdc, 0xcb, 0x99, 0x65, 0x82, 0xf4, 0xec, 0x90, 0xdd, 0x82, 0xf2, 0xe4, 0x99, 0x15, 0x0c,
0x7c, 0x67, 0x12, 0x36, 0xf3, 0x58, 0xb4, 0x34, 0x79, 0xd6, 0xc3, 0x67, 0xf6, 0x1e, 0x94, 0xbc,
0x69, 0x38, 0xf1, 0x1c, 0x37, 0x6c, 0x16, 0xee, 0x66, 0xee, 0x55, 0x1e, 0x2d, 0xca, 0x8e, 0x1c,
0x4e, 0xc3, 0x23, 0x01, 0x36, 0x23, 0x02, 0xf6, 0x16, 0xd4, 0x06, 0x9e, 0x7b, 0xea, 0xf8, 0x63,
0x7a, 0xb3, 0xe6, 0x02, 0xb6, 0x95, 0x04, 0x1a, 0x7f, 0x90, 0x85, 0x4a, 0xdf, 0xb7, 0xdd, 0xc0,
0x1e, 0x08, 0x00, 0x5b, 0x87, 0x62, 0x78, 0x69, 0x9d, 0xdb, 0xc1, 0x39, 0xbe, 0x6a, 0xd9, 0x5c,
0x08, 0x2f, 0xf7, 0xec, 0xe0, 0x9c, 0xad, 0xc1, 0x02, 0xf5, 0x12, 0x5f, 0x28, 0x67, 0xca, 0x27,
0xf6, 0x1e, 0x2c, 0xb9, 0xd3, 0xb1, 0x95, 0x6c, 0x4a, 0xbc, 0x56, 0xc1, 0x6c, 0xb8, 0xd3, 0xf1,
0xb6, 0x0e, 0x17, 0x2f, 0x7f, 0x32, 0xf2, 0x06, 0xcf, 0xa8, 0x01, 0x7a, 0xbd, 0x32, 0x42, 0xb0,
0x8d, 0x37, 0xa0, 0x2a, 0xd1, 0xdc, 0x39, 0x3b, 0xa7, 0x77, 0x2c, 0x98, 0x15, 0x22, 0x40, 0x90,
0xa8, 0x21, 0x74, 0xc6, 0xdc, 0x0a, 0x42, 0x7b, 0x3c, 0x91, 0xaf, 0x54, 0x16, 0x90, 0x9e, 0x00,
0x20, 0xda, 0x0b, 0xed, 0x91, 0x75, 0xca, 0x79, 0xd0, 0x2c, 0x4a, 0xb4, 0x80, 0xec, 0x72, 0x1e,
0xb0, 0xaf, 0x41, 0x7d, 0xc8, 0x83, 0xd0, 0x92, 0x93, 0xc1, 0x83, 0x66, 0xe9, 0x6e, 0xee, 0x5e,
0xd9, 0xac, 0x09, 0x68, 0x4b, 0x01, 0xd9, 0x6b, 0x00, 0xbe, 0xfd, 0xdc, 0x12, 0x03, 0xc1, 0x2f,
0x9b, 0x65, 0x9a, 0x05, 0xdf, 0x7e, 0xde, 0xbf, 0xdc, 0xe3, 0x97, 0xc6, 0x0f, 0x60, 0xed, 0x13,
0x1e, 0x6a, 0x83, 0x16, 0x98, 0xfc, 0x8b, 0x29, 0x0f, 0x42, 0xd1, 0xff, 0x20, 0xb4, 0xfd, 0x50,
0xf5, 0x3f, 0x43, 0xfd, 0x47, 0x58, 0xdc, 0x7f, 0xee, 0x0e, 0x15, 0x41, 0x16, 0x09, 0xca, 0xdc,
0x1d, 0x12, 0xda, 0xd8, 0x07, 0xa6, 0x55, 0xbc, 0xc3, 0x43, 0xdb, 0x19, 0x05, 0xec, 0x43, 0xa8,
0x86, 0x5a, 0x73, 0xcd, 0xcc, 0xdd, 0xdc, 0xbd, 0x4a, 0xc4, 0x84, 0x5a, 0x01, 0x33, 0x41, 0x67,
0x9c, 0x43, 0x69, 0x97, 0xf3, 0x7d, 0x67, 0xec, 0x84, 0x6c, 0x0d, 0x0a, 0xa7, 0xce, 0x25, 0x1f,
0x62, 0xa7, 0x72, 0x7b, 0x37, 0x4c, 0x7a, 0x64, 0x77, 0x00, 0xf0, 0x87, 0x35, 0x8e, 0xf8, 0x71,
0xef, 0x86, 0x59, 0x46, 0xd8, 0x41, 0x60, 0x87, 0x6c, 0x03, 0x8a, 0x13, 0xee, 0x0f, 0xb8, 0x9a,
0xf9, 0xbd, 0x1b, 0xa6, 0x02, 0x6c, 0x15, 0xa1, 0x30, 0x12, 0xb5, 0x1b, 0x7f, 0x54, 0x80, 0x4a,
0x8f, 0xbb, 0x43, 0x35, 0x12, 0x0c, 0xf2, 0x62, 0x48, 0xb1, 0xb1, 0xaa, 0x89, 0xbf, 0xd9, 0x9b,
0x50, 0xc1, 0xc1, 0x0f, 0x42, 0xdf, 0x71, 0xcf, 0x68, 0x5d, 0x6c, 0x65, 0x9b, 0x19, 0x13, 0x04,
0xb8, 0x87, 0x50, 0xd6, 0x80, 0x9c, 0x3d, 0x56, 0xeb, 0x42, 0xfc, 0x64, 0x37, 0xa1, 0x64, 0x8f,
0x43, 0xea, 0x5e, 0x15, 0xc1, 0x45, 0x7b, 0x1c, 0x62, 0xd7, 0xde, 0x80, 0xea, 0xc4, 0xbe, 0x1a,
0x73, 0x37, 0x8c, 0x19, 0xaa, 0x6a, 0x56, 0x24, 0x0c, 0x59, 0xea, 0x11, 0x2c, 0xeb, 0x24, 0xaa,
0xf1, 0x42, 0xd4, 0xf8, 0x92, 0x46, 0x2d, 0xfb, 0xf0, 0x0e, 0x2c, 0xaa, 0x32, 0x3e, 0xbd, 0x0f,
0x32, 0x5a, 0xd9, 0xac, 0x4b, 0xb0, 0x7a, 0xcb, 0x7b, 0xd0, 0x38, 0x75, 0x5c, 0x7b, 0x64, 0x0d,
0x46, 0xe1, 0x85, 0x35, 0xe4, 0xa3, 0xd0, 0x46, 0x9e, 0x2b, 0x98, 0x75, 0x84, 0x6f, 0x8f, 0xc2,
0x8b, 0x1d, 0x01, 0x65, 0xef, 0x43, 0xf9, 0x94, 0x73, 0x0b, 0x07, 0xab, 0x59, 0x4a, 0x2c, 0x5d,
0x35, 0x43, 0x66, 0xe9, 0x54, 0xcd, 0xd5, 0xfb, 0xd0, 0xf0, 0xa6, 0xe1, 0x99, 0xe7, 0xb8, 0x67,
0xd6, 0xe0, 0xdc, 0x76, 0x2d, 0x67, 0x88, 0x5c, 0x98, 0xdf, 0xca, 0x3e, 0xcc, 0x98, 0x75, 0x85,
0xdb, 0x3e, 0xb7, 0xdd, 0xce, 0x90, 0xbd, 0x0d, 0x8b, 0x23, 0x3b, 0x08, 0xad, 0x73, 0x6f, 0x62,
0x4d, 0xa6, 0x27, 0xcf, 0xf8, 0x55, 0xb3, 0x86, 0x03, 0x51, 0x13, 0xe0, 0x3d, 0x6f, 0x72, 0x84,
0x40, 0xc1, 0x7a, 0xd8, 0x4f, 0xea, 0x04, 0xdc, 0xcd, 0xdc, 0xab, 0x99, 0x65, 0x01, 0xa1, 0x46,
0x9f, 0xc2, 0x32, 0x4e, 0xcf, 0x60, 0x1a, 0x84, 0xde, 0xd8, 0xf2, 0xf9, 0xc0, 0xf3, 0x87, 0x41,
0xb3, 0x82, 0xbc, 0xf6, 0xae, 0xec, 0xac, 0x36, 0xc7, 0x9b, 0x3b, 0x3c, 0x08, 0xb7, 0x91, 0xd8,
0x24, 0xda, 0xb6, 0x1b, 0xfa, 0x57, 0xe6, 0xd2, 0x70, 0x16, 0xce, 0xde, 0x07, 0x66, 0x8f, 0x46,
0xde, 0x73, 0x2b, 0xe0, 0xa3, 0x53, 0x4b, 0x0e, 0x62, 0xb3, 0x7e, 0x37, 0x73, 0xaf, 0x64, 0x36,
0x10, 0xd3, 0xe3, 0xa3, 0xd3, 0x23, 0x82, 0xb3, 0x0f, 0x01, 0x97, 0xa3, 0x75, 0xca, 0xed, 0x70,
0xea, 0xf3, 0xa0, 0xb9, 0x78, 0x37, 0x77, 0xaf, 0xfe, 0x68, 0x29, 0x1a, 0x2f, 0x04, 0x6f, 0x39,
0xa1, 0x59, 0x15, 0x74, 0xf2, 0x39, 0xd8, 0xd8, 0x81, 0xb5, 0xf4, 0x2e, 0x09, 0xa6, 0x12, 0xa3,
0x22, 0x98, 0x31, 0x6f, 0x8a, 0x9f, 0x6c, 0x05, 0x0a, 0x17, 0xf6, 0x68, 0xca, 0x91, 0x0b, 0xab,
0x26, 0x3d, 0x7c, 0x27, 0xfb, 0xad, 0x8c, 0xf1, 0x87, 0x19, 0xa8, 0xd2, 0x5b, 0x06, 0x13, 0xcf,
0x0d, 0x38, 0x7b, 0x13, 0x6a, 0x8a, 0x1b, 0xb8, 0xef, 0x7b, 0xbe, 0x94, 0x8b, 0x8a, 0xf3, 0xda,
0x02, 0xc6, 0xde, 0x85, 0x86, 0x22, 0x9a, 0xf8, 0xdc, 0x19, 0xdb, 0x67, 0xaa, 0x6a, 0xc5, 0x4a,
0x47, 0x12, 0xcc, 0x3e, 0x88, 0xeb, 0xf3, 0xbd, 0x69, 0xc8, 0x91, 0xd7, 0x2b, 0x8f, 0xaa, 0xf2,
0xf5, 0x4c, 0x01, 0x8b, 0x6a, 0xc7, 0xa7, 0x57, 0xe0, 0x73, 0xe3, 0xb7, 0x32, 0xc0, 0x44, 0xb7,
0xfb, 0x1e, 0x55, 0x10, 0x4b, 0xa4, 0x44, 0xc9, 0xcc, 0x2b, 0xaf, 0x90, 0xec, 0x8b, 0x56, 0x88,
0x01, 0x05, 0xea, 0x7b, 0x3e, 0xa5, 0xef, 0x84, 0xfa, 0x7e, 0xbe, 0x94, 0x6b, 0xe4, 0x8d, 0xff,
0x9a, 0x83, 0x15, 0xc1, 0xa7, 0x2e, 0x1f, 0xb5, 0x06, 0x03, 0x3e, 0x89, 0xd6, 0xce, 0x1d, 0xa8,
0xb8, 0xde, 0x90, 0x2b, 0x8e, 0xa5, 0x8e, 0x81, 0x00, 0x69, 0xec, 0x7a, 0x6e, 0x3b, 0x2e, 0x75,
0x9c, 0x06, 0xb3, 0x8c, 0x10, 0xec, 0xf6, 0xdb, 0xb0, 0x38, 0xe1, 0xee, 0x50, 0x5f, 0x22, 0x39,
0xe2, 0x7a, 0x09, 0x96, 0xab, 0xe3, 0x0e, 0x54, 0x4e, 0xa7, 0x44, 0x27, 0x04, 0x4b, 0x1e, 0x79,
0x00, 0x24, 0xa8, 0x45, 0xf2, 0x65, 0x32, 0x0d, 0xce, 0x11, 0x5b, 0x40, 0x6c, 0x51, 0x3c, 0x0b,
0xd4, 0x6d, 0x80, 0xe1, 0x34, 0x08, 0xe5, 0x8a, 0x59, 0x40, 0x64, 0x59, 0x40, 0x68, 0xc5, 0x7c,
0x1d, 0x96, 0xc7, 0xf6, 0xa5, 0x85, 0xbc, 0x63, 0x39, 0xae, 0x75, 0x3a, 0x42, 0xa1, 0x5e, 0x44,
0xba, 0xc6, 0xd8, 0xbe, 0xfc, 0x4c, 0x60, 0x3a, 0xee, 0x2e, 0xc2, 0x85, 0x58, 0x19, 0xd0, 0x48,
0x58, 0x3e, 0x0f, 0xb8, 0x7f, 0xc1, 0x51, 0x12, 0xe4, 0xcd, 0xba, 0x04, 0x9b, 0x04, 0x15, 0x3d,
0x1a, 0x8b, 0xf7, 0x0e, 0x47, 0x03, 0x5a, 0xf6, 0x66, 0x71, 0xec, 0xb8, 0x7b, 0xe1, 0x68, 0x20,
0x76, 0x26, 0x21, 0x47, 0x26, 0xdc, 0xb7, 0x9e, 0x3d, 0xc7, 0x35, 0x9c, 0x47, 0xb9, 0x71, 0xc4,
0xfd, 0x27, 0xcf, 0x85, 0xf2, 0x30, 0x08, 0x50, 0x10, 0xd9, 0x57, 0xcd, 0x0a, 0x2e, 0xf0, 0xd2,
0x20, 0x10, 0x22, 0xc8, 0xbe, 0x12, 0x8b, 0x50, 0xf4, 0xd6, 0xc6, 0x59, 0xe0, 0x43, 0xac, 0x3e,
0x40, 0x89, 0x5a, 0xc3, 0xce, 0xb6, 0x24, 0x42, 0xb4, 0x13, 0x08, 0xae, 0x57, 0x9d, 0x3d, 0x1d,
0xd9, 0x67, 0x01, 0x8a, 0x94, 0x9a, 0x59, 0x95, 0xc0, 0x5d, 0x01, 0x33, 0x3e, 0x87, 0xd5, 0x99,
0xb9, 0x95, 0x6b, 0x46, 0x28, 0x0b, 0x08, 0xc1, 0x79, 0x2d, 0x99, 0xf2, 0x29, 0x6d, 0xd2, 0xb2,
0x29, 0x93, 0x66, 0xfc, 0x6e, 0x06, 0xaa, 0xb2, 0x66, 0x54, 0x6b, 0xd8, 0x26, 0x30, 0x35, 0x8b,
0xe1, 0xa5, 0x33, 0xb4, 0x4e, 0xae, 0x42, 0x1e, 0x10, 0xd3, 0xec, 0xdd, 0x30, 0x1b, 0x12, 0xd7,
0xbf, 0x74, 0x86, 0x5b, 0x02, 0xc3, 0xee, 0x43, 0x23, 0x41, 0x1f, 0x84, 0x3e, 0x71, 0xf4, 0xde,
0x0d, 0xb3, 0xae, 0x51, 0xf7, 0x42, 0x5f, 0xac, 0x11, 0xa1, 0x34, 0x4d, 0x43, 0xcb, 0x71, 0x87,
0xfc, 0x12, 0xd9, 0xa8, 0x66, 0x56, 0x08, 0xd6, 0x11, 0xa0, 0xad, 0x3a, 0x54, 0xf5, 0xea, 0x8c,
0x33, 0x28, 0x29, 0x8d, 0x0b, 0x55, 0x8e, 0x99, 0x2e, 0x99, 0xe5, 0x30, 0xea, 0xc9, 0x4d, 0x28,
0x25, 0x7b, 0x60, 0x16, 0xc3, 0x57, 0x6e, 0xd8, 0xf8, 0x2e, 0x34, 0xf6, 0x05, 0xf3, 0xb8, 0x82,
0x59, 0xa5, 0x06, 0xb9, 0x06, 0x0b, 0xda, 0xa2, 0x29, 0x9b, 0xf2, 0x49, 0xec, 0xb9, 0xe7, 0x5e,
0x10, 0xca, 0x56, 0xf0, 0xb7, 0xf1, 0x47, 0x19, 0x60, 0xed, 0x20, 0x74, 0xc6, 0x76, 0xc8, 0x77,
0x79, 0x24, 0x16, 0x0e, 0xa1, 0x2a, 0x6a, 0xeb, 0x7b, 0x2d, 0x52, 0xe9, 0x48, 0xa1, 0x78, 0x4f,
0x2e, 0xe3, 0xf9, 0x02, 0x9b, 0x3a, 0x35, 0x89, 0xf9, 0x44, 0x05, 0x62, 0x95, 0x85, 0xb6, 0x7f,
0xc6, 0x43, 0x54, 0x04, 0xa5, 0x5e, 0x03, 0x04, 0x12, 0x2a, 0xe0, 0xc6, 0x2f, 0xc2, 0xd2, 0x5c,
0x1d, 0xba, 0x5c, 0x2e, 0xa7, 0xc8, 0xe5, 0x9c, 0x2e, 0x97, 0x2d, 0x58, 0x4e, 0xf4, 0x4b, 0x72,
0xda, 0x3a, 0x14, 0xc5, 0x82, 0x10, 0xca, 0x41, 0x86, 0xf4, 0xd2, 0x53, 0xce, 0x85, 0x22, 0xfd,
0x00, 0x56, 0x4e, 0x39, 0xf7, 0xed, 0x10, 0x91, 0xb8, 0x62, 0xc4, 0x0c, 0xc9, 0x8a, 0x97, 0x24,
0xae, 0x67, 0x87, 0x47, 0xdc, 0x17, 0x33, 0x65, 0xfc, 0xf7, 0x0c, 0x2c, 0x0a, 0x09, 0x7a, 0x60,
0xbb, 0x57, 0x6a, 0x9c, 0xf6, 0x53, 0xc7, 0xe9, 0x9e, 0xb6, 0x19, 0x6a, 0xd4, 0x5f, 0x75, 0x90,
0x72, 0xb3, 0x83, 0xc4, 0xee, 0x42, 0x35, 0xd1, 0xd7, 0x02, 0xf6, 0x15, 0x82, 0xa8, 0x93, 0x3f,
0xfd, 0x30, 0xbe, 0x0d, 0x8d, 0xb8, 0xdb, 0x72, 0x0c, 0x19, 0xe4, 0x05, 0x4b, 0xca, 0x0a, 0xf0,
0xb7, 0xf1, 0x3b, 0x19, 0x22, 0xdc, 0xf6, 0x9c, 0x58, 0xbf, 0x65, 0x90, 0x17, 0x9a, 0xb3, 0x22,
0x14, 0xbf, 0xaf, 0xb5, 0x0b, 0x7e, 0xfa, 0x97, 0x15, 0x4b, 0x27, 0x10, 0xca, 0xb2, 0x3d, 0x1a,
0xa1, 0xf0, 0x2d, 0x99, 0x45, 0xf1, 0xdc, 0x1a, 0x8d, 0x8c, 0x77, 0x60, 0x49, 0xeb, 0xdd, 0x0b,
0xde, 0xa3, 0x0b, 0x6c, 0xdf, 0x09, 0xc2, 0x63, 0x37, 0x98, 0x68, 0x8a, 0xdb, 0x2d, 0x28, 0x0b,
0x09, 0x2b, 0x7a, 0x16, 0x48, 0x2d, 0x5d, 0x88, 0x5c, 0xd1, 0xaf, 0x00, 0x91, 0xf6, 0xa5, 0x44,
0x66, 0x25, 0xd2, 0xbe, 0x44, 0xa4, 0xf1, 0x2d, 0x58, 0x4e, 0xd4, 0x27, 0x9b, 0x7e, 0x03, 0x0a,
0xd3, 0xf0, 0xd2, 0x53, 0xaa, 0x79, 0x45, 0x72, 0x88, 0x30, 0x21, 0x4d, 0xc2, 0x18, 0x1f, 0xc3,
0x52, 0x97, 0x3f, 0x97, 0x8b, 0x58, 0x75, 0xe4, 0x6d, 0xc8, 0xbf, 0xc4, 0xac, 0x44, 0xbc, 0xb1,
0x09, 0x4c, 0x2f, 0x2c, 0x5b, 0xd5, 0xac, 0xcc, 0x4c, 0xc2, 0xca, 0x34, 0xde, 0x06, 0xd6, 0x73,
0xce, 0xdc, 0x03, 0x1e, 0x04, 0xf6, 0x59, 0xb4, 0xec, 0x1b, 0x90, 0x1b, 0x07, 0x67, 0x52, 0x46,
0x89, 0x9f, 0xc6, 0x37, 0x60, 0x39, 0x41, 0x27, 0x2b, 0x7e, 0x0d, 0xca, 0x81, 0x73, 0xe6, 0xa2,
0x62, 0x25, 0xab, 0x8e, 0x01, 0xc6, 0x2e, 0xac, 0x7c, 0xc6, 0x7d, 0xe7, 0xf4, 0xea, 0x65, 0xd5,
0x27, 0xeb, 0xc9, 0xce, 0xd6, 0xd3, 0x86, 0xd5, 0x99, 0x7a, 0x64, 0xf3, 0xc4, 0xbe, 0x72, 0x26,
0x4b, 0x26, 0x3d, 0x68, 0x72, 0x2f, 0xab, 0xcb, 0x3d, 0xe3, 0x18, 0xd8, 0xb6, 0xe7, 0xba, 0x7c,
0x10, 0x1e, 0x71, 0xee, 0xab, 0xce, 0xbc, 0xa7, 0xf1, 0x6a, 0xe5, 0xd1, 0xba, 0x1c, 0xd9, 0x59,
0x61, 0x2a, 0x99, 0x98, 0x41, 0x7e, 0xc2, 0xfd, 0x31, 0x56, 0x5c, 0x32, 0xf1, 0xb7, 0xb1, 0x0a,
0xcb, 0x89, 0x6a, 0xa9, 0x6f, 0xc6, 0x43, 0x58, 0xdd, 0x71, 0x82, 0xc1, 0x7c, 0x83, 0xeb, 0x50,
0x9c, 0x4c, 0x4f, 0xac, 0xa4, 0x5c, 0x7e, 0xc2, 0xaf, 0x8c, 0x26, 0xac, 0xcd, 0x96, 0x90, 0x75,
0xfd, 0xd5, 0x0c, 0xe4, 0xf7, 0xfa, 0xfb, 0xdb, 0x6c, 0x03, 0x4a, 0x8e, 0x3b, 0xf0, 0xc6, 0x42,
0xf1, 0xa2, 0x77, 0x8e, 0x9e, 0xaf, 0x5d, 0x60, 0xb7, 0xa0, 0x8c, 0xfa, 0x9a, 0x30, 0x8e, 0xa5,
0xea, 0x53, 0x12, 0x80, 0x7d, 0x6f, 0xf0, 0x4c, 0x58, 0xe5, 0xfc, 0x72, 0xe2, 0xf8, 0x68, 0x77,
0x2b, 0x6b, 0x33, 0x4f, 0x7b, 0x7d, 0x8c, 0x90, 0x46, 0xe7, 0xbf, 0x29, 0x41, 0x51, 0xee, 0xb6,
0xb4, 0x73, 0x87, 0xce, 0x05, 0x8f, 0x77, 0x6e, 0xf1, 0x24, 0xf4, 0x01, 0x9f, 0x8f, 0xbd, 0x30,
0x52, 0xd8, 0x68, 0x0e, 0xaa, 0x04, 0x94, 0x2a, 0x9b, 0xa6, 0x34, 0x90, 0x93, 0x22, 0x47, 0x44,
0x03, 0x7d, 0x2b, 0xbf, 0x05, 0x45, 0xb5, 0xf7, 0xe7, 0x23, 0x9b, 0x66, 0x61, 0x40, 0xda, 0xda,
0x06, 0x94, 0x06, 0xf6, 0xc4, 0x1e, 0x38, 0xe1, 0x95, 0x14, 0x08, 0xd1, 0xb3, 0xa8, 0x7d, 0xe4,
0x0d, 0xec, 0x91, 0x75, 0x62, 0x8f, 0x6c, 0x77, 0xc0, 0xa5, 0xf5, 0x5f, 0x45, 0xe0, 0x16, 0xc1,
0x84, 0x85, 0x2f, 0xfb, 0xa9, 0xa8, 0xc8, 0x09, 0x20, 0x7b, 0xaf, 0xc8, 0x84, 0x72, 0xe9, 0x8d,
0xc7, 0x8e, 0xb0, 0x32, 0x48, 0x0d, 0xcb, 0x99, 0x65, 0x82, 0xec, 0x72, 0x7c, 0x5b, 0x89, 0x7e,
0x4e, 0x43, 0x57, 0xa6, 0xa6, 0x08, 0xf8, 0x39, 0x99, 0xf2, 0xf3, 0xba, 0x58, 0x4e, 0xd3, 0xc5,
0xde, 0x83, 0xa5, 0xa9, 0x1b, 0xf0, 0x30, 0x1c, 0xf1, 0x61, 0xd4, 0x97, 0x0a, 0x12, 0x35, 0x22,
0x84, 0xea, 0xce, 0x26, 0x2c, 0x93, 0xdb, 0x22, 0xb0, 0x43, 0x2f, 0x38, 0x77, 0x02, 0x2b, 0x10,
0x16, 0x12, 0x99, 0xbb, 0x4b, 0x88, 0xea, 0x49, 0x4c, 0x8f, 0x4c, 0xa4, 0xf5, 0x19, 0x7a, 0x9f,
0x0f, 0xb8, 0x73, 0xc1, 0x87, 0xa8, 0xa7, 0xe5, 0xcc, 0xd5, 0x44, 0x19, 0x53, 0x22, 0x51, 0xe9,
0x9e, 0x8e, 0xad, 0xe9, 0x64, 0x68, 0x0b, 0x65, 0xa5, 0x4e, 0xca, 0xb0, 0x3b, 0x1d, 0x1f, 0x13,
0x84, 0x3d, 0x04, 0xa5, 0x89, 0x49, 0xfd, 0x70, 0x31, 0x21, 0xcf, 0x04, 0xb3, 0x9a, 0x55, 0x49,
0x41, 0x8a, 0x62, 0x42, 0xe7, 0x6c, 0xcc, 0xe8, 0x9c, 0x4d, 0x28, 0x4e, 0x7c, 0xe7, 0xc2, 0x0e,
0x79, 0x73, 0x89, 0x04, 0xb8, 0x7c, 0x14, 0x92, 0xc1, 0x71, 0x9d, 0xd0, 0xb1, 0x43, 0xcf, 0x6f,
0x32, 0xc4, 0xc5, 0x00, 0x76, 0x1f, 0x96, 0x90, 0x47, 0x82, 0xd0, 0x0e, 0xa7, 0x81, 0xd4, 0x40,
0x97, 0x91, 0x99, 0x50, 0x87, 0xee, 0x21, 0x1c, 0x95, 0x50, 0xf6, 0x0d, 0x58, 0x23, 0xb6, 0xc0,
0x12, 0x52, 0xb3, 0x46, 0x85, 0x60, 0x05, 0x87, 0x62, 0x19, 0xb1, 0x82, 0xbf, 0xa5, 0x7e, 0x2d,
0xb4, 0x83, 0xc7, 0xb0, 0x2e, 0xd9, 0x64, 0xae, 0xd4, 0x2a, 0x96, 0x5a, 0x21, 0xf4, 0x4c, 0xb1,
0x4d, 0x58, 0x12, 0x5d, 0x72, 0x06, 0x96, 0x2c, 0x2d, 0x56, 0xc2, 0x9a, 0xe8, 0x3d, 0x5a, 0x4a,
0x8b, 0x84, 0x34, 0x11, 0xf7, 0x84, 0x5f, 0xb1, 0xef, 0xc2, 0x22, 0xb1, 0x0c, 0x9a, 0x57, 0x28,
0xe9, 0x37, 0x50, 0xd2, 0xaf, 0xca, 0x01, 0xdd, 0x8e, 0xb0, 0x28, 0xec, 0xeb, 0x83, 0xc4, 0xb3,
0x58, 0x0e, 0x23, 0xe7, 0x94, 0x87, 0xce, 0x98, 0x37, 0xd7, 0x89, 0xc1, 0xd4, 0xb3, 0x58, 0xa9,
0xd3, 0x09, 0x62, 0x9a, 0x24, 0x17, 0xe8, 0x09, 0x79, 0x77, 0xe4, 0x05, 0x5c, 0x39, 0xb9, 0x9a,
0x37, 0xe5, 0x22, 0x14, 0x40, 0xa5, 0x43, 0x0a, 0x45, 0x9c, 0x8c, 0x9e, 0xc8, 0x15, 0x79, 0x0b,
0x99, 0xa1, 0x46, 0xb6, 0x8f, 0x72, 0x47, 0x8a, 0x5d, 0xfc, 0xdc, 0x7e, 0xae, 0x24, 0xc8, 0x6b,
0x38, 0xbf, 0x20, 0x40, 0x52, 0x76, 0xfc, 0x38, 0x43, 0x1b, 0xa2, 0x94, 0x1f, 0x81, 0x66, 0xde,
0x91, 0xe4, 0xb0, 0x3c, 0x77, 0x74, 0x25, 0x85, 0x09, 0x10, 0xe8, 0xd0, 0x1d, 0xe1, 0x6a, 0x76,
0x5c, 0x9d, 0x84, 0x64, 0x6f, 0x55, 0x01, 0x91, 0xe8, 0x0e, 0x54, 0x26, 0xd3, 0x93, 0x91, 0x33,
0x20, 0x92, 0x1c, 0xd5, 0x42, 0x20, 0x24, 0x10, 0xf6, 0x2d, 0x71, 0x14, 0x51, 0xe4, 0x91, 0xa2,
0x22, 0x61, 0x48, 0x82, 0xb2, 0x9d, 0xfb, 0x28, 0x4e, 0xaa, 0x26, 0xfe, 0x36, 0xb6, 0x60, 0x25,
0xd9, 0x69, 0xb9, 0xf1, 0xdc, 0x87, 0x92, 0x94, 0x55, 0xca, 0xf1, 0x51, 0x57, 0x13, 0x25, 0x4d,
0xb4, 0x08, 0x6f, 0xfc, 0x5e, 0x01, 0x96, 0x25, 0x74, 0x5b, 0x0c, 0x6d, 0x6f, 0x3a, 0x1e, 0xdb,
0x7e, 0x8a, 0x10, 0xcc, 0xbc, 0x58, 0x08, 0x66, 0xe7, 0x84, 0x60, 0xd2, 0xf2, 0x25, 0x19, 0x9a,
0xb4, 0x7c, 0xc5, 0x5c, 0x92, 0x31, 0xa2, 0x7b, 0x52, 0x6b, 0x12, 0xdc, 0x27, 0x8f, 0xed, 0x9c,
0xc8, 0x2e, 0xa4, 0x88, 0x6c, 0x5d, 0xe0, 0x2e, 0xcc, 0x08, 0xdc, 0x37, 0x80, 0x98, 0x46, 0xcd,
0x7e, 0x91, 0xec, 0x13, 0x84, 0x49, 0x77, 0xe6, 0x3b, 0xb0, 0x38, 0x2b, 0xe3, 0x48, 0x98, 0xd6,
0x53, 0x24, 0x9c, 0x33, 0xe6, 0xb8, 0x5b, 0x69, 0xc4, 0x65, 0x29, 0xe1, 0x9c, 0x31, 0xdf, 0x47,
0x8c, 0xa2, 0x6f, 0x03, 0x50, 0xdb, 0xb8, 0x68, 0x00, 0x17, 0xcd, 0xdb, 0xc9, 0xb9, 0xd0, 0x47,
0x7d, 0x53, 0x3c, 0x4c, 0x7d, 0x8e, 0xab, 0xa8, 0x8c, 0x25, 0x71, 0x01, 0x7d, 0x04, 0x75, 0x6f,
0xc2, 0x5d, 0x2b, 0x96, 0x35, 0x15, 0xac, 0xaa, 0x21, 0xab, 0xea, 0x28, 0xb8, 0x59, 0x13, 0x74,
0xd1, 0x23, 0xfb, 0x36, 0x0d, 0x32, 0xd7, 0x4a, 0x56, 0xaf, 0x29, 0x59, 0x47, 0xc2, 0xe8, 0xd9,
0xf8, 0xcd, 0x0c, 0x54, 0xb4, 0xee, 0xb0, 0x55, 0x58, 0xda, 0x3e, 0x3c, 0x3c, 0x6a, 0x9b, 0xad,
0x7e, 0xe7, 0xb3, 0xb6, 0xb5, 0xbd, 0x7f, 0xd8, 0x6b, 0x37, 0x6e, 0x08, 0xf0, 0xfe, 0xe1, 0x76,
0x6b, 0xdf, 0xda, 0x3d, 0x34, 0xb7, 0x15, 0x38, 0xc3, 0xd6, 0x80, 0x99, 0xed, 0x83, 0xc3, 0x7e,
0x3b, 0x01, 0xcf, 0xb2, 0x06, 0x54, 0xb7, 0xcc, 0x76, 0x6b, 0x7b, 0x4f, 0x42, 0x72, 0x6c, 0x05,
0x1a, 0xbb, 0xc7, 0xdd, 0x9d, 0x4e, 0xf7, 0x13, 0x6b, 0xbb, 0xd5, 0xdd, 0x6e, 0xef, 0xb7, 0x77,
0x1a, 0x79, 0x56, 0x83, 0x72, 0x6b, 0xab, 0xd5, 0xdd, 0x39, 0xec, 0xb6, 0x77, 0x1a, 0x05, 0xe3,
0xcf, 0x32, 0xb0, 0x8a, 0x03, 0x35, 0x9c, 0x5d, 0xa1, 0x77, 0xa1, 0x32, 0xf0, 0xbc, 0x89, 0x30,
0x83, 0xe2, 0xed, 0x5e, 0x07, 0x89, 0xd5, 0x47, 0x92, 0xf5, 0xd4, 0xf3, 0x07, 0x5c, 0x2e, 0x50,
0x40, 0xd0, 0xae, 0x80, 0x08, 0x06, 0x91, 0x1c, 0x46, 0x14, 0xb4, 0x3e, 0x2b, 0x04, 0x23, 0x92,
0x35, 0x58, 0x38, 0xf1, 0xb9, 0x3d, 0x38, 0x97, 0x4b, 0x53, 0x3e, 0xb1, 0x77, 0x63, 0x03, 0x7d,
0x20, 0x26, 0x7c, 0xc4, 0x87, 0xc8, 0x9f, 0x25, 0x73, 0x51, 0xc2, 0xb7, 0x25, 0x58, 0x6c, 0x15,
0xf6, 0x89, 0xed, 0x0e, 0x3d, 0x97, 0x0f, 0xa5, 0x1d, 0x10, 0x03, 0x8c, 0x23, 0x58, 0x9b, 0x7d,
0x3f, 0xb9, 0x98, 0x3f, 0xd4, 0x16, 0x33, 0xa9, 0xe5, 0x1b, 0xd7, 0x33, 0x90, 0xb6, 0xb0, 0xff,
0x76, 0x1e, 0xf2, 0x42, 0x4d, 0xbb, 0x56, 0xa3, 0xd3, 0xf5, 0xee, 0xdc, 0x5c, 0x74, 0x07, 0xfd,
0x00, 0xb4, 0x7f, 0x93, 0xb3, 0xa9, 0x8c, 0x10, 0xdc, 0xb7, 0x23, 0xb4, 0xcf, 0x07, 0x17, 0xd2,
0xdb, 0x44, 0x68, 0x93, 0x0f, 0x2e, 0xd0, 0xe0, 0xb1, 0x43, 0x2a, 0x4b, 0x8b, 0xb1, 0x18, 0xd8,
0x21, 0x96, 0x94, 0x28, 0x2c, 0x57, 0x8c, 0x50, 0x58, 0xaa, 0x09, 0x45, 0xc7, 0x3d, 0xf1, 0xa6,
0xee, 0x10, 0xd7, 0x5e, 0xc9, 0x54, 0x8f, 0x18, 0x4c, 0x42, 0x31, 0x21, 0x76, 0x09, 0x5a, 0x6a,
0x25, 0x01, 0xe8, 0x8b, 0x7d, 0xe2, 0x03, 0x28, 0x07, 0x57, 0xee, 0x40, 0x5f, 0x60, 0x2b, 0x72,
0x7c, 0xc4, 0xdb, 0x6f, 0xf6, 0xae, 0xdc, 0x01, 0x2e, 0xa7, 0x52, 0x20, 0x7f, 0xb1, 0xc7, 0x50,
0x8a, 0x9c, 0xb2, 0x24, 0x1e, 0x6f, 0xea, 0x25, 0x94, 0x27, 0x96, 0x6c, 0xdf, 0x88, 0x94, 0x3d,
0x80, 0x05, 0xf4, 0x9c, 0x06, 0xcd, 0x2a, 0x16, 0x52, 0xca, 0xb8, 0xe8, 0x06, 0xc6, 0x71, 0xf8,
0x10, 0xbd, 0xa8, 0xa6, 0x24, 0xdb, 0x78, 0x02, 0xb5, 0x44, 0x5d, 0xba, 0x85, 0x5b, 0x23, 0x0b,
0xf7, 0x2d, 0xdd, 0xc2, 0x8d, 0xc5, 0xb4, 0x2c, 0xa6, 0x5b, 0xbc, 0xbf, 0x08, 0x25, 0xf5, 0x2a,
0x62, 0x11, 0x1d, 0x77, 0x9f, 0x74, 0x0f, 0x3f, 0xef, 0x5a, 0xbd, 0xa7, 0xdd, 0xed, 0xc6, 0x0d,
0xb6, 0x08, 0x95, 0xd6, 0x36, 0xae, 0x4b, 0x04, 0x64, 0x04, 0xc9, 0x51, 0xab, 0xd7, 0x8b, 0x20,
0x59, 0x63, 0x17, 0x1a, 0xb3, 0x3d, 0x15, 0x3c, 0x19, 0x2a, 0x98, 0xf4, 0x2b, 0xc7, 0x00, 0x61,
0xbf, 0x90, 0xab, 0x98, 0x94, 0x64, 0x7a, 0x30, 0x1e, 0x43, 0x43, 0x6c, 0x3a, 0x62, 0xa8, 0xf4,
0x88, 0xd1, 0x48, 0x28, 0x5e, 0xba, 0x6f, 0xb9, 0x64, 0x56, 0x08, 0x86, 0x4d, 0x19, 0x1f, 0xc2,
0x92, 0x56, 0x2c, 0xb6, 0x37, 0xc5, 0x46, 0x36, 0x6b, 0x6f, 0xa2, 0x75, 0x41, 0x18, 0x63, 0x1d,
0x56, 0xc5, 0x63, 0xfb, 0x82, 0xbb, 0x61, 0x6f, 0x7a, 0x42, 0x21, 0x45, 0xc7, 0x73, 0x85, 0xd5,
0x51, 0x8e, 0x30, 0xd7, 0x33, 0xf9, 0xa6, 0x34, 0x4d, 0xb3, 0xc8, 0x1a, 0x1b, 0x5a, 0x0b, 0x58,
0x70, 0x13, 0xff, 0x26, 0x4c, 0xd4, 0x72, 0x04, 0x12, 0xc3, 0x7a, 0xd4, 0x6e, 0x9b, 0xd6, 0x61,
0x77, 0xbf, 0xd3, 0x15, 0xd2, 0x4e, 0x0c, 0x2b, 0x02, 0x76, 0x77, 0x11, 0x92, 0x31, 0x1a, 0x50,
0xff, 0x84, 0x87, 0x1d, 0xf7, 0xd4, 0x93, 0x83, 0x61, 0xfc, 0x8d, 0x05, 0x58, 0x8c, 0x40, 0xb1,
0x89, 0x7b, 0xc1, 0xfd, 0xc0, 0xf1, 0x5c, 0xd4, 0x56, 0xcb, 0xa6, 0x7a, 0x14, 0xd2, 0x49, 0xea,
0xe8, 0xb8, 0x05, 0xae, 0x20, 0x56, 0x6a, 0xf5, 0xb8, 0xff, 0xbd, 0x03, 0x8b, 0xce, 0x90, 0xbb,
0xa1, 0x13, 0x5e, 0x59, 0x09, 0x87, 0x59, 0x5d, 0x81, 0xe5, 0x1e, 0xb8, 0x02, 0x05, 0x7b, 0xe4,
0xd8, 0x2a, 0x54, 0x4b, 0x0f, 0x02, 0x3a, 0xf0, 0x46, 0x9e, 0x8f, 0x9a, 0x6b, 0xd9, 0xa4, 0x07,
0xf6, 0x10, 0x56, 0x84, 0x06, 0xad, 0x7b, 0x31, 0x51, 0xc0, 0x90, 0xef, 0x8e, 0xb9, 0xd3, 0xf1,
0x51, 0xec, 0xc9, 0x14, 0x18, 0xb1, 0xf3, 0x89, 0x12, 0x52, 0xd5, 0x89, 0x0a, 0x90, 0x31, 0xb6,
0xe4, 0x4e, 0xc7, 0x2d, 0xc4, 0x44, 0xf4, 0x8f, 0x60, 0x55, 0xd0, 0x47, 0xca, 0x51, 0x54, 0x62,
0x11, 0x4b, 0x88, 0xca, 0x3a, 0x12, 0x17, 0x95, 0xb9, 0x05, 0x65, 0xea, 0x95, 0x60, 0x89, 0x02,
0x29, 0xe1, 0xd8, 0x15, 0xee, 0x07, 0x73, 0x51, 0xd5, 0x05, 0xda, 0xc6, 0x67, 0xa2, 0xaa, 0x5a,
0x5c, 0xb6, 0x34, 0x1b, 0x97, 0x7d, 0x04, 0xab, 0x27, 0x82, 0x47, 0xcf, 0xb9, 0x3d, 0xe4, 0xbe,
0x15, 0x73, 0x3e, 0x19, 0x1b, 0xcb, 0x02, 0xb9, 0x87, 0xb8, 0x68, 0xa1, 0x08, 0x2d, 0x45, 0xc8,
0x0d, 0x3e, 0xb4, 0x42, 0xcf, 0x42, 0xe5, 0x05, 0x25, 0x50, 0xc9, 0xac, 0x11, 0xb8, 0xef, 0x6d,
0x0b, 0x60, 0x92, 0xee, 0xcc, 0xb7, 0x27, 0xe7, 0xd2, 0x1c, 0x88, 0xe8, 0x3e, 0x11, 0x40, 0xf6,
0x1a, 0x14, 0xc5, 0x9a, 0x70, 0x39, 0x85, 0xae, 0x48, 0xe1, 0x56, 0x20, 0xf6, 0x16, 0x2c, 0x60,
0x1b, 0x41, 0xb3, 0x81, 0x0b, 0xa2, 0x1a, 0x4b, 0x7a, 0xc7, 0x35, 0x25, 0x4e, 0xa8, 0x82, 0x53,
0xdf, 0x21, 0x31, 0x54, 0x36, 0xf1, 0x37, 0xfb, 0x9e, 0x26, 0xd3, 0x96, 0xb1, 0xec, 0x5b, 0xb2,
0xec, 0x0c, 0x2b, 0x5e, 0x27, 0xde, 0x7e, 0xa6, 0xd2, 0xea, 0xfb, 0xf9, 0x52, 0xa5, 0x51, 0x35,
0x3e, 0x82, 0x02, 0x8d, 0x8e, 0x60, 0x42, 0x1c, 0xbb, 0x8c, 0x64, 0x42, 0x84, 0x36, 0xa1, 0xe8,
0xf2, 0xf0, 0xb9, 0xe7, 0x3f, 0x53, 0x2e, 0x65, 0xf9, 0x68, 0xfc, 0x10, 0x7d, 0x21, 0x51, 0xc4,
0x9d, 0xcc, 0x3a, 0xc1, 0x1e, 0x34, 0xbd, 0xc1, 0xb9, 0x2d, 0xdd, 0x33, 0x25, 0x04, 0xf4, 0xce,
0xed, 0x39, 0xf6, 0xc8, 0xce, 0x07, 0xdd, 0xdf, 0x82, 0xba, 0x8a, 0xf1, 0x07, 0xd6, 0x88, 0x9f,
0x86, 0x92, 0xdd, 0xab, 0x32, 0xc0, 0x1f, 0xec, 0xf3, 0xd3, 0xd0, 0x38, 0x80, 0x25, 0xc9, 0x90,
0x87, 0x13, 0xae, 0x9a, 0xfe, 0x56, 0x9a, 0x36, 0x5c, 0x79, 0xb4, 0x9c, 0xdc, 0x89, 0x29, 0x77,
0x21, 0xa1, 0x22, 0x1b, 0x9f, 0x02, 0xd3, 0xf7, 0x69, 0x59, 0x9f, 0xd4, 0x49, 0x95, 0x27, 0x5e,
0x05, 0xb4, 0x22, 0xcd, 0xd7, 0x19, 0x8a, 0xd1, 0x09, 0xa6, 0x83, 0x81, 0xca, 0xbd, 0x28, 0x99,
0xea, 0xd1, 0xf8, 0xe3, 0x0c, 0x2c, 0x63, 0x65, 0x4a, 0x9b, 0x97, 0x52, 0xf8, 0x27, 0xee, 0xa4,
0x98, 0x1f, 0x5d, 0x39, 0xa2, 0x87, 0xaf, 0xee, 0xfb, 0xcc, 0xcf, 0xf9, 0x3e, 0xdf, 0x85, 0xc6,
0x90, 0x8f, 0x9c, 0x0b, 0xee, 0x5f, 0x45, 0x86, 0x1c, 0xe9, 0xef, 0x8b, 0x0a, 0x2e, 0x6d, 0x39,
0xe3, 0x1f, 0x64, 0x60, 0x89, 0x54, 0x19, 0xb4, 0x8a, 0xe5, 0x40, 0x7d, 0xac, 0xcc, 0x40, 0x29,
0xaa, 0xe4, 0x3b, 0xc5, 0x5b, 0x3c, 0x42, 0x89, 0x78, 0xef, 0x86, 0x34, 0x0f, 0x25, 0x94, 0x7d,
0x07, 0x2d, 0x10, 0xd7, 0x42, 0xa0, 0x0c, 0x50, 0xde, 0x4c, 0x51, 0x9e, 0xa2, 0xe2, 0xc2, 0x3c,
0x71, 0x11, 0xb4, 0x55, 0x12, 0x76, 0xa9, 0x00, 0x1b, 0xbb, 0x50, 0x4b, 0x34, 0x93, 0x70, 0xd0,
0x56, 0xc9, 0x41, 0x3b, 0x17, 0x04, 0xc9, 0xce, 0x07, 0x41, 0xae, 0x60, 0xd9, 0xe4, 0xf6, 0xf0,
0x6a, 0xd7, 0xf3, 0x8f, 0x82, 0x93, 0x70, 0x97, 0xf4, 0x43, 0x21, 0xdf, 0xa3, 0xc8, 0x5e, 0xc2,
0x0b, 0xaa, 0x02, 0x3c, 0xca, 0xd8, 0xfd, 0x1a, 0xd4, 0xe3, 0x10, 0xa0, 0xe6, 0x49, 0xab, 0x45,
0x51, 0x40, 0x74, 0xa8, 0x09, 0x43, 0x31, 0x38, 0x09, 0xa5, 0x2f, 0x0d, 0x7f, 0x1b, 0x7f, 0x2d,
0x0f, 0x4c, 0x70, 0xf3, 0x0c, 0xc3, 0xcc, 0x04, 0x2f, 0xb3, 0x73, 0xc1, 0xcb, 0x87, 0xc0, 0x34,
0x02, 0x15, 0x53, 0xcd, 0x45, 0x31, 0xd5, 0x46, 0x4c, 0x2b, 0x43, 0xaa, 0x0f, 0x61, 0x45, 0x2a,
0xdb, 0xc9, 0xae, 0x12, 0x6b, 0x30, 0xd2, 0xba, 0x13, 0xfd, 0x55, 0x81, 0x4b, 0x61, 0xbc, 0x93,
0xaf, 0x0c, 0x03, 0x97, 0xca, 0x6c, 0xd7, 0x18, 0x70, 0xe1, 0xa5, 0x0c, 0x58, 0x9c, 0x63, 0x40,
0xcd, 0x75, 0x53, 0x4a, 0xba, 0x6e, 0x0c, 0xa8, 0xa9, 0xf0, 0x24, 0x65, 0x65, 0x90, 0x66, 0x59,
0x91, 0x31, 0x4a, 0xcc, 0xcc, 0xb8, 0x07, 0x0d, 0xe5, 0x5f, 0x89, 0x9c, 0x43, 0x94, 0x71, 0x20,
0xdd, 0x73, 0xdb, 0xca, 0x45, 0x94, 0x70, 0xc5, 0x57, 0x66, 0x5c, 0xf1, 0xef, 0xc1, 0x52, 0x20,
0xf8, 0xd7, 0x9a, 0xba, 0x32, 0xc1, 0x88, 0x0f, 0xd1, 0x0e, 0x2b, 0x99, 0x0d, 0x44, 0x1c, 0xc7,
0xf0, 0x79, 0xc7, 0x47, 0x2d, 0xc5, 0xf1, 0xf1, 0x38, 0x8e, 0xe4, 0x05, 0xe7, 0xce, 0x18, 0x95,
0x8a, 0x38, 0x95, 0x46, 0x0e, 0x70, 0xef, 0xdc, 0x19, 0x9b, 0x2a, 0x6c, 0x2c, 0x1e, 0x8c, 0xff,
0x93, 0x81, 0x86, 0xe0, 0x83, 0xc4, 0x12, 0xfb, 0x36, 0xa0, 0x30, 0x78, 0xc5, 0x15, 0x56, 0x11,
0xb4, 0x6a, 0x81, 0x7d, 0x04, 0xb8, 0x62, 0x2c, 0x61, 0x74, 0xca, 0xf5, 0xd5, 0x4c, 0xae, 0xaf,
0x58, 0x86, 0xee, 0xdd, 0x20, 0xe3, 0x44, 0x40, 0xd8, 0xb7, 0xa1, 0x2c, 0x18, 0x13, 0xb9, 0x44,
0xe6, 0x80, 0x29, 0xd5, 0x2c, 0x65, 0x8d, 0x88, 0xa2, 0x13, 0xf9, 0x98, 0x16, 0x7c, 0xcd, 0xa7,
0x04, 0x5f, 0xb5, 0x05, 0xbc, 0x07, 0xf0, 0x84, 0x5f, 0xed, 0x7b, 0x03, 0x34, 0x89, 0x6f, 0x03,
0x08, 0x5e, 0x3e, 0xb5, 0xc7, 0x8e, 0xf4, 0xe8, 0x14, 0xcc, 0xf2, 0x33, 0x7e, 0xb5, 0x8b, 0x00,
0x31, 0x91, 0x02, 0x1d, 0xaf, 0xe2, 0x82, 0x59, 0x7a, 0xc6, 0xaf, 0x68, 0x09, 0x5b, 0x50, 0x7b,
0xc2, 0xaf, 0x76, 0x38, 0x69, 0xa1, 0x9e, 0x2f, 0x98, 0xc8, 0xb7, 0x9f, 0x0b, 0xb5, 0x33, 0x11,
0x38, 0xad, 0xf8, 0xf6, 0xf3, 0x27, 0xfc, 0x4a, 0x05, 0x71, 0x8b, 0x02, 0x3f, 0xf2, 0x06, 0x72,
0xdf, 0x54, 0x29, 0x20, 0x71, 0xa7, 0xcc, 0x85, 0x67, 0xf8, 0xdb, 0xf8, 0x8b, 0x0c, 0xd4, 0x44,
0xff, 0x51, 0x2c, 0x8b, 0x29, 0x53, 0x99, 0x44, 0x99, 0x38, 0x93, 0xe8, 0x91, 0x94, 0x6a, 0x24,
0xe3, 0xb3, 0xd7, 0xcb, 0x78, 0x9c, 0x1b, 0x12, 0xf0, 0x1f, 0x40, 0x99, 0x96, 0xa5, 0x58, 0xe7,
0xb9, 0xc4, 0x04, 0x27, 0x5e, 0xc8, 0x2c, 0x21, 0xd9, 0x13, 0x4a, 0x5c, 0xd0, 0xbc, 0x83, 0x34,
0xc4, 0x65, 0x3f, 0xf2, 0x09, 0xa6, 0x4c, 0x43, 0xe1, 0x9a, 0xc4, 0x05, 0xdd, 0xf5, 0xb6, 0x30,
0xe7, 0x7a, 0x3b, 0x84, 0x92, 0x98, 0x6a, 0x7c, 0xd9, 0x94, 0x4a, 0x33, 0x69, 0x95, 0x0a, 0x4d,
0xc0, 0x16, 0x9b, 0x82, 0x10, 0x74, 0x59, 0xa9, 0x09, 0xd8, 0x01, 0x3f, 0x42, 0x61, 0x97, 0x81,
0x8a, 0xb6, 0x02, 0xd0, 0x7b, 0x19, 0x8d, 0x17, 0x2d, 0x97, 0x24, 0x8b, 0x27, 0x06, 0x7c, 0xef,
0x86, 0x59, 0x1b, 0x24, 0x66, 0x60, 0x53, 0xf2, 0x2a, 0x96, 0xcc, 0x26, 0x92, 0x9e, 0x54, 0xc7,
0x15, 0x83, 0x8a, 0xdf, 0x5b, 0x0b, 0x90, 0x17, 0xa4, 0xc6, 0xc7, 0xb0, 0xa4, 0x75, 0x83, 0xfc,
0x00, 0xaf, 0xfa, 0x86, 0xc6, 0xaf, 0x44, 0x85, 0x45, 0x1b, 0x14, 0x5f, 0x52, 0x49, 0x20, 0x7c,
0x48, 0x2f, 0x2e, 0x93, 0x4d, 0x08, 0x24, 0xc8, 0x5e, 0x39, 0x31, 0xe1, 0xd7, 0x60, 0x59, 0xab,
0x7d, 0xd7, 0x71, 0xed, 0x91, 0xf3, 0x43, 0xdc, 0xf0, 0x03, 0xe7, 0xcc, 0x9d, 0xa9, 0x9f, 0x40,
0x5f, 0xa9, 0xfe, 0x7f, 0x98, 0x85, 0x15, 0xd9, 0x00, 0xa6, 0xf5, 0x39, 0x42, 0x8b, 0x3b, 0x08,
0xce, 0xd8, 0xb7, 0xa1, 0x26, 0xc6, 0xc6, 0xf2, 0xf9, 0x99, 0x13, 0x84, 0x5c, 0xc5, 0xb5, 0x52,
0x04, 0x97, 0xd8, 0xcc, 0x05, 0xa9, 0x29, 0x29, 0xd9, 0xc7, 0x50, 0xc1, 0xa2, 0xe4, 0x67, 0x91,
0x13, 0xd1, 0x9c, 0x2f, 0x48, 0x03, 0xbd, 0x77, 0xc3, 0x84, 0x20, 0x1e, 0xf6, 0x8f, 0xa1, 0x82,
0x73, 0x78, 0x81, 0x03, 0x39, 0x23, 0xaa, 0xe6, 0x06, 0x5a, 0x14, 0x9e, 0xc4, 0xc3, 0xde, 0x82,
0x1a, 0x09, 0x2b, 0x39, 0x4e, 0x32, 0x5d, 0x68, 0x63, 0xbe, 0xb8, 0x1a, 0x49, 0xd1, 0xf9, 0x89,
0xf6, 0xbc, 0x55, 0x86, 0x62, 0xe8, 0x3b, 0x67, 0x67, 0xdc, 0x37, 0xd6, 0xa2, 0xa1, 0x11, 0x52,
0x98, 0xf7, 0x42, 0x3e, 0x11, 0xba, 0xb9, 0xf1, 0xef, 0x32, 0x50, 0x91, 0x72, 0xf5, 0x27, 0x0e,
0xa6, 0x6d, 0x68, 0x99, 0xb5, 0xe4, 0xd2, 0x89, 0x13, 0x69, 0xdf, 0x81, 0xc5, 0xb1, 0xd0, 0xd3,
0x85, 0x1d, 0x99, 0x88, 0xa4, 0xd5, 0x15, 0x58, 0xaa, 0xc9, 0x9b, 0xb0, 0x8c, 0x5a, 0x73, 0x60,
0x85, 0xce, 0xc8, 0x52, 0x48, 0x99, 0xc5, 0xba, 0x44, 0xa8, 0xbe, 0x33, 0x3a, 0x90, 0x08, 0xa1,
0x3c, 0x06, 0xa1, 0x7d, 0xc6, 0xe5, 0xda, 0xa6, 0x07, 0xa3, 0x09, 0x6b, 0x33, 0x26, 0xa4, 0xb2,
0x8f, 0xff, 0xef, 0x12, 0xac, 0xcf, 0xa1, 0xa4, 0x9d, 0x1c, 0x45, 0x90, 0x46, 0xce, 0xf8, 0xc4,
0x8b, 0xfc, 0xab, 0x19, 0x2d, 0x82, 0xb4, 0x2f, 0x30, 0xca, 0xbf, 0xca, 0x61, 0x55, 0x31, 0x24,
0x3a, 0x48, 0x23, 0x2b, 0x33, 0x8b, 0x36, 0xd0, 0x07, 0xc9, 0x4d, 0x6c, 0xb6, 0x39, 0x05, 0xd7,
0x55, 0xa3, 0xe5, 0xc9, 0x1c, 0x2c, 0x60, 0xbf, 0x01, 0xcd, 0x88, 0xef, 0xa5, 0xda, 0xae, 0x99,
0xcc, 0xa2, 0xa5, 0xf7, 0x5f, 0xd2, 0x52, 0xc2, 0xb9, 0x87, 0xba, 0xd3, 0x9a, 0x5a, 0x32, 0x54,
0x61, 0xd4, 0xd6, 0x05, 0xbc, 0xae, 0xda, 0x42, 0x35, 0x7c, 0xbe, 0xc5, 0xfc, 0x2b, 0xbd, 0x1b,
0x3a, 0x2e, 0x13, 0xcd, 0x9a, 0xb7, 0x64, 0xc5, 0x11, 0x4a, 0x6f, 0xf7, 0x1c, 0xd6, 0x9e, 0xdb,
0x4e, 0xa8, 0xde, 0x51, 0xb3, 0xd8, 0x0b, 0xd8, 0xde, 0xa3, 0x97, 0xb4, 0xf7, 0x39, 0x15, 0x4e,
0x18, 0x26, 0x2b, 0xcf, 0xe7, 0x81, 0xc1, 0xc6, 0x3f, 0xcd, 0x41, 0x3d, 0x59, 0x8b, 0x10, 0x2c,
0x72, 0xb3, 0x51, 0xfa, 0xa6, 0x54, 0x82, 0xa5, 0xef, 0xbf, 0x4b, 0x7a, 0xe6, 0x7c, 0x54, 0x22,
0x9b, 0x12, 0x95, 0xd0, 0x83, 0x01, 0xb9, 0x97, 0x45, 0x5f, 0xf3, 0xaf, 0x14, 0x7d, 0x2d, 0xa4,
0x45, 0x5f, 0xaf, 0x0f, 0xd9, 0x2d, 0xfc, 0x44, 0x21, 0xbb, 0xe2, 0x0b, 0x43, 0x76, 0x5a, 0xa0,
0xb1, 0x74, 0x8d, 0x0b, 0x5f, 0x0b, 0x3d, 0xa6, 0x84, 0xec, 0xca, 0x5f, 0x21, 0x64, 0xb7, 0xf1,
0x17, 0x19, 0x60, 0xf3, 0xab, 0x83, 0x7d, 0x42, 0x01, 0x1f, 0x97, 0x8f, 0xa4, 0xe4, 0xfe, 0xfa,
0xab, 0xad, 0x30, 0xc5, 0x10, 0xaa, 0x34, 0x7b, 0x00, 0xcb, 0x7a, 0xae, 0xbd, 0x6e, 0xb5, 0xd7,
0x4c, 0xa6, 0xa3, 0x62, 0xdf, 0x8e, 0x16, 0xea, 0xce, 0xbf, 0x34, 0xd4, 0x5d, 0x78, 0x69, 0xa8,
0x7b, 0x21, 0x19, 0xea, 0xde, 0xf8, 0x4f, 0x19, 0x58, 0x4e, 0x61, 0xe2, 0x9f, 0xdd, 0x3b, 0x0b,
0xde, 0x4b, 0x88, 0xb5, 0xac, 0xe4, 0x3d, 0x5d, 0xa2, 0xed, 0x2b, 0x7f, 0xa0, 0x98, 0x8a, 0x40,
0xee, 0x54, 0xf7, 0x5f, 0x26, 0x5d, 0xe2, 0x12, 0xa6, 0x5e, 0x7c, 0xe3, 0xf7, 0xb2, 0x50, 0xd1,
0x90, 0x62, 0x14, 0x89, 0x65, 0xb5, 0x0c, 0x23, 0xd2, 0x0c, 0xd1, 0xe7, 0x70, 0x07, 0x64, 0xd4,
0x83, 0xf0, 0xb4, 0xb8, 0xa4, 0x1a, 0x88, 0x04, 0x9b, 0xb0, 0xac, 0x82, 0x71, 0x3c, 0x4e, 0x24,
0x94, 0x7b, 0xcd, 0x92, 0x0c, 0xc9, 0xf1, 0x28, 0x2f, 0x91, 0x3d, 0x50, 0xe6, 0x60, 0x3c, 0x77,
0xc8, 0xea, 0x14, 0x52, 0x58, 0xa2, 0x05, 0xa2, 0x26, 0x51, 0xf0, 0xf9, 0x07, 0xb0, 0xaa, 0x96,
0x47, 0xb2, 0x04, 0x45, 0x19, 0x98, 0x5c, 0x1c, 0x7a, 0x91, 0xef, 0xc1, 0xed, 0x99, 0x3e, 0xcd,
0x14, 0xa5, 0x8c, 0xd7, 0x9b, 0x89, 0xde, 0xe9, 0x35, 0x6c, 0xfc, 0x08, 0x6a, 0x09, 0x41, 0xf9,
0xb3, 0x9b, 0xf2, 0x59, 0x3f, 0x0f, 0x8d, 0xa8, 0xee, 0xe7, 0xd9, 0xf8, 0xdf, 0x39, 0x60, 0xf3,
0xb2, 0xfa, 0xe7, 0xd9, 0x85, 0x79, 0xc6, 0xcc, 0xa5, 0x30, 0xe6, 0xff, 0x37, 0xfd, 0xe1, 0x3d,
0x58, 0xf2, 0xf9, 0xc0, 0xbb, 0xe0, 0xbe, 0x16, 0x51, 0xa5, 0xc5, 0xd9, 0x88, 0x10, 0xaa, 0x17,
0x1f, 0xcd, 0x66, 0x76, 0x94, 0x12, 0x87, 0x48, 0x34, 0x05, 0x6a, 0x26, 0xc1, 0xe3, 0x18, 0x16,
0x6c, 0x77, 0x70, 0xee, 0xf9, 0x52, 0x0e, 0xfe, 0xc2, 0x57, 0xde, 0x3e, 0x37, 0x5b, 0x58, 0x1e,
0xb5, 0x36, 0x53, 0x56, 0x66, 0x7c, 0x00, 0x15, 0x0d, 0xcc, 0xca, 0x50, 0xd8, 0xef, 0x1c, 0x6c,
0x1d, 0x36, 0x6e, 0xb0, 0x1a, 0x94, 0xcd, 0xf6, 0xf6, 0xe1, 0x67, 0x6d, 0xb3, 0xbd, 0xd3, 0xc8,
0xb0, 0x12, 0xe4, 0xf7, 0x0f, 0x7b, 0xfd, 0x46, 0xd6, 0xd8, 0x80, 0xa6, 0xac, 0x71, 0x3e, 0xa8,
0xf1, 0x5b, 0xf9, 0xc8, 0x5d, 0x88, 0x48, 0x69, 0xa2, 0x7f, 0x03, 0xaa, 0xba, 0x7a, 0x23, 0x39,
0x62, 0x26, 0xa8, 0x2f, 0x8c, 0x73, 0x4f, 0x93, 0xd5, 0xdb, 0x40, 0x21, 0xdd, 0x61, 0x54, 0x2c,
0x9b, 0xd0, 0x5b, 0x53, 0xc2, 0x87, 0x68, 0xfc, 0x24, 0xd8, 0xf0, 0x2f, 0x41, 0x3d, 0xe9, 0xc0,
0x97, 0x12, 0x29, 0xcd, 0xe0, 0x14, 0xa5, 0x13, 0x1e, 0x7d, 0xf6, 0x3d, 0x68, 0xcc, 0x06, 0x00,
0xa4, 0xf2, 0x7c, 0x4d, 0xf9, 0x45, 0x27, 0x19, 0x13, 0x60, 0x7b, 0xb0, 0x92, 0xa6, 0xe0, 0x21,
0x7f, 0x5c, 0xef, 0xa4, 0x60, 0xf3, 0x4a, 0x1c, 0xfb, 0x96, 0x0c, 0x04, 0x15, 0x70, 0xfa, 0xdf,
0x4a, 0xb6, 0xaf, 0x0d, 0xf6, 0x26, 0xfd, 0xd3, 0x42, 0x42, 0x17, 0x00, 0x31, 0x8c, 0x35, 0xa0,
0x7a, 0x78, 0xd4, 0xee, 0x5a, 0xdb, 0x7b, 0xad, 0x6e, 0xb7, 0xbd, 0xdf, 0xb8, 0xc1, 0x18, 0xd4,
0x31, 0x98, 0xbd, 0x13, 0xc1, 0x32, 0x02, 0x26, 0x03, 0x72, 0x0a, 0x96, 0x65, 0x2b, 0xd0, 0xe8,
0x74, 0x67, 0xa0, 0x39, 0xd6, 0x84, 0x95, 0xa3, 0x36, 0xc5, 0xbf, 0x13, 0xf5, 0xe6, 0x85, 0xd1,
0x20, 0x5f, 0x57, 0x18, 0x0d, 0x9f, 0xdb, 0xa3, 0x11, 0x0f, 0xe5, 0x3a, 0x50, 0xba, 0xf4, 0x6f,
0x67, 0x60, 0x75, 0x06, 0x11, 0x9f, 0xf7, 0x20, 0x4d, 0x3a, 0xa9, 0x43, 0x57, 0x11, 0xa8, 0x56,
0xd3, 0x7b, 0xb0, 0x14, 0x39, 0x9e, 0x66, 0x76, 0xa5, 0x46, 0x84, 0x50, 0xc4, 0x0f, 0x60, 0x59,
0xf3, 0x5f, 0xcd, 0xc8, 0x0a, 0xa6, 0xa1, 0x64, 0x01, 0x63, 0x3d, 0xca, 0xab, 0x9f, 0xe9, 0xf5,
0x10, 0xd6, 0x66, 0x11, 0x71, 0x9c, 0x2c, 0xd9, 0x5f, 0xf5, 0xc8, 0x1e, 0xce, 0x30, 0x42, 0xb2,
0xb7, 0xfa, 0x84, 0xab, 0xe6, 0x7f, 0x7f, 0x01, 0xd8, 0xa7, 0x53, 0xee, 0x5f, 0xe1, 0x79, 0x8e,
0xe0, 0x65, 0x09, 0x8e, 0xca, 0xd3, 0x92, 0x7d, 0xa5, 0x33, 0x5b, 0x69, 0x67, 0xa6, 0xf2, 0x2f,
0x3f, 0x33, 0x55, 0x78, 0xd9, 0x99, 0xa9, 0x37, 0xa1, 0xe6, 0x9c, 0xb9, 0x9e, 0x10, 0x85, 0x42,
0x13, 0x0e, 0x9a, 0x0b, 0x77, 0x73, 0xf7, 0xaa, 0x66, 0x55, 0x02, 0x85, 0x1e, 0x1c, 0xb0, 0x8f,
0x63, 0x22, 0x3e, 0x3c, 0xc3, 0x13, 0x82, 0xba, 0x10, 0x6c, 0x0f, 0xcf, 0xb8, 0x74, 0x2c, 0xa1,
0xa5, 0xa1, 0x0a, 0x0b, 0x78, 0xc0, 0xde, 0x82, 0x7a, 0xe0, 0x4d, 0x85, 0x61, 0xa1, 0x86, 0x81,
0x02, 0x65, 0x55, 0x82, 0x1e, 0xa9, 0xb0, 0xe9, 0xf2, 0x34, 0xe0, 0xd6, 0xd8, 0x09, 0x02, 0xa1,
0x9e, 0x0d, 0x3c, 0x37, 0xf4, 0xbd, 0x91, 0x8c, 0x7d, 0x2d, 0x4d, 0x03, 0x7e, 0x40, 0x98, 0x6d,
0x42, 0xb0, 0x6f, 0xc6, 0x5d, 0x9a, 0xd8, 0x8e, 0x1f, 0x34, 0x01, 0xbb, 0xa4, 0xde, 0x14, 0xf5,
0x77, 0xdb, 0xf1, 0xa3, 0xbe, 0x88, 0x87, 0x60, 0xe6, 0x2c, 0x57, 0x65, 0xf6, 0x2c, 0xd7, 0xaf,
0xa7, 0x9f, 0xe5, 0xaa, 0x61, 0xd5, 0x0f, 0x65, 0xd5, 0xf3, 0x53, 0xfc, 0x95, 0x8e, 0x74, 0xcd,
0x1f, 0x51, 0xab, 0x7f, 0x95, 0x23, 0x6a, 0x8b, 0x69, 0x47, 0xd4, 0x3e, 0x80, 0x0a, 0x1e, 0x1e,
0xb2, 0xce, 0x1d, 0xa1, 0xc3, 0x51, 0x2c, 0xaf, 0xa1, 0x9f, 0x2e, 0xda, 0x73, 0xdc, 0xd0, 0x04,
0x5f, 0xfd, 0x0c, 0xe6, 0x4f, 0x8b, 0x2d, 0xfd, 0x1c, 0x4f, 0x8b, 0xc9, 0x43, 0x4e, 0x9b, 0x50,
0x52, 0xf3, 0xc4, 0x18, 0xe4, 0x4f, 0x7d, 0x6f, 0xac, 0x62, 0x1c, 0xe2, 0x37, 0xab, 0x43, 0x36,
0xf4, 0x64, 0xe1, 0x6c, 0xe8, 0x19, 0xbf, 0x0a, 0x15, 0x8d, 0xd5, 0xd8, 0x1b, 0xe4, 0x97, 0x14,
0xb6, 0x99, 0xd4, 0x2d, 0x69, 0x14, 0xcb, 0x12, 0xda, 0x19, 0x0a, 0x79, 0x33, 0x74, 0x7c, 0x8e,
0xe7, 0x3a, 0x2d, 0x9f, 0x5f, 0x70, 0x3f, 0x50, 0x31, 0xa7, 0x46, 0x84, 0x30, 0x09, 0x6e, 0xfc,
0x1a, 0x2c, 0x27, 0xe6, 0x56, 0x8a, 0x88, 0xb7, 0x60, 0x01, 0xc7, 0x4d, 0x25, 0x0d, 0x24, 0x4f,
0x6d, 0x49, 0x1c, 0x9e, 0x61, 0xa5, 0x70, 0x99, 0x35, 0xf1, 0xbd, 0x13, 0x6c, 0x24, 0x63, 0x56,
0x24, 0xec, 0xc8, 0xf7, 0x4e, 0x8c, 0x3f, 0xcd, 0x41, 0x6e, 0xcf, 0x9b, 0xe8, 0x49, 0x6c, 0x99,
0xb9, 0x24, 0x36, 0x69, 0x70, 0x5a, 0x91, 0x41, 0x29, 0x75, 0x76, 0x0c, 0x14, 0x29, 0xa3, 0xf2,
0x1e, 0xd4, 0x85, 0x9c, 0x08, 0x3d, 0x61, 0xb1, 0x3f, 0xb7, 0x7d, 0x52, 0x88, 0x73, 0xb4, 0xf8,
0xec, 0x71, 0xd8, 0xf7, 0x76, 0x09, 0xce, 0x56, 0x20, 0x17, 0x99, 0x2f, 0x88, 0x16, 0x8f, 0x6c,
0x0d, 0x16, 0x30, 0x9b, 0xf9, 0x4a, 0x06, 0xbd, 0xe5, 0x13, 0xfb, 0x3a, 0x2c, 0x27, 0xeb, 0x25,
0x51, 0x24, 0x75, 0x23, 0xbd, 0x62, 0x94, 0x49, 0x37, 0x41, 0xc8, 0x11, 0xa2, 0x91, 0xc9, 0x35,
0xa7, 0x9c, 0x23, 0x4a, 0x13, 0x7a, 0xa5, 0x84, 0xd0, 0xbb, 0x03, 0x95, 0x70, 0x74, 0x61, 0x4d,
0xec, 0xab, 0x91, 0x67, 0x0f, 0xe5, 0xfa, 0x86, 0x70, 0x74, 0x71, 0x44, 0x10, 0xf6, 0x00, 0x60,
0x3c, 0x99, 0xc8, 0xb5, 0x87, 0xc1, 0x8f, 0x98, 0x95, 0x0f, 0x8e, 0x8e, 0x88, 0xe5, 0xcc, 0xf2,
0x78, 0x32, 0xa1, 0x9f, 0x6c, 0x07, 0xea, 0xa9, 0x67, 0x2f, 0x6f, 0xab, 0xe4, 0x5b, 0x6f, 0xb2,
0x99, 0xb2, 0x38, 0x6b, 0x03, 0x1d, 0xb6, 0xf1, 0x3d, 0x60, 0x3f, 0xe5, 0x09, 0xc8, 0x3e, 0x94,
0xa3, 0xfe, 0xe9, 0x07, 0x08, 0x31, 0x9d, 0xbe, 0x92, 0x38, 0x40, 0xd8, 0x1a, 0x0e, 0x7d, 0x21,
0x17, 0x69, 0xc3, 0x8c, 0x44, 0x3e, 0x68, 0x3b, 0x66, 0x8b, 0xe4, 0xbe, 0xf1, 0xdf, 0x32, 0x50,
0xa0, 0xd3, 0x8c, 0x6f, 0xc3, 0x22, 0xd1, 0x47, 0x09, 0x81, 0x32, 0x54, 0x4e, 0xfb, 0x6e, 0x5f,
0xe6, 0x02, 0x8a, 0x65, 0xa1, 0x9d, 0xe5, 0xce, 0x46, 0x33, 0xaf, 0x9d, 0xe7, 0xbe, 0x03, 0xe5,
0xa8, 0x69, 0x8d, 0x75, 0x4a, 0xaa, 0x65, 0xf6, 0x3a, 0xe4, 0xcf, 0xbd, 0x89, 0xf2, 0xfc, 0x40,
0x3c, 0x92, 0x26, 0xc2, 0xe3, 0xbe, 0x88, 0x36, 0xa8, 0xf3, 0xd2, 0x63, 0x11, 0x35, 0x82, 0x6c,
0x30, 0xff, 0x8e, 0x0b, 0x29, 0xef, 0x78, 0x0c, 0x8b, 0x42, 0x0e, 0x68, 0x39, 0x2d, 0xd7, 0x6f,
0x9a, 0xef, 0x0a, 0x0d, 0x6f, 0x30, 0x9a, 0x0e, 0xb9, 0xee, 0x7b, 0xc3, 0x04, 0x38, 0x09, 0x57,
0x9a, 0xb5, 0xf1, 0xfb, 0x19, 0x92, 0x2f, 0xa2, 0x5e, 0x76, 0x0f, 0xf2, 0x62, 0x7f, 0x9b, 0xf1,
0xc4, 0x47, 0xe7, 0x1a, 0x04, 0x9d, 0x89, 0x14, 0x62, 0xea, 0x30, 0x6a, 0xaf, 0xd7, 0x5e, 0x33,
0x2b, 0xee, 0x74, 0x1c, 0xb9, 0xae, 0xbe, 0xa6, 0x5e, 0x6b, 0xc6, 0xed, 0x43, 0x6f, 0x1f, 0x2d,
0xd3, 0x4d, 0x2d, 0x93, 0x2e, 0x9f, 0xd8, 0x31, 0x95, 0x16, 0x38, 0x3c, 0xe3, 0x5a, 0x06, 0xdd,
0x1f, 0x66, 0xa1, 0x96, 0xe8, 0x11, 0xa6, 0x12, 0x8a, 0x0d, 0x80, 0x02, 0x4b, 0x72, 0xbe, 0x41,
0x80, 0xa4, 0xa2, 0xae, 0x8d, 0x53, 0x36, 0x31, 0x4e, 0x51, 0x72, 0x4e, 0x4e, 0x4f, 0xce, 0x79,
0x08, 0xe5, 0xf8, 0x0c, 0x7f, 0xb2, 0x4b, 0xa2, 0x3d, 0x75, 0xba, 0x23, 0x26, 0x8a, 0xd3, 0x79,
0x0a, 0x7a, 0x3a, 0xcf, 0x77, 0xb5, 0xec, 0x8f, 0x05, 0xac, 0xc6, 0x48, 0x1b, 0xd1, 0x9f, 0x4b,
0xee, 0x87, 0xf1, 0x31, 0x54, 0xb4, 0xce, 0xeb, 0x59, 0x1e, 0x99, 0x44, 0x96, 0x47, 0x74, 0x0e,
0x2b, 0x1b, 0x9f, 0xc3, 0x32, 0xfe, 0x7a, 0x16, 0x6a, 0x62, 0x7d, 0x39, 0xee, 0xd9, 0x91, 0x37,
0x72, 0x06, 0x18, 0x68, 0x8a, 0x56, 0x98, 0x54, 0xb4, 0xd4, 0x3a, 0x93, 0x4b, 0x8c, 0xf4, 0x2c,
0xfd, 0xb8, 0x29, 0x09, 0xe9, 0xe8, 0xb8, 0xa9, 0x01, 0x35, 0x21, 0x18, 0x31, 0x64, 0x14, 0xdf,
0x0f, 0x60, 0x56, 0x4e, 0x39, 0xdf, 0xb2, 0x03, 0x92, 0x90, 0x5f, 0x87, 0x65, 0x41, 0x83, 0x27,
0xed, 0xc6, 0xce, 0x68, 0xe4, 0x10, 0x25, 0x39, 0x9a, 0x1a, 0xa7, 0x9c, 0x9b, 0x76, 0xc8, 0x0f,
0x04, 0x42, 0x5e, 0x27, 0x50, 0x1a, 0x3a, 0x81, 0x7d, 0x12, 0x27, 0x7c, 0x46, 0xcf, 0x18, 0x59,
0xb6, 0x2f, 0xb5, 0xc8, 0x32, 0x39, 0x20, 0x2a, 0x63, 0xfb, 0x32, 0x8a, 0x2c, 0xcf, 0x70, 0x52,
0x71, 0x96, 0x93, 0x8c, 0x7f, 0x9b, 0x85, 0x8a, 0xc6, 0x96, 0xaf, 0xb2, 0xbb, 0xde, 0x9e, 0x0b,
0x0c, 0x96, 0xf5, 0x18, 0xe0, 0x9b, 0xc9, 0x26, 0x31, 0xf7, 0x85, 0x2e, 0x2e, 0xd0, 0x18, 0xf8,
0x16, 0x94, 0xc5, 0xaa, 0xfb, 0x00, 0x5d, 0xb0, 0xf2, 0xe2, 0x0e, 0x04, 0x1c, 0x4d, 0x4f, 0x14,
0xf2, 0x11, 0x22, 0x0b, 0x31, 0xf2, 0x91, 0x40, 0xbe, 0x28, 0x05, 0xfb, 0x23, 0xa8, 0xca, 0x5a,
0x71, 0x4e, 0xf1, 0x75, 0xe3, 0x55, 0x9f, 0x98, 0x6f, 0xb3, 0x42, 0xcd, 0xd1, 0xe4, 0xcb, 0x82,
0x8f, 0x54, 0xc1, 0xd2, 0xcb, 0x0a, 0x3e, 0xa2, 0x07, 0x63, 0x37, 0xca, 0x6a, 0xc7, 0xbc, 0x2b,
0x25, 0xc7, 0x1e, 0xc0, 0xb2, 0x12, 0x57, 0x53, 0xd7, 0x76, 0x5d, 0x6f, 0xea, 0x0e, 0xb8, 0x3a,
0xa0, 0xc5, 0x24, 0xea, 0x38, 0xc6, 0x18, 0xc3, 0xe8, 0x04, 0x2f, 0xe5, 0x6f, 0xdd, 0x87, 0x02,
0xe9, 0xe5, 0xa4, 0x7c, 0xa4, 0x0b, 0x2e, 0x22, 0x61, 0xf7, 0xa0, 0x40, 0xea, 0x79, 0xf6, 0x5a,
0x61, 0x43, 0x04, 0x46, 0x0b, 0x98, 0x28, 0x78, 0xc0, 0x43, 0xdf, 0x19, 0x04, 0xf1, 0xd9, 0xaf,
0x82, 0xb0, 0x3f, 0xa9, 0xad, 0xd8, 0x73, 0x1b, 0x53, 0xa2, 0x8d, 0x4a, 0x34, 0x62, 0x63, 0x5a,
0x4e, 0xd4, 0x21, 0xd5, 0xa5, 0x11, 0xac, 0x9d, 0xf0, 0xf0, 0x39, 0xe7, 0xae, 0x2b, 0x94, 0xa1,
0x01, 0x77, 0x43, 0xdf, 0x1e, 0x89, 0x49, 0xa2, 0x37, 0x78, 0x3c, 0x57, 0x6b, 0xec, 0x03, 0xd9,
0x8a, 0x0b, 0x6e, 0x47, 0xe5, 0x48, 0x76, 0xac, 0x9e, 0xa4, 0xe1, 0x36, 0x7e, 0x05, 0x36, 0xae,
0x2f, 0x94, 0x72, 0xc2, 0xf3, 0x5e, 0x52, 0xaa, 0x44, 0x71, 0xc0, 0x91, 0x67, 0x87, 0xd4, 0x1b,
0x5d, 0xb2, 0x74, 0xa1, 0xa2, 0x61, 0xe2, 0xbd, 0x3f, 0x83, 0xca, 0x1d, 0x3d, 0x88, 0x1d, 0xc9,
0xf5, 0xfc, 0x31, 0xc6, 0xdd, 0x86, 0x56, 0x5c, 0x7b, 0xc6, 0x5c, 0x8c, 0xe1, 0x78, 0xa4, 0xdd,
0xd8, 0x84, 0x45, 0xd4, 0xec, 0xb5, 0x8d, 0xee, 0x45, 0xca, 0xa0, 0xb1, 0x02, 0xac, 0x4b, 0xb2,
0x4b, 0xcf, 0xf7, 0xfc, 0xcf, 0x39, 0xa8, 0x68, 0x60, 0xb1, 0x1b, 0x61, 0x02, 0xa0, 0x35, 0x74,
0xec, 0x31, 0x57, 0x41, 0xce, 0x9a, 0x59, 0x43, 0xe8, 0x8e, 0x04, 0x8a, 0xbd, 0xd8, 0xbe, 0x38,
0xb3, 0xbc, 0x69, 0x68, 0x0d, 0xf9, 0x99, 0xcf, 0x55, 0x2f, 0xab, 0xf6, 0xc5, 0xd9, 0xe1, 0x34,
0xdc, 0x41, 0x98, 0xa0, 0x12, 0xb2, 0x44, 0xa3, 0x92, 0x39, 0x6b, 0x63, 0xfb, 0x32, 0xa6, 0x92,
0x89, 0x93, 0xc4, 0x99, 0xf9, 0x28, 0x71, 0x92, 0xac, 0xc5, 0xd9, 0x0d, 0xb4, 0x30, 0xbf, 0x81,
0x7e, 0x13, 0xd6, 0x68, 0x03, 0x95, 0xa2, 0xd9, 0x9a, 0x59, 0xc9, 0x2b, 0x88, 0x95, 0x2f, 0xa9,
0xa9, 0xbd, 0x0d, 0xf1, 0x06, 0x4a, 0x2c, 0x05, 0xce, 0x0f, 0x49, 0x90, 0x65, 0x4c, 0xf1, 0x66,
0xb2, 0xf2, 0x9e, 0xf3, 0x43, 0x2e, 0x28, 0x31, 0x3b, 0x46, 0xa7, 0x94, 0x07, 0x2c, 0xc6, 0x8e,
0x3b, 0x4b, 0x69, 0x5f, 0x26, 0x29, 0xcb, 0x92, 0xd2, 0xbe, 0xd4, 0x29, 0x1f, 0xc3, 0xfa, 0x98,
0x0f, 0x1d, 0x3b, 0x59, 0xad, 0x15, 0x2b, 0x6e, 0x2b, 0x84, 0xd6, 0xca, 0xf4, 0xc8, 0x70, 0x17,
0xa3, 0xf1, 0x43, 0x6f, 0x7c, 0xe2, 0x90, 0xce, 0x42, 0xf9, 0x3a, 0x79, 0xb3, 0xee, 0x4e, 0xc7,
0x3f, 0x40, 0xb0, 0x28, 0x12, 0x18, 0x35, 0xa8, 0xf4, 0x42, 0x6f, 0xa2, 0xa6, 0xb9, 0x0e, 0x55,
0x7a, 0x94, 0xa7, 0x1e, 0x6f, 0xc1, 0x4d, 0x14, 0x09, 0x7d, 0x6f, 0xe2, 0x8d, 0xbc, 0xb3, 0xab,
0x84, 0x1f, 0xef, 0xdf, 0x67, 0x60, 0x39, 0x81, 0x95, 0xe2, 0xf5, 0x9b, 0x24, 0xcf, 0xa2, 0xa3,
0x6b, 0xb4, 0x06, 0x97, 0xb4, 0x35, 0x48, 0x84, 0x24, 0xcc, 0xd4, 0x71, 0xb6, 0x56, 0x7c, 0xe5,
0x82, 0x2a, 0x48, 0x22, 0xa5, 0x39, 0x2f, 0x52, 0x64, 0x79, 0x75, 0x19, 0x83, 0xaa, 0xe2, 0x17,
0xe4, 0x21, 0x98, 0xa1, 0x7c, 0xe5, 0x5c, 0xf2, 0x24, 0x81, 0xee, 0xf3, 0x53, 0x3d, 0x88, 0x1d,
0x81, 0x81, 0xf1, 0xcf, 0x32, 0x00, 0x71, 0xef, 0xf0, 0x2c, 0x43, 0xa4, 0xb7, 0x64, 0x30, 0x0d,
0x55, 0xd3, 0x51, 0xde, 0x80, 0x6a, 0x94, 0xb1, 0x1c, 0x6b, 0x42, 0x15, 0x05, 0x13, 0xea, 0xd0,
0x3b, 0xb0, 0x78, 0x36, 0xf2, 0x4e, 0x50, 0x63, 0x95, 0x7a, 0x0b, 0xe5, 0xab, 0xd5, 0x09, 0xac,
0xb4, 0x91, 0x58, 0x6f, 0xca, 0xa7, 0x26, 0x35, 0xeb, 0x5a, 0x90, 0xf1, 0x77, 0xb3, 0x51, 0xea,
0x66, 0x3c, 0x12, 0x2f, 0x36, 0xef, 0x7e, 0x92, 0x5c, 0x9a, 0x17, 0x85, 0x17, 0x3f, 0x86, 0xba,
0x4f, 0x9b, 0x92, 0xda, 0xb1, 0xf2, 0x2f, 0xd8, 0xb1, 0x6a, 0x7e, 0x42, 0xd3, 0x79, 0x17, 0x1a,
0xf6, 0xf0, 0x82, 0xfb, 0xa1, 0x83, 0xde, 0x7a, 0xd4, 0x8f, 0x65, 0xb2, 0xa4, 0x06, 0x47, 0x45,
0xf4, 0x1d, 0x58, 0x94, 0x27, 0x71, 0x23, 0x4a, 0x79, 0xb7, 0x4f, 0x0c, 0x16, 0x84, 0xc6, 0xbf,
0x54, 0xb9, 0xa2, 0xc9, 0xd9, 0x7d, 0xf1, 0xa8, 0xe8, 0x6f, 0x98, 0x9d, 0x0f, 0xa0, 0x4a, 0x46,
0x92, 0x41, 0x00, 0x29, 0x8f, 0x08, 0x28, 0x43, 0x00, 0xc9, 0x61, 0xcd, 0xbf, 0xca, 0xb0, 0x1a,
0xff, 0x31, 0x03, 0xc5, 0x3d, 0x6f, 0xb2, 0xe7, 0x50, 0x36, 0x3f, 0x2e, 0x93, 0x28, 0x46, 0xb5,
0x20, 0x1e, 0x31, 0xf1, 0xe7, 0x05, 0x07, 0xce, 0x52, 0xd5, 0xbc, 0x5a, 0x52, 0xcd, 0xfb, 0x2e,
0xdc, 0xc2, 0x10, 0xa0, 0xef, 0x4d, 0x3c, 0x5f, 0x2c, 0x55, 0x7b, 0x44, 0xea, 0x9e, 0xe7, 0x86,
0xe7, 0x4a, 0x76, 0xde, 0x3c, 0xe5, 0xfc, 0x48, 0xa3, 0x38, 0x88, 0x08, 0xf0, 0x48, 0xe7, 0x28,
0xbc, 0xb0, 0xc8, 0x42, 0x97, 0xfa, 0x28, 0x49, 0xd4, 0x45, 0x81, 0x68, 0x23, 0x1c, 0x35, 0x52,
0xe3, 0x5b, 0x50, 0x8e, 0x9c, 0x3d, 0xec, 0x3d, 0x28, 0x9f, 0x7b, 0x13, 0xe9, 0x11, 0xca, 0x24,
0x0e, 0xe5, 0xc9, 0xb7, 0x36, 0x4b, 0xe7, 0xf4, 0x23, 0x30, 0xfe, 0xb4, 0x08, 0xc5, 0x8e, 0x7b,
0xe1, 0x39, 0x03, 0xcc, 0x36, 0x1d, 0xf3, 0xb1, 0xa7, 0xae, 0x03, 0x10, 0xbf, 0x31, 0x37, 0x2b,
0xbe, 0xa1, 0x27, 0x27, 0x73, 0xb3, 0xa2, 0xbb, 0x79, 0x56, 0x61, 0xc1, 0xd7, 0xaf, 0xd8, 0x29,
0xf8, 0x98, 0xff, 0x1e, 0xed, 0x97, 0x05, 0xed, 0x3a, 0x05, 0x51, 0x17, 0x5d, 0xfd, 0x82, 0x43,
0x46, 0xc7, 0x33, 0xcb, 0x08, 0xc1, 0x01, 0x7b, 0x0d, 0x8a, 0xf2, 0x0c, 0x1c, 0x1d, 0x5a, 0xa2,
0x84, 0x75, 0x09, 0x42, 0x6e, 0xf0, 0x39, 0x85, 0x70, 0x23, 0x45, 0x36, 0x67, 0x56, 0x15, 0x70,
0x47, 0xf0, 0xda, 0x1d, 0xa8, 0x10, 0x3d, 0x91, 0x94, 0x64, 0x92, 0x26, 0x82, 0x90, 0x20, 0xe5,
0xa6, 0xaa, 0x72, 0xea, 0x4d, 0x55, 0x98, 0x4e, 0x1c, 0x49, 0x59, 0x7a, 0x45, 0xa0, 0xfb, 0x89,
0x34, 0xb8, 0xba, 0xe8, 0x4d, 0xfa, 0x54, 0xe8, 0xb4, 0xb2, 0xf2, 0xa9, 0xbc, 0x09, 0xb5, 0x53,
0x7b, 0x34, 0x3a, 0xb1, 0x07, 0xcf, 0xc8, 0x15, 0x50, 0x25, 0xef, 0xa7, 0x02, 0xa2, 0x2f, 0xe0,
0x0e, 0x54, 0xb4, 0x59, 0xc6, 0x0c, 0xcc, 0xbc, 0x09, 0xf1, 0xfc, 0xce, 0x7a, 0xf8, 0xea, 0xaf,
0xe0, 0xe1, 0xd3, 0x32, 0x51, 0x17, 0x93, 0x99, 0xa8, 0xb7, 0x50, 0x9a, 0xca, 0x94, 0xc3, 0x06,
0x5d, 0x86, 0x63, 0x0f, 0x87, 0x98, 0x72, 0x88, 0x8e, 0x2c, 0x1a, 0x3c, 0xc2, 0x2f, 0x91, 0x2d,
0x41, 0x30, 0x22, 0xb9, 0x4d, 0x6e, 0xea, 0x89, 0xed, 0x0c, 0xf1, 0xd0, 0x01, 0x79, 0x0f, 0x8a,
0xf6, 0x38, 0x3c, 0xb2, 0x9d, 0x21, 0xbb, 0x0b, 0x55, 0x85, 0xc6, 0xdd, 0x71, 0x99, 0xc6, 0x5f,
0xa2, 0xc5, 0x9e, 0x68, 0x40, 0x2d, 0xa2, 0x18, 0xc7, 0x47, 0x8e, 0x2b, 0x92, 0x04, 0xf9, 0xe0,
0x03, 0xcc, 0xf2, 0x09, 0x39, 0x1e, 0x2c, 0xae, 0x3f, 0xba, 0x15, 0x25, 0x1f, 0x20, 0x97, 0xaa,
0xff, 0x14, 0x1c, 0x23, 0x4a, 0xa1, 0xdc, 0x51, 0x8c, 0x6e, 0x2d, 0xa1, 0xff, 0x4a, 0x52, 0x8c,
0xd1, 0x11, 0x01, 0xfb, 0x96, 0x66, 0xbf, 0x36, 0x91, 0xf8, 0xb5, 0x99, 0xfa, 0xaf, 0x3b, 0x94,
0x75, 0x1b, 0xc0, 0x09, 0xc4, 0x2e, 0x13, 0x70, 0x77, 0x88, 0x67, 0x84, 0x4b, 0x66, 0xd9, 0x09,
0x9e, 0x10, 0xe0, 0x67, 0x6b, 0xd8, 0xb6, 0xa0, 0xaa, 0xbf, 0x26, 0x2b, 0x41, 0xfe, 0xf0, 0xa8,
0xdd, 0x6d, 0xdc, 0x60, 0x15, 0x28, 0xf6, 0xda, 0xfd, 0xfe, 0x3e, 0x46, 0xfa, 0xaa, 0x50, 0x8a,
0x0e, 0x32, 0x66, 0xc5, 0x53, 0x6b, 0x7b, 0xbb, 0x7d, 0xd4, 0x6f, 0xef, 0x34, 0x72, 0xdf, 0xcf,
0x97, 0xb2, 0x8d, 0x9c, 0xf1, 0x67, 0x39, 0xa8, 0x68, 0xa3, 0xf0, 0x62, 0x61, 0x7c, 0x1b, 0x00,
0x2d, 0xc9, 0x38, 0x23, 0x35, 0x6f, 0x96, 0x05, 0x84, 0x26, 0x5f, 0x8f, 0x51, 0xe4, 0xe8, 0x96,
0x25, 0x15, 0xa3, 0x78, 0x13, 0x6a, 0x74, 0x61, 0x91, 0x1e, 0xaf, 0x2d, 0x98, 0x55, 0x02, 0x4a,
0x51, 0x8d, 0x27, 0x9c, 0x91, 0x08, 0x8f, 0xd7, 0xc9, 0xeb, 0x4b, 0x08, 0x84, 0x07, 0xec, 0xf0,
0x74, 0x64, 0xe0, 0x8d, 0x2e, 0x38, 0x51, 0x90, 0x46, 0x58, 0x91, 0xb0, 0xbe, 0x3c, 0xab, 0x2d,
0xe5, 0xa1, 0x76, 0xc4, 0xb6, 0x60, 0x56, 0x09, 0x28, 0x1b, 0xfa, 0xba, 0x62, 0x20, 0xca, 0x5e,
0x59, 0x9f, 0xe7, 0x86, 0x04, 0xf3, 0xec, 0xcf, 0xb9, 0x11, 0xcb, 0xc8, 0x18, 0x5f, 0x9b, 0x2f,
0xf7, 0x72, 0x77, 0x22, 0x7b, 0x0f, 0xd8, 0x78, 0x32, 0xb1, 0x52, 0x1c, 0x7c, 0x79, 0x73, 0x71,
0x3c, 0x99, 0xf4, 0x35, 0xff, 0xd7, 0xcf, 0xc0, 0xf7, 0xf8, 0x05, 0xb0, 0x96, 0x58, 0xc0, 0xd8,
0xc5, 0xc8, 0x14, 0x8b, 0xc5, 0x72, 0x46, 0x17, 0xcb, 0x29, 0xd2, 0x2f, 0x9b, 0x2a, 0xfd, 0x5e,
0x24, 0x27, 0x8c, 0x5d, 0xa8, 0x1c, 0x69, 0xd7, 0xa1, 0xdd, 0x15, 0x3b, 0x84, 0xba, 0x08, 0x8d,
0xf6, 0x0e, 0xf2, 0x29, 0xfa, 0xf2, 0xfe, 0x33, 0xad, 0x37, 0x59, 0xad, 0x37, 0xc6, 0x3f, 0xc9,
0xd0, 0x55, 0x33, 0x51, 0xe7, 0xe3, 0x1b, 0xd8, 0x54, 0xf8, 0x2d, 0x3e, 0x09, 0x5f, 0x51, 0x61,
0x37, 0x79, 0x88, 0x1d, 0xbb, 0x66, 0x79, 0xa7, 0xa7, 0x01, 0x57, 0x39, 0x1e, 0x15, 0x84, 0x1d,
0x22, 0x48, 0x29, 0xdf, 0x42, 0xc3, 0x77, 0xa8, 0xfe, 0x40, 0x26, 0x76, 0x08, 0xe5, 0xfb, 0xc0,
0xbe, 0x94, 0xad, 0x06, 0x42, 0x05, 0x91, 0xf1, 0x01, 0x75, 0x58, 0x36, 0x7a, 0x36, 0xfe, 0x91,
0x3c, 0xac, 0x3f, 0x3b, 0xbe, 0xf7, 0xa1, 0x14, 0xd5, 0x9a, 0xdc, 0x61, 0x15, 0x65, 0x84, 0x17,
0xfb, 0x38, 0x3a, 0x43, 0x12, 0x3d, 0xa6, 0xc5, 0x85, 0x31, 0x9e, 0x8e, 0xd6, 0xeb, 0xf7, 0x81,
0x9d, 0x3a, 0xfe, 0x2c, 0x31, 0x2d, 0xb6, 0x06, 0x62, 0x34, 0x6a, 0xe3, 0x18, 0x96, 0x95, 0x94,
0xd0, 0x2c, 0x82, 0xe4, 0xe4, 0x65, 0x5e, 0x22, 0xe4, 0xb3, 0x73, 0x42, 0xde, 0xf8, 0xcd, 0x02,
0x14, 0xd5, 0xd5, 0x82, 0x69, 0xd7, 0xe1, 0x95, 0x93, 0xd7, 0xe1, 0x35, 0x13, 0x57, 0x27, 0xe1,
0xd4, 0xcb, 0xfd, 0xfe, 0x9d, 0xd9, 0x2d, 0x5b, 0x8b, 0x55, 0x24, 0xb6, 0x6d, 0x19, 0xab, 0x28,
0x24, 0x63, 0x15, 0x69, 0x57, 0x04, 0x92, 0xea, 0x39, 0x77, 0x45, 0xe0, 0x2d, 0x20, 0x3d, 0x42,
0x4b, 0x6e, 0x2b, 0x21, 0x40, 0xec, 0x39, 0x49, 0xb5, 0xa3, 0x34, 0xab, 0x76, 0xbc, 0xb2, 0x4a,
0xf0, 0x4d, 0x58, 0xa0, 0xeb, 0x35, 0xe4, 0xe1, 0x5f, 0xb5, 0x71, 0xc8, 0xb1, 0x52, 0xff, 0xe9,
0xc4, 0x83, 0x29, 0x69, 0xf5, 0xfb, 0xb6, 0x2a, 0x89, 0xfb, 0xb6, 0xf4, 0x18, 0x4a, 0x35, 0x19,
0x43, 0xb9, 0x07, 0x8d, 0x68, 0xe0, 0xd0, 0x23, 0xe9, 0x06, 0xf2, 0xe4, 0x60, 0x5d, 0xc1, 0x85,
0x34, 0xec, 0x06, 0xf1, 0xc6, 0x57, 0x4f, 0x6c, 0x7c, 0x42, 0x56, 0xb5, 0xc2, 0x90, 0x8f, 0x27,
0xa1, 0xda, 0xf8, 0xb4, 0x5b, 0x19, 0x69, 0xe6, 0x17, 0x71, 0xe6, 0xd5, 0xf4, 0x12, 0x77, 0x6c,
0x41, 0xfd, 0xd4, 0x76, 0x46, 0x53, 0x9f, 0x5b, 0x3e, 0xb7, 0x03, 0xcf, 0xc5, 0xc5, 0x1f, 0xef,
0xc1, 0xf2, 0x15, 0x77, 0x89, 0xc6, 0x44, 0x12, 0xb3, 0x76, 0xaa, 0x3f, 0xe2, 0x21, 0x26, 0x7d,
0x24, 0xc4, 0x96, 0x25, 0xcf, 0x10, 0x53, 0xae, 0x4a, 0xa7, 0x6b, 0xed, 0xee, 0x77, 0x3e, 0xd9,
0xeb, 0x37, 0x32, 0xe2, 0xb1, 0x77, 0xbc, 0xbd, 0xdd, 0x6e, 0xef, 0xe0, 0x16, 0x06, 0xb0, 0xb0,
0xdb, 0xea, 0xec, 0xcb, 0x0d, 0x2c, 0xdf, 0x28, 0x18, 0xbf, 0x9d, 0x85, 0x8a, 0xf6, 0x36, 0xec,
0x71, 0x34, 0x09, 0x74, 0x03, 0xd4, 0xed, 0xf9, 0x37, 0xde, 0x54, 0x12, 0x5e, 0x9b, 0x85, 0xe8,
0xfe, 0xc5, 0xec, 0xb5, 0xf7, 0x2f, 0xb2, 0xb7, 0x61, 0xd1, 0xa6, 0x1a, 0xa2, 0x41, 0x97, 0xce,
0x7d, 0x09, 0x96, 0x63, 0x8e, 0x19, 0xa4, 0xf1, 0x36, 0x25, 0xe8, 0xf2, 0x2a, 0x69, 0x33, 0xda,
0xa9, 0x70, 0x6e, 0x8a, 0x72, 0x64, 0x64, 0x30, 0x3e, 0xda, 0xf0, 0xe5, 0x78, 0x29, 0xb4, 0xf1,
0x21, 0x40, 0xdc, 0xe7, 0xe4, 0x10, 0xdd, 0x48, 0x0e, 0x51, 0x46, 0x1b, 0xa2, 0xac, 0xf1, 0x2f,
0xa4, 0x78, 0x92, 0xe3, 0x1d, 0xb9, 0xf3, 0xbe, 0x0e, 0xca, 0xc1, 0x68, 0x61, 0x22, 0xf7, 0x64,
0xc4, 0x43, 0x75, 0x61, 0xc1, 0x92, 0xc4, 0x74, 0x22, 0xc4, 0x9c, 0x38, 0xcd, 0xce, 0x8b, 0xd3,
0x37, 0xa0, 0x2a, 0x44, 0xa9, 0x64, 0x96, 0x40, 0x8a, 0xa4, 0xca, 0xd8, 0xbe, 0x54, 0x6d, 0x27,
0xe4, 0x68, 0x7e, 0x46, 0x8e, 0xfe, 0x4e, 0x86, 0xee, 0x0f, 0x89, 0x3b, 0x1a, 0x0b, 0xd2, 0xa8,
0xce, 0xa4, 0x20, 0x95, 0xa4, 0x66, 0x84, 0xbf, 0x46, 0x38, 0x66, 0xd3, 0x85, 0x63, 0xba, 0xd8,
0xcd, 0xa5, 0x8a, 0x5d, 0x63, 0x03, 0x9a, 0x3b, 0x5c, 0x0c, 0x45, 0x6b, 0x34, 0x9a, 0x19, 0x4b,
0xe3, 0x16, 0xdc, 0x4c, 0xc1, 0x49, 0xcf, 0xcc, 0xa7, 0xb0, 0xda, 0xa2, 0x8b, 0x15, 0x7e, 0x56,
0x07, 0x24, 0x8d, 0x26, 0xac, 0xcd, 0x56, 0x29, 0x1b, 0xdb, 0x85, 0xa5, 0x1d, 0x7e, 0x32, 0x3d,
0xdb, 0xe7, 0x17, 0x71, 0x43, 0x0c, 0xf2, 0xc1, 0xb9, 0xf7, 0x5c, 0x4e, 0x2e, 0xfe, 0xc6, 0xd4,
0x4b, 0x41, 0x63, 0x05, 0x13, 0x3e, 0x50, 0xde, 0x79, 0x84, 0xf4, 0x26, 0x7c, 0x60, 0x3c, 0x06,
0xa6, 0xd7, 0x23, 0x67, 0x42, 0x98, 0x4e, 0xd3, 0x13, 0x2b, 0xb8, 0x0a, 0x42, 0x3e, 0x56, 0x07,
0x03, 0x21, 0x98, 0x9e, 0xf4, 0x08, 0x62, 0xbc, 0x03, 0xd5, 0x23, 0xfb, 0xca, 0xe4, 0x5f, 0xc8,
0xf3, 0x77, 0xeb, 0x50, 0x9c, 0xd8, 0x57, 0x42, 0x66, 0x46, 0x81, 0x3a, 0x44, 0x1b, 0x7f, 0x90,
0x87, 0x05, 0xa2, 0x64, 0x77, 0xe9, 0x06, 0x63, 0xc7, 0x45, 0x99, 0xa5, 0x76, 0x0f, 0x0d, 0x34,
0xb7, 0xc1, 0x64, 0xe7, 0x37, 0x18, 0xe9, 0x55, 0x54, 0x37, 0x37, 0xa9, 0x90, 0x8a, 0x3b, 0x1d,
0xab, 0xeb, 0x9a, 0x92, 0xb7, 0x0b, 0xe4, 0xe3, 0x3b, 0xae, 0xe9, 0x64, 0x75, 0x32, 0xe8, 0x1d,
0x1b, 0x68, 0xd4, 0x3b, 0xb5, 0x6f, 0xca, 0xbd, 0x45, 0x07, 0xa5, 0x5a, 0x81, 0x45, 0x75, 0xa8,
0x34, 0x69, 0x05, 0xce, 0x59, 0x7b, 0xa5, 0x97, 0x5b, 0x7b, 0xe4, 0x6e, 0x7c, 0x81, 0xb5, 0x07,
0xaf, 0x60, 0xed, 0xbd, 0x42, 0xc0, 0xf9, 0x26, 0x94, 0x50, 0x19, 0xd2, 0xb6, 0x1a, 0xa1, 0x04,
0x89, 0xad, 0xe6, 0x23, 0xcd, 0x1e, 0xa2, 0x6c, 0x17, 0x4d, 0xd6, 0x9b, 0xfc, 0x8b, 0x9f, 0x4f,
0x20, 0xef, 0x29, 0x14, 0x25, 0x54, 0x30, 0xb4, 0x6b, 0x8f, 0xd5, 0xe5, 0x77, 0xf8, 0x5b, 0x0c,
0x1b, 0xde, 0xd8, 0xf5, 0xc5, 0xd4, 0xf1, 0xf9, 0x50, 0xdd, 0x6a, 0xe4, 0xe0, 0x1a, 0x15, 0x10,
0xf1, 0x82, 0xc2, 0x36, 0x73, 0xbd, 0xe7, 0xae, 0x94, 0x3d, 0x45, 0x27, 0x78, 0x22, 0x1e, 0x0d,
0x06, 0x0d, 0xbc, 0xfe, 0x72, 0xe2, 0xf9, 0x6a, 0x27, 0x37, 0x7e, 0x9c, 0x81, 0x86, 0x5c, 0x5d,
0x11, 0x4e, 0x37, 0x8d, 0x0a, 0xd7, 0x25, 0x67, 0xbc, 0xf8, 0x8e, 0x22, 0x03, 0x6a, 0xe8, 0x11,
0x8a, 0xb6, 0x75, 0xf2, 0x68, 0x55, 0x04, 0x70, 0x57, 0x6e, 0xed, 0xaf, 0x43, 0x45, 0x25, 0x86,
0x8f, 0x9d, 0x91, 0xba, 0xce, 0x9e, 0x32, 0xc3, 0x0f, 0x9c, 0x91, 0xd2, 0x0a, 0x7c, 0x5b, 0x1e,
0x72, 0xce, 0xa0, 0x56, 0x60, 0xda, 0x21, 0x37, 0xfe, 0x75, 0x06, 0x96, 0xb4, 0x57, 0x91, 0xeb,
0xf6, 0x3b, 0x50, 0x8d, 0xee, 0x9d, 0xe5, 0x91, 0x3a, 0xba, 0x9e, 0x14, 0x34, 0x71, 0xb1, 0xca,
0x20, 0x82, 0x04, 0xa2, 0x33, 0x43, 0xfb, 0x8a, 0xb2, 0x97, 0xa7, 0x63, 0x65, 0xf1, 0x0d, 0xed,
0xab, 0x5d, 0xce, 0x7b, 0xd3, 0xb1, 0xb0, 0xe7, 0x9f, 0x73, 0xfe, 0x2c, 0x22, 0x20, 0xf1, 0x09,
0x02, 0x26, 0x29, 0x0c, 0xa8, 0x8d, 0x3d, 0x37, 0x3c, 0x8f, 0x48, 0xa4, 0x2a, 0x8e, 0x40, 0xa2,
0x31, 0xfe, 0x24, 0x0b, 0xcb, 0xe4, 0x77, 0x94, 0xfe, 0x5e, 0x29, 0xba, 0x9a, 0xb0, 0x40, 0x2e,
0x58, 0x12, 0x5e, 0x7b, 0x37, 0x4c, 0xf9, 0xcc, 0xbe, 0xf9, 0x8a, 0xbe, 0x52, 0x75, 0x8e, 0xfa,
0x9a, 0xe1, 0xcf, 0xcd, 0x0f, 0xff, 0xf5, 0xc3, 0x9b, 0x16, 0xfd, 0x2d, 0xa4, 0x45, 0x7f, 0x5f,
0x25, 0xe6, 0x3a, 0x77, 0xe2, 0xb7, 0x28, 0x69, 0xb4, 0x13, 0xbf, 0x8f, 0x61, 0x3d, 0x41, 0x83,
0xd2, 0xda, 0x39, 0x75, 0xb8, 0xba, 0x95, 0x66, 0x45, 0xa3, 0xee, 0x29, 0xdc, 0x56, 0x11, 0x0a,
0xc1, 0xc0, 0x9b, 0x70, 0x63, 0x0d, 0x56, 0x92, 0xa3, 0x2a, 0xb7, 0x89, 0xdf, 0xcd, 0x40, 0x53,
0xe6, 0xea, 0x38, 0xee, 0xd9, 0x9e, 0x13, 0x84, 0x9e, 0x1f, 0xdd, 0xcf, 0x7a, 0x1b, 0x80, 0x2e,
0xdc, 0x47, 0x03, 0x5b, 0xde, 0xc3, 0x82, 0x10, 0x34, 0xaf, 0x6f, 0x42, 0x89, 0xbb, 0x43, 0x42,
0x12, 0x37, 0x14, 0xb9, 0x3b, 0x54, 0xc6, 0xf9, 0xdc, 0x56, 0x5a, 0x4b, 0x2a, 0x09, 0xf2, 0xd6,
0x03, 0x31, 0x3a, 0xfc, 0x02, 0xb7, 0xf4, 0x7c, 0x74, 0xeb, 0xc1, 0x81, 0x7d, 0x89, 0x99, 0xaf,
0x81, 0xf1, 0xf7, 0xb3, 0xb0, 0x18, 0xf7, 0x8f, 0xee, 0x54, 0x79, 0xf1, 0xed, 0x30, 0x77, 0x25,
0x3b, 0x38, 0xc2, 0xa8, 0xd1, 0xbc, 0xb1, 0x25, 0x5a, 0x9c, 0x1d, 0x97, 0x19, 0x50, 0x51, 0x14,
0xde, 0x34, 0xd4, 0xae, 0x49, 0x2c, 0x13, 0xc9, 0xe1, 0x34, 0x14, 0x56, 0xa8, 0x30, 0xc7, 0x1d,
0x57, 0xda, 0x81, 0x05, 0x7b, 0x1c, 0x76, 0xf0, 0xfb, 0x0d, 0x02, 0x2c, 0x8a, 0xd1, 0x44, 0x0a,
0x2a, 0x41, 0xdf, 0x20, 0xa3, 0x84, 0x66, 0x0e, 0x0d, 0x12, 0x5d, 0x63, 0xa7, 0x8b, 0xa8, 0x23,
0x8d, 0xfd, 0x75, 0xa8, 0x50, 0xe5, 0xf1, 0x01, 0xef, 0xbc, 0x59, 0xc6, 0x16, 0x10, 0x2f, 0x3d,
0x63, 0xde, 0x34, 0xe1, 0x0f, 0x00, 0x6a, 0x0a, 0x53, 0x61, 0xfe, 0x56, 0x06, 0x6e, 0xa6, 0x4c,
0x9b, 0x5c, 0xe5, 0xdb, 0xb0, 0x74, 0x1a, 0x21, 0xd5, 0xe8, 0xd2, 0x52, 0x5f, 0x53, 0x62, 0x35,
0x39, 0xa6, 0x66, 0xe3, 0x34, 0x09, 0x88, 0x2d, 0x51, 0x9a, 0xc1, 0xc4, 0xf5, 0x01, 0xa8, 0x12,
0xd1, 0x34, 0x92, 0x11, 0x78, 0x04, 0x1b, 0xed, 0x4b, 0x21, 0x31, 0xa2, 0xf4, 0xd9, 0xc1, 0xb3,
0xa9, 0x8a, 0x50, 0xcd, 0x78, 0xdd, 0x33, 0xaf, 0xe4, 0x75, 0x1f, 0xd2, 0x79, 0xe3, 0xa8, 0xae,
0x9f, 0xa4, 0x12, 0xdc, 0x40, 0x45, 0x99, 0x13, 0xac, 0x42, 0xdd, 0x23, 0x20, 0x40, 0x54, 0xa9,
0x11, 0xc0, 0xe2, 0xc1, 0x74, 0x14, 0x3a, 0xdb, 0x11, 0x88, 0x7d, 0x53, 0x96, 0xc1, 0x76, 0xd4,
0xa8, 0xa5, 0x36, 0x04, 0x51, 0x43, 0x38, 0x58, 0x63, 0x51, 0x91, 0x35, 0xdf, 0xde, 0xe2, 0x38,
0xd9, 0x82, 0x71, 0x13, 0xd6, 0xe3, 0x27, 0x1a, 0x36, 0xb5, 0xd5, 0xfc, 0xe3, 0x0c, 0xa5, 0xd9,
0x13, 0xae, 0xe7, 0xda, 0x93, 0xe0, 0xdc, 0x0b, 0x59, 0x1b, 0x96, 0x03, 0xc7, 0x3d, 0x1b, 0x71,
0xbd, 0xfa, 0x40, 0x0e, 0xc2, 0x6a, 0xb2, 0x6f, 0x54, 0x34, 0x30, 0x97, 0xa8, 0x44, 0x5c, 0x5b,
0xc0, 0xb6, 0xae, 0xeb, 0x64, 0xcc, 0x16, 0x33, 0xa3, 0x31, 0xdf, 0xf9, 0x0e, 0xd4, 0x93, 0x0d,
0xb1, 0x8f, 0xe4, 0x31, 0xfd, 0xb8, 0x57, 0xb9, 0x99, 0x33, 0xcc, 0x31, 0x43, 0x54, 0xe2, 0xb1,
0x0f, 0x8c, 0xbf, 0x93, 0x81, 0xa6, 0xc9, 0x05, 0xe7, 0x6a, 0xbd, 0x54, 0x3c, 0xf3, 0x9d, 0xb9,
0x5a, 0xaf, 0x7f, 0x57, 0x75, 0xfa, 0x5f, 0xf5, 0xe8, 0xfd, 0x6b, 0x27, 0x63, 0xef, 0xc6, 0xdc,
0x1b, 0x6d, 0x95, 0x60, 0x81, 0x48, 0x8c, 0x75, 0x58, 0x95, 0xfd, 0x51, 0x7d, 0x89, 0x43, 0xaa,
0x89, 0x16, 0x13, 0x21, 0xd5, 0x0d, 0x68, 0xd2, 0x79, 0x5c, 0xfd, 0x25, 0x64, 0xc1, 0x1d, 0x60,
0x07, 0xf6, 0xc0, 0xf6, 0x3d, 0xcf, 0x3d, 0xe2, 0xbe, 0x4c, 0x5a, 0x46, 0x0d, 0x13, 0x23, 0x8e,
0x4a, 0x15, 0xa6, 0x27, 0x75, 0x39, 0xac, 0xe7, 0xaa, 0x1c, 0x2d, 0x7a, 0x32, 0x4c, 0x58, 0xde,
0xb2, 0x9f, 0x71, 0x55, 0x93, 0x1a, 0xa2, 0x8f, 0xa1, 0x32, 0x89, 0x2a, 0x55, 0xe3, 0xae, 0xae,
0x11, 0x99, 0x6f, 0xd6, 0xd4, 0xa9, 0x8d, 0x47, 0xb0, 0x92, 0xac, 0x53, 0x8a, 0x8e, 0x0d, 0x28,
0x8d, 0x25, 0x4c, 0xf6, 0x2e, 0x7a, 0x36, 0x7e, 0xab, 0x04, 0x45, 0x69, 0x8d, 0xb2, 0x4d, 0xc8,
0x0f, 0x54, 0x9e, 0x5c, 0x7c, 0x7d, 0x95, 0xc4, 0xaa, 0xff, 0xdb, 0x98, 0x2d, 0x27, 0xe8, 0xd8,
0xc7, 0x50, 0x4f, 0x86, 0x8a, 0x67, 0x4e, 0xfb, 0x27, 0x63, 0xbc, 0xb5, 0xc1, 0x4c, 0x50, 0xb0,
0x1c, 0x6f, 0x8e, 0xa4, 0x33, 0x94, 0xce, 0xb5, 0xdd, 0xd3, 0x73, 0x85, 0xbe, 0x1d, 0x9c, 0xdb,
0xd6, 0xa3, 0xc7, 0x1f, 0xca, 0xe3, 0xfe, 0x15, 0x04, 0xf6, 0xce, 0xed, 0x47, 0x8f, 0x3f, 0x9c,
0xd5, 0xa4, 0xe5, 0x61, 0x7f, 0x4d, 0x93, 0x5e, 0x81, 0x02, 0xdd, 0x82, 0x4a, 0x09, 0x4f, 0xf4,
0xc0, 0x1e, 0xc2, 0x8a, 0x72, 0x70, 0xc8, 0xd4, 0x74, 0x92, 0x82, 0x25, 0x3a, 0x0d, 0x28, 0x71,
0x3d, 0x44, 0x91, 0x4b, 0x64, 0x0d, 0x16, 0xce, 0xe3, 0x2b, 0x6d, 0x6b, 0xa6, 0x7c, 0x32, 0xfe,
0xa4, 0x00, 0x15, 0x6d, 0x50, 0x58, 0x15, 0x4a, 0x66, 0xbb, 0xd7, 0x36, 0x3f, 0x6b, 0xef, 0x34,
0x6e, 0xb0, 0x7b, 0xf0, 0x56, 0xa7, 0xbb, 0x7d, 0x68, 0x9a, 0xed, 0xed, 0xbe, 0x75, 0x68, 0x5a,
0xea, 0x12, 0xb5, 0xa3, 0xd6, 0xd3, 0x83, 0x76, 0xb7, 0x6f, 0xed, 0xb4, 0xfb, 0xad, 0xce, 0x7e,
0xaf, 0x91, 0x61, 0xaf, 0x41, 0x33, 0xa6, 0x54, 0xe8, 0xd6, 0xc1, 0xe1, 0x71, 0xb7, 0xdf, 0xc8,
0xb2, 0x3b, 0x70, 0x6b, 0xb7, 0xd3, 0x6d, 0xed, 0x5b, 0x31, 0xcd, 0xf6, 0x7e, 0xff, 0x33, 0xab,
0xfd, 0x4b, 0x47, 0x1d, 0xf3, 0x69, 0x23, 0x97, 0x46, 0xb0, 0xd7, 0xdf, 0xdf, 0x56, 0x35, 0xe4,
0xd9, 0x4d, 0x58, 0x25, 0x02, 0x2a, 0x62, 0xf5, 0x0f, 0x0f, 0xad, 0xde, 0xe1, 0x61, 0xb7, 0x51,
0x60, 0x4b, 0x50, 0xeb, 0x74, 0x3f, 0x6b, 0xed, 0x77, 0x76, 0x2c, 0xb3, 0xdd, 0xda, 0x3f, 0x68,
0x2c, 0xb0, 0x65, 0x58, 0x9c, 0xa5, 0x2b, 0x8a, 0x2a, 0x14, 0xdd, 0x61, 0xb7, 0x73, 0xd8, 0xb5,
0x3e, 0x6b, 0x9b, 0xbd, 0xce, 0x61, 0xb7, 0x51, 0x62, 0x6b, 0xc0, 0x92, 0xa8, 0xbd, 0x83, 0xd6,
0x76, 0xa3, 0xcc, 0x56, 0x61, 0x29, 0x09, 0x7f, 0xd2, 0x7e, 0xda, 0x00, 0xd6, 0x84, 0x15, 0xea,
0x98, 0xb5, 0xd5, 0xde, 0x3f, 0xfc, 0xdc, 0x3a, 0xe8, 0x74, 0x3b, 0x07, 0xc7, 0x07, 0x8d, 0x0a,
0xde, 0xcd, 0xd8, 0x6e, 0x5b, 0x9d, 0x6e, 0xef, 0x78, 0x77, 0xb7, 0xb3, 0xdd, 0x69, 0x77, 0xfb,
0x8d, 0x2a, 0xb5, 0x9c, 0xf6, 0xe2, 0x35, 0x51, 0x40, 0x9e, 0x5f, 0xb1, 0x76, 0x3a, 0xbd, 0xd6,
0xd6, 0x7e, 0x7b, 0xa7, 0x51, 0x67, 0xb7, 0xe1, 0x66, 0xbf, 0x7d, 0x70, 0x74, 0x68, 0xb6, 0xcc,
0xa7, 0xea, 0x7c, 0x8b, 0xb5, 0xdb, 0xea, 0xec, 0x1f, 0x9b, 0xed, 0xc6, 0x22, 0x7b, 0x03, 0x6e,
0x9b, 0xed, 0x4f, 0x8f, 0x3b, 0x66, 0x7b, 0xc7, 0xea, 0x1e, 0xee, 0xb4, 0xad, 0xdd, 0x76, 0xab,
0x7f, 0x6c, 0xb6, 0xad, 0x83, 0x4e, 0xaf, 0xd7, 0xe9, 0x7e, 0xd2, 0x68, 0xb0, 0xb7, 0xe0, 0x6e,
0x44, 0x12, 0x55, 0x30, 0x43, 0xb5, 0x24, 0xde, 0x4f, 0x4d, 0x69, 0xb7, 0xfd, 0x4b, 0x7d, 0xeb,
0xa8, 0xdd, 0x36, 0x1b, 0x8c, 0x6d, 0xc0, 0x5a, 0xdc, 0x3c, 0x35, 0x20, 0xdb, 0x5e, 0x16, 0xb8,
0xa3, 0xb6, 0x79, 0xd0, 0xea, 0x8a, 0x09, 0x4e, 0xe0, 0x56, 0x44, 0xb7, 0x63, 0xdc, 0x6c, 0xb7,
0x57, 0x19, 0x83, 0xba, 0x36, 0x2b, 0xbb, 0x2d, 0xb3, 0xb1, 0xc6, 0x16, 0xa1, 0x72, 0x70, 0x74,
0x64, 0xf5, 0x3b, 0x07, 0xed, 0xc3, 0xe3, 0x7e, 0x63, 0x9d, 0xad, 0x42, 0xa3, 0xd3, 0xed, 0xb7,
0x4d, 0x31, 0xd7, 0xaa, 0xe8, 0xff, 0x2c, 0xb2, 0x15, 0x58, 0x54, 0x3d, 0x55, 0xd0, 0x3f, 0x2f,
0xb2, 0x75, 0x60, 0xc7, 0x5d, 0xb3, 0xdd, 0xda, 0x11, 0x03, 0x17, 0x21, 0xfe, 0x57, 0x51, 0x86,
0x8d, 0x7e, 0x9c, 0x8b, 0x36, 0xeb, 0x38, 0x0f, 0x23, 0x79, 0xc1, 0x79, 0x55, 0xbb, 0x98, 0xfc,
0x65, 0x9f, 0x1e, 0xd1, 0x4c, 0xab, 0xdc, 0x9c, 0x69, 0x35, 0x67, 0xbb, 0xd7, 0x74, 0xdd, 0xef,
0x4d, 0xa8, 0x8d, 0xe9, 0xb2, 0x73, 0x79, 0xa9, 0x31, 0xc8, 0xa4, 0x24, 0x02, 0xd2, 0x8d, 0xc6,
0x73, 0xdf, 0xde, 0x28, 0xcc, 0x7f, 0x7b, 0x23, 0x4d, 0xbf, 0x5f, 0x48, 0xd3, 0xef, 0xef, 0xc3,
0x12, 0x89, 0x26, 0xc7, 0x75, 0xc6, 0xca, 0x6a, 0x26, 0x2d, 0x70, 0x11, 0x45, 0x14, 0xc1, 0x95,
0x39, 0xa1, 0x4c, 0x0e, 0x29, 0x42, 0x8a, 0xd2, 0xda, 0x48, 0x58, 0x1a, 0x24, 0x39, 0x22, 0x4b,
0x23, 0x6a, 0xc1, 0xbe, 0x8c, 0x5b, 0xa8, 0x68, 0x2d, 0x10, 0x1c, 0x5b, 0xb8, 0x0f, 0x4b, 0xfc,
0x32, 0xf4, 0x6d, 0xcb, 0x9b, 0xd8, 0x5f, 0x4c, 0x31, 0xae, 0x6d, 0xa3, 0x0d, 0x5f, 0x35, 0x17,
0x11, 0x71, 0x88, 0xf0, 0x1d, 0x3b, 0xb4, 0xef, 0x7f, 0x09, 0x15, 0xed, 0x22, 0x7c, 0xb6, 0x0e,
0xcb, 0x9f, 0x77, 0xfa, 0xdd, 0x76, 0xaf, 0x67, 0x1d, 0x1d, 0x6f, 0x3d, 0x69, 0x3f, 0xb5, 0xf6,
0x5a, 0xbd, 0xbd, 0xc6, 0x0d, 0xb1, 0x68, 0xbb, 0xed, 0x5e, 0xbf, 0xbd, 0x93, 0x80, 0x67, 0xd8,
0xeb, 0xb0, 0x71, 0xdc, 0x3d, 0xee, 0xb5, 0x77, 0xac, 0xb4, 0x72, 0x59, 0xc1, 0xa5, 0x12, 0x9f,
0x52, 0x3c, 0x77, 0xff, 0xd7, 0xa0, 0x9e, 0x3c, 0xea, 0xcd, 0x00, 0x16, 0xf6, 0xdb, 0x9f, 0xb4,
0xb6, 0x9f, 0xd2, 0xed, 0xad, 0xbd, 0x7e, 0xab, 0xdf, 0xd9, 0xb6, 0xe4, 0x6d, 0xad, 0x42, 0x22,
0x64, 0x58, 0x05, 0x8a, 0xad, 0xee, 0xf6, 0xde, 0xa1, 0xd9, 0x6b, 0x64, 0xd9, 0x6b, 0xb0, 0xae,
0x78, 0x75, 0xfb, 0xf0, 0xe0, 0xa0, 0xd3, 0x47, 0x61, 0xd8, 0x7f, 0x7a, 0x24, 0x58, 0xf3, 0xbe,
0x0d, 0xe5, 0xf8, 0xba, 0x59, 0x14, 0x30, 0x9d, 0x7e, 0xa7, 0xd5, 0x8f, 0xa5, 0x6b, 0xe3, 0x86,
0x90, 0x5f, 0x31, 0x18, 0x6f, 0x8b, 0x6d, 0x64, 0xe8, 0x34, 0x9c, 0x02, 0x52, 0xeb, 0x8d, 0xac,
0x58, 0x54, 0x31, 0x74, 0xeb, 0xb0, 0x2f, 0x5e, 0xe1, 0xdb, 0x50, 0x4f, 0xe6, 0x3c, 0x26, 0x9d,
0xd7, 0x1b, 0xb0, 0xb6, 0xd5, 0xee, 0x7f, 0xde, 0x6e, 0x77, 0x71, 0x74, 0xb6, 0xdb, 0xdd, 0xbe,
0xd9, 0xda, 0xef, 0xf4, 0x9f, 0x36, 0x32, 0xf7, 0x3f, 0x86, 0xc6, 0x6c, 0x80, 0x31, 0x11, 0x91,
0x7d, 0x51, 0xe8, 0xf6, 0xfe, 0x7f, 0xc9, 0xc0, 0x4a, 0x9a, 0x6f, 0x5d, 0xcc, 0xa1, 0x5c, 0x9c,
0x42, 0x44, 0xf7, 0x0e, 0xbb, 0x56, 0xf7, 0x10, 0xaf, 0x87, 0xdc, 0x80, 0xb5, 0x19, 0x84, 0x92,
0x04, 0x19, 0x76, 0x0b, 0xd6, 0xe7, 0x0a, 0x59, 0xe6, 0xe1, 0x31, 0xbe, 0x76, 0x13, 0x56, 0x66,
0x90, 0x6d, 0xd3, 0x3c, 0x34, 0x1b, 0x39, 0xf6, 0x3e, 0xdc, 0x9b, 0xc1, 0xcc, 0x6f, 0x4c, 0x6a,
0xdf, 0xca, 0xb3, 0x77, 0xe0, 0xcd, 0x39, 0xea, 0x58, 0x76, 0x5b, 0x5b, 0xad, 0x7d, 0xf1, 0x7a,
0x8d, 0xc2, 0xfd, 0x7f, 0x9e, 0x03, 0x88, 0x0f, 0x15, 0x89, 0xf6, 0x77, 0x5a, 0xfd, 0xd6, 0xfe,
0xa1, 0x60, 0x2f, 0xf3, 0xb0, 0x2f, 0x6a, 0x37, 0xdb, 0x9f, 0x36, 0x6e, 0xa4, 0x62, 0x0e, 0x8f,
0xc4, 0x0b, 0xad, 0xc3, 0x32, 0x4d, 0xd5, 0xbe, 0x78, 0x8d, 0x4e, 0xf7, 0x13, 0xba, 0x69, 0x14,
0x77, 0xbf, 0xe3, 0xa3, 0x5d, 0xf3, 0xb0, 0xdb, 0xb7, 0x7a, 0x7b, 0xc7, 0xfd, 0x1d, 0xbc, 0xa7,
0x74, 0xdb, 0xec, 0x1c, 0x51, 0x9d, 0xf9, 0x17, 0x11, 0x88, 0xaa, 0x0b, 0x62, 0x2d, 0x7c, 0x72,
0xd8, 0xeb, 0x75, 0x8e, 0xac, 0x4f, 0x8f, 0xdb, 0x66, 0xa7, 0xdd, 0xc3, 0x82, 0x0b, 0x29, 0x70,
0x41, 0x5f, 0x14, 0x7b, 0x66, 0x7f, 0xff, 0x33, 0xb9, 0xa9, 0x09, 0xd2, 0x52, 0x12, 0x24, 0xa8,
0xca, 0x62, 0x76, 0xc4, 0xae, 0x90, 0x52, 0x33, 0x5c, 0x83, 0x13, 0xe5, 0x2a, 0x62, 0xbf, 0x9b,
0x5b, 0x24, 0x58, 0xac, 0x9a, 0x8e, 0x12, 0xa5, 0x70, 0x2b, 0x8c, 0x14, 0x87, 0x9d, 0x1d, 0x13,
0x0b, 0xd4, 0xe7, 0xa0, 0x82, 0x76, 0x51, 0x30, 0xa1, 0xd8, 0x36, 0x04, 0x49, 0x43, 0x3d, 0x08,
0xcc, 0xd2, 0xa3, 0xff, 0xf0, 0x2e, 0x94, 0xa3, 0xe4, 0x62, 0xf6, 0x1b, 0x50, 0x4b, 0x9c, 0xf6,
0x64, 0xca, 0x2d, 0x98, 0x76, 0x38, 0x74, 0xe3, 0xb5, 0x74, 0xa4, 0xd4, 0x99, 0x5f, 0xff, 0x2b,
0x7f, 0xfc, 0x3f, 0xfe, 0x5e, 0xb6, 0xc9, 0xd6, 0x1e, 0x5c, 0x7c, 0xf0, 0x40, 0x9e, 0xa6, 0x7c,
0x80, 0xa7, 0xb3, 0xe9, 0x76, 0xc6, 0x67, 0x9a, 0x05, 0x42, 0x8d, 0xbd, 0x36, 0x6b, 0x15, 0x24,
0x5a, 0xbb, 0x7d, 0x0d, 0x56, 0x36, 0xf7, 0x1a, 0x36, 0xb7, 0xc6, 0x56, 0xf4, 0xe6, 0x54, 0x4e,
0x2a, 0xe3, 0x78, 0x65, 0xaa, 0xfe, 0x31, 0x42, 0x76, 0x3b, 0xbe, 0xbf, 0x32, 0xe5, 0x23, 0x85,
0x1b, 0x37, 0xe7, 0x3f, 0x1b, 0x28, 0xbf, 0x33, 0x68, 0x34, 0xb1, 0x29, 0xc6, 0x1a, 0xa2, 0x29,
0xfd, 0x4b, 0x82, 0xec, 0x04, 0x2a, 0xda, 0xd7, 0x77, 0xd8, 0xcd, 0x6b, 0xbf, 0x14, 0xb4, 0xb1,
0x91, 0x86, 0x4a, 0x7b, 0x15, 0xbd, 0xfe, 0x07, 0xa7, 0x9c, 0xb3, 0x5f, 0x86, 0x72, 0xf4, 0x4d,
0x17, 0xb6, 0xae, 0x7d, 0x63, 0x47, 0xff, 0x06, 0xcd, 0x46, 0x73, 0x1e, 0xa1, 0x8c, 0x20, 0xac,
0x7d, 0xd5, 0x98, 0xeb, 0xfd, 0x77, 0x32, 0xf7, 0xd9, 0xe7, 0x50, 0xd1, 0xbe, 0xdb, 0x12, 0xbd,
0xc0, 0xfc, 0xb7, 0x61, 0xa2, 0x17, 0x48, 0xf9, 0xcc, 0x8b, 0xb1, 0x84, 0x4d, 0x54, 0x58, 0x59,
0x34, 0x81, 0x9f, 0x75, 0x61, 0xfb, 0xb0, 0x2a, 0xad, 0xad, 0x13, 0xfe, 0x55, 0xa6, 0x21, 0xe5,
0xeb, 0x8d, 0x0f, 0x33, 0xec, 0x63, 0x28, 0xa9, 0xcf, 0xf3, 0xb0, 0xb5, 0xf4, 0xcf, 0x0c, 0x6d,
0xac, 0xcf, 0xc1, 0xa5, 0x69, 0xf4, 0x14, 0x20, 0xfe, 0x48, 0x0c, 0x53, 0x03, 0x35, 0xf7, 0xd1,
0x99, 0x88, 0x03, 0xe6, 0xbf, 0x28, 0x63, 0xac, 0xe1, 0x0b, 0x36, 0x58, 0x5d, 0xbc, 0xa0, 0xcb,
0x9f, 0xab, 0x7b, 0xad, 0x7f, 0x1d, 0x2a, 0xda, 0x77, 0x62, 0xa2, 0xe1, 0x9b, 0xff, 0xc6, 0x4c,
0x34, 0x7c, 0x29, 0x9f, 0x95, 0x31, 0x36, 0xb0, 0xf6, 0x15, 0x63, 0x51, 0xd4, 0x2e, 0xd4, 0x2d,
0xa9, 0xf6, 0x88, 0x09, 0x3a, 0x87, 0x5a, 0xe2, 0x63, 0x30, 0xd1, 0x0a, 0x4d, 0xfb, 0xd4, 0x4c,
0xb4, 0x42, 0x53, 0xbf, 0x1f, 0xa3, 0xf8, 0xcc, 0x58, 0x12, 0xed, 0xd0, 0xcd, 0x55, 0x5a, 0x4b,
0x3f, 0x80, 0x8a, 0xf6, 0x61, 0x97, 0xe8, 0x5d, 0xe6, 0xbf, 0x21, 0x13, 0xbd, 0x4b, 0xda, 0x77,
0x60, 0x56, 0xb0, 0x8d, 0xba, 0x81, 0xac, 0x80, 0x17, 0xef, 0x8a, 0xba, 0x7f, 0x03, 0xea, 0xc9,
0x6f, 0xbd, 0x44, 0x6b, 0x3f, 0xf5, 0xa3, 0x31, 0xd1, 0xda, 0xbf, 0xe6, 0x03, 0x31, 0x92, 0xa5,
0xef, 0x2f, 0x47, 0x8d, 0x3c, 0xf8, 0x91, 0x3c, 0x26, 0xf5, 0x25, 0xfb, 0x54, 0x08, 0x38, 0x79,
0x31, 0x34, 0x5b, 0xd7, 0xb8, 0x56, 0xbf, 0x61, 0x3a, 0x5a, 0x2f, 0x73, 0x77, 0x48, 0x27, 0x99,
0x19, 0x2b, 0x67, 0x9f, 0xc0, 0x72, 0xc4, 0xcc, 0xd1, 0x4d, 0xcf, 0x41, 0xf4, 0x0e, 0xa9, 0xf7,
0x49, 0x6f, 0x34, 0x66, 0xb1, 0x0f, 0x33, 0xec, 0x00, 0x8a, 0xf2, 0xfa, 0x5c, 0xb6, 0x3a, 0x7b,
0x9d, 0x2e, 0xf5, 0x6b, 0x2d, 0xfd, 0x96, 0x5d, 0x63, 0x19, 0x7b, 0x55, 0x63, 0x15, 0xd1, 0xab,
0x33, 0x1e, 0x3a, 0xa2, 0x0e, 0x17, 0x16, 0x67, 0xaf, 0x55, 0xbe, 0x7d, 0xdd, 0x35, 0x14, 0x54,
0xfd, 0xeb, 0x2f, 0xbe, 0xa5, 0x22, 0x29, 0x8a, 0x94, 0x34, 0x7d, 0x20, 0xb3, 0x72, 0xd8, 0xaf,
0x42, 0x55, 0xff, 0x3e, 0x04, 0xd3, 0x65, 0xc2, 0x6c, 0x4b, 0xb7, 0x52, 0x71, 0x49, 0x2e, 0x61,
0x55, 0xbd, 0x19, 0xf6, 0x19, 0xac, 0x45, 0xc3, 0xac, 0xdf, 0xa3, 0x10, 0xb0, 0x3b, 0x29, 0xb7,
0x2b, 0x24, 0x06, 0xfb, 0xe6, 0xb5, 0xd7, 0x2f, 0x3c, 0xcc, 0x08, 0xee, 0x4b, 0xde, 0x85, 0x1f,
0xef, 0x3c, 0x69, 0x9f, 0x00, 0x88, 0x77, 0x9e, 0xd4, 0x0b, 0xf4, 0x15, 0xf7, 0xb1, 0xe5, 0xc4,
0x18, 0x51, 0xbe, 0x32, 0xfb, 0x01, 0x2c, 0x6a, 0x97, 0x44, 0xf4, 0xae, 0xdc, 0x41, 0xb4, 0x92,
0xe6, 0x2f, 0x4c, 0xdd, 0x48, 0xf3, 0x4f, 0x1a, 0xeb, 0x58, 0xff, 0x92, 0x91, 0x18, 0x1c, 0xb1,
0x8a, 0xb6, 0xa1, 0xa2, 0x5f, 0x40, 0xf1, 0x82, 0x7a, 0xd7, 0x35, 0x94, 0x7e, 0x37, 0xe7, 0xc3,
0x0c, 0xdb, 0x87, 0xc6, 0xec, 0x75, 0x71, 0x91, 0x4c, 0x49, 0xbb, 0x62, 0x6f, 0x63, 0x06, 0x99,
0xb8, 0x64, 0x8e, 0x1d, 0xd1, 0x89, 0x97, 0xe8, 0x53, 0x87, 0x9e, 0x3f, 0xbb, 0xab, 0x27, 0x3f,
0x81, 0x18, 0xd5, 0x96, 0xf6, 0xf1, 0xcb, 0x7b, 0x99, 0x87, 0x19, 0xf6, 0xdb, 0x19, 0xa8, 0x26,
0xae, 0x4b, 0x4a, 0x9c, 0x29, 0x98, 0x79, 0xcf, 0xa6, 0x8e, 0xd3, 0x5f, 0xd4, 0x30, 0x71, 0x10,
0xf7, 0xef, 0x7f, 0x3f, 0x31, 0x49, 0x3f, 0x4a, 0x84, 0xf7, 0x36, 0x67, 0xbf, 0x85, 0xf8, 0xe5,
0x2c, 0x81, 0x7e, 0x05, 0xef, 0x97, 0x0f, 0x33, 0xec, 0x5f, 0x65, 0xa0, 0x9e, 0x8c, 0xdb, 0x47,
0xaf, 0x9b, 0x9a, 0x21, 0x10, 0xb1, 0xd2, 0x35, 0xc1, 0xfe, 0x1f, 0x60, 0x2f, 0xfb, 0xf7, 0xcd,
0x44, 0x2f, 0xe5, 0x57, 0x1c, 0x7e, 0xba, 0xde, 0xb2, 0x5f, 0xa4, 0x4f, 0x0f, 0xab, 0x1c, 0x2f,
0x36, 0xff, 0xa9, 0xda, 0x88, 0xfd, 0xf4, 0x0f, 0xbb, 0x1a, 0xb9, 0xbf, 0x99, 0xcd, 0xe0, 0x4c,
0xfc, 0x3a, 0x7d, 0xf8, 0x4f, 0xa5, 0xf9, 0x08, 0x56, 0x7e, 0xe5, 0x4a, 0xde, 0xc2, 0x17, 0x7b,
0xdd, 0xb8, 0x99, 0x78, 0xb1, 0x59, 0xed, 0xa3, 0x45, 0x5d, 0x94, 0x1f, 0x67, 0x8d, 0xb7, 0xcf,
0xb9, 0x0f, 0xb6, 0xa6, 0x36, 0x82, 0x9d, 0x1c, 0x53, 0x27, 0x25, 0x79, 0x62, 0xbd, 0xbd, 0x62,
0x35, 0xc6, 0x7d, 0xec, 0xeb, 0x5b, 0xc6, 0x9d, 0x6b, 0xfb, 0xfa, 0x00, 0x03, 0xf1, 0xa2, 0xc7,
0x47, 0x00, 0x71, 0x22, 0x26, 0x9b, 0x49, 0x07, 0x8c, 0xa4, 0xd0, 0x7c, 0xae, 0x66, 0x72, 0x51,
0xab, 0xac, 0x41, 0x51, 0xe3, 0x2f, 0x93, 0x4c, 0x8d, 0x12, 0x15, 0x75, 0x15, 0x2c, 0x99, 0x33,
0x99, 0x50, 0xc1, 0x66, 0xeb, 0x4f, 0x48, 0xd4, 0x28, 0x2b, 0xf1, 0x18, 0x6a, 0xfb, 0x9e, 0xf7,
0x6c, 0x3a, 0x89, 0x92, 0xff, 0x93, 0x79, 0x37, 0x7b, 0x76, 0x70, 0xbe, 0x31, 0xf3, 0x16, 0xc6,
0x5d, 0xac, 0x6a, 0x83, 0x35, 0xb5, 0xaa, 0x1e, 0xfc, 0x28, 0xce, 0xfe, 0xfc, 0x92, 0xd9, 0xb0,
0x14, 0x09, 0xea, 0x38, 0xc3, 0x32, 0x59, 0x4d, 0x42, 0x3c, 0xcf, 0x36, 0x91, 0xb0, 0x15, 0x54,
0x6f, 0x1f, 0x04, 0xaa, 0xce, 0x87, 0x19, 0x76, 0x04, 0xd5, 0x1d, 0x3e, 0xc0, 0xdb, 0x23, 0x30,
0xc7, 0x64, 0x39, 0x91, 0xaf, 0x40, 0xc9, 0x29, 0x1b, 0xb5, 0x04, 0x30, 0xb9, 0x79, 0x4d, 0xec,
0x2b, 0x9f, 0x7f, 0xf1, 0xe0, 0x47, 0x32, 0x7b, 0xe5, 0x4b, 0xb5, 0x79, 0xc5, 0x99, 0x4c, 0xba,
0x06, 0x90, 0x4c, 0x07, 0x4a, 0x6c, 0x5e, 0x73, 0xe9, 0x40, 0x89, 0xa1, 0x8e, 0xf2, 0x96, 0x46,
0xb0, 0x34, 0x97, 0x41, 0x14, 0xed, 0x5b, 0xd7, 0xe5, 0x1d, 0x6d, 0xdc, 0xbd, 0x9e, 0x20, 0xd9,
0xda, 0xfd, 0x64, 0x6b, 0x3d, 0xa8, 0xd1, 0x25, 0xbb, 0x27, 0x9c, 0xce, 0x91, 0xce, 0x5c, 0xc2,
0xa4, 0x1f, 0x52, 0x9d, 0xdd, 0x65, 0x10, 0x97, 0x54, 0x73, 0xf0, 0x24, 0x21, 0x3b, 0xc5, 0x4f,
0x4f, 0x68, 0x07, 0x37, 0x23, 0x66, 0x9c, 0x3f, 0x4c, 0x1a, 0x31, 0x63, 0xca, 0x39, 0x4f, 0xe3,
0x36, 0xd6, 0xbd, 0xce, 0x56, 0xa3, 0xba, 0x1f, 0xb8, 0xde, 0x90, 0x8f, 0x65, 0xad, 0xbf, 0x0c,
0x95, 0x4f, 0x78, 0xa8, 0x4e, 0x4a, 0x46, 0x0a, 0xfd, 0xcc, 0xd1, 0xc9, 0x8d, 0x94, 0xf3, 0xad,
0x49, 0xde, 0xa4, 0x9a, 0xf9, 0xf0, 0x8c, 0x93, 0x24, 0xb4, 0x9c, 0xe1, 0x97, 0xec, 0x97, 0xb0,
0xf2, 0xe8, 0x5e, 0x80, 0x35, 0xad, 0x9b, 0x7a, 0xe5, 0x8b, 0x33, 0xf0, 0xb4, 0x9a, 0x45, 0x9f,
0x35, 0xc5, 0xd2, 0x85, 0x8a, 0x76, 0x7f, 0x48, 0x34, 0x36, 0xf3, 0xf7, 0xc5, 0x44, 0x63, 0x93,
0x72, 0xdd, 0x88, 0x71, 0x0f, 0xdb, 0x31, 0xd8, 0xdd, 0xb8, 0x1d, 0xba, 0x62, 0x24, 0x6e, 0xe9,
0xc1, 0x8f, 0xec, 0x71, 0xf8, 0x25, 0xfb, 0x9c, 0xa6, 0x43, 0x3b, 0x09, 0x1a, 0x5b, 0x28, 0xb3,
0x87, 0x46, 0xa3, 0xc1, 0xd2, 0x50, 0x49, 0xab, 0x85, 0x9a, 0x42, 0xb5, 0xf1, 0x31, 0x40, 0x2f,
0xf4, 0x26, 0x3b, 0x36, 0x1f, 0x7b, 0x6e, 0x2c, 0xd3, 0xe3, 0xb3, 0x89, 0xb1, 0x9c, 0xd4, 0x0e,
0x28, 0xb2, 0xcf, 0x35, 0x93, 0x2e, 0x71, 0x86, 0x59, 0x31, 0xf1, 0xb5, 0xc7, 0x17, 0xa3, 0x01,
0x49, 0x39, 0xc2, 0xf8, 0x30, 0xc3, 0x5a, 0x00, 0x71, 0xaa, 0x5a, 0x64, 0xa0, 0xcd, 0x65, 0xc1,
0x45, 0xe2, 0x35, 0x25, 0xaf, 0xed, 0x08, 0xca, 0x71, 0x8e, 0xcf, 0x7a, 0x7c, 0x1d, 0x52, 0x22,
0x23, 0x28, 0x52, 0x17, 0xe6, 0xf2, 0x6b, 0x8c, 0x06, 0x0e, 0x15, 0xb0, 0x92, 0x18, 0xaa, 0x53,
0xce, 0x03, 0xe6, 0xc0, 0x32, 0x75, 0x30, 0xd2, 0xcd, 0xf0, 0x4c, 0x5d, 0xf4, 0xc1, 0x97, 0xf9,
0x54, 0x97, 0x48, 0x6a, 0xa4, 0x26, 0x6c, 0xdc, 0xc4, 0x16, 0x96, 0x8d, 0xba, 0xda, 0x65, 0xe8,
0x3c, 0x9f, 0xd8, 0x02, 0xc6, 0xb0, 0x34, 0x97, 0x13, 0x10, 0x89, 0x8e, 0xeb, 0x92, 0x3c, 0x22,
0xd1, 0x71, 0x6d, 0x3a, 0x81, 0xb1, 0x8a, 0x4d, 0x2e, 0x1a, 0x80, 0x76, 0xe5, 0x73, 0x27, 0x1c,
0x9c, 0x8b, 0xe6, 0x7e, 0x2f, 0x03, 0xcb, 0x29, 0x51, 0x7f, 0xf6, 0x86, 0x72, 0x51, 0x5c, 0x9b,
0x11, 0xb0, 0x91, 0x1a, 0x1d, 0x36, 0x7a, 0xd8, 0xce, 0x01, 0x7b, 0x92, 0xd8, 0x40, 0x29, 0x38,
0x2b, 0x57, 0xe6, 0x0b, 0x35, 0x98, 0x54, 0xf5, 0xe5, 0x0b, 0x58, 0xa7, 0x8e, 0xb4, 0x46, 0xa3,
0x99, 0xc8, 0xf5, 0xeb, 0x5a, 0x2f, 0x52, 0xa2, 0xf1, 0x09, 0x63, 0x20, 0x19, 0x91, 0xbf, 0x46,
0x77, 0xa7, 0xae, 0xb2, 0x29, 0x34, 0x66, 0x23, 0xc2, 0xec, 0xfa, 0xba, 0x36, 0xee, 0x24, 0x8c,
0xed, 0x94, 0x28, 0xf2, 0xd7, 0xb0, 0xb1, 0x3b, 0xc6, 0x46, 0xda, 0xb8, 0x90, 0xfd, 0x2d, 0xe6,
0xe3, 0x2f, 0x47, 0xe1, 0xeb, 0x99, 0xf7, 0xbc, 0x13, 0xdd, 0x60, 0x9f, 0x1e, 0x6c, 0x8f, 0xcc,
0xfd, 0xf4, 0xe8, 0xf7, 0xdb, 0xd8, 0xfc, 0x5d, 0xe3, 0x56, 0x5a, 0xf3, 0x3e, 0x15, 0x21, 0xc3,
0x7f, 0x7d, 0x76, 0x5d, 0xab, 0x1e, 0xdc, 0x4d, 0x9b, 0xef, 0x6b, 0x0d, 0xaf, 0x99, 0xb1, 0xbe,
0x81, 0x3a, 0x64, 0x55, 0x0f, 0x57, 0x47, 0xcb, 0x27, 0x25, 0x2e, 0x1e, 0x2d, 0x9f, 0xb4, 0xf8,
0x76, 0x52, 0x7f, 0x52, 0x91, 0xed, 0xef, 0x64, 0xee, 0x6f, 0xbd, 0xf3, 0x83, 0xaf, 0x9d, 0x39,
0xe1, 0xf9, 0xf4, 0x64, 0x73, 0xe0, 0x8d, 0x1f, 0x8c, 0x94, 0x6b, 0x53, 0x1e, 0x3c, 0x7f, 0x30,
0x72, 0x87, 0x0f, 0xb0, 0xda, 0x93, 0x85, 0x89, 0xef, 0x85, 0xde, 0x37, 0xfe, 0x5f, 0x00, 0x00,
0x00, 0xff, 0xff, 0x4a, 0xea, 0xaf, 0x85, 0xf4, 0x86, 0x00, 0x00,
0x40, 0x1c, 0x1b, 0x79, 0x18, 0x49, 0x90, 0x1f, 0xc3, 0x80, 0x9d, 0x00, 0x01, 0xf2, 0xef, 0x9f,
0x04, 0x41, 0xb0, 0xce, 0x47, 0x02, 0xc3, 0x40, 0x90, 0xc4, 0xf9, 0x0b, 0x0c, 0xe4, 0x3b, 0x40,
0x70, 0xcf, 0xb9, 0xb7, 0xea, 0x16, 0x59, 0xea, 0xee, 0xd9, 0xdd, 0xec, 0x8f, 0xc4, 0x7b, 0xee,
0xb9, 0xef, 0x73, 0xcf, 0x3d, 0xaf, 0x7b, 0x0b, 0xca, 0xfe, 0x64, 0xb0, 0x39, 0xf1, 0xbd, 0xd0,
0x63, 0x85, 0x91, 0xeb, 0x4f, 0x06, 0x1b, 0xaf, 0x9d, 0x79, 0xde, 0xd9, 0x88, 0x3f, 0xb0, 0x27,
0xce, 0x03, 0xdb, 0x75, 0xbd, 0xd0, 0x0e, 0x1d, 0xcf, 0x0d, 0x08, 0xc9, 0xf8, 0xf3, 0x0c, 0xe4,
0x8f, 0xc3, 0x4b, 0x8f, 0x3d, 0x86, 0xaa, 0x3d, 0x1c, 0xfa, 0x3c, 0x08, 0xac, 0xf0, 0x6a, 0xc2,
0x9b, 0x99, 0xbb, 0x99, 0x7b, 0xf5, 0x47, 0x6c, 0x13, 0x2b, 0xd9, 0x6c, 0x51, 0x56, 0xff, 0x6a,
0xc2, 0xcd, 0x8a, 0x1d, 0x27, 0x58, 0x13, 0x8a, 0x32, 0xd9, 0xcc, 0xde, 0xcd, 0xdc, 0x2b, 0x9b,
0x2a, 0xc9, 0x6e, 0x03, 0xd8, 0x63, 0x6f, 0xea, 0x86, 0x56, 0x60, 0x87, 0xcd, 0xdc, 0xdd, 0xcc,
0xbd, 0x9c, 0x59, 0x26, 0x48, 0xcf, 0x0e, 0xd9, 0x2d, 0x28, 0x4f, 0x9e, 0x59, 0xc1, 0xc0, 0x77,
0x26, 0x61, 0x33, 0x8f, 0x45, 0x4b, 0x93, 0x67, 0x3d, 0x4c, 0xb3, 0xf7, 0xa0, 0xe4, 0x4d, 0xc3,
0x89, 0xe7, 0xb8, 0x61, 0xb3, 0x70, 0x37, 0x73, 0xaf, 0xf2, 0x68, 0x51, 0x76, 0xe4, 0x70, 0x1a,
0x1e, 0x09, 0xb0, 0x19, 0x21, 0xb0, 0xb7, 0xa0, 0x36, 0xf0, 0xdc, 0x53, 0xc7, 0x1f, 0xd3, 0xc8,
0x9a, 0x0b, 0xd8, 0x56, 0x12, 0x68, 0xfc, 0x41, 0x16, 0x2a, 0x7d, 0xdf, 0x76, 0x03, 0x7b, 0x20,
0x00, 0x6c, 0x1d, 0x8a, 0xe1, 0xa5, 0x75, 0x6e, 0x07, 0xe7, 0x38, 0xd4, 0xb2, 0xb9, 0x10, 0x5e,
0xee, 0xd9, 0xc1, 0x39, 0x5b, 0x83, 0x05, 0xea, 0x25, 0x0e, 0x28, 0x67, 0xca, 0x14, 0x7b, 0x0f,
0x96, 0xdc, 0xe9, 0xd8, 0x4a, 0x36, 0x25, 0x86, 0x55, 0x30, 0x1b, 0xee, 0x74, 0xbc, 0xad, 0xc3,
0xc5, 0xe0, 0x4f, 0x46, 0xde, 0xe0, 0x19, 0x35, 0x40, 0xc3, 0x2b, 0x23, 0x04, 0xdb, 0x78, 0x03,
0xaa, 0x32, 0x9b, 0x3b, 0x67, 0xe7, 0x34, 0xc6, 0x82, 0x59, 0x21, 0x04, 0x04, 0x89, 0x1a, 0x42,
0x67, 0xcc, 0xad, 0x20, 0xb4, 0xc7, 0x13, 0x39, 0xa4, 0xb2, 0x80, 0xf4, 0x04, 0x00, 0xb3, 0xbd,
0xd0, 0x1e, 0x59, 0xa7, 0x9c, 0x07, 0xcd, 0xa2, 0xcc, 0x16, 0x90, 0x5d, 0xce, 0x03, 0xf6, 0x35,
0xa8, 0x0f, 0x79, 0x10, 0x5a, 0x72, 0x31, 0x78, 0xd0, 0x2c, 0xdd, 0xcd, 0xdd, 0x2b, 0x9b, 0x35,
0x01, 0x6d, 0x29, 0x20, 0x7b, 0x0d, 0xc0, 0xb7, 0x9f, 0x5b, 0x62, 0x22, 0xf8, 0x65, 0xb3, 0x4c,
0xab, 0xe0, 0xdb, 0xcf, 0xfb, 0x97, 0x7b, 0xfc, 0xd2, 0xf8, 0x01, 0xac, 0x7d, 0xc2, 0x43, 0x6d,
0xd2, 0x02, 0x93, 0x7f, 0x31, 0xe5, 0x41, 0x28, 0xfa, 0x1f, 0x84, 0xb6, 0x1f, 0xaa, 0xfe, 0x67,
0xa8, 0xff, 0x08, 0x8b, 0xfb, 0xcf, 0xdd, 0xa1, 0x42, 0xc8, 0x22, 0x42, 0x99, 0xbb, 0x43, 0xca,
0x36, 0xf6, 0x81, 0x69, 0x15, 0xef, 0xf0, 0xd0, 0x76, 0x46, 0x01, 0xfb, 0x10, 0xaa, 0xa1, 0xd6,
0x5c, 0x33, 0x73, 0x37, 0x77, 0xaf, 0x12, 0x11, 0xa1, 0x56, 0xc0, 0x4c, 0xe0, 0x19, 0xe7, 0x50,
0xda, 0xe5, 0x7c, 0xdf, 0x19, 0x3b, 0x21, 0x5b, 0x83, 0xc2, 0xa9, 0x73, 0xc9, 0x87, 0xd8, 0xa9,
0xdc, 0xde, 0x0d, 0x93, 0x92, 0xec, 0x0e, 0x00, 0xfe, 0xb0, 0xc6, 0x11, 0x3d, 0xee, 0xdd, 0x30,
0xcb, 0x08, 0x3b, 0x08, 0xec, 0x90, 0x6d, 0x40, 0x71, 0xc2, 0xfd, 0x01, 0x57, 0x2b, 0xbf, 0x77,
0xc3, 0x54, 0x80, 0xad, 0x22, 0x14, 0x46, 0xa2, 0x76, 0xe3, 0x8f, 0x0b, 0x50, 0xe9, 0x71, 0x77,
0xa8, 0x66, 0x82, 0x41, 0x5e, 0x4c, 0x29, 0x36, 0x56, 0x35, 0xf1, 0x37, 0x7b, 0x13, 0x2a, 0x38,
0xf9, 0x41, 0xe8, 0x3b, 0xee, 0x19, 0xed, 0x8b, 0xad, 0x6c, 0x33, 0x63, 0x82, 0x00, 0xf7, 0x10,
0xca, 0x1a, 0x90, 0xb3, 0xc7, 0x6a, 0x5f, 0x88, 0x9f, 0xec, 0x26, 0x94, 0xec, 0x71, 0x48, 0xdd,
0xab, 0x22, 0xb8, 0x68, 0x8f, 0x43, 0xec, 0xda, 0x1b, 0x50, 0x9d, 0xd8, 0x57, 0x63, 0xee, 0x86,
0x31, 0x41, 0x55, 0xcd, 0x8a, 0x84, 0x21, 0x49, 0x3d, 0x82, 0x65, 0x1d, 0x45, 0x35, 0x5e, 0x88,
0x1a, 0x5f, 0xd2, 0xb0, 0x65, 0x1f, 0xde, 0x81, 0x45, 0x55, 0xc6, 0xa7, 0xf1, 0x20, 0xa1, 0x95,
0xcd, 0xba, 0x04, 0xab, 0x51, 0xde, 0x83, 0xc6, 0xa9, 0xe3, 0xda, 0x23, 0x6b, 0x30, 0x0a, 0x2f,
0xac, 0x21, 0x1f, 0x85, 0x36, 0xd2, 0x5c, 0xc1, 0xac, 0x23, 0x7c, 0x7b, 0x14, 0x5e, 0xec, 0x08,
0x28, 0x7b, 0x1f, 0xca, 0xa7, 0x9c, 0x5b, 0x38, 0x59, 0xcd, 0x52, 0x62, 0xeb, 0xaa, 0x15, 0x32,
0x4b, 0xa7, 0x6a, 0xad, 0xde, 0x87, 0x86, 0x37, 0x0d, 0xcf, 0x3c, 0xc7, 0x3d, 0xb3, 0x06, 0xe7,
0xb6, 0x6b, 0x39, 0x43, 0xa4, 0xc2, 0xfc, 0x56, 0xf6, 0x61, 0xc6, 0xac, 0xab, 0xbc, 0xed, 0x73,
0xdb, 0xed, 0x0c, 0xd9, 0xdb, 0xb0, 0x38, 0xb2, 0x83, 0xd0, 0x3a, 0xf7, 0x26, 0xd6, 0x64, 0x7a,
0xf2, 0x8c, 0x5f, 0x35, 0x6b, 0x38, 0x11, 0x35, 0x01, 0xde, 0xf3, 0x26, 0x47, 0x08, 0x14, 0xa4,
0x87, 0xfd, 0xa4, 0x4e, 0xc0, 0xdd, 0xcc, 0xbd, 0x9a, 0x59, 0x16, 0x10, 0x6a, 0xf4, 0x29, 0x2c,
0xe3, 0xf2, 0x0c, 0xa6, 0x41, 0xe8, 0x8d, 0x2d, 0x9f, 0x0f, 0x3c, 0x7f, 0x18, 0x34, 0x2b, 0x48,
0x6b, 0xef, 0xca, 0xce, 0x6a, 0x6b, 0xbc, 0xb9, 0xc3, 0x83, 0x70, 0x1b, 0x91, 0x4d, 0xc2, 0x6d,
0xbb, 0xa1, 0x7f, 0x65, 0x2e, 0x0d, 0x67, 0xe1, 0xec, 0x7d, 0x60, 0xf6, 0x68, 0xe4, 0x3d, 0xb7,
0x02, 0x3e, 0x3a, 0xb5, 0xe4, 0x24, 0x36, 0xeb, 0x77, 0x33, 0xf7, 0x4a, 0x66, 0x03, 0x73, 0x7a,
0x7c, 0x74, 0x7a, 0x44, 0x70, 0xf6, 0x21, 0xe0, 0x76, 0xb4, 0x4e, 0xb9, 0x1d, 0x4e, 0x7d, 0x1e,
0x34, 0x17, 0xef, 0xe6, 0xee, 0xd5, 0x1f, 0x2d, 0x45, 0xf3, 0x85, 0xe0, 0x2d, 0x27, 0x34, 0xab,
0x02, 0x4f, 0xa6, 0x83, 0x8d, 0x1d, 0x58, 0x4b, 0xef, 0x92, 0x20, 0x2a, 0x31, 0x2b, 0x82, 0x18,
0xf3, 0xa6, 0xf8, 0xc9, 0x56, 0xa0, 0x70, 0x61, 0x8f, 0xa6, 0x1c, 0xa9, 0xb0, 0x6a, 0x52, 0xe2,
0x3b, 0xd9, 0x6f, 0x65, 0x8c, 0x3f, 0xca, 0x40, 0x95, 0x46, 0x19, 0x4c, 0x3c, 0x37, 0xe0, 0xec,
0x4d, 0xa8, 0x29, 0x6a, 0xe0, 0xbe, 0xef, 0xf9, 0x92, 0x2f, 0x2a, 0xca, 0x6b, 0x0b, 0x18, 0x7b,
0x17, 0x1a, 0x0a, 0x69, 0xe2, 0x73, 0x67, 0x6c, 0x9f, 0xa9, 0xaa, 0x15, 0x29, 0x1d, 0x49, 0x30,
0xfb, 0x20, 0xae, 0xcf, 0xf7, 0xa6, 0x21, 0x47, 0x5a, 0xaf, 0x3c, 0xaa, 0xca, 0xe1, 0x99, 0x02,
0x16, 0xd5, 0x8e, 0xa9, 0x57, 0xa0, 0x73, 0xe3, 0xb7, 0x32, 0xc0, 0x44, 0xb7, 0xfb, 0x1e, 0x55,
0x10, 0x73, 0xa4, 0x44, 0xc9, 0xcc, 0x2b, 0xef, 0x90, 0xec, 0x8b, 0x76, 0x88, 0x01, 0x05, 0xea,
0x7b, 0x3e, 0xa5, 0xef, 0x94, 0xf5, 0xfd, 0x7c, 0x29, 0xd7, 0xc8, 0x1b, 0xff, 0x35, 0x07, 0x2b,
0x82, 0x4e, 0x5d, 0x3e, 0x6a, 0x0d, 0x06, 0x7c, 0x12, 0xed, 0x9d, 0x3b, 0x50, 0x71, 0xbd, 0x21,
0x57, 0x14, 0x4b, 0x1d, 0x03, 0x01, 0xd2, 0xc8, 0xf5, 0xdc, 0x76, 0x5c, 0xea, 0x38, 0x4d, 0x66,
0x19, 0x21, 0xd8, 0xed, 0xb7, 0x61, 0x71, 0xc2, 0xdd, 0xa1, 0xbe, 0x45, 0x72, 0x44, 0xf5, 0x12,
0x2c, 0x77, 0xc7, 0x1d, 0xa8, 0x9c, 0x4e, 0x09, 0x4f, 0x30, 0x96, 0x3c, 0xd2, 0x00, 0x48, 0x50,
0x8b, 0xf8, 0xcb, 0x64, 0x1a, 0x9c, 0x63, 0x6e, 0x01, 0x73, 0x8b, 0x22, 0x2d, 0xb2, 0x6e, 0x03,
0x0c, 0xa7, 0x41, 0x28, 0x77, 0xcc, 0x02, 0x66, 0x96, 0x05, 0x84, 0x76, 0xcc, 0xd7, 0x61, 0x79,
0x6c, 0x5f, 0x5a, 0x48, 0x3b, 0x96, 0xe3, 0x5a, 0xa7, 0x23, 0x64, 0xea, 0x45, 0xc4, 0x6b, 0x8c,
0xed, 0xcb, 0xcf, 0x44, 0x4e, 0xc7, 0xdd, 0x45, 0xb8, 0x60, 0x2b, 0x03, 0x9a, 0x09, 0xcb, 0xe7,
0x01, 0xf7, 0x2f, 0x38, 0x72, 0x82, 0xbc, 0x59, 0x97, 0x60, 0x93, 0xa0, 0xa2, 0x47, 0x63, 0x31,
0xee, 0x70, 0x34, 0xa0, 0x6d, 0x6f, 0x16, 0xc7, 0x8e, 0xbb, 0x17, 0x8e, 0x06, 0xe2, 0x64, 0x12,
0x7c, 0x64, 0xc2, 0x7d, 0xeb, 0xd9, 0x73, 0xdc, 0xc3, 0x79, 0xe4, 0x1b, 0x47, 0xdc, 0x7f, 0xf2,
0x5c, 0x08, 0x0f, 0x83, 0x00, 0x19, 0x91, 0x7d, 0xd5, 0xac, 0xe0, 0x06, 0x2f, 0x0d, 0x02, 0xc1,
0x82, 0xec, 0x2b, 0xb1, 0x09, 0x45, 0x6f, 0x6d, 0x5c, 0x05, 0x3e, 0xc4, 0xea, 0x03, 0xe4, 0xa8,
0x35, 0xec, 0x6c, 0x4b, 0x66, 0x88, 0x76, 0x02, 0x41, 0xf5, 0xaa, 0xb3, 0xa7, 0x23, 0xfb, 0x2c,
0x40, 0x96, 0x52, 0x33, 0xab, 0x12, 0xb8, 0x2b, 0x60, 0xc6, 0xe7, 0xb0, 0x3a, 0xb3, 0xb6, 0x72,
0xcf, 0x08, 0x61, 0x01, 0x21, 0xb8, 0xae, 0x25, 0x53, 0xa6, 0xd2, 0x16, 0x2d, 0x9b, 0xb2, 0x68,
0xc6, 0xef, 0x66, 0xa0, 0x2a, 0x6b, 0x46, 0xb1, 0x86, 0x6d, 0x02, 0x53, 0xab, 0x18, 0x5e, 0x3a,
0x43, 0xeb, 0xe4, 0x2a, 0xe4, 0x01, 0x11, 0xcd, 0xde, 0x0d, 0xb3, 0x21, 0xf3, 0xfa, 0x97, 0xce,
0x70, 0x4b, 0xe4, 0xb0, 0xfb, 0xd0, 0x48, 0xe0, 0x07, 0xa1, 0x4f, 0x14, 0xbd, 0x77, 0xc3, 0xac,
0x6b, 0xd8, 0xbd, 0xd0, 0x17, 0x7b, 0x44, 0x08, 0x4d, 0xd3, 0xd0, 0x72, 0xdc, 0x21, 0xbf, 0x44,
0x32, 0xaa, 0x99, 0x15, 0x82, 0x75, 0x04, 0x68, 0xab, 0x0e, 0x55, 0xbd, 0x3a, 0xe3, 0x0c, 0x4a,
0x4a, 0xe2, 0x42, 0x91, 0x63, 0xa6, 0x4b, 0x66, 0x39, 0x8c, 0x7a, 0x72, 0x13, 0x4a, 0xc9, 0x1e,
0x98, 0xc5, 0xf0, 0x95, 0x1b, 0x36, 0xbe, 0x0b, 0x8d, 0x7d, 0x41, 0x3c, 0xae, 0x20, 0x56, 0x29,
0x41, 0xae, 0xc1, 0x82, 0xb6, 0x69, 0xca, 0xa6, 0x4c, 0x89, 0x33, 0xf7, 0xdc, 0x0b, 0x42, 0xd9,
0x0a, 0xfe, 0x36, 0xfe, 0x38, 0x03, 0xac, 0x1d, 0x84, 0xce, 0xd8, 0x0e, 0xf9, 0x2e, 0x8f, 0xd8,
0xc2, 0x21, 0x54, 0x45, 0x6d, 0x7d, 0xaf, 0x45, 0x22, 0x1d, 0x09, 0x14, 0xef, 0xc9, 0x6d, 0x3c,
0x5f, 0x60, 0x53, 0xc7, 0x26, 0x36, 0x9f, 0xa8, 0x40, 0xec, 0xb2, 0xd0, 0xf6, 0xcf, 0x78, 0x88,
0x82, 0xa0, 0x94, 0x6b, 0x80, 0x40, 0x42, 0x04, 0xdc, 0xf8, 0x45, 0x58, 0x9a, 0xab, 0x43, 0xe7,
0xcb, 0xe5, 0x14, 0xbe, 0x9c, 0xd3, 0xf9, 0xb2, 0x05, 0xcb, 0x89, 0x7e, 0x49, 0x4a, 0x5b, 0x87,
0xa2, 0xd8, 0x10, 0x42, 0x38, 0xc8, 0x90, 0x5c, 0x7a, 0xca, 0xb9, 0x10, 0xa4, 0x1f, 0xc0, 0xca,
0x29, 0xe7, 0xbe, 0x1d, 0x62, 0x26, 0xee, 0x18, 0xb1, 0x42, 0xb2, 0xe2, 0x25, 0x99, 0xd7, 0xb3,
0xc3, 0x23, 0xee, 0x8b, 0x95, 0x32, 0xfe, 0x7b, 0x06, 0x16, 0x05, 0x07, 0x3d, 0xb0, 0xdd, 0x2b,
0x35, 0x4f, 0xfb, 0xa9, 0xf3, 0x74, 0x4f, 0x3b, 0x0c, 0x35, 0xec, 0xaf, 0x3a, 0x49, 0xb9, 0xd9,
0x49, 0x62, 0x77, 0xa1, 0x9a, 0xe8, 0x6b, 0x01, 0xfb, 0x0a, 0x41, 0xd4, 0xc9, 0x9f, 0x7e, 0x1a,
0xdf, 0x86, 0x46, 0xdc, 0x6d, 0x39, 0x87, 0x0c, 0xf2, 0x82, 0x24, 0x65, 0x05, 0xf8, 0xdb, 0xf8,
0x9d, 0x0c, 0x21, 0x6e, 0x7b, 0x4e, 0x2c, 0xdf, 0x32, 0xc8, 0x0b, 0xc9, 0x59, 0x21, 0x8a, 0xdf,
0xd7, 0xea, 0x05, 0x3f, 0xfd, 0x60, 0xc5, 0xd6, 0x09, 0x84, 0xb0, 0x6c, 0x8f, 0x46, 0xc8, 0x7c,
0x4b, 0x66, 0x51, 0xa4, 0x5b, 0xa3, 0x91, 0xf1, 0x0e, 0x2c, 0x69, 0xbd, 0x7b, 0xc1, 0x38, 0xba,
0xc0, 0xf6, 0x9d, 0x20, 0x3c, 0x76, 0x83, 0x89, 0x26, 0xb8, 0xdd, 0x82, 0xb2, 0xe0, 0xb0, 0xa2,
0x67, 0x81, 0x94, 0xd2, 0x05, 0xcb, 0x15, 0xfd, 0x0a, 0x30, 0xd3, 0xbe, 0x94, 0x99, 0x59, 0x99,
0x69, 0x5f, 0x62, 0xa6, 0xf1, 0x2d, 0x58, 0x4e, 0xd4, 0x27, 0x9b, 0x7e, 0x03, 0x0a, 0xd3, 0xf0,
0xd2, 0x53, 0xa2, 0x79, 0x45, 0x52, 0x88, 0x50, 0x21, 0x4d, 0xca, 0x31, 0x3e, 0x86, 0xa5, 0x2e,
0x7f, 0x2e, 0x37, 0xb1, 0xea, 0xc8, 0xdb, 0x90, 0x7f, 0x89, 0x5a, 0x89, 0xf9, 0xc6, 0x26, 0x30,
0xbd, 0xb0, 0x6c, 0x55, 0xd3, 0x32, 0x33, 0x09, 0x2d, 0xd3, 0x78, 0x1b, 0x58, 0xcf, 0x39, 0x73,
0x0f, 0x78, 0x10, 0xd8, 0x67, 0xd1, 0xb6, 0x6f, 0x40, 0x6e, 0x1c, 0x9c, 0x49, 0x1e, 0x25, 0x7e,
0x1a, 0xdf, 0x80, 0xe5, 0x04, 0x9e, 0xac, 0xf8, 0x35, 0x28, 0x07, 0xce, 0x99, 0x8b, 0x82, 0x95,
0xac, 0x3a, 0x06, 0x18, 0xbb, 0xb0, 0xf2, 0x19, 0xf7, 0x9d, 0xd3, 0xab, 0x97, 0x55, 0x9f, 0xac,
0x27, 0x3b, 0x5b, 0x4f, 0x1b, 0x56, 0x67, 0xea, 0x91, 0xcd, 0x13, 0xf9, 0xca, 0x95, 0x2c, 0x99,
0x94, 0xd0, 0xf8, 0x5e, 0x56, 0xe7, 0x7b, 0xc6, 0x31, 0xb0, 0x6d, 0xcf, 0x75, 0xf9, 0x20, 0x3c,
0xe2, 0xdc, 0x57, 0x9d, 0x79, 0x4f, 0xa3, 0xd5, 0xca, 0xa3, 0x75, 0x39, 0xb3, 0xb3, 0xcc, 0x54,
0x12, 0x31, 0x83, 0xfc, 0x84, 0xfb, 0x63, 0xac, 0xb8, 0x64, 0xe2, 0x6f, 0x63, 0x15, 0x96, 0x13,
0xd5, 0x52, 0xdf, 0x8c, 0x87, 0xb0, 0xba, 0xe3, 0x04, 0x83, 0xf9, 0x06, 0xd7, 0xa1, 0x38, 0x99,
0x9e, 0x58, 0x49, 0xbe, 0xfc, 0x84, 0x5f, 0x19, 0x4d, 0x58, 0x9b, 0x2d, 0x21, 0xeb, 0xfa, 0xab,
0x19, 0xc8, 0xef, 0xf5, 0xf7, 0xb7, 0xd9, 0x06, 0x94, 0x1c, 0x77, 0xe0, 0x8d, 0x85, 0xe0, 0x45,
0x63, 0x8e, 0xd2, 0xd7, 0x6e, 0xb0, 0x5b, 0x50, 0x46, 0x79, 0x4d, 0x28, 0xc7, 0x52, 0xf4, 0x29,
0x09, 0xc0, 0xbe, 0x37, 0x78, 0x26, 0xb4, 0x72, 0x7e, 0x39, 0x71, 0x7c, 0xd4, 0xbb, 0x95, 0xb6,
0x99, 0xa7, 0xb3, 0x3e, 0xce, 0x90, 0x4a, 0xe7, 0xbf, 0x2d, 0x41, 0x51, 0x9e, 0xb6, 0x74, 0x72,
0x87, 0xce, 0x05, 0x8f, 0x4f, 0x6e, 0x91, 0x12, 0xf2, 0x80, 0xcf, 0xc7, 0x5e, 0x18, 0x09, 0x6c,
0xb4, 0x06, 0x55, 0x02, 0x4a, 0x91, 0x4d, 0x13, 0x1a, 0xc8, 0x48, 0x91, 0x23, 0xa4, 0x81, 0x7e,
0x94, 0xdf, 0x82, 0xa2, 0x3a, 0xfb, 0xf3, 0x91, 0x4e, 0xb3, 0x30, 0x20, 0x69, 0x6d, 0x03, 0x4a,
0x03, 0x7b, 0x62, 0x0f, 0x9c, 0xf0, 0x4a, 0x32, 0x84, 0x28, 0x2d, 0x6a, 0x1f, 0x79, 0x03, 0x7b,
0x64, 0x9d, 0xd8, 0x23, 0xdb, 0x1d, 0x70, 0xa9, 0xfd, 0x57, 0x11, 0xb8, 0x45, 0x30, 0xa1, 0xe1,
0xcb, 0x7e, 0x2a, 0x2c, 0x32, 0x02, 0xc8, 0xde, 0x2b, 0x34, 0x21, 0x5c, 0x7a, 0xe3, 0xb1, 0x23,
0xb4, 0x0c, 0x12, 0xc3, 0x72, 0x66, 0x99, 0x20, 0xbb, 0x1c, 0x47, 0x2b, 0xb3, 0x9f, 0xd3, 0xd4,
0x95, 0xa9, 0x29, 0x02, 0x7e, 0x4e, 0xaa, 0xfc, 0xbc, 0x2c, 0x96, 0xd3, 0x64, 0xb1, 0xf7, 0x60,
0x69, 0xea, 0x06, 0x3c, 0x0c, 0x47, 0x7c, 0x18, 0xf5, 0xa5, 0x82, 0x48, 0x8d, 0x28, 0x43, 0x75,
0x67, 0x13, 0x96, 0xc9, 0x6c, 0x11, 0xd8, 0xa1, 0x17, 0x9c, 0x3b, 0x81, 0x15, 0x08, 0x0d, 0x89,
0xd4, 0xdd, 0x25, 0xcc, 0xea, 0xc9, 0x9c, 0x1e, 0xa9, 0x48, 0xeb, 0x33, 0xf8, 0x3e, 0x1f, 0x70,
0xe7, 0x82, 0x0f, 0x51, 0x4e, 0xcb, 0x99, 0xab, 0x89, 0x32, 0xa6, 0xcc, 0x44, 0xa1, 0x7b, 0x3a,
0xb6, 0xa6, 0x93, 0xa1, 0x2d, 0x84, 0x95, 0x3a, 0x09, 0xc3, 0xee, 0x74, 0x7c, 0x4c, 0x10, 0xf6,
0x10, 0x94, 0x24, 0x26, 0xe5, 0xc3, 0xc5, 0x04, 0x3f, 0x13, 0xc4, 0x6a, 0x56, 0x25, 0x06, 0x09,
0x8a, 0x09, 0x99, 0xb3, 0x31, 0x23, 0x73, 0x36, 0xa1, 0x38, 0xf1, 0x9d, 0x0b, 0x3b, 0xe4, 0xcd,
0x25, 0x62, 0xe0, 0x32, 0x29, 0x38, 0x83, 0xe3, 0x3a, 0xa1, 0x63, 0x87, 0x9e, 0xdf, 0x64, 0x98,
0x17, 0x03, 0xd8, 0x7d, 0x58, 0x42, 0x1a, 0x09, 0x42, 0x3b, 0x9c, 0x06, 0x52, 0x02, 0x5d, 0x46,
0x62, 0x42, 0x19, 0xba, 0x87, 0x70, 0x14, 0x42, 0xd9, 0x37, 0x60, 0x8d, 0xc8, 0x02, 0x4b, 0x48,
0xc9, 0x1a, 0x05, 0x82, 0x15, 0x9c, 0x8a, 0x65, 0xcc, 0x15, 0xf4, 0x2d, 0xe5, 0x6b, 0x21, 0x1d,
0x3c, 0x86, 0x75, 0x49, 0x26, 0x73, 0xa5, 0x56, 0xb1, 0xd4, 0x0a, 0x65, 0xcf, 0x14, 0xdb, 0x84,
0x25, 0xd1, 0x25, 0x67, 0x60, 0xc9, 0xd2, 0x62, 0x27, 0xac, 0x89, 0xde, 0xa3, 0xa6, 0xb4, 0x48,
0x99, 0x26, 0xe6, 0x3d, 0xe1, 0x57, 0xec, 0xbb, 0xb0, 0x48, 0x24, 0x83, 0xea, 0x15, 0x72, 0xfa,
0x0d, 0xe4, 0xf4, 0xab, 0x72, 0x42, 0xb7, 0xa3, 0x5c, 0x64, 0xf6, 0xf5, 0x41, 0x22, 0x2d, 0xb6,
0xc3, 0xc8, 0x39, 0xe5, 0xa1, 0x33, 0xe6, 0xcd, 0x75, 0x22, 0x30, 0x95, 0x16, 0x3b, 0x75, 0x3a,
0xc1, 0x9c, 0x26, 0xf1, 0x05, 0x4a, 0x21, 0xed, 0x8e, 0xbc, 0x80, 0x2b, 0x23, 0x57, 0xf3, 0xa6,
0xdc, 0x84, 0x02, 0xa8, 0x64, 0x48, 0x21, 0x88, 0x93, 0xd2, 0x13, 0x99, 0x22, 0x6f, 0x21, 0x31,
0xd4, 0x48, 0xf7, 0x51, 0xe6, 0x48, 0x71, 0x8a, 0x9f, 0xdb, 0xcf, 0x15, 0x07, 0x79, 0x0d, 0xd7,
0x17, 0x04, 0x48, 0xf2, 0x8e, 0x3f, 0xcc, 0xd0, 0x81, 0x28, 0xf9, 0x47, 0xa0, 0xa9, 0x77, 0xc4,
0x39, 0x2c, 0xcf, 0x1d, 0x5d, 0x49, 0x66, 0x02, 0x04, 0x3a, 0x74, 0x47, 0xb8, 0x9b, 0x1d, 0x57,
0x47, 0x21, 0xde, 0x5b, 0x55, 0x40, 0x44, 0xba, 0x03, 0x95, 0xc9, 0xf4, 0x64, 0xe4, 0x0c, 0x08,
0x25, 0x47, 0xb5, 0x10, 0x08, 0x11, 0x84, 0x7e, 0x4b, 0x14, 0x45, 0x18, 0x79, 0xc4, 0xa8, 0x48,
0x18, 0xa2, 0x20, 0x6f, 0xe7, 0x3e, 0xb2, 0x93, 0xaa, 0x89, 0xbf, 0x8d, 0x2d, 0x58, 0x49, 0x76,
0x5a, 0x1e, 0x3c, 0xf7, 0xa1, 0x24, 0x79, 0x95, 0x32, 0x7c, 0xd4, 0xd5, 0x42, 0x49, 0x15, 0x2d,
0xca, 0x37, 0x7e, 0xaf, 0x00, 0xcb, 0x12, 0xba, 0x2d, 0xa6, 0xb6, 0x37, 0x1d, 0x8f, 0x6d, 0x3f,
0x85, 0x09, 0x66, 0x5e, 0xcc, 0x04, 0xb3, 0x73, 0x4c, 0x30, 0xa9, 0xf9, 0x12, 0x0f, 0x4d, 0x6a,
0xbe, 0x62, 0x2d, 0x49, 0x19, 0xd1, 0x2d, 0xa9, 0x35, 0x09, 0xee, 0x93, 0xc5, 0x76, 0x8e, 0x65,
0x17, 0x52, 0x58, 0xb6, 0xce, 0x70, 0x17, 0x66, 0x18, 0xee, 0x1b, 0x40, 0x44, 0xa3, 0x56, 0xbf,
0x48, 0xfa, 0x09, 0xc2, 0xa4, 0x39, 0xf3, 0x1d, 0x58, 0x9c, 0xe5, 0x71, 0xc4, 0x4c, 0xeb, 0x29,
0x1c, 0xce, 0x19, 0x73, 0x3c, 0xad, 0x34, 0xe4, 0xb2, 0xe4, 0x70, 0xce, 0x98, 0xef, 0x63, 0x8e,
0xc2, 0x6f, 0x03, 0x50, 0xdb, 0xb8, 0x69, 0x00, 0x37, 0xcd, 0xdb, 0xc9, 0xb5, 0xd0, 0x67, 0x7d,
0x53, 0x24, 0xa6, 0x3e, 0xc7, 0x5d, 0x54, 0xc6, 0x92, 0xb8, 0x81, 0x3e, 0x82, 0xba, 0x37, 0xe1,
0xae, 0x15, 0xf3, 0x9a, 0x0a, 0x56, 0xd5, 0x90, 0x55, 0x75, 0x14, 0xdc, 0xac, 0x09, 0xbc, 0x28,
0xc9, 0xbe, 0x4d, 0x93, 0xcc, 0xb5, 0x92, 0xd5, 0x6b, 0x4a, 0xd6, 0x11, 0x31, 0x4a, 0x1b, 0xbf,
0x99, 0x81, 0x8a, 0xd6, 0x1d, 0xb6, 0x0a, 0x4b, 0xdb, 0x87, 0x87, 0x47, 0x6d, 0xb3, 0xd5, 0xef,
0x7c, 0xd6, 0xb6, 0xb6, 0xf7, 0x0f, 0x7b, 0xed, 0xc6, 0x0d, 0x01, 0xde, 0x3f, 0xdc, 0x6e, 0xed,
0x5b, 0xbb, 0x87, 0xe6, 0xb6, 0x02, 0x67, 0xd8, 0x1a, 0x30, 0xb3, 0x7d, 0x70, 0xd8, 0x6f, 0x27,
0xe0, 0x59, 0xd6, 0x80, 0xea, 0x96, 0xd9, 0x6e, 0x6d, 0xef, 0x49, 0x48, 0x8e, 0xad, 0x40, 0x63,
0xf7, 0xb8, 0xbb, 0xd3, 0xe9, 0x7e, 0x62, 0x6d, 0xb7, 0xba, 0xdb, 0xed, 0xfd, 0xf6, 0x4e, 0x23,
0xcf, 0x6a, 0x50, 0x6e, 0x6d, 0xb5, 0xba, 0x3b, 0x87, 0xdd, 0xf6, 0x4e, 0xa3, 0x60, 0xfc, 0x59,
0x06, 0x56, 0x71, 0xa2, 0x86, 0xb3, 0x3b, 0xf4, 0x2e, 0x54, 0x06, 0x9e, 0x37, 0x11, 0x6a, 0x50,
0x7c, 0xdc, 0xeb, 0x20, 0xb1, 0xfb, 0x88, 0xb3, 0x9e, 0x7a, 0xfe, 0x80, 0xcb, 0x0d, 0x0a, 0x08,
0xda, 0x15, 0x10, 0x41, 0x20, 0x92, 0xc2, 0x08, 0x83, 0xf6, 0x67, 0x85, 0x60, 0x84, 0xb2, 0x06,
0x0b, 0x27, 0x3e, 0xb7, 0x07, 0xe7, 0x72, 0x6b, 0xca, 0x14, 0x7b, 0x37, 0x56, 0xd0, 0x07, 0x62,
0xc1, 0x47, 0x7c, 0x88, 0xf4, 0x59, 0x32, 0x17, 0x25, 0x7c, 0x5b, 0x82, 0xc5, 0x51, 0x61, 0x9f,
0xd8, 0xee, 0xd0, 0x73, 0xf9, 0x50, 0xea, 0x01, 0x31, 0xc0, 0x38, 0x82, 0xb5, 0xd9, 0xf1, 0xc9,
0xcd, 0xfc, 0xa1, 0xb6, 0x99, 0x49, 0x2c, 0xdf, 0xb8, 0x9e, 0x80, 0xb4, 0x8d, 0xfd, 0xb7, 0xf3,
0x90, 0x17, 0x62, 0xda, 0xb5, 0x12, 0x9d, 0x2e, 0x77, 0xe7, 0xe6, 0xbc, 0x3b, 0x68, 0x07, 0xa0,
0xf3, 0x9b, 0x8c, 0x4d, 0x65, 0x84, 0xe0, 0xb9, 0x1d, 0x65, 0xfb, 0x7c, 0x70, 0x21, 0xad, 0x4d,
0x94, 0x6d, 0xf2, 0xc1, 0x05, 0x2a, 0x3c, 0x76, 0x48, 0x65, 0x69, 0x33, 0x16, 0x03, 0x3b, 0xc4,
0x92, 0x32, 0x0b, 0xcb, 0x15, 0xa3, 0x2c, 0x2c, 0xd5, 0x84, 0xa2, 0xe3, 0x9e, 0x78, 0x53, 0x77,
0x88, 0x7b, 0xaf, 0x64, 0xaa, 0x24, 0x3a, 0x93, 0x90, 0x4d, 0x88, 0x53, 0x82, 0xb6, 0x5a, 0x49,
0x00, 0xfa, 0xe2, 0x9c, 0xf8, 0x00, 0xca, 0xc1, 0x95, 0x3b, 0xd0, 0x37, 0xd8, 0x8a, 0x9c, 0x1f,
0x31, 0xfa, 0xcd, 0xde, 0x95, 0x3b, 0xc0, 0xed, 0x54, 0x0a, 0xe4, 0x2f, 0xf6, 0x18, 0x4a, 0x91,
0x51, 0x96, 0xd8, 0xe3, 0x4d, 0xbd, 0x84, 0xb2, 0xc4, 0x92, 0xee, 0x1b, 0xa1, 0xb2, 0x07, 0xb0,
0x80, 0x96, 0xd3, 0xa0, 0x59, 0xc5, 0x42, 0x4a, 0x18, 0x17, 0xdd, 0x40, 0x3f, 0x0e, 0x1f, 0xa2,
0x15, 0xd5, 0x94, 0x68, 0x1b, 0x4f, 0xa0, 0x96, 0xa8, 0x4b, 0xd7, 0x70, 0x6b, 0xa4, 0xe1, 0xbe,
0xa5, 0x6b, 0xb8, 0x31, 0x9b, 0x96, 0xc5, 0x74, 0x8d, 0xf7, 0x17, 0xa1, 0xa4, 0x86, 0x22, 0x36,
0xd1, 0x71, 0xf7, 0x49, 0xf7, 0xf0, 0xf3, 0xae, 0xd5, 0x7b, 0xda, 0xdd, 0x6e, 0xdc, 0x60, 0x8b,
0x50, 0x69, 0x6d, 0xe3, 0xbe, 0x44, 0x40, 0x46, 0xa0, 0x1c, 0xb5, 0x7a, 0xbd, 0x08, 0x92, 0x35,
0x76, 0xa1, 0x31, 0xdb, 0x53, 0x41, 0x93, 0xa1, 0x82, 0x49, 0xbb, 0x72, 0x0c, 0x10, 0xfa, 0x0b,
0x99, 0x8a, 0x49, 0x48, 0xa6, 0x84, 0xf1, 0x18, 0x1a, 0xe2, 0xd0, 0x11, 0x53, 0xa5, 0x7b, 0x8c,
0x46, 0x42, 0xf0, 0xd2, 0x6d, 0xcb, 0x25, 0xb3, 0x42, 0x30, 0x6c, 0xca, 0xf8, 0x10, 0x96, 0xb4,
0x62, 0xb1, 0xbe, 0x29, 0x0e, 0xb2, 0x59, 0x7d, 0x13, 0xb5, 0x0b, 0xca, 0x31, 0xd6, 0x61, 0x55,
0x24, 0xdb, 0x17, 0xdc, 0x0d, 0x7b, 0xd3, 0x13, 0x72, 0x29, 0x3a, 0x9e, 0x2b, 0xb4, 0x8e, 0x72,
0x94, 0x73, 0x3d, 0x91, 0x6f, 0x4a, 0xd5, 0x34, 0x8b, 0xa4, 0xb1, 0xa1, 0xb5, 0x80, 0x05, 0x37,
0xf1, 0x6f, 0x42, 0x45, 0x2d, 0x47, 0x20, 0x31, 0xad, 0x47, 0xed, 0xb6, 0x69, 0x1d, 0x76, 0xf7,
0x3b, 0x5d, 0xc1, 0xed, 0xc4, 0xb4, 0x22, 0x60, 0x77, 0x17, 0x21, 0x19, 0xa3, 0x01, 0xf5, 0x4f,
0x78, 0xd8, 0x71, 0x4f, 0x3d, 0x39, 0x19, 0xc6, 0xdf, 0x58, 0x80, 0xc5, 0x08, 0x14, 0xab, 0xb8,
0x17, 0xdc, 0x0f, 0x1c, 0xcf, 0x45, 0x69, 0xb5, 0x6c, 0xaa, 0xa4, 0xe0, 0x4e, 0x52, 0x46, 0xc7,
0x23, 0x70, 0x05, 0x73, 0xa5, 0x54, 0x8f, 0xe7, 0xdf, 0x3b, 0xb0, 0xe8, 0x0c, 0xb9, 0x1b, 0x3a,
0xe1, 0x95, 0x95, 0x30, 0x98, 0xd5, 0x15, 0x58, 0x9e, 0x81, 0x2b, 0x50, 0xb0, 0x47, 0x8e, 0xad,
0x5c, 0xb5, 0x94, 0x10, 0xd0, 0x81, 0x37, 0xf2, 0x7c, 0x94, 0x5c, 0xcb, 0x26, 0x25, 0xd8, 0x43,
0x58, 0x11, 0x12, 0xb4, 0x6e, 0xc5, 0x44, 0x06, 0x43, 0xb6, 0x3b, 0xe6, 0x4e, 0xc7, 0x47, 0xb1,
0x25, 0x53, 0xe4, 0x88, 0x93, 0x4f, 0x94, 0x90, 0xa2, 0x4e, 0x54, 0x80, 0x94, 0xb1, 0x25, 0x77,
0x3a, 0x6e, 0x61, 0x4e, 0x84, 0xff, 0x08, 0x56, 0x05, 0x7e, 0x24, 0x1c, 0x45, 0x25, 0x16, 0xb1,
0x84, 0xa8, 0xac, 0x23, 0xf3, 0xa2, 0x32, 0xb7, 0xa0, 0x4c, 0xbd, 0x12, 0x24, 0x51, 0x20, 0x21,
0x1c, 0xbb, 0xc2, 0xfd, 0x60, 0xce, 0xab, 0xba, 0x40, 0xc7, 0xf8, 0x8c, 0x57, 0x55, 0xf3, 0xcb,
0x96, 0x66, 0xfd, 0xb2, 0x8f, 0x60, 0xf5, 0x44, 0xd0, 0xe8, 0x39, 0xb7, 0x87, 0xdc, 0xb7, 0x62,
0xca, 0x27, 0x65, 0x63, 0x59, 0x64, 0xee, 0x61, 0x5e, 0xb4, 0x51, 0x84, 0x94, 0x22, 0xf8, 0x06,
0x1f, 0x5a, 0xa1, 0x67, 0xa1, 0xf0, 0x82, 0x1c, 0xa8, 0x64, 0xd6, 0x08, 0xdc, 0xf7, 0xb6, 0x05,
0x30, 0x89, 0x77, 0xe6, 0xdb, 0x93, 0x73, 0xa9, 0x0e, 0x44, 0x78, 0x9f, 0x08, 0x20, 0x7b, 0x0d,
0x8a, 0x62, 0x4f, 0xb8, 0x9c, 0x5c, 0x57, 0x24, 0x70, 0x2b, 0x10, 0x7b, 0x0b, 0x16, 0xb0, 0x8d,
0xa0, 0xd9, 0xc0, 0x0d, 0x51, 0x8d, 0x39, 0xbd, 0xe3, 0x9a, 0x32, 0x4f, 0x88, 0x82, 0x53, 0xdf,
0x21, 0x36, 0x54, 0x36, 0xf1, 0x37, 0xfb, 0x9e, 0xc6, 0xd3, 0x96, 0xb1, 0xec, 0x5b, 0xb2, 0xec,
0x0c, 0x29, 0x5e, 0xc7, 0xde, 0x7e, 0xa6, 0xdc, 0xea, 0xfb, 0xf9, 0x52, 0xa5, 0x51, 0x35, 0x3e,
0x82, 0x02, 0xcd, 0x8e, 0x20, 0x42, 0x9c, 0xbb, 0x8c, 0x24, 0x42, 0x84, 0x36, 0xa1, 0xe8, 0xf2,
0xf0, 0xb9, 0xe7, 0x3f, 0x53, 0x26, 0x65, 0x99, 0x34, 0x7e, 0x88, 0xb6, 0x90, 0xc8, 0xe3, 0x4e,
0x6a, 0x9d, 0x20, 0x0f, 0x5a, 0xde, 0xe0, 0xdc, 0x96, 0xe6, 0x99, 0x12, 0x02, 0x7a, 0xe7, 0xf6,
0x1c, 0x79, 0x64, 0xe7, 0x9d, 0xee, 0x6f, 0x41, 0x5d, 0xf9, 0xf8, 0x03, 0x6b, 0xc4, 0x4f, 0x43,
0x49, 0xee, 0x55, 0xe9, 0xe0, 0x0f, 0xf6, 0xf9, 0x69, 0x68, 0x1c, 0xc0, 0x92, 0x24, 0xc8, 0xc3,
0x09, 0x57, 0x4d, 0x7f, 0x2b, 0x4d, 0x1a, 0xae, 0x3c, 0x5a, 0x4e, 0x9e, 0xc4, 0x14, 0xbb, 0x90,
0x10, 0x91, 0x8d, 0x4f, 0x81, 0xe9, 0xe7, 0xb4, 0xac, 0x4f, 0xca, 0xa4, 0xca, 0x12, 0xaf, 0x1c,
0x5a, 0x91, 0xe4, 0xeb, 0x0c, 0xc5, 0xec, 0x04, 0xd3, 0xc1, 0x40, 0xc5, 0x5e, 0x94, 0x4c, 0x95,
0x34, 0x7e, 0x9c, 0x81, 0x65, 0xac, 0x4c, 0x49, 0xf3, 0x92, 0x0b, 0xff, 0xc4, 0x9d, 0x14, 0xeb,
0xa3, 0x0b, 0x47, 0x94, 0xf8, 0xea, 0xb6, 0xcf, 0xfc, 0x9c, 0xed, 0xf3, 0x5d, 0x68, 0x0c, 0xf9,
0xc8, 0xb9, 0xe0, 0xfe, 0x55, 0xa4, 0xc8, 0x91, 0xfc, 0xbe, 0xa8, 0xe0, 0x52, 0x97, 0x33, 0xfe,
0x41, 0x06, 0x96, 0x48, 0x94, 0x41, 0xad, 0x58, 0x4e, 0xd4, 0xc7, 0x4a, 0x0d, 0x94, 0xac, 0x4a,
0x8e, 0x29, 0x3e, 0xe2, 0x11, 0x4a, 0xc8, 0x7b, 0x37, 0xa4, 0x7a, 0x28, 0xa1, 0xec, 0x3b, 0xa8,
0x81, 0xb8, 0x16, 0x02, 0xa5, 0x83, 0xf2, 0x66, 0x8a, 0xf0, 0x14, 0x15, 0x17, 0xea, 0x89, 0x8b,
0xa0, 0xad, 0x92, 0xd0, 0x4b, 0x05, 0xd8, 0xd8, 0x85, 0x5a, 0xa2, 0x99, 0x84, 0x81, 0xb6, 0x4a,
0x06, 0xda, 0x39, 0x27, 0x48, 0x76, 0xde, 0x09, 0x72, 0x05, 0xcb, 0x26, 0xb7, 0x87, 0x57, 0xbb,
0x9e, 0x7f, 0x14, 0x9c, 0x84, 0xbb, 0x24, 0x1f, 0x0a, 0xfe, 0x1e, 0x79, 0xf6, 0x12, 0x56, 0x50,
0xe5, 0xe0, 0x51, 0xca, 0xee, 0xd7, 0xa0, 0x1e, 0xbb, 0x00, 0x35, 0x4b, 0x5a, 0x2d, 0xf2, 0x02,
0xa2, 0x41, 0x4d, 0x28, 0x8a, 0xc1, 0x49, 0x28, 0x6d, 0x69, 0xf8, 0xdb, 0xf8, 0x6b, 0x79, 0x60,
0x82, 0x9a, 0x67, 0x08, 0x66, 0xc6, 0x79, 0x99, 0x9d, 0x73, 0x5e, 0x3e, 0x04, 0xa6, 0x21, 0x28,
0x9f, 0x6a, 0x2e, 0xf2, 0xa9, 0x36, 0x62, 0x5c, 0xe9, 0x52, 0x7d, 0x08, 0x2b, 0x52, 0xd8, 0x4e,
0x76, 0x95, 0x48, 0x83, 0x91, 0xd4, 0x9d, 0xe8, 0xaf, 0x72, 0x5c, 0x0a, 0xe5, 0x9d, 0x6c, 0x65,
0xe8, 0xb8, 0x54, 0x6a, 0xbb, 0x46, 0x80, 0x0b, 0x2f, 0x25, 0xc0, 0xe2, 0x1c, 0x01, 0x6a, 0xa6,
0x9b, 0x52, 0xd2, 0x74, 0x63, 0x40, 0x4d, 0xb9, 0x27, 0x29, 0x2a, 0x83, 0x24, 0xcb, 0x8a, 0xf4,
0x51, 0x62, 0x64, 0xc6, 0x3d, 0x68, 0x28, 0xfb, 0x4a, 0x64, 0x1c, 0xa2, 0x88, 0x03, 0x69, 0x9e,
0xdb, 0x56, 0x26, 0xa2, 0x84, 0x29, 0xbe, 0x32, 0x63, 0x8a, 0x7f, 0x0f, 0x96, 0x02, 0x41, 0xbf,
0xd6, 0xd4, 0x95, 0x01, 0x46, 0x7c, 0x88, 0x7a, 0x58, 0xc9, 0x6c, 0x60, 0xc6, 0x71, 0x0c, 0x9f,
0x37, 0x7c, 0xd4, 0x52, 0x0c, 0x1f, 0x8f, 0x63, 0x4f, 0x5e, 0x70, 0xee, 0x8c, 0x51, 0xa8, 0x88,
0x43, 0x69, 0xe4, 0x04, 0xf7, 0xce, 0x9d, 0xb1, 0xa9, 0xdc, 0xc6, 0x22, 0x61, 0xfc, 0x9f, 0x0c,
0x34, 0x04, 0x1d, 0x24, 0xb6, 0xd8, 0xb7, 0x01, 0x99, 0xc1, 0x2b, 0xee, 0xb0, 0x8a, 0xc0, 0x55,
0x1b, 0xec, 0x23, 0xc0, 0x1d, 0x63, 0x09, 0xa5, 0x53, 0xee, 0xaf, 0x66, 0x72, 0x7f, 0xc5, 0x3c,
0x74, 0xef, 0x06, 0x29, 0x27, 0x02, 0xc2, 0xbe, 0x0d, 0x65, 0x41, 0x98, 0x48, 0x25, 0x32, 0x06,
0x4c, 0x89, 0x66, 0x29, 0x7b, 0x44, 0x14, 0x9d, 0xc8, 0x64, 0x9a, 0xf3, 0x35, 0x9f, 0xe2, 0x7c,
0xd5, 0x36, 0xf0, 0x1e, 0xc0, 0x13, 0x7e, 0xb5, 0xef, 0x0d, 0x50, 0x25, 0xbe, 0x0d, 0x20, 0x68,
0xf9, 0xd4, 0x1e, 0x3b, 0xd2, 0xa2, 0x53, 0x30, 0xcb, 0xcf, 0xf8, 0xd5, 0x2e, 0x02, 0xc4, 0x42,
0x8a, 0xec, 0x78, 0x17, 0x17, 0xcc, 0xd2, 0x33, 0x7e, 0x45, 0x5b, 0xd8, 0x82, 0xda, 0x13, 0x7e,
0xb5, 0xc3, 0x49, 0x0a, 0xf5, 0x7c, 0x41, 0x44, 0xbe, 0xfd, 0x5c, 0x88, 0x9d, 0x09, 0xc7, 0x69,
0xc5, 0xb7, 0x9f, 0x3f, 0xe1, 0x57, 0xca, 0x89, 0x5b, 0x14, 0xf9, 0x23, 0x6f, 0x20, 0xcf, 0x4d,
0x15, 0x02, 0x12, 0x77, 0xca, 0x5c, 0x78, 0x86, 0xbf, 0x8d, 0xbf, 0xc8, 0x40, 0x4d, 0xf4, 0x1f,
0xd9, 0xb2, 0x58, 0x32, 0x15, 0x49, 0x94, 0x89, 0x23, 0x89, 0x1e, 0x49, 0xae, 0x46, 0x3c, 0x3e,
0x7b, 0x3d, 0x8f, 0xc7, 0xb5, 0x21, 0x06, 0xff, 0x01, 0x94, 0x69, 0x5b, 0x8a, 0x7d, 0x9e, 0x4b,
0x2c, 0x70, 0x62, 0x40, 0x66, 0x09, 0xd1, 0x9e, 0x50, 0xe0, 0x82, 0x66, 0x1d, 0xa4, 0x29, 0x2e,
0xfb, 0x91, 0x4d, 0x30, 0x65, 0x19, 0x0a, 0xd7, 0x04, 0x2e, 0xe8, 0xa6, 0xb7, 0x85, 0x39, 0xd3,
0xdb, 0x21, 0x94, 0xc4, 0x52, 0xe3, 0x60, 0x53, 0x2a, 0xcd, 0xa4, 0x55, 0x2a, 0x24, 0x01, 0x5b,
0x1c, 0x0a, 0x82, 0xd1, 0x65, 0xa5, 0x24, 0x60, 0x07, 0xfc, 0x08, 0x99, 0x5d, 0x06, 0x2a, 0xda,
0x0e, 0x40, 0xeb, 0x65, 0x34, 0x5f, 0xb4, 0x5d, 0x92, 0x24, 0x9e, 0x98, 0xf0, 0xbd, 0x1b, 0x66,
0x6d, 0x90, 0x58, 0x81, 0x4d, 0x49, 0xab, 0x58, 0x32, 0x9b, 0x08, 0x7a, 0x52, 0x1d, 0x57, 0x04,
0x2a, 0x7e, 0x6f, 0x2d, 0x40, 0x5e, 0xa0, 0x1a, 0x1f, 0xc3, 0x92, 0xd6, 0x0d, 0xb2, 0x03, 0xbc,
0xea, 0x08, 0x8d, 0x5f, 0x89, 0x0a, 0x8b, 0x36, 0xc8, 0xbf, 0xa4, 0x82, 0x40, 0xf8, 0x90, 0x06,
0x2e, 0x83, 0x4d, 0x08, 0x24, 0xd0, 0x5e, 0x39, 0x30, 0xe1, 0xd7, 0x60, 0x59, 0xab, 0x7d, 0xd7,
0x71, 0xed, 0x91, 0xf3, 0x43, 0x3c, 0xf0, 0x03, 0xe7, 0xcc, 0x9d, 0xa9, 0x9f, 0x40, 0x5f, 0xa9,
0xfe, 0x7f, 0x98, 0x85, 0x15, 0xd9, 0x00, 0x86, 0xf5, 0x39, 0x42, 0x8a, 0x3b, 0x08, 0xce, 0xd8,
0xb7, 0xa1, 0x26, 0xe6, 0xc6, 0xf2, 0xf9, 0x99, 0x13, 0x84, 0x5c, 0xf9, 0xb5, 0x52, 0x18, 0x97,
0x38, 0xcc, 0x05, 0xaa, 0x29, 0x31, 0xd9, 0xc7, 0x50, 0xc1, 0xa2, 0x64, 0x67, 0x91, 0x0b, 0xd1,
0x9c, 0x2f, 0x48, 0x13, 0xbd, 0x77, 0xc3, 0x84, 0x20, 0x9e, 0xf6, 0x8f, 0xa1, 0x82, 0x6b, 0x78,
0x81, 0x13, 0x39, 0xc3, 0xaa, 0xe6, 0x26, 0x5a, 0x14, 0x9e, 0xc4, 0xd3, 0xde, 0x82, 0x1a, 0x31,
0x2b, 0x39, 0x4f, 0x32, 0x5c, 0x68, 0x63, 0xbe, 0xb8, 0x9a, 0x49, 0xd1, 0xf9, 0x89, 0x96, 0xde,
0x2a, 0x43, 0x31, 0xf4, 0x9d, 0xb3, 0x33, 0xee, 0x1b, 0x6b, 0xd1, 0xd4, 0x08, 0x2e, 0xcc, 0x7b,
0x21, 0x9f, 0x08, 0xd9, 0xdc, 0xf8, 0xf7, 0x19, 0xa8, 0x48, 0xbe, 0xfa, 0x13, 0x3b, 0xd3, 0x36,
0xb4, 0xc8, 0x5a, 0x32, 0xe9, 0xc4, 0x81, 0xb4, 0xef, 0xc0, 0xe2, 0x58, 0xc8, 0xe9, 0x42, 0x8f,
0x4c, 0x78, 0xd2, 0xea, 0x0a, 0x2c, 0xc5, 0xe4, 0x4d, 0x58, 0x46, 0xa9, 0x39, 0xb0, 0x42, 0x67,
0x64, 0xa9, 0x4c, 0x19, 0xc5, 0xba, 0x44, 0x59, 0x7d, 0x67, 0x74, 0x20, 0x33, 0x84, 0xf0, 0x18,
0x84, 0xf6, 0x19, 0x97, 0x7b, 0x9b, 0x12, 0x46, 0x13, 0xd6, 0x66, 0x54, 0x48, 0xa5, 0x1f, 0xff,
0xdf, 0x25, 0x58, 0x9f, 0xcb, 0x92, 0x7a, 0x72, 0xe4, 0x41, 0x1a, 0x39, 0xe3, 0x13, 0x2f, 0xb2,
0xaf, 0x66, 0x34, 0x0f, 0xd2, 0xbe, 0xc8, 0x51, 0xf6, 0x55, 0x0e, 0xab, 0x8a, 0x20, 0xd1, 0x40,
0x1a, 0x69, 0x99, 0x59, 0xd4, 0x81, 0x3e, 0x48, 0x1e, 0x62, 0xb3, 0xcd, 0x29, 0xb8, 0x2e, 0x1a,
0x2d, 0x4f, 0xe6, 0x60, 0x01, 0xfb, 0x0d, 0x68, 0x46, 0x74, 0x2f, 0xc5, 0x76, 0x4d, 0x65, 0x16,
0x2d, 0xbd, 0xff, 0x92, 0x96, 0x12, 0xc6, 0x3d, 0x94, 0x9d, 0xd6, 0xd4, 0x96, 0xa1, 0x0a, 0xa3,
0xb6, 0x2e, 0xe0, 0x75, 0xd5, 0x16, 0x8a, 0xe1, 0xf3, 0x2d, 0xe6, 0x5f, 0x69, 0x6c, 0x68, 0xb8,
0x4c, 0x34, 0x6b, 0xde, 0x92, 0x15, 0x47, 0x59, 0x7a, 0xbb, 0xe7, 0xb0, 0xf6, 0xdc, 0x76, 0x42,
0x35, 0x46, 0x4d, 0x63, 0x2f, 0x60, 0x7b, 0x8f, 0x5e, 0xd2, 0xde, 0xe7, 0x54, 0x38, 0xa1, 0x98,
0xac, 0x3c, 0x9f, 0x07, 0x06, 0x1b, 0xff, 0x34, 0x07, 0xf5, 0x64, 0x2d, 0x82, 0xb1, 0xc8, 0xc3,
0x46, 0xc9, 0x9b, 0x52, 0x08, 0x96, 0xb6, 0xff, 0x2e, 0xc9, 0x99, 0xf3, 0x5e, 0x89, 0x6c, 0x8a,
0x57, 0x42, 0x77, 0x06, 0xe4, 0x5e, 0xe6, 0x7d, 0xcd, 0xbf, 0x92, 0xf7, 0xb5, 0x90, 0xe6, 0x7d,
0xbd, 0xde, 0x65, 0xb7, 0xf0, 0x13, 0xb9, 0xec, 0x8a, 0x2f, 0x74, 0xd9, 0x69, 0x8e, 0xc6, 0xd2,
0x35, 0x26, 0x7c, 0xcd, 0xf5, 0x98, 0xe2, 0xb2, 0x2b, 0x7f, 0x05, 0x97, 0xdd, 0xc6, 0x5f, 0x64,
0x80, 0xcd, 0xef, 0x0e, 0xf6, 0x09, 0x39, 0x7c, 0x5c, 0x3e, 0x92, 0x9c, 0xfb, 0xeb, 0xaf, 0xb6,
0xc3, 0x14, 0x41, 0xa8, 0xd2, 0xec, 0x01, 0x2c, 0xeb, 0xb1, 0xf6, 0xba, 0xd6, 0x5e, 0x33, 0x99,
0x9e, 0x15, 0xdb, 0x76, 0x34, 0x57, 0x77, 0xfe, 0xa5, 0xae, 0xee, 0xc2, 0x4b, 0x5d, 0xdd, 0x0b,
0x49, 0x57, 0xf7, 0xc6, 0x7f, 0xca, 0xc0, 0x72, 0x0a, 0x11, 0xff, 0xec, 0xc6, 0x2c, 0x68, 0x2f,
0xc1, 0xd6, 0xb2, 0x92, 0xf6, 0x74, 0x8e, 0xb6, 0xaf, 0xec, 0x81, 0x62, 0x29, 0x02, 0x79, 0x52,
0xdd, 0x7f, 0x19, 0x77, 0x89, 0x4b, 0x98, 0x7a, 0xf1, 0x8d, 0xdf, 0xcb, 0x42, 0x45, 0xcb, 0x14,
0xb3, 0x48, 0x24, 0xab, 0x45, 0x18, 0x91, 0x64, 0x88, 0x36, 0x87, 0x3b, 0x20, 0xbd, 0x1e, 0x94,
0x4f, 0x9b, 0x4b, 0x8a, 0x81, 0x88, 0xb0, 0x09, 0xcb, 0xca, 0x19, 0xc7, 0xe3, 0x40, 0x42, 0x79,
0xd6, 0x2c, 0x49, 0x97, 0x1c, 0x8f, 0xe2, 0x12, 0xd9, 0x03, 0xa5, 0x0e, 0xc6, 0x6b, 0x87, 0xa4,
0x4e, 0x2e, 0x85, 0x25, 0xda, 0x20, 0x6a, 0x11, 0x05, 0x9d, 0x7f, 0x00, 0xab, 0x6a, 0x7b, 0x24,
0x4b, 0x90, 0x97, 0x81, 0xc9, 0xcd, 0xa1, 0x17, 0xf9, 0x1e, 0xdc, 0x9e, 0xe9, 0xd3, 0x4c, 0x51,
0x8a, 0x78, 0xbd, 0x99, 0xe8, 0x9d, 0x5e, 0xc3, 0xc6, 0x8f, 0xa0, 0x96, 0x60, 0x94, 0x3f, 0xbb,
0x25, 0x9f, 0xb5, 0xf3, 0xd0, 0x8c, 0xea, 0x76, 0x9e, 0x8d, 0xff, 0x9d, 0x03, 0x36, 0xcf, 0xab,
0x7f, 0x9e, 0x5d, 0x98, 0x27, 0xcc, 0x5c, 0x0a, 0x61, 0xfe, 0x7f, 0x93, 0x1f, 0xde, 0x83, 0x25,
0x9f, 0x0f, 0xbc, 0x0b, 0xee, 0x6b, 0x1e, 0x55, 0xda, 0x9c, 0x8d, 0x28, 0x43, 0xf5, 0xe2, 0xa3,
0xd9, 0xc8, 0x8e, 0x52, 0xe2, 0x12, 0x89, 0x26, 0x40, 0xcd, 0x04, 0x78, 0x1c, 0xc3, 0x82, 0xed,
0x0e, 0xce, 0x3d, 0x5f, 0xf2, 0xc1, 0x5f, 0xf8, 0xca, 0xc7, 0xe7, 0x66, 0x0b, 0xcb, 0xa3, 0xd4,
0x66, 0xca, 0xca, 0x8c, 0x0f, 0xa0, 0xa2, 0x81, 0x59, 0x19, 0x0a, 0xfb, 0x9d, 0x83, 0xad, 0xc3,
0xc6, 0x0d, 0x56, 0x83, 0xb2, 0xd9, 0xde, 0x3e, 0xfc, 0xac, 0x6d, 0xb6, 0x77, 0x1a, 0x19, 0x56,
0x82, 0xfc, 0xfe, 0x61, 0xaf, 0xdf, 0xc8, 0x1a, 0x1b, 0xd0, 0x94, 0x35, 0xce, 0x3b, 0x35, 0x7e,
0x2b, 0x1f, 0x99, 0x0b, 0x31, 0x53, 0xaa, 0xe8, 0xdf, 0x80, 0xaa, 0x2e, 0xde, 0x48, 0x8a, 0x98,
0x71, 0xea, 0x0b, 0xe5, 0xdc, 0xd3, 0x78, 0xf5, 0x36, 0x90, 0x4b, 0x77, 0x18, 0x15, 0xcb, 0x26,
0xe4, 0xd6, 0x14, 0xf7, 0x21, 0x2a, 0x3f, 0x09, 0x32, 0xfc, 0x4b, 0x50, 0x4f, 0x1a, 0xf0, 0x25,
0x47, 0x4a, 0x53, 0x38, 0x45, 0xe9, 0x84, 0x45, 0x9f, 0x7d, 0x0f, 0x1a, 0xb3, 0x0e, 0x00, 0x29,
0x3c, 0x5f, 0x53, 0x7e, 0xd1, 0x49, 0xfa, 0x04, 0xd8, 0x1e, 0xac, 0xa4, 0x09, 0x78, 0x48, 0x1f,
0xd7, 0x1b, 0x29, 0xd8, 0xbc, 0x10, 0xc7, 0xbe, 0x25, 0x1d, 0x41, 0x05, 0x5c, 0xfe, 0xb7, 0x92,
0xed, 0x6b, 0x93, 0xbd, 0x49, 0xff, 0x34, 0x97, 0xd0, 0x05, 0x40, 0x0c, 0x63, 0x0d, 0xa8, 0x1e,
0x1e, 0xb5, 0xbb, 0xd6, 0xf6, 0x5e, 0xab, 0xdb, 0x6d, 0xef, 0x37, 0x6e, 0x30, 0x06, 0x75, 0x74,
0x66, 0xef, 0x44, 0xb0, 0x8c, 0x80, 0x49, 0x87, 0x9c, 0x82, 0x65, 0xd9, 0x0a, 0x34, 0x3a, 0xdd,
0x19, 0x68, 0x8e, 0x35, 0x61, 0xe5, 0xa8, 0x4d, 0xfe, 0xef, 0x44, 0xbd, 0x79, 0xa1, 0x34, 0xc8,
0xe1, 0x0a, 0xa5, 0xe1, 0x73, 0x7b, 0x34, 0xe2, 0xa1, 0xdc, 0x07, 0x4a, 0x96, 0xfe, 0xed, 0x0c,
0xac, 0xce, 0x64, 0xc4, 0xf7, 0x3d, 0x48, 0x92, 0x4e, 0xca, 0xd0, 0x55, 0x04, 0xaa, 0xdd, 0xf4,
0x1e, 0x2c, 0x45, 0x86, 0xa7, 0x99, 0x53, 0xa9, 0x11, 0x65, 0x28, 0xe4, 0x07, 0xb0, 0xac, 0xd9,
0xaf, 0x66, 0x78, 0x05, 0xd3, 0xb2, 0x64, 0x01, 0x63, 0x3d, 0x8a, 0xab, 0x9f, 0xe9, 0xf5, 0x10,
0xd6, 0x66, 0x33, 0x62, 0x3f, 0x59, 0xb2, 0xbf, 0x2a, 0xc9, 0x1e, 0xce, 0x10, 0x42, 0xb2, 0xb7,
0xfa, 0x82, 0xab, 0xe6, 0x7f, 0x7f, 0x01, 0xd8, 0xa7, 0x53, 0xee, 0x5f, 0xe1, 0x7d, 0x8e, 0xe0,
0x65, 0x01, 0x8e, 0xca, 0xd2, 0x92, 0x7d, 0xa5, 0x3b, 0x5b, 0x69, 0x77, 0xa6, 0xf2, 0x2f, 0xbf,
0x33, 0x55, 0x78, 0xd9, 0x9d, 0xa9, 0x37, 0xa1, 0xe6, 0x9c, 0xb9, 0x9e, 0x60, 0x85, 0x42, 0x12,
0x0e, 0x9a, 0x0b, 0x77, 0x73, 0xf7, 0xaa, 0x66, 0x55, 0x02, 0x85, 0x1c, 0x1c, 0xb0, 0x8f, 0x63,
0x24, 0x3e, 0x3c, 0xc3, 0x1b, 0x82, 0x3a, 0x13, 0x6c, 0x0f, 0xcf, 0xb8, 0x34, 0x2c, 0xa1, 0xa6,
0xa1, 0x0a, 0x0b, 0x78, 0xc0, 0xde, 0x82, 0x7a, 0xe0, 0x4d, 0x85, 0x62, 0xa1, 0xa6, 0x81, 0x1c,
0x65, 0x55, 0x82, 0x1e, 0x29, 0xb7, 0xe9, 0xf2, 0x34, 0xe0, 0xd6, 0xd8, 0x09, 0x02, 0x21, 0x9e,
0x0d, 0x3c, 0x37, 0xf4, 0xbd, 0x91, 0xf4, 0x7d, 0x2d, 0x4d, 0x03, 0x7e, 0x40, 0x39, 0xdb, 0x94,
0xc1, 0xbe, 0x19, 0x77, 0x69, 0x62, 0x3b, 0x7e, 0xd0, 0x04, 0xec, 0x92, 0x1a, 0x29, 0xca, 0xef,
0xb6, 0xe3, 0x47, 0x7d, 0x11, 0x89, 0x60, 0xe6, 0x2e, 0x57, 0x65, 0xf6, 0x2e, 0xd7, 0xaf, 0xa7,
0xdf, 0xe5, 0xaa, 0x61, 0xd5, 0x0f, 0x65, 0xd5, 0xf3, 0x4b, 0xfc, 0x95, 0xae, 0x74, 0xcd, 0x5f,
0x51, 0xab, 0x7f, 0x95, 0x2b, 0x6a, 0x8b, 0x69, 0x57, 0xd4, 0x3e, 0x80, 0x0a, 0x5e, 0x1e, 0xb2,
0xce, 0x1d, 0x21, 0xc3, 0x91, 0x2f, 0xaf, 0xa1, 0xdf, 0x2e, 0xda, 0x73, 0xdc, 0xd0, 0x04, 0x5f,
0xfd, 0x0c, 0xe6, 0x6f, 0x8b, 0x2d, 0xfd, 0x1c, 0x6f, 0x8b, 0xc9, 0x4b, 0x4e, 0x9b, 0x50, 0x52,
0xeb, 0xc4, 0x18, 0xe4, 0x4f, 0x7d, 0x6f, 0xac, 0x7c, 0x1c, 0xe2, 0x37, 0xab, 0x43, 0x36, 0xf4,
0x64, 0xe1, 0x6c, 0xe8, 0x19, 0xbf, 0x0a, 0x15, 0x8d, 0xd4, 0xd8, 0x1b, 0x64, 0x97, 0x14, 0xba,
0x99, 0x94, 0x2d, 0x69, 0x16, 0xcb, 0x12, 0xda, 0x19, 0x0a, 0x7e, 0x33, 0x74, 0x7c, 0x8e, 0xf7,
0x3a, 0x2d, 0x9f, 0x5f, 0x70, 0x3f, 0x50, 0x3e, 0xa7, 0x46, 0x94, 0x61, 0x12, 0xdc, 0xf8, 0x35,
0x58, 0x4e, 0xac, 0xad, 0x64, 0x11, 0x6f, 0xc1, 0x02, 0xce, 0x9b, 0x0a, 0x1a, 0x48, 0xde, 0xda,
0x92, 0x79, 0x78, 0x87, 0x95, 0xdc, 0x65, 0xd6, 0xc4, 0xf7, 0x4e, 0xb0, 0x91, 0x8c, 0x59, 0x91,
0xb0, 0x23, 0xdf, 0x3b, 0x31, 0xfe, 0x34, 0x07, 0xb9, 0x3d, 0x6f, 0xa2, 0x07, 0xb1, 0x65, 0xe6,
0x82, 0xd8, 0xa4, 0xc2, 0x69, 0x45, 0x0a, 0xa5, 0x94, 0xd9, 0xd1, 0x51, 0xa4, 0x94, 0xca, 0x7b,
0x50, 0x17, 0x7c, 0x22, 0xf4, 0x84, 0xc6, 0xfe, 0xdc, 0xf6, 0x49, 0x20, 0xce, 0xd1, 0xe6, 0xb3,
0xc7, 0x61, 0xdf, 0xdb, 0x25, 0x38, 0x5b, 0x81, 0x5c, 0xa4, 0xbe, 0x60, 0xb6, 0x48, 0xb2, 0x35,
0x58, 0xc0, 0x68, 0xe6, 0x2b, 0xe9, 0xf4, 0x96, 0x29, 0xf6, 0x75, 0x58, 0x4e, 0xd6, 0x4b, 0xac,
0x48, 0xca, 0x46, 0x7a, 0xc5, 0xc8, 0x93, 0x6e, 0x82, 0xe0, 0x23, 0x84, 0x23, 0x83, 0x6b, 0x4e,
0x39, 0xc7, 0x2c, 0x8d, 0xe9, 0x95, 0x12, 0x4c, 0xef, 0x0e, 0x54, 0xc2, 0xd1, 0x85, 0x35, 0xb1,
0xaf, 0x46, 0x9e, 0x3d, 0x94, 0xfb, 0x1b, 0xc2, 0xd1, 0xc5, 0x11, 0x41, 0xd8, 0x03, 0x80, 0xf1,
0x64, 0x22, 0xf7, 0x1e, 0x3a, 0x3f, 0x62, 0x52, 0x3e, 0x38, 0x3a, 0x22, 0x92, 0x33, 0xcb, 0xe3,
0xc9, 0x84, 0x7e, 0xb2, 0x1d, 0xa8, 0xa7, 0xde, 0xbd, 0xbc, 0xad, 0x82, 0x6f, 0xbd, 0xc9, 0x66,
0xca, 0xe6, 0xac, 0x0d, 0x74, 0xd8, 0xc6, 0xf7, 0x80, 0xfd, 0x94, 0x37, 0x20, 0xfb, 0x50, 0x8e,
0xfa, 0xa7, 0x5f, 0x20, 0xc4, 0x70, 0xfa, 0x4a, 0xe2, 0x02, 0x61, 0x6b, 0x38, 0xf4, 0x05, 0x5f,
0xa4, 0x03, 0x33, 0x62, 0xf9, 0xa0, 0x9d, 0x98, 0x2d, 0xe2, 0xfb, 0xc6, 0x7f, 0xcb, 0x40, 0x81,
0x6e, 0x33, 0xbe, 0x0d, 0x8b, 0x84, 0x1f, 0x05, 0x04, 0x4a, 0x57, 0x39, 0x9d, 0xbb, 0x7d, 0x19,
0x0b, 0x28, 0xb6, 0x85, 0x76, 0x97, 0x3b, 0x1b, 0xad, 0xbc, 0x76, 0x9f, 0xfb, 0x0e, 0x94, 0xa3,
0xa6, 0x35, 0xd2, 0x29, 0xa9, 0x96, 0xd9, 0xeb, 0x90, 0x3f, 0xf7, 0x26, 0xca, 0xf2, 0x03, 0xf1,
0x4c, 0x9a, 0x08, 0x8f, 0xfb, 0x22, 0xda, 0xa0, 0xce, 0x4b, 0x8b, 0x45, 0xd4, 0x08, 0x92, 0xc1,
0xfc, 0x18, 0x17, 0x52, 0xc6, 0x78, 0x0c, 0x8b, 0x82, 0x0f, 0x68, 0x31, 0x2d, 0xd7, 0x1f, 0x9a,
0xef, 0x0a, 0x09, 0x6f, 0x30, 0x9a, 0x0e, 0xb9, 0x6e, 0x7b, 0xc3, 0x00, 0x38, 0x09, 0x57, 0x92,
0xb5, 0xf1, 0xfb, 0x19, 0xe2, 0x2f, 0xa2, 0x5e, 0x76, 0x0f, 0xf2, 0xe2, 0x7c, 0x9b, 0xb1, 0xc4,
0x47, 0xf7, 0x1a, 0x04, 0x9e, 0x89, 0x18, 0x62, 0xe9, 0xd0, 0x6b, 0xaf, 0xd7, 0x5e, 0x33, 0x2b,
0xee, 0x74, 0x1c, 0x99, 0xae, 0xbe, 0xa6, 0x86, 0x35, 0x63, 0xf6, 0xa1, 0xd1, 0x47, 0xdb, 0x74,
0x53, 0x8b, 0xa4, 0xcb, 0x27, 0x4e, 0x4c, 0x25, 0x05, 0x0e, 0xcf, 0xb8, 0x16, 0x41, 0xf7, 0x47,
0x59, 0xa8, 0x25, 0x7a, 0x84, 0xa1, 0x84, 0xe2, 0x00, 0x20, 0xc7, 0x92, 0x5c, 0x6f, 0x10, 0x20,
0x29, 0xa8, 0x6b, 0xf3, 0x94, 0x4d, 0xcc, 0x53, 0x14, 0x9c, 0x93, 0xd3, 0x83, 0x73, 0x1e, 0x42,
0x39, 0xbe, 0xc3, 0x9f, 0xec, 0x92, 0x68, 0x4f, 0xdd, 0xee, 0x88, 0x91, 0xe2, 0x70, 0x9e, 0x82,
0x1e, 0xce, 0xf3, 0x5d, 0x2d, 0xfa, 0x63, 0x01, 0xab, 0x31, 0xd2, 0x66, 0xf4, 0xe7, 0x12, 0xfb,
0x61, 0x7c, 0x0c, 0x15, 0xad, 0xf3, 0x7a, 0x94, 0x47, 0x26, 0x11, 0xe5, 0x11, 0xdd, 0xc3, 0xca,
0xc6, 0xf7, 0xb0, 0x8c, 0xbf, 0x9e, 0x85, 0x9a, 0xd8, 0x5f, 0x8e, 0x7b, 0x76, 0xe4, 0x8d, 0x9c,
0x01, 0x3a, 0x9a, 0xa2, 0x1d, 0x26, 0x05, 0x2d, 0xb5, 0xcf, 0xe4, 0x16, 0x23, 0x39, 0x4b, 0xbf,
0x6e, 0x4a, 0x4c, 0x3a, 0xba, 0x6e, 0x6a, 0x40, 0x4d, 0x30, 0x46, 0x74, 0x19, 0xc5, 0xef, 0x03,
0x98, 0x95, 0x53, 0xce, 0xb7, 0xec, 0x80, 0x38, 0xe4, 0xd7, 0x61, 0x59, 0xe0, 0xe0, 0x4d, 0xbb,
0xb1, 0x33, 0x1a, 0x39, 0x84, 0x49, 0x86, 0xa6, 0xc6, 0x29, 0xe7, 0xa6, 0x1d, 0xf2, 0x03, 0x91,
0x21, 0x9f, 0x13, 0x28, 0x0d, 0x9d, 0xc0, 0x3e, 0x89, 0x03, 0x3e, 0xa3, 0x34, 0x7a, 0x96, 0xed,
0x4b, 0xcd, 0xb3, 0x4c, 0x06, 0x88, 0xca, 0xd8, 0xbe, 0x8c, 0x3c, 0xcb, 0x33, 0x94, 0x54, 0x9c,
0xa5, 0x24, 0xe3, 0xdf, 0x65, 0xa1, 0xa2, 0x91, 0xe5, 0xab, 0x9c, 0xae, 0xb7, 0xe7, 0x1c, 0x83,
0x65, 0xdd, 0x07, 0xf8, 0x66, 0xb2, 0x49, 0x8c, 0x7d, 0xa1, 0x87, 0x0b, 0x34, 0x02, 0xbe, 0x05,
0x65, 0xb1, 0xeb, 0x3e, 0x40, 0x13, 0xac, 0x7c, 0xb8, 0x03, 0x01, 0x47, 0xd3, 0x13, 0x95, 0xf9,
0x08, 0x33, 0x0b, 0x71, 0xe6, 0x23, 0x91, 0xf9, 0xa2, 0x10, 0xec, 0x8f, 0xa0, 0x2a, 0x6b, 0xc5,
0x35, 0xc5, 0xe1, 0xc6, 0xbb, 0x3e, 0xb1, 0xde, 0x66, 0x85, 0x9a, 0xa3, 0xc5, 0x97, 0x05, 0x1f,
0xa9, 0x82, 0xa5, 0x97, 0x15, 0x7c, 0x44, 0x09, 0x63, 0x37, 0x8a, 0x6a, 0xc7, 0xb8, 0x2b, 0xc5,
0xc7, 0x1e, 0xc0, 0xb2, 0x62, 0x57, 0x53, 0xd7, 0x76, 0x5d, 0x6f, 0xea, 0x0e, 0xb8, 0xba, 0xa0,
0xc5, 0x64, 0xd6, 0x71, 0x9c, 0x63, 0x0c, 0xa3, 0x1b, 0xbc, 0x14, 0xbf, 0x75, 0x1f, 0x0a, 0x24,
0x97, 0x93, 0xf0, 0x91, 0xce, 0xb8, 0x08, 0x85, 0xdd, 0x83, 0x02, 0x89, 0xe7, 0xd9, 0x6b, 0x99,
0x0d, 0x21, 0x18, 0x2d, 0x60, 0xa2, 0xe0, 0x01, 0x0f, 0x7d, 0x67, 0x10, 0xc4, 0x77, 0xbf, 0x0a,
0x42, 0xff, 0xa4, 0xb6, 0x62, 0xcb, 0x6d, 0x8c, 0x89, 0x3a, 0x2a, 0xe1, 0x88, 0x83, 0x69, 0x39,
0x51, 0x87, 0x14, 0x97, 0x46, 0xb0, 0x76, 0xc2, 0xc3, 0xe7, 0x9c, 0xbb, 0xae, 0x10, 0x86, 0x06,
0xdc, 0x0d, 0x7d, 0x7b, 0x24, 0x16, 0x89, 0x46, 0xf0, 0x78, 0xae, 0xd6, 0xd8, 0x06, 0xb2, 0x15,
0x17, 0xdc, 0x8e, 0xca, 0x11, 0xef, 0x58, 0x3d, 0x49, 0xcb, 0xdb, 0xf8, 0x15, 0xd8, 0xb8, 0xbe,
0x50, 0xca, 0x0d, 0xcf, 0x7b, 0x49, 0xae, 0x12, 0xf9, 0x01, 0x47, 0x9e, 0x1d, 0x52, 0x6f, 0x74,
0xce, 0xd2, 0x85, 0x8a, 0x96, 0x13, 0x9f, 0xfd, 0x19, 0x14, 0xee, 0x28, 0x21, 0x4e, 0x24, 0xd7,
0xf3, 0xc7, 0xe8, 0x77, 0x1b, 0x5a, 0x71, 0xed, 0x19, 0x73, 0x31, 0x86, 0xe3, 0x95, 0x76, 0x63,
0x13, 0x16, 0x51, 0xb2, 0xd7, 0x0e, 0xba, 0x17, 0x09, 0x83, 0xc6, 0x0a, 0xb0, 0x2e, 0xf1, 0x2e,
0x3d, 0xde, 0xf3, 0x3f, 0xe7, 0xa0, 0xa2, 0x81, 0xc5, 0x69, 0x84, 0x01, 0x80, 0xd6, 0xd0, 0xb1,
0xc7, 0x5c, 0x39, 0x39, 0x6b, 0x66, 0x0d, 0xa1, 0x3b, 0x12, 0x28, 0xce, 0x62, 0xfb, 0xe2, 0xcc,
0xf2, 0xa6, 0xa1, 0x35, 0xe4, 0x67, 0x3e, 0x57, 0xbd, 0xac, 0xda, 0x17, 0x67, 0x87, 0xd3, 0x70,
0x07, 0x61, 0x02, 0x4b, 0xf0, 0x12, 0x0d, 0x4b, 0xc6, 0xac, 0x8d, 0xed, 0xcb, 0x18, 0x4b, 0x06,
0x4e, 0x12, 0x65, 0xe6, 0xa3, 0xc0, 0x49, 0xd2, 0x16, 0x67, 0x0f, 0xd0, 0xc2, 0xfc, 0x01, 0xfa,
0x4d, 0x58, 0xa3, 0x03, 0x54, 0xb2, 0x66, 0x6b, 0x66, 0x27, 0xaf, 0x60, 0xae, 0x1c, 0xa4, 0x26,
0xf6, 0x36, 0xc4, 0x08, 0x14, 0x5b, 0x0a, 0x9c, 0x1f, 0x12, 0x23, 0xcb, 0x98, 0x62, 0x64, 0xb2,
0xf2, 0x9e, 0xf3, 0x43, 0x2e, 0x30, 0x31, 0x3a, 0x46, 0xc7, 0x94, 0x17, 0x2c, 0xc6, 0x8e, 0x3b,
0x8b, 0x69, 0x5f, 0x26, 0x31, 0xcb, 0x12, 0xd3, 0xbe, 0xd4, 0x31, 0x1f, 0xc3, 0xfa, 0x98, 0x0f,
0x1d, 0x3b, 0x59, 0xad, 0x15, 0x0b, 0x6e, 0x2b, 0x94, 0xad, 0x95, 0xe9, 0x91, 0xe2, 0x2e, 0x66,
0xe3, 0x87, 0xde, 0xf8, 0xc4, 0x21, 0x99, 0x85, 0xe2, 0x75, 0xf2, 0x66, 0xdd, 0x9d, 0x8e, 0x7f,
0x80, 0x60, 0x51, 0x24, 0x30, 0x6a, 0x50, 0xe9, 0x85, 0xde, 0x44, 0x2d, 0x73, 0x1d, 0xaa, 0x94,
0x94, 0xb7, 0x1e, 0x6f, 0xc1, 0x4d, 0x64, 0x09, 0x7d, 0x6f, 0xe2, 0x8d, 0xbc, 0xb3, 0xab, 0x84,
0x1d, 0xef, 0x3f, 0x64, 0x60, 0x39, 0x91, 0x2b, 0xd9, 0xeb, 0x37, 0x89, 0x9f, 0x45, 0x57, 0xd7,
0x68, 0x0f, 0x2e, 0x69, 0x7b, 0x90, 0x10, 0x89, 0x99, 0xa9, 0xeb, 0x6c, 0xad, 0xf8, 0xc9, 0x05,
0x55, 0x90, 0x58, 0x4a, 0x73, 0x9e, 0xa5, 0xc8, 0xf2, 0xea, 0x31, 0x06, 0x55, 0xc5, 0x2f, 0xc8,
0x4b, 0x30, 0x43, 0x39, 0xe4, 0x5c, 0xf2, 0x26, 0x81, 0x6e, 0xf3, 0x53, 0x3d, 0x88, 0x0d, 0x81,
0x81, 0xf1, 0xcf, 0x32, 0x00, 0x71, 0xef, 0xf0, 0x2e, 0x43, 0x24, 0xb7, 0x64, 0x30, 0x0c, 0x55,
0x93, 0x51, 0xde, 0x80, 0x6a, 0x14, 0xb1, 0x1c, 0x4b, 0x42, 0x15, 0x05, 0x13, 0xe2, 0xd0, 0x3b,
0xb0, 0x78, 0x36, 0xf2, 0x4e, 0x50, 0x62, 0x95, 0x72, 0x0b, 0xc5, 0xab, 0xd5, 0x09, 0xac, 0xa4,
0x91, 0x58, 0x6e, 0xca, 0xa7, 0x06, 0x35, 0xeb, 0x52, 0x90, 0xf1, 0x77, 0xb3, 0x51, 0xe8, 0x66,
0x3c, 0x13, 0x2f, 0x56, 0xef, 0x7e, 0x92, 0x58, 0x9a, 0x17, 0xb9, 0x17, 0x3f, 0x86, 0xba, 0x4f,
0x87, 0x92, 0x3a, 0xb1, 0xf2, 0x2f, 0x38, 0xb1, 0x6a, 0x7e, 0x42, 0xd2, 0x79, 0x17, 0x1a, 0xf6,
0xf0, 0x82, 0xfb, 0xa1, 0x83, 0xd6, 0x7a, 0x94, 0x8f, 0x65, 0xb0, 0xa4, 0x06, 0x47, 0x41, 0xf4,
0x1d, 0x58, 0x94, 0x37, 0x71, 0x23, 0x4c, 0xf9, 0xb6, 0x4f, 0x0c, 0x16, 0x88, 0xc6, 0xbf, 0x54,
0xb1, 0xa2, 0xc9, 0xd5, 0x7d, 0xf1, 0xac, 0xe8, 0x23, 0xcc, 0xce, 0x3b, 0x50, 0x25, 0x21, 0x49,
0x27, 0x80, 0xe4, 0x47, 0x04, 0x94, 0x2e, 0x80, 0xe4, 0xb4, 0xe6, 0x5f, 0x65, 0x5a, 0x8d, 0xff,
0x98, 0x81, 0xe2, 0x9e, 0x37, 0xd9, 0x73, 0x28, 0x9a, 0x1f, 0xb7, 0x49, 0xe4, 0xa3, 0x5a, 0x10,
0x49, 0x0c, 0xfc, 0x79, 0xc1, 0x85, 0xb3, 0x54, 0x31, 0xaf, 0x96, 0x14, 0xf3, 0xbe, 0x0b, 0xb7,
0xd0, 0x05, 0xe8, 0x7b, 0x13, 0xcf, 0x17, 0x5b, 0xd5, 0x1e, 0x91, 0xb8, 0xe7, 0xb9, 0xe1, 0xb9,
0xe2, 0x9d, 0x37, 0x4f, 0x39, 0x3f, 0xd2, 0x30, 0x0e, 0x22, 0x04, 0xbc, 0xd2, 0x39, 0x0a, 0x2f,
0x2c, 0xd2, 0xd0, 0xa5, 0x3c, 0x4a, 0x1c, 0x75, 0x51, 0x64, 0xb4, 0x11, 0x8e, 0x12, 0xa9, 0xf1,
0x2d, 0x28, 0x47, 0xc6, 0x1e, 0xf6, 0x1e, 0x94, 0xcf, 0xbd, 0x89, 0xb4, 0x08, 0x65, 0x12, 0x97,
0xf2, 0xe4, 0xa8, 0xcd, 0xd2, 0x39, 0xfd, 0x08, 0x8c, 0x3f, 0x2d, 0x42, 0xb1, 0xe3, 0x5e, 0x78,
0xce, 0x00, 0xa3, 0x4d, 0xc7, 0x7c, 0xec, 0xa9, 0xe7, 0x00, 0xc4, 0x6f, 0x8c, 0xcd, 0x8a, 0x5f,
0xe8, 0xc9, 0xc9, 0xd8, 0xac, 0xe8, 0x6d, 0x9e, 0x55, 0x58, 0xf0, 0xf5, 0x27, 0x76, 0x0a, 0x3e,
0xc6, 0xbf, 0x47, 0xe7, 0x65, 0x41, 0x7b, 0x4e, 0x41, 0xd4, 0x45, 0x4f, 0xbf, 0xe0, 0x94, 0xd1,
0xf5, 0xcc, 0x32, 0x42, 0x70, 0xc2, 0x5e, 0x83, 0xa2, 0xbc, 0x03, 0x47, 0x97, 0x96, 0x28, 0x60,
0x5d, 0x82, 0x90, 0x1a, 0x7c, 0x4e, 0x2e, 0xdc, 0x48, 0x90, 0xcd, 0x99, 0x55, 0x05, 0xdc, 0x11,
0xb4, 0x76, 0x07, 0x2a, 0x84, 0x4f, 0x28, 0x25, 0x19, 0xa4, 0x89, 0x20, 0x44, 0x48, 0x79, 0xa9,
0xaa, 0x9c, 0xfa, 0x52, 0x15, 0x86, 0x13, 0x47, 0x5c, 0x96, 0x86, 0x08, 0xf4, 0x3e, 0x91, 0x06,
0x57, 0x0f, 0xbd, 0x49, 0x9b, 0x0a, 0xdd, 0x56, 0x56, 0x36, 0x95, 0x37, 0xa1, 0x76, 0x6a, 0x8f,
0x46, 0x27, 0xf6, 0xe0, 0x19, 0x99, 0x02, 0xaa, 0x64, 0xfd, 0x54, 0x40, 0xb4, 0x05, 0xdc, 0x81,
0x8a, 0xb6, 0xca, 0x18, 0x81, 0x99, 0x37, 0x21, 0x5e, 0xdf, 0x59, 0x0b, 0x5f, 0xfd, 0x15, 0x2c,
0x7c, 0x5a, 0x24, 0xea, 0x62, 0x32, 0x12, 0xf5, 0x16, 0x72, 0x53, 0x19, 0x72, 0xd8, 0xa0, 0xc7,
0x70, 0xec, 0xe1, 0x10, 0x43, 0x0e, 0xd1, 0x90, 0x45, 0x93, 0x47, 0xf9, 0x4b, 0xa4, 0x4b, 0x10,
0x8c, 0x50, 0x6e, 0x93, 0x99, 0x7a, 0x62, 0x3b, 0x43, 0xbc, 0x74, 0x40, 0xd6, 0x83, 0xa2, 0x3d,
0x0e, 0x8f, 0x6c, 0x67, 0xc8, 0xee, 0x42, 0x55, 0x65, 0xe3, 0xe9, 0xb8, 0x4c, 0xf3, 0x2f, 0xb3,
0xc5, 0x99, 0x68, 0x40, 0x2d, 0xc2, 0x18, 0xc7, 0x57, 0x8e, 0x2b, 0x12, 0x05, 0xe9, 0xe0, 0x03,
0x8c, 0xf2, 0x09, 0x39, 0x5e, 0x2c, 0xae, 0x3f, 0xba, 0x15, 0x05, 0x1f, 0x20, 0x95, 0xaa, 0xff,
0xe4, 0x1c, 0x23, 0x4c, 0x21, 0xdc, 0x91, 0x8f, 0x6e, 0x2d, 0x21, 0xff, 0x4a, 0x54, 0xf4, 0xd1,
0x11, 0x02, 0xfb, 0x96, 0xa6, 0xbf, 0x36, 0x11, 0xf9, 0xb5, 0x99, 0xfa, 0xaf, 0xbb, 0x94, 0x75,
0x1b, 0xc0, 0x09, 0xc4, 0x29, 0x13, 0x70, 0x77, 0x88, 0x77, 0x84, 0x4b, 0x66, 0xd9, 0x09, 0x9e,
0x10, 0xe0, 0x67, 0xab, 0xd8, 0xb6, 0xa0, 0xaa, 0x0f, 0x93, 0x95, 0x20, 0x7f, 0x78, 0xd4, 0xee,
0x36, 0x6e, 0xb0, 0x0a, 0x14, 0x7b, 0xed, 0x7e, 0x7f, 0x1f, 0x3d, 0x7d, 0x55, 0x28, 0x45, 0x17,
0x19, 0xb3, 0x22, 0xd5, 0xda, 0xde, 0x6e, 0x1f, 0xf5, 0xdb, 0x3b, 0x8d, 0xdc, 0xf7, 0xf3, 0xa5,
0x6c, 0x23, 0x67, 0xfc, 0x59, 0x0e, 0x2a, 0xda, 0x2c, 0xbc, 0x98, 0x19, 0xdf, 0x06, 0x40, 0x4d,
0x32, 0x8e, 0x48, 0xcd, 0x9b, 0x65, 0x01, 0xa1, 0xc5, 0xd7, 0x7d, 0x14, 0x39, 0x7a, 0x65, 0x49,
0xf9, 0x28, 0xde, 0x84, 0x1a, 0x3d, 0x58, 0xa4, 0xfb, 0x6b, 0x0b, 0x66, 0x95, 0x80, 0x92, 0x55,
0xe3, 0x0d, 0x67, 0x44, 0xc2, 0xeb, 0x75, 0xf2, 0xf9, 0x12, 0x02, 0xe1, 0x05, 0x3b, 0xbc, 0x1d,
0x19, 0x78, 0xa3, 0x0b, 0x4e, 0x18, 0x24, 0x11, 0x56, 0x24, 0xac, 0x2f, 0xef, 0x6a, 0x4b, 0x7e,
0xa8, 0x5d, 0xb1, 0x2d, 0x98, 0x55, 0x02, 0xca, 0x86, 0xbe, 0xae, 0x08, 0x88, 0xa2, 0x57, 0xd6,
0xe7, 0xa9, 0x21, 0x41, 0x3c, 0xfb, 0x73, 0x66, 0xc4, 0x32, 0x12, 0xc6, 0xd7, 0xe6, 0xcb, 0xbd,
0xdc, 0x9c, 0xc8, 0xde, 0x03, 0x36, 0x9e, 0x4c, 0xac, 0x14, 0x03, 0x5f, 0xde, 0x5c, 0x1c, 0x4f,
0x26, 0x7d, 0xcd, 0xfe, 0xf5, 0x33, 0xb0, 0x3d, 0x7e, 0x01, 0xac, 0x25, 0x36, 0x30, 0x76, 0x31,
0x52, 0xc5, 0x62, 0xb6, 0x9c, 0xd1, 0xd9, 0x72, 0x0a, 0xf7, 0xcb, 0xa6, 0x72, 0xbf, 0x17, 0xf1,
0x09, 0x63, 0x17, 0x2a, 0x47, 0xda, 0x73, 0x68, 0x77, 0xc5, 0x09, 0xa1, 0x1e, 0x42, 0xa3, 0xb3,
0x83, 0x6c, 0x8a, 0xbe, 0x7c, 0xff, 0x4c, 0xeb, 0x4d, 0x56, 0xeb, 0x8d, 0xf1, 0x4f, 0x32, 0xf4,
0xd4, 0x4c, 0xd4, 0xf9, 0xf8, 0x05, 0x36, 0xe5, 0x7e, 0x8b, 0x6f, 0xc2, 0x57, 0x94, 0xdb, 0x4d,
0x5e, 0x62, 0xc7, 0xae, 0x59, 0xde, 0xe9, 0x69, 0xc0, 0x55, 0x8c, 0x47, 0x05, 0x61, 0x87, 0x08,
0x52, 0xc2, 0xb7, 0x90, 0xf0, 0x1d, 0xaa, 0x3f, 0x90, 0x81, 0x1d, 0x42, 0xf8, 0x3e, 0xb0, 0x2f,
0x65, 0xab, 0x81, 0x10, 0x41, 0xa4, 0x7f, 0x40, 0x5d, 0x96, 0x8d, 0xd2, 0xc6, 0x3f, 0x92, 0x97,
0xf5, 0x67, 0xe7, 0xf7, 0x3e, 0x94, 0xa2, 0x5a, 0x93, 0x27, 0xac, 0xc2, 0x8c, 0xf2, 0xc5, 0x39,
0x8e, 0xc6, 0x90, 0x44, 0x8f, 0x69, 0x73, 0xa1, 0x8f, 0xa7, 0xa3, 0xf5, 0xfa, 0x7d, 0x60, 0xa7,
0x8e, 0x3f, 0x8b, 0x4c, 0x9b, 0xad, 0x81, 0x39, 0x1a, 0xb6, 0x71, 0x0c, 0xcb, 0x8a, 0x4b, 0x68,
0x1a, 0x41, 0x72, 0xf1, 0x32, 0x2f, 0x61, 0xf2, 0xd9, 0x39, 0x26, 0x6f, 0xfc, 0x66, 0x01, 0x8a,
0xea, 0x69, 0xc1, 0xb4, 0xe7, 0xf0, 0xca, 0xc9, 0xe7, 0xf0, 0x9a, 0x89, 0xa7, 0x93, 0x70, 0xe9,
0xe5, 0x79, 0xff, 0xce, 0xec, 0x91, 0xad, 0xf9, 0x2a, 0x12, 0xc7, 0xb6, 0xf4, 0x55, 0x14, 0x92,
0xbe, 0x8a, 0xb4, 0x27, 0x02, 0x49, 0xf4, 0x9c, 0x7b, 0x22, 0xf0, 0x16, 0x90, 0x1c, 0xa1, 0x05,
0xb7, 0x95, 0x10, 0x20, 0xce, 0x9c, 0xa4, 0xd8, 0x51, 0x9a, 0x15, 0x3b, 0x5e, 0x59, 0x24, 0xf8,
0x26, 0x2c, 0xd0, 0xf3, 0x1a, 0xf2, 0xf2, 0xaf, 0x3a, 0x38, 0xe4, 0x5c, 0xa9, 0xff, 0x74, 0xe3,
0xc1, 0x94, 0xb8, 0xfa, 0x7b, 0x5b, 0x95, 0xc4, 0x7b, 0x5b, 0xba, 0x0f, 0xa5, 0x9a, 0xf4, 0xa1,
0xdc, 0x83, 0x46, 0x34, 0x71, 0x68, 0x91, 0x74, 0x03, 0x79, 0x73, 0xb0, 0xae, 0xe0, 0x82, 0x1b,
0x76, 0x83, 0xf8, 0xe0, 0xab, 0x27, 0x0e, 0x3e, 0xc1, 0xab, 0x5a, 0x61, 0xc8, 0xc7, 0x93, 0x50,
0x1d, 0x7c, 0xda, 0xab, 0x8c, 0xb4, 0xf2, 0x8b, 0xb8, 0xf2, 0x6a, 0x79, 0x89, 0x3a, 0xb6, 0xa0,
0x7e, 0x6a, 0x3b, 0xa3, 0xa9, 0xcf, 0x2d, 0x9f, 0xdb, 0x81, 0xe7, 0xe2, 0xe6, 0x8f, 0xcf, 0x60,
0x39, 0xc4, 0x5d, 0xc2, 0x31, 0x11, 0xc5, 0xac, 0x9d, 0xea, 0x49, 0xbc, 0xc4, 0xa4, 0xcf, 0x84,
0x38, 0xb2, 0xe4, 0x1d, 0x62, 0x8a, 0x55, 0xe9, 0x74, 0xad, 0xdd, 0xfd, 0xce, 0x27, 0x7b, 0xfd,
0x46, 0x46, 0x24, 0x7b, 0xc7, 0xdb, 0xdb, 0xed, 0xf6, 0x0e, 0x1e, 0x61, 0x00, 0x0b, 0xbb, 0xad,
0xce, 0xbe, 0x3c, 0xc0, 0xf2, 0x8d, 0x82, 0xf1, 0x6f, 0xb2, 0x50, 0xd1, 0x46, 0xc3, 0x1e, 0x47,
0x8b, 0x40, 0x2f, 0x40, 0xdd, 0x9e, 0x1f, 0xf1, 0xa6, 0xe2, 0xf0, 0xda, 0x2a, 0x44, 0xef, 0x2f,
0x66, 0xaf, 0x7d, 0x7f, 0x91, 0xbd, 0x0d, 0x8b, 0x36, 0xd5, 0x10, 0x4d, 0xba, 0x34, 0xee, 0x4b,
0xb0, 0x9c, 0x73, 0x8c, 0x20, 0x8d, 0x8f, 0x29, 0x81, 0x97, 0x57, 0x41, 0x9b, 0xd1, 0x49, 0x85,
0x6b, 0x53, 0x94, 0x33, 0x23, 0x9d, 0xf1, 0xd1, 0x81, 0x2f, 0xe7, 0x4b, 0x65, 0x0b, 0x16, 0x94,
0xa0, 0xf0, 0xaa, 0x19, 0xa5, 0x8d, 0x0f, 0x01, 0xe2, 0xf1, 0x24, 0xa7, 0xef, 0x46, 0x72, 0xfa,
0x32, 0xda, 0xf4, 0x65, 0x8d, 0x7f, 0x21, 0x59, 0x97, 0x5c, 0x8b, 0xc8, 0xd4, 0xf7, 0x75, 0x50,
0xc6, 0x47, 0x0b, 0x83, 0xbc, 0x27, 0x23, 0x1e, 0xaa, 0xc7, 0x0c, 0x96, 0x64, 0x4e, 0x27, 0xca,
0x98, 0x63, 0xb5, 0xd9, 0x79, 0x56, 0xfb, 0x06, 0x54, 0x05, 0x9b, 0x95, 0x84, 0x14, 0x48, 0x76,
0x55, 0x19, 0xdb, 0x97, 0xaa, 0xed, 0x04, 0x8f, 0xcd, 0xcf, 0xf0, 0xd8, 0xdf, 0xc9, 0xd0, 0xdb,
0x22, 0x71, 0x47, 0x63, 0x26, 0x1b, 0xd5, 0x99, 0x64, 0xb2, 0x12, 0xd5, 0x8c, 0xf2, 0xaf, 0x61,
0x9c, 0xd9, 0x74, 0xc6, 0x99, 0xce, 0x92, 0x73, 0xa9, 0x2c, 0xd9, 0xd8, 0x80, 0xe6, 0x0e, 0x17,
0x53, 0xd1, 0x1a, 0x8d, 0x66, 0xe6, 0xd2, 0xb8, 0x05, 0x37, 0x53, 0xf2, 0xa4, 0xd5, 0xe6, 0x53,
0x58, 0x6d, 0xd1, 0xa3, 0x0b, 0x3f, 0xab, 0xcb, 0x93, 0x46, 0x13, 0xd6, 0x66, 0xab, 0x94, 0x8d,
0xed, 0xc2, 0xd2, 0x0e, 0x3f, 0x99, 0x9e, 0xed, 0xf3, 0x8b, 0xb8, 0x21, 0x06, 0xf9, 0xe0, 0xdc,
0x7b, 0x2e, 0x17, 0x17, 0x7f, 0x63, 0x58, 0xa6, 0xc0, 0xb1, 0x82, 0x09, 0x1f, 0x28, 0xcb, 0x3d,
0x42, 0x7a, 0x13, 0x3e, 0x30, 0x1e, 0x03, 0xd3, 0xeb, 0x91, 0x2b, 0x21, 0xd4, 0xaa, 0xe9, 0x89,
0x15, 0x5c, 0x05, 0x21, 0x1f, 0xab, 0x4b, 0x83, 0x10, 0x4c, 0x4f, 0x7a, 0x04, 0x31, 0xde, 0x81,
0xea, 0x91, 0x7d, 0x65, 0xf2, 0x2f, 0xe4, 0xdd, 0xbc, 0x75, 0x28, 0x4e, 0xec, 0x2b, 0xc1, 0x4f,
0x23, 0x27, 0x1e, 0x66, 0x1b, 0x7f, 0x90, 0x87, 0x05, 0xc2, 0x64, 0x77, 0xe9, 0x75, 0x63, 0xc7,
0x45, 0x7e, 0xa6, 0x4e, 0x16, 0x0d, 0x34, 0x77, 0xf8, 0x64, 0xe7, 0x0f, 0x1f, 0x69, 0x71, 0x54,
0xaf, 0x3a, 0x29, 0x77, 0x8b, 0x3b, 0x1d, 0xab, 0xa7, 0x9c, 0x92, 0x2f, 0x0f, 0xe4, 0xe3, 0xf7,
0xaf, 0xe9, 0xd6, 0x75, 0xd2, 0x21, 0x1e, 0x2b, 0x6f, 0xd4, 0x3b, 0x75, 0xa6, 0xca, 0x73, 0x47,
0x07, 0xa5, 0x6a, 0x88, 0x45, 0x75, 0xe1, 0x34, 0xa9, 0x21, 0xce, 0x69, 0x82, 0xa5, 0x97, 0x6b,
0x82, 0x64, 0x8a, 0x7c, 0x81, 0x26, 0x08, 0xaf, 0xa0, 0x09, 0xbe, 0x82, 0x33, 0xfa, 0x26, 0x94,
0x50, 0x50, 0xd2, 0x8e, 0x21, 0x21, 0x20, 0x89, 0x63, 0xe8, 0x23, 0x4d, 0x57, 0xa2, 0x48, 0x18,
0xed, 0x1c, 0x30, 0xf9, 0x17, 0x3f, 0x1f, 0x27, 0xdf, 0x53, 0x28, 0x4a, 0xa8, 0x20, 0x68, 0xd7,
0x1e, 0xab, 0x87, 0xf1, 0xf0, 0xb7, 0x98, 0x36, 0x7c, 0xcd, 0xeb, 0x8b, 0xa9, 0xe3, 0xf3, 0xa1,
0x7a, 0xf1, 0xc8, 0xc1, 0x3d, 0x2a, 0x20, 0x62, 0x80, 0x42, 0x6f, 0x73, 0xbd, 0xe7, 0xae, 0xe4,
0x3d, 0x45, 0x27, 0x78, 0x22, 0x92, 0x06, 0x83, 0x06, 0x3e, 0x8d, 0x39, 0xf1, 0x7c, 0x75, 0xca,
0x1b, 0x7f, 0x98, 0x81, 0x86, 0xdc, 0x5d, 0x51, 0x9e, 0xae, 0x36, 0x15, 0xae, 0x0b, 0xdc, 0x78,
0xf1, 0xfb, 0x45, 0x06, 0xd4, 0xd0, 0x5a, 0x14, 0x1d, 0xf9, 0x64, 0xed, 0xaa, 0x08, 0xe0, 0xae,
0x3c, 0xf6, 0x5f, 0x87, 0x8a, 0x0a, 0x1a, 0x1f, 0x3b, 0x23, 0xf5, 0xd4, 0x3d, 0x45, 0x8d, 0x1f,
0x38, 0x23, 0x25, 0x31, 0xf8, 0xb6, 0xbc, 0x00, 0x9d, 0x41, 0x89, 0xc1, 0xb4, 0x43, 0x6e, 0xfc,
0xeb, 0x0c, 0x2c, 0x69, 0x43, 0x91, 0xfb, 0xf6, 0x3b, 0x50, 0x8d, 0xde, 0xa4, 0xe5, 0x91, 0xa8,
0xba, 0x9e, 0x64, 0x34, 0x71, 0xb1, 0xca, 0x20, 0x82, 0x04, 0xa2, 0x33, 0x43, 0xfb, 0x8a, 0x22,
0x9b, 0xa7, 0x63, 0xa5, 0x0d, 0x0e, 0xed, 0xab, 0x5d, 0xce, 0x7b, 0xd3, 0xb1, 0xd0, 0xf5, 0x9f,
0x73, 0xfe, 0x2c, 0x42, 0x20, 0xf6, 0x09, 0x02, 0x26, 0x31, 0x0c, 0xa8, 0x8d, 0x3d, 0x37, 0x3c,
0x8f, 0x50, 0xa4, 0x98, 0x8e, 0x40, 0xc2, 0x31, 0xfe, 0x24, 0x0b, 0xcb, 0x64, 0x93, 0x94, 0xb6,
0x60, 0xc9, 0xba, 0x9a, 0xb0, 0x40, 0xe6, 0x59, 0x62, 0x5e, 0x7b, 0x37, 0x4c, 0x99, 0x66, 0xdf,
0x7c, 0x45, 0x3b, 0xaa, 0xba, 0x63, 0x7d, 0xcd, 0xf4, 0xe7, 0xe6, 0xa7, 0xff, 0xfa, 0xe9, 0x4d,
0xf3, 0x0c, 0x17, 0xd2, 0x3c, 0xc3, 0xaf, 0xe2, 0x8f, 0x9d, 0xbb, 0x0d, 0x5c, 0x94, 0x38, 0xda,
0x6d, 0xe0, 0xc7, 0xb0, 0x9e, 0xc0, 0x41, 0x6e, 0xed, 0x9c, 0x3a, 0x5c, 0xbd, 0x58, 0xb3, 0xa2,
0x61, 0xf7, 0x54, 0xde, 0x56, 0x11, 0x0a, 0xc1, 0xc0, 0x9b, 0x70, 0x63, 0x0d, 0x56, 0x92, 0xb3,
0x2a, 0x8f, 0x89, 0xdf, 0xcd, 0x40, 0x53, 0xc6, 0xf1, 0x38, 0xee, 0xd9, 0x9e, 0x13, 0x84, 0x9e,
0x1f, 0xbd, 0xdd, 0x7a, 0x1b, 0x80, 0x1e, 0xe3, 0x47, 0xe5, 0x5b, 0xbe, 0xd1, 0x82, 0x10, 0x54,
0xbd, 0x6f, 0x42, 0x89, 0xbb, 0x43, 0xca, 0x24, 0x6a, 0x28, 0x72, 0x77, 0xa8, 0x14, 0xf7, 0xb9,
0xa3, 0xb4, 0x96, 0x14, 0x12, 0xe4, 0x8b, 0x08, 0x62, 0x76, 0xf8, 0x05, 0x1e, 0xe9, 0xf9, 0xe8,
0x45, 0x84, 0x03, 0xfb, 0x12, 0xa3, 0x62, 0x03, 0xe3, 0xef, 0x67, 0x61, 0x31, 0xee, 0x1f, 0xbd,
0xb7, 0xf2, 0xe2, 0x97, 0x63, 0xee, 0x4a, 0x72, 0x70, 0x84, 0xc2, 0xa3, 0x59, 0x6a, 0x4b, 0xb4,
0x39, 0x3b, 0x2e, 0x33, 0xa0, 0xa2, 0x30, 0xbc, 0x69, 0xa8, 0x3d, 0xa1, 0x58, 0x26, 0x94, 0xc3,
0x69, 0x28, 0x34, 0x54, 0xa1, 0xaa, 0x3b, 0xae, 0xd4, 0x11, 0x0b, 0xf6, 0x38, 0xec, 0xe0, 0xb7,
0x1d, 0x04, 0x58, 0x14, 0xa3, 0x85, 0x14, 0x58, 0x02, 0xbf, 0x41, 0x0a, 0x0b, 0xad, 0x1c, 0x2a,
0x2b, 0xba, 0x34, 0x4f, 0x8f, 0x54, 0x47, 0xd2, 0xfc, 0xeb, 0x50, 0xa1, 0xca, 0xe3, 0xcb, 0xdf,
0x79, 0xb3, 0x8c, 0x2d, 0x60, 0xbe, 0xb4, 0x9a, 0x79, 0xd3, 0x84, 0xad, 0x00, 0xa8, 0x29, 0x0c,
0x93, 0xf9, 0x5b, 0x19, 0xb8, 0x99, 0xb2, 0x6c, 0x72, 0x97, 0x6f, 0xc3, 0xd2, 0x69, 0x94, 0xa9,
0x66, 0x97, 0xb6, 0xfa, 0x9a, 0x62, 0xab, 0xc9, 0x39, 0x35, 0x1b, 0xa7, 0x49, 0x40, 0xac, 0xa5,
0xd2, 0x0a, 0x26, 0x9e, 0x16, 0x40, 0x91, 0x88, 0x96, 0x91, 0x14, 0xc4, 0x23, 0xd8, 0x68, 0x5f,
0x0a, 0x8e, 0x11, 0x85, 0xd6, 0x0e, 0x9e, 0x4d, 0x95, 0xf7, 0x6a, 0xc6, 0x22, 0x9f, 0x79, 0x25,
0x8b, 0xfc, 0x90, 0xee, 0x22, 0x47, 0x75, 0xfd, 0x24, 0x95, 0xe0, 0x01, 0x2a, 0xca, 0x9c, 0x60,
0x15, 0xea, 0x8d, 0x01, 0x01, 0xa2, 0x4a, 0x8d, 0x00, 0x16, 0x0f, 0xa6, 0xa3, 0xd0, 0xd9, 0x8e,
0x40, 0xec, 0x9b, 0xb2, 0x0c, 0xb6, 0xa3, 0x66, 0x2d, 0xb5, 0x21, 0x88, 0x1a, 0xc2, 0xc9, 0x1a,
0x8b, 0x8a, 0xac, 0xf9, 0xf6, 0x16, 0xc7, 0xc9, 0x16, 0x8c, 0x9b, 0xb0, 0x1e, 0xa7, 0x68, 0xda,
0xd4, 0x51, 0xf3, 0x8f, 0x33, 0x14, 0x82, 0x4f, 0x79, 0x3d, 0xd7, 0x9e, 0x04, 0xe7, 0x5e, 0xc8,
0xda, 0xb0, 0x1c, 0x38, 0xee, 0xd9, 0x88, 0xeb, 0xd5, 0x07, 0x72, 0x12, 0x56, 0x93, 0x7d, 0xa3,
0xa2, 0x81, 0xb9, 0x44, 0x25, 0xe2, 0xda, 0x02, 0xb6, 0x75, 0x5d, 0x27, 0x63, 0xb2, 0x98, 0x99,
0x8d, 0xf9, 0xce, 0x77, 0xa0, 0x9e, 0x6c, 0x88, 0x7d, 0x24, 0xaf, 0xf0, 0xc7, 0xbd, 0xca, 0xcd,
0xdc, 0x6f, 0x8e, 0x09, 0xa2, 0x12, 0xcf, 0x7d, 0x60, 0xfc, 0x9d, 0x0c, 0x34, 0x4d, 0x2e, 0x28,
0x57, 0xeb, 0xa5, 0xa2, 0x99, 0xef, 0xcc, 0xd5, 0x7a, 0xfd, 0x58, 0xd5, 0xcb, 0x00, 0xaa, 0x47,
0xef, 0x5f, 0xbb, 0x18, 0x7b, 0x37, 0xe6, 0x46, 0xb4, 0x55, 0x82, 0x05, 0x42, 0x31, 0xd6, 0x61,
0x55, 0xf6, 0x47, 0xf5, 0x25, 0x76, 0xb7, 0x26, 0x5a, 0x4c, 0xb8, 0x5b, 0x37, 0xa0, 0x49, 0x77,
0x75, 0xf5, 0x41, 0xc8, 0x82, 0x3b, 0xc0, 0x0e, 0xec, 0x81, 0xed, 0x7b, 0x9e, 0x7b, 0xc4, 0x7d,
0x19, 0xd0, 0x8c, 0x12, 0x26, 0x7a, 0x23, 0x95, 0x28, 0x4c, 0x29, 0xf5, 0x70, 0xac, 0xe7, 0xaa,
0xf8, 0x2d, 0x4a, 0x19, 0x26, 0x2c, 0x6f, 0xd9, 0xcf, 0xb8, 0xaa, 0x49, 0x4d, 0xd1, 0xc7, 0x50,
0x99, 0x44, 0x95, 0xaa, 0x79, 0x57, 0x4f, 0x8c, 0xcc, 0x37, 0x6b, 0xea, 0xd8, 0xc6, 0x23, 0x58,
0x49, 0xd6, 0x29, 0x59, 0xc7, 0x06, 0x94, 0xc6, 0x12, 0x26, 0x7b, 0x17, 0xa5, 0x8d, 0xdf, 0x2a,
0x41, 0x51, 0x6a, 0xaa, 0x6c, 0x13, 0xf2, 0x03, 0x15, 0x43, 0x17, 0x3f, 0x6d, 0x25, 0x73, 0xd5,
0xff, 0x6d, 0x8c, 0xa4, 0x13, 0x78, 0xec, 0x63, 0xa8, 0x27, 0xdd, 0xc8, 0x33, 0x2f, 0x01, 0x24,
0xfd, 0xbf, 0xb5, 0xc1, 0x8c, 0xc3, 0xb0, 0x1c, 0x1f, 0x8e, 0x24, 0x33, 0x94, 0xce, 0xb5, 0xd3,
0xd3, 0x73, 0x85, 0xbc, 0x1d, 0x9c, 0xdb, 0xd6, 0xa3, 0xc7, 0x1f, 0xca, 0xa7, 0x00, 0x2a, 0x08,
0xec, 0x9d, 0xdb, 0x8f, 0x1e, 0x7f, 0x38, 0x2b, 0x49, 0xcb, 0x87, 0x00, 0x34, 0x49, 0x7a, 0x05,
0x0a, 0xf4, 0x42, 0x2a, 0x05, 0x43, 0x51, 0x82, 0x3d, 0x84, 0x15, 0x65, 0xfc, 0x90, 0x61, 0xeb,
0xc4, 0x05, 0x4b, 0x74, 0x53, 0x50, 0xe6, 0xf5, 0x30, 0x8b, 0xcc, 0x25, 0x6b, 0xb0, 0x70, 0x1e,
0x3f, 0x77, 0x5b, 0x33, 0x65, 0xca, 0xf8, 0x93, 0x02, 0x54, 0xb4, 0x49, 0x61, 0x55, 0x28, 0x99,
0xed, 0x5e, 0xdb, 0xfc, 0xac, 0xbd, 0xd3, 0xb8, 0xc1, 0xee, 0xc1, 0x5b, 0x9d, 0xee, 0xf6, 0xa1,
0x69, 0xb6, 0xb7, 0xfb, 0xd6, 0xa1, 0x69, 0xa9, 0x07, 0xd6, 0x8e, 0x5a, 0x4f, 0x0f, 0xda, 0xdd,
0xbe, 0xb5, 0xd3, 0xee, 0xb7, 0x3a, 0xfb, 0xbd, 0x46, 0x86, 0xbd, 0x06, 0xcd, 0x18, 0x53, 0x65,
0xb7, 0x0e, 0x0e, 0x8f, 0xbb, 0xfd, 0x46, 0x96, 0xdd, 0x81, 0x5b, 0xbb, 0x9d, 0x6e, 0x6b, 0xdf,
0x8a, 0x71, 0xb6, 0xf7, 0xfb, 0x9f, 0x59, 0xed, 0x5f, 0x3a, 0xea, 0x98, 0x4f, 0x1b, 0xb9, 0x34,
0x84, 0xbd, 0xfe, 0xfe, 0xb6, 0xaa, 0x21, 0xcf, 0x6e, 0xc2, 0x2a, 0x21, 0x50, 0x11, 0xab, 0x7f,
0x78, 0x68, 0xf5, 0x0e, 0x0f, 0xbb, 0x8d, 0x02, 0x5b, 0x82, 0x5a, 0xa7, 0xfb, 0x59, 0x6b, 0xbf,
0xb3, 0x63, 0x99, 0xed, 0xd6, 0xfe, 0x41, 0x63, 0x81, 0x2d, 0xc3, 0xe2, 0x2c, 0x5e, 0x51, 0x54,
0xa1, 0xf0, 0x0e, 0xbb, 0x9d, 0xc3, 0xae, 0xf5, 0x59, 0xdb, 0xec, 0x75, 0x0e, 0xbb, 0x8d, 0x12,
0x5b, 0x03, 0x96, 0xcc, 0xda, 0x3b, 0x68, 0x6d, 0x37, 0xca, 0x6c, 0x15, 0x96, 0x92, 0xf0, 0x27,
0xed, 0xa7, 0x0d, 0x60, 0x4d, 0x58, 0xa1, 0x8e, 0x59, 0x5b, 0xed, 0xfd, 0xc3, 0xcf, 0xad, 0x83,
0x4e, 0xb7, 0x73, 0x70, 0x7c, 0xd0, 0xa8, 0xe0, 0xbb, 0x8d, 0xed, 0xb6, 0xd5, 0xe9, 0xf6, 0x8e,
0x77, 0x77, 0x3b, 0xdb, 0x9d, 0x76, 0xb7, 0xdf, 0xa8, 0x52, 0xcb, 0x69, 0x03, 0xaf, 0x89, 0x02,
0xf2, 0x6e, 0x8b, 0xb5, 0xd3, 0xe9, 0xb5, 0xb6, 0xf6, 0xdb, 0x3b, 0x8d, 0x3a, 0xbb, 0x0d, 0x37,
0xfb, 0xed, 0x83, 0xa3, 0x43, 0xb3, 0x65, 0x3e, 0x55, 0x77, 0x5f, 0xac, 0xdd, 0x56, 0x67, 0xff,
0xd8, 0x6c, 0x37, 0x16, 0xd9, 0x1b, 0x70, 0xdb, 0x6c, 0x7f, 0x7a, 0xdc, 0x31, 0xdb, 0x3b, 0x56,
0xf7, 0x70, 0xa7, 0x6d, 0xed, 0xb6, 0x5b, 0xfd, 0x63, 0xb3, 0x6d, 0x1d, 0x74, 0x7a, 0xbd, 0x4e,
0xf7, 0x93, 0x46, 0x83, 0xbd, 0x05, 0x77, 0x23, 0x94, 0xa8, 0x82, 0x19, 0xac, 0x25, 0x31, 0x3e,
0xb5, 0xa4, 0xdd, 0xf6, 0x2f, 0xf5, 0xad, 0xa3, 0x76, 0xdb, 0x6c, 0x30, 0xb6, 0x01, 0x6b, 0x71,
0xf3, 0xd4, 0x80, 0x6c, 0x7b, 0x59, 0xe4, 0x1d, 0xb5, 0xcd, 0x83, 0x56, 0x57, 0x2c, 0x70, 0x22,
0x6f, 0x45, 0x74, 0x3b, 0xce, 0x9b, 0xed, 0xf6, 0x2a, 0x63, 0x50, 0xd7, 0x56, 0x65, 0xb7, 0x65,
0x36, 0xd6, 0xd8, 0x22, 0x54, 0x0e, 0x8e, 0x8e, 0xac, 0x7e, 0xe7, 0xa0, 0x7d, 0x78, 0xdc, 0x6f,
0xac, 0xb3, 0x55, 0x68, 0x74, 0xba, 0xfd, 0xb6, 0x29, 0xd6, 0x5a, 0x15, 0xfd, 0x9f, 0x45, 0xb6,
0x02, 0x8b, 0xaa, 0xa7, 0x0a, 0xfa, 0xe7, 0x45, 0xb6, 0x0e, 0xec, 0xb8, 0x6b, 0xb6, 0x5b, 0x3b,
0x62, 0xe2, 0xa2, 0x8c, 0xff, 0x55, 0x94, 0x2e, 0xa5, 0x3f, 0xcc, 0x45, 0x87, 0x75, 0x1c, 0xa3,
0x91, 0x7c, 0xfc, 0xbc, 0xaa, 0x3d, 0x5a, 0xfe, 0xb2, 0xcf, 0x92, 0x68, 0xaa, 0x55, 0x6e, 0x4e,
0xb5, 0x9a, 0xd3, 0xdd, 0x6b, 0xba, 0xec, 0xf7, 0x26, 0xd4, 0xc6, 0xf4, 0x10, 0xba, 0x7c, 0xf0,
0x18, 0x64, 0xc0, 0x12, 0x01, 0xe9, 0xb5, 0xe3, 0xb9, 0xef, 0x72, 0x14, 0xe6, 0xbf, 0xcb, 0x91,
0x26, 0xdf, 0x2f, 0xa4, 0xc9, 0xf7, 0xf7, 0x61, 0x89, 0x58, 0x93, 0xe3, 0x3a, 0x63, 0xa5, 0x35,
0x93, 0x14, 0xb8, 0x88, 0x2c, 0x8a, 0xe0, 0x4a, 0x9d, 0x50, 0x2a, 0x87, 0x64, 0x21, 0x45, 0xa9,
0x6d, 0x24, 0x34, 0x0d, 0xe2, 0x1c, 0x91, 0xa6, 0x11, 0xb5, 0x60, 0x5f, 0xc6, 0x2d, 0x54, 0xb4,
0x16, 0x08, 0x8e, 0x2d, 0xdc, 0x87, 0x25, 0x7e, 0x19, 0xfa, 0xb6, 0xe5, 0x4d, 0xec, 0x2f, 0xa6,
0xe8, 0xf3, 0xb6, 0x51, 0x87, 0xaf, 0x9a, 0x8b, 0x98, 0x71, 0x88, 0xf0, 0x1d, 0x3b, 0xb4, 0xef,
0x7f, 0x09, 0x15, 0xed, 0x91, 0x7c, 0xb6, 0x0e, 0xcb, 0x9f, 0x77, 0xfa, 0xdd, 0x76, 0xaf, 0x67,
0x1d, 0x1d, 0x6f, 0x3d, 0x69, 0x3f, 0xb5, 0xf6, 0x5a, 0xbd, 0xbd, 0xc6, 0x0d, 0xb1, 0x69, 0xbb,
0xed, 0x5e, 0xbf, 0xbd, 0x93, 0x80, 0x67, 0xd8, 0xeb, 0xb0, 0x71, 0xdc, 0x3d, 0xee, 0xb5, 0x77,
0xac, 0xb4, 0x72, 0x59, 0x41, 0xa5, 0x32, 0x3f, 0xa5, 0x78, 0xee, 0xfe, 0xaf, 0x41, 0x3d, 0x79,
0x0d, 0x9c, 0x01, 0x2c, 0xec, 0xb7, 0x3f, 0x69, 0x6d, 0x3f, 0xa5, 0x97, 0x5d, 0x7b, 0xfd, 0x56,
0xbf, 0xb3, 0x6d, 0xc9, 0x97, 0x5c, 0x05, 0x47, 0xc8, 0xb0, 0x0a, 0x14, 0x5b, 0xdd, 0xed, 0xbd,
0x43, 0xb3, 0xd7, 0xc8, 0xb2, 0xd7, 0x60, 0x5d, 0xd1, 0xea, 0xf6, 0xe1, 0xc1, 0x41, 0xa7, 0x8f,
0xcc, 0xb0, 0xff, 0xf4, 0x48, 0x90, 0xe6, 0x7d, 0x1b, 0xca, 0xf1, 0x53, 0xb4, 0xc8, 0x60, 0x3a,
0xfd, 0x4e, 0xab, 0x1f, 0x73, 0xd7, 0xc6, 0x0d, 0xc1, 0xbf, 0x62, 0x30, 0xbe, 0x24, 0xdb, 0xc8,
0xd0, 0x4d, 0x39, 0x05, 0xa4, 0xd6, 0x1b, 0x59, 0xb1, 0xa9, 0x62, 0xe8, 0xd6, 0x61, 0x5f, 0x0c,
0xe1, 0xdb, 0x50, 0x4f, 0xc6, 0x43, 0x26, 0x0d, 0xdb, 0x1b, 0xb0, 0xb6, 0xd5, 0xee, 0x7f, 0xde,
0x6e, 0x77, 0x71, 0x76, 0xb6, 0xdb, 0xdd, 0xbe, 0xd9, 0xda, 0xef, 0xf4, 0x9f, 0x36, 0x32, 0xf7,
0x3f, 0x86, 0xc6, 0xac, 0xf3, 0x31, 0xe1, 0xad, 0x7d, 0x91, 0x5b, 0xf7, 0xfe, 0x7f, 0xc9, 0xc0,
0x4a, 0x9a, 0xdd, 0x5d, 0xac, 0xa1, 0xdc, 0x9c, 0x82, 0x45, 0xf7, 0x0e, 0xbb, 0x56, 0xf7, 0x10,
0x9f, 0x8e, 0xdc, 0x80, 0xb5, 0x99, 0x0c, 0xc5, 0x09, 0x32, 0xec, 0x16, 0xac, 0xcf, 0x15, 0xb2,
0xcc, 0xc3, 0x63, 0x1c, 0x76, 0x13, 0x56, 0x66, 0x32, 0xdb, 0xa6, 0x79, 0x68, 0x36, 0x72, 0xec,
0x7d, 0xb8, 0x37, 0x93, 0x33, 0x7f, 0x30, 0xa9, 0x73, 0x2b, 0xcf, 0xde, 0x81, 0x37, 0xe7, 0xb0,
0x63, 0xde, 0x6d, 0x6d, 0xb5, 0xf6, 0xc5, 0xf0, 0x1a, 0x85, 0xfb, 0xff, 0x3c, 0x07, 0x10, 0x5f,
0x38, 0x12, 0xed, 0xef, 0xb4, 0xfa, 0xad, 0xfd, 0x43, 0x41, 0x5e, 0xe6, 0x61, 0x5f, 0xd4, 0x6e,
0xb6, 0x3f, 0x6d, 0xdc, 0x48, 0xcd, 0x39, 0x3c, 0x12, 0x03, 0x5a, 0x87, 0x65, 0x5a, 0xaa, 0x7d,
0x31, 0x8c, 0x4e, 0xf7, 0x13, 0x7a, 0x85, 0x14, 0x4f, 0xbf, 0xe3, 0xa3, 0x5d, 0xf3, 0xb0, 0xdb,
0xb7, 0x7a, 0x7b, 0xc7, 0xfd, 0x1d, 0x7c, 0xc3, 0x74, 0xdb, 0xec, 0x1c, 0x51, 0x9d, 0xf9, 0x17,
0x21, 0x88, 0xaa, 0x0b, 0x62, 0x2f, 0x7c, 0x72, 0xd8, 0xeb, 0x75, 0x8e, 0xac, 0x4f, 0x8f, 0xdb,
0x66, 0xa7, 0xdd, 0xc3, 0x82, 0x0b, 0x29, 0x70, 0x81, 0x5f, 0x14, 0x67, 0x66, 0x7f, 0xff, 0x33,
0x79, 0xa8, 0x09, 0xd4, 0x52, 0x12, 0x24, 0xb0, 0xca, 0x62, 0x75, 0xc4, 0xa9, 0x90, 0x52, 0x33,
0x5c, 0x93, 0x27, 0xca, 0x55, 0xc4, 0x79, 0x37, 0xb7, 0x49, 0xb0, 0x58, 0x35, 0x3d, 0x4b, 0x94,
0xc2, 0xa3, 0x30, 0x12, 0x1c, 0x76, 0x76, 0x4c, 0x2c, 0x50, 0x9f, 0x83, 0x0a, 0xdc, 0x45, 0x41,
0x84, 0xe2, 0xd8, 0x10, 0x28, 0x0d, 0x95, 0x10, 0x39, 0x4b, 0x8f, 0x7e, 0xfc, 0x2e, 0x94, 0xa3,
0xc0, 0x63, 0xf6, 0x1b, 0x50, 0x4b, 0xdc, 0x04, 0x65, 0xca, 0x2c, 0x98, 0x76, 0x71, 0x74, 0xe3,
0xb5, 0xf4, 0x4c, 0x29, 0x33, 0xbf, 0xfe, 0x57, 0x7e, 0xfc, 0x3f, 0xfe, 0x5e, 0xb6, 0xc9, 0xd6,
0x1e, 0x5c, 0x7c, 0xf0, 0x40, 0xde, 0xb4, 0x7c, 0x80, 0x37, 0xb7, 0xe9, 0xe5, 0xc6, 0x67, 0x9a,
0x06, 0x42, 0x8d, 0xbd, 0x36, 0xab, 0x15, 0x24, 0x5a, 0xbb, 0x7d, 0x4d, 0xae, 0x6c, 0xee, 0x35,
0x6c, 0x6e, 0x8d, 0xad, 0xe8, 0xcd, 0xa9, 0x78, 0x55, 0xc6, 0xf1, 0x39, 0x55, 0xfd, 0x43, 0x85,
0xec, 0x76, 0xfc, 0xb6, 0x65, 0xca, 0x07, 0x0c, 0x37, 0x6e, 0xce, 0x7f, 0x52, 0x50, 0x7e, 0x83,
0xd0, 0x68, 0x62, 0x53, 0x8c, 0x35, 0x44, 0x53, 0xfa, 0x57, 0x06, 0xd9, 0x09, 0x54, 0xb4, 0x2f,
0xf3, 0xb0, 0x9b, 0xd7, 0x7e, 0x45, 0x68, 0x63, 0x23, 0x2d, 0x2b, 0x6d, 0x28, 0x7a, 0xfd, 0x0f,
0x4e, 0x39, 0x67, 0xbf, 0x0c, 0xe5, 0xe8, 0x7b, 0x2f, 0x6c, 0x5d, 0xfb, 0xfe, 0x8e, 0xfe, 0x7d,
0x9a, 0x8d, 0xe6, 0x7c, 0x86, 0x52, 0x82, 0xb0, 0xf6, 0x55, 0x63, 0xae, 0xf7, 0xdf, 0xc9, 0xdc,
0x67, 0x9f, 0x43, 0x45, 0xfb, 0xa6, 0x4b, 0x34, 0x80, 0xf9, 0xef, 0xc6, 0x44, 0x03, 0x48, 0xf9,
0x04, 0x8c, 0xb1, 0x84, 0x4d, 0x54, 0x58, 0x59, 0x34, 0x81, 0x9f, 0x7c, 0x61, 0xfb, 0xb0, 0x2a,
0xb5, 0xad, 0x13, 0xfe, 0x55, 0x96, 0x21, 0xe5, 0xcb, 0x8e, 0x0f, 0x33, 0xec, 0x63, 0x28, 0xa9,
0x4f, 0xf7, 0xb0, 0xb5, 0xf4, 0x4f, 0x10, 0x6d, 0xac, 0xcf, 0xc1, 0xa5, 0x6a, 0xf4, 0x14, 0x20,
0xfe, 0x80, 0x0c, 0x53, 0x13, 0x35, 0xf7, 0x41, 0x9a, 0x88, 0x02, 0xe6, 0xbf, 0x36, 0x63, 0xac,
0xe1, 0x00, 0x1b, 0xac, 0x2e, 0x06, 0xe8, 0xf2, 0xe7, 0xea, 0xcd, 0xeb, 0x5f, 0x87, 0x8a, 0xf6,
0x0d, 0x99, 0x68, 0xfa, 0xe6, 0xbf, 0x3f, 0x13, 0x4d, 0x5f, 0xca, 0x27, 0x67, 0x8c, 0x0d, 0xac,
0x7d, 0xc5, 0x58, 0x14, 0xb5, 0x0b, 0x71, 0x4b, 0x8a, 0x3d, 0x62, 0x81, 0xce, 0xa1, 0x96, 0xf8,
0x50, 0x4c, 0xb4, 0x43, 0xd3, 0x3e, 0x43, 0x13, 0xed, 0xd0, 0xd4, 0x6f, 0xcb, 0x28, 0x3a, 0x33,
0x96, 0x44, 0x3b, 0xf4, 0xaa, 0x95, 0xd6, 0xd2, 0x0f, 0xa0, 0xa2, 0x7d, 0xf4, 0x25, 0x1a, 0xcb,
0xfc, 0xf7, 0x65, 0xa2, 0xb1, 0xa4, 0x7d, 0x23, 0x66, 0x05, 0xdb, 0xa8, 0x1b, 0x48, 0x0a, 0xf8,
0x28, 0xaf, 0xa8, 0xfb, 0x37, 0xa0, 0x9e, 0xfc, 0x0e, 0x4c, 0xb4, 0xf7, 0x53, 0x3f, 0x28, 0x13,
0xed, 0xfd, 0x6b, 0x3e, 0x1e, 0x23, 0x49, 0xfa, 0xfe, 0x72, 0xd4, 0xc8, 0x83, 0x1f, 0xc9, 0x2b,
0x54, 0x5f, 0xb2, 0x4f, 0x05, 0x83, 0x93, 0x8f, 0x46, 0xb3, 0x75, 0x8d, 0x6a, 0xf5, 0xd7, 0xa7,
0xa3, 0xfd, 0x32, 0xf7, 0xbe, 0x74, 0x92, 0x98, 0xb1, 0x72, 0xf6, 0x09, 0x2c, 0x47, 0xc4, 0x1c,
0xbd, 0x02, 0x1d, 0x44, 0x63, 0x48, 0x7d, 0x6b, 0x7a, 0xa3, 0x31, 0x9b, 0xfb, 0x30, 0xc3, 0x0e,
0xa0, 0x28, 0x9f, 0xd6, 0x65, 0xab, 0xb3, 0x4f, 0xed, 0x52, 0xbf, 0xd6, 0xd2, 0x5f, 0xe0, 0x35,
0x96, 0xb1, 0x57, 0x35, 0x56, 0x11, 0xbd, 0x3a, 0xe3, 0xa1, 0x23, 0xea, 0x70, 0x61, 0x71, 0xf6,
0xc9, 0xe5, 0xdb, 0xd7, 0x3d, 0x51, 0x41, 0xd5, 0xbf, 0xfe, 0xe2, 0x17, 0x2c, 0x92, 0xac, 0x48,
0x71, 0xd3, 0x07, 0x32, 0x62, 0x87, 0xfd, 0x2a, 0x54, 0xf5, 0x6f, 0x47, 0x30, 0x9d, 0x27, 0xcc,
0xb6, 0x74, 0x2b, 0x35, 0x2f, 0x49, 0x25, 0xac, 0xaa, 0x37, 0xc3, 0x3e, 0x83, 0xb5, 0x68, 0x9a,
0xf5, 0x37, 0x16, 0x02, 0x76, 0x27, 0xe5, 0xe5, 0x85, 0xc4, 0x64, 0xdf, 0xbc, 0xf6, 0x69, 0x86,
0x87, 0x19, 0x41, 0x7d, 0xc9, 0x77, 0xf2, 0xe3, 0x93, 0x27, 0xed, 0xf3, 0x00, 0xf1, 0xc9, 0x93,
0xfa, 0xb8, 0xbe, 0xa2, 0x3e, 0xb6, 0x9c, 0x98, 0x23, 0x8a, 0x65, 0x66, 0x3f, 0x80, 0x45, 0xed,
0x01, 0x89, 0xde, 0x95, 0x3b, 0x88, 0x76, 0xd2, 0xfc, 0x63, 0xaa, 0x1b, 0x69, 0xf6, 0x49, 0x63,
0x1d, 0xeb, 0x5f, 0x32, 0x12, 0x93, 0x23, 0x76, 0xd1, 0x36, 0x54, 0xf4, 0xc7, 0x29, 0x5e, 0x50,
0xef, 0xba, 0x96, 0xa5, 0xbf, 0xdb, 0xf9, 0x30, 0xc3, 0xf6, 0xa1, 0x31, 0xfb, 0x94, 0x5c, 0xc4,
0x53, 0xd2, 0x9e, 0xdf, 0xdb, 0x98, 0xc9, 0x4c, 0x3c, 0x40, 0xc7, 0x8e, 0xe8, 0x36, 0x4c, 0xf4,
0x19, 0x44, 0xcf, 0x9f, 0x3d, 0xd5, 0x93, 0x9f, 0x47, 0x8c, 0x6a, 0x4b, 0xfb, 0x30, 0xe6, 0xbd,
0xcc, 0xc3, 0x0c, 0xfb, 0xed, 0x0c, 0x54, 0x13, 0x4f, 0x29, 0x25, 0xee, 0x1b, 0xcc, 0x8c, 0xb3,
0xa9, 0xe7, 0xe9, 0x03, 0x35, 0x4c, 0x9c, 0xc4, 0xfd, 0xfb, 0xdf, 0x4f, 0x2c, 0xd2, 0x8f, 0x12,
0xee, 0xbd, 0xcd, 0xd9, 0xef, 0x24, 0x7e, 0x39, 0x8b, 0xa0, 0x3f, 0xcf, 0xfb, 0xe5, 0xc3, 0x0c,
0xfb, 0x57, 0x19, 0xa8, 0x27, 0xfd, 0xf6, 0xd1, 0x70, 0x53, 0x23, 0x04, 0x22, 0x52, 0xba, 0xc6,
0xd9, 0xff, 0x03, 0xec, 0x65, 0xff, 0xbe, 0x99, 0xe8, 0xa5, 0xfc, 0xc2, 0xc3, 0x4f, 0xd7, 0x5b,
0xf6, 0x8b, 0xf4, 0x59, 0x62, 0x15, 0xff, 0xc5, 0xe6, 0x3f, 0x63, 0x1b, 0x91, 0x9f, 0xfe, 0xd1,
0x57, 0x23, 0xf7, 0x37, 0xb3, 0x19, 0x5c, 0x89, 0x5f, 0xa7, 0x8f, 0x02, 0xaa, 0x10, 0x20, 0x41,
0xca, 0xaf, 0x5c, 0xc9, 0x5b, 0x38, 0xb0, 0xd7, 0x8d, 0x9b, 0x89, 0x81, 0xcd, 0x4a, 0x1f, 0xbb,
0xd4, 0x45, 0xf9, 0xe1, 0xd6, 0xf8, 0xf8, 0x9c, 0xfb, 0x98, 0xeb, 0x4b, 0x7a, 0x3a, 0xa6, 0x9e,
0xca, 0x32, 0x89, 0x4d, 0xf7, 0xaa, 0x75, 0xdd, 0xc7, 0x0e, 0xbf, 0x65, 0xdc, 0xb9, 0xb6, 0xc3,
0x0f, 0xd0, 0x1b, 0x2f, 0xba, 0x7d, 0x04, 0x10, 0x47, 0x6a, 0xb2, 0x99, 0x78, 0xc1, 0x88, 0x15,
0xcd, 0x07, 0x73, 0x26, 0x77, 0xb6, 0x0a, 0x2b, 0x14, 0x35, 0xfe, 0x32, 0x31, 0xd6, 0x28, 0x92,
0x51, 0x97, 0xc3, 0x92, 0x41, 0x95, 0x09, 0x39, 0x6c, 0xb6, 0xfe, 0x04, 0x5b, 0x8d, 0xc2, 0x16,
0x8f, 0xa1, 0xb6, 0xef, 0x79, 0xcf, 0xa6, 0x93, 0xe8, 0x76, 0x40, 0x32, 0xf8, 0x66, 0xcf, 0x0e,
0xce, 0x37, 0x66, 0x46, 0x61, 0xdc, 0xc5, 0xaa, 0x36, 0x58, 0x53, 0xab, 0xea, 0xc1, 0x8f, 0xe2,
0xf0, 0xd0, 0x2f, 0x99, 0x0d, 0x4b, 0x11, 0xb7, 0x8e, 0x43, 0x30, 0x93, 0xd5, 0x24, 0x78, 0xf4,
0x6c, 0x13, 0x09, 0x85, 0x41, 0xf5, 0xf6, 0x41, 0xa0, 0xea, 0x7c, 0x98, 0x61, 0x47, 0x50, 0xdd,
0xe1, 0x03, 0x7c, 0x5e, 0x02, 0x03, 0x4d, 0x96, 0x13, 0x41, 0x0b, 0x14, 0xa1, 0xb2, 0x51, 0x4b,
0x00, 0x93, 0x27, 0xd8, 0xc4, 0xbe, 0xf2, 0xf9, 0x17, 0x0f, 0x7e, 0x24, 0x43, 0x58, 0xbe, 0x54,
0x27, 0x58, 0x1c, 0xce, 0xa4, 0x8b, 0x01, 0xc9, 0x98, 0xa0, 0xc4, 0x09, 0x36, 0x17, 0x13, 0x94,
0x98, 0xea, 0x28, 0x78, 0x69, 0x04, 0x4b, 0x73, 0x61, 0x44, 0xd1, 0xe1, 0x75, 0x5d, 0xf0, 0xd1,
0xc6, 0xdd, 0xeb, 0x11, 0x92, 0xad, 0xdd, 0x4f, 0xb6, 0xd6, 0x83, 0x1a, 0xbd, 0xc2, 0x7b, 0xc2,
0xe9, 0xa2, 0xe9, 0xcc, 0x2b, 0x4d, 0xfa, 0x2d, 0xd6, 0xd9, 0xa3, 0x06, 0xf3, 0x92, 0xb2, 0x0e,
0x5e, 0x35, 0x64, 0xa7, 0xf8, 0x6d, 0x0a, 0xed, 0x66, 0x67, 0x44, 0x8c, 0xf3, 0xb7, 0x4d, 0x23,
0x62, 0x4c, 0xb9, 0x08, 0x6a, 0xdc, 0xc6, 0xba, 0xd7, 0xd9, 0x6a, 0x54, 0xf7, 0x03, 0xd7, 0x1b,
0xf2, 0xb1, 0xac, 0xf5, 0x97, 0xa1, 0xf2, 0x09, 0x0f, 0xd5, 0x55, 0xca, 0x48, 0xaa, 0x9f, 0xb9,
0x5b, 0xb9, 0x91, 0x72, 0x01, 0x36, 0x49, 0x9b, 0x54, 0x33, 0x1f, 0x9e, 0x71, 0x62, 0x87, 0x96,
0x33, 0xfc, 0x92, 0xfd, 0x12, 0x56, 0x1e, 0x3d, 0x1c, 0xb0, 0xa6, 0x75, 0x53, 0xaf, 0x7c, 0x71,
0x06, 0x9e, 0x56, 0xb3, 0xe8, 0xb3, 0x26, 0x5d, 0xba, 0x50, 0xd1, 0x1e, 0x18, 0x89, 0xe6, 0x66,
0xfe, 0x41, 0x99, 0x68, 0x6e, 0x52, 0xde, 0x23, 0x31, 0xee, 0x61, 0x3b, 0x06, 0xbb, 0x1b, 0xb7,
0x43, 0x6f, 0x90, 0xc4, 0x2d, 0x3d, 0xf8, 0x91, 0x3d, 0x0e, 0xbf, 0x64, 0x9f, 0xd3, 0x72, 0x68,
0x57, 0x45, 0x63, 0x35, 0x65, 0xf6, 0x56, 0x69, 0x34, 0x59, 0x5a, 0x56, 0x52, 0x75, 0xa1, 0xa6,
0x50, 0x76, 0x7c, 0x0c, 0xd0, 0x0b, 0xbd, 0xc9, 0x8e, 0xcd, 0xc7, 0x9e, 0x1b, 0x33, 0xf6, 0xf8,
0xf2, 0x62, 0xcc, 0x27, 0xb5, 0x1b, 0x8c, 0xec, 0x73, 0x4d, 0xaf, 0x4b, 0x5c, 0x72, 0x56, 0x44,
0x7c, 0xed, 0xfd, 0xc6, 0x68, 0x42, 0x52, 0xee, 0x38, 0x3e, 0xcc, 0xb0, 0x16, 0x40, 0x1c, 0xaf,
0x16, 0x69, 0x69, 0x73, 0xa1, 0x70, 0x11, 0x7b, 0x4d, 0x09, 0x6e, 0x3b, 0x82, 0x72, 0x1c, 0xe8,
0xb3, 0x1e, 0xbf, 0x97, 0x94, 0x08, 0x0b, 0x8a, 0x64, 0x86, 0xb9, 0x20, 0x1b, 0xa3, 0x81, 0x53,
0x05, 0xac, 0x24, 0xa6, 0xea, 0x94, 0xf3, 0x80, 0x39, 0xb0, 0x4c, 0x1d, 0x8c, 0x04, 0x34, 0xbc,
0x74, 0x17, 0x7d, 0x11, 0x66, 0x3e, 0xde, 0x25, 0xe2, 0x1a, 0xa9, 0x51, 0x1b, 0x37, 0xb1, 0x85,
0x65, 0xa3, 0xae, 0x4e, 0x19, 0xba, 0xf0, 0x27, 0x8e, 0x80, 0x31, 0x2c, 0xcd, 0x05, 0x06, 0x44,
0xac, 0xe3, 0xba, 0x48, 0x8f, 0x88, 0x75, 0x5c, 0x1b, 0x53, 0x60, 0xac, 0x62, 0x93, 0x8b, 0x06,
0xa0, 0x72, 0xf9, 0xdc, 0x09, 0x07, 0xe7, 0xa2, 0xb9, 0xdf, 0xcb, 0xc0, 0x72, 0x8a, 0xeb, 0x9f,
0xbd, 0xa1, 0xec, 0x14, 0xd7, 0x86, 0x05, 0x6c, 0xa4, 0xba, 0x88, 0x8d, 0x1e, 0xb6, 0x73, 0xc0,
0x9e, 0x24, 0x0e, 0x50, 0xf2, 0xd0, 0xca, 0x9d, 0xf9, 0x42, 0x31, 0x26, 0x55, 0x86, 0xf9, 0x02,
0xd6, 0xa9, 0x23, 0xad, 0xd1, 0x68, 0xc6, 0x7d, 0xfd, 0xba, 0xd6, 0x8b, 0x14, 0x97, 0x7c, 0x42,
0x23, 0x48, 0xba, 0xe5, 0xaf, 0x11, 0xe0, 0xa9, 0xab, 0x6c, 0x0a, 0x8d, 0x59, 0xb7, 0x30, 0xbb,
0xbe, 0xae, 0x8d, 0x3b, 0x09, 0x8d, 0x3b, 0xc5, 0x95, 0xfc, 0x35, 0x6c, 0xec, 0x8e, 0xb1, 0x91,
0x36, 0x2f, 0xa4, 0x84, 0x8b, 0xf5, 0xf8, 0xcb, 0x91, 0x0f, 0x7b, 0x66, 0x9c, 0x77, 0xa2, 0x27,
0xee, 0xd3, 0x3d, 0xee, 0x91, 0xce, 0x9f, 0xee, 0x02, 0x7f, 0x1b, 0x9b, 0xbf, 0x6b, 0xdc, 0x4a,
0x6b, 0xde, 0xa7, 0x22, 0xa4, 0xfd, 0xaf, 0xcf, 0xee, 0x6b, 0xd5, 0x83, 0xbb, 0x69, 0xeb, 0x7d,
0xad, 0xf6, 0x35, 0x33, 0xd7, 0x37, 0x50, 0x90, 0xac, 0xea, 0x3e, 0xeb, 0x68, 0xfb, 0xa4, 0x38,
0xc7, 0xa3, 0xed, 0x93, 0xe6, 0xe4, 0x4e, 0xca, 0x4f, 0xca, 0xbd, 0xfd, 0x9d, 0xcc, 0xfd, 0xad,
0x77, 0x7e, 0xf0, 0xb5, 0x33, 0x27, 0x3c, 0x9f, 0x9e, 0x6c, 0x0e, 0xbc, 0xf1, 0x83, 0x91, 0xb2,
0x6f, 0xca, 0x9b, 0xe9, 0x0f, 0x46, 0xee, 0xf0, 0x01, 0x56, 0x7b, 0xb2, 0x30, 0xf1, 0xbd, 0xd0,
0xfb, 0xc6, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x28, 0x9c, 0x70, 0xa8, 0x15, 0x87, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@ -12489,7 +12498,7 @@ type LightningClient interface {
//when in debug builds of lnd.
AbandonChannel(ctx context.Context, in *AbandonChannelRequest, opts ...grpc.CallOption) (*AbandonChannelResponse, error)
// lncli: `sendpayment`
//Deprecated, use routerrpc.SendPayment. SendPayment dispatches a
//Deprecated, use routerrpc.SendPaymentV2. SendPayment dispatches a
//bi-directional streaming RPC for sending payments through the Lightning
//Network. A single RPC invocation creates a persistent bi-directional
//stream allowing clients to rapidly send payments through the Lightning
@ -12502,10 +12511,11 @@ type LightningClient interface {
//hash (if any) to be encoded as hex strings.
SendPaymentSync(ctx context.Context, in *SendRequest, opts ...grpc.CallOption) (*SendResponse, error)
// lncli: `sendtoroute`
//SendToRoute is a bi-directional streaming RPC for sending payment through
//the Lightning Network. This method differs from SendPayment in that it
//allows users to specify a full route manually. This can be used for things
//like rebalancing, and atomic swaps.
//Deprecated, use routerrpc.SendToRouteV2. SendToRoute is a bi-directional
//streaming RPC for sending payment through the Lightning Network. This
//method differs from SendPayment in that it allows users to specify a full
//route manually. This can be used for things like rebalancing, and atomic
//swaps.
SendToRoute(ctx context.Context, opts ...grpc.CallOption) (Lightning_SendToRouteClient, error)
//
//SendToRouteSync is a synchronous version of SendToRoute. It Will block
@ -13085,6 +13095,7 @@ func (c *lightningClient) SendPaymentSync(ctx context.Context, in *SendRequest,
return out, nil
}
// Deprecated: Do not use.
func (c *lightningClient) SendToRoute(ctx context.Context, opts ...grpc.CallOption) (Lightning_SendToRouteClient, error) {
stream, err := c.cc.NewStream(ctx, &_Lightning_serviceDesc.Streams[7], "/lnrpc.Lightning/SendToRoute", opts...)
if err != nil {
@ -13566,7 +13577,7 @@ type LightningServer interface {
//when in debug builds of lnd.
AbandonChannel(context.Context, *AbandonChannelRequest) (*AbandonChannelResponse, error)
// lncli: `sendpayment`
//Deprecated, use routerrpc.SendPayment. SendPayment dispatches a
//Deprecated, use routerrpc.SendPaymentV2. SendPayment dispatches a
//bi-directional streaming RPC for sending payments through the Lightning
//Network. A single RPC invocation creates a persistent bi-directional
//stream allowing clients to rapidly send payments through the Lightning
@ -13579,10 +13590,11 @@ type LightningServer interface {
//hash (if any) to be encoded as hex strings.
SendPaymentSync(context.Context, *SendRequest) (*SendResponse, error)
// lncli: `sendtoroute`
//SendToRoute is a bi-directional streaming RPC for sending payment through
//the Lightning Network. This method differs from SendPayment in that it
//allows users to specify a full route manually. This can be used for things
//like rebalancing, and atomic swaps.
//Deprecated, use routerrpc.SendToRouteV2. SendToRoute is a bi-directional
//streaming RPC for sending payment through the Lightning Network. This
//method differs from SendPayment in that it allows users to specify a full
//route manually. This can be used for things like rebalancing, and atomic
//swaps.
SendToRoute(Lightning_SendToRouteServer) error
//
//SendToRouteSync is a synchronous version of SendToRoute. It Will block

@ -313,7 +313,7 @@ service Lightning {
}
/* lncli: `sendpayment`
Deprecated, use routerrpc.SendPayment. SendPayment dispatches a
Deprecated, use routerrpc.SendPaymentV2. SendPayment dispatches a
bi-directional streaming RPC for sending payments through the Lightning
Network. A single RPC invocation creates a persistent bi-directional
stream allowing clients to rapidly send payments through the Lightning
@ -337,12 +337,15 @@ service Lightning {
}
/* lncli: `sendtoroute`
SendToRoute is a bi-directional streaming RPC for sending payment through
the Lightning Network. This method differs from SendPayment in that it
allows users to specify a full route manually. This can be used for things
like rebalancing, and atomic swaps.
Deprecated, use routerrpc.SendToRouteV2. SendToRoute is a bi-directional
streaming RPC for sending payment through the Lightning Network. This
method differs from SendPayment in that it allows users to specify a full
route manually. This can be used for things like rebalancing, and atomic
swaps.
*/
rpc SendToRoute (stream SendToRouteRequest) returns (stream SendResponse);
rpc SendToRoute (stream SendToRouteRequest) returns (stream SendResponse) {
option deprecated = true;
}
/*
SendToRouteSync is a synchronous version of SendToRoute. It Will block
@ -2998,6 +3001,9 @@ message HTLCAttempt {
// Detailed htlc failure info.
Failure failure = 5;
// The preimage that was used to settle the HTLC.
bytes preimage = 6;
}
message ListPaymentsRequest {

@ -2944,6 +2944,11 @@
"failure": {
"$ref": "#/definitions/lnrpcFailure",
"description": "Detailed htlc failure info."
},
"preimage": {
"type": "string",
"format": "byte",
"description": "The preimage that was used to settle the HTLC."
}
}
},

@ -113,7 +113,7 @@ func testSendToRouteMultiPath(net *lntest.NetworkHarness, t *harnessTest) {
{ctx.carol, ctx.eve, ctx.bob},
}
responses := make(chan *routerrpc.SendToRouteResponse, len(sendRoutes))
responses := make(chan *lnrpc.HTLCAttempt, len(sendRoutes))
for _, hops := range sendRoutes {
// Build a route for the specified hops.
r, err := buildRoute(shardAmt, hops)
@ -139,7 +139,7 @@ func testSendToRouteMultiPath(net *lntest.NetworkHarness, t *harnessTest) {
// block as long as the payment is in flight.
go func() {
ctxt, _ := context.WithTimeout(ctxb, defaultTimeout)
resp, err := net.Alice.RouterClient.SendToRoute(ctxt, sendReq)
resp, err := net.Alice.RouterClient.SendToRouteV2(ctxt, sendReq)
if err != nil {
t.Fatalf("unable to send payment: %v", err)
}
@ -151,7 +151,7 @@ func testSendToRouteMultiPath(net *lntest.NetworkHarness, t *harnessTest) {
// Wait for all responses to be back, and check that they all
// succeeded.
for range sendRoutes {
var resp *routerrpc.SendToRouteResponse
var resp *lnrpc.HTLCAttempt
select {
case resp = <-responses:
case <-time.After(defaultTimeout):

@ -4830,7 +4830,7 @@ func testSingleHopSendToRouteCase(net *lntest.NetworkHarness, t *harnessTest,
Route: r,
}
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
resp, err := carol.RouterClient.SendToRoute(
resp, err := carol.RouterClient.SendToRouteV2(
ctxt, sendReq,
)
if err != nil {

@ -30,10 +30,12 @@ type ControlTower interface {
// error to prevent us from making duplicate payments to the same
// payment hash. The provided preimage is atomically saved to the DB
// for record keeping.
SettleAttempt(lntypes.Hash, uint64, *channeldb.HTLCSettleInfo) error
SettleAttempt(lntypes.Hash, uint64, *channeldb.HTLCSettleInfo) (
*channeldb.HTLCAttempt, error)
// FailAttempt marks the given payment attempt failed.
FailAttempt(lntypes.Hash, uint64, *channeldb.HTLCFailInfo) error
FailAttempt(lntypes.Hash, uint64, *channeldb.HTLCFailInfo) (
*channeldb.HTLCAttempt, error)
// FetchPayment fetches the payment corresponding to the given payment
// hash.
@ -146,38 +148,40 @@ func (p *controlTower) RegisterAttempt(paymentHash lntypes.Hash,
// this is a multi shard payment, this might implicitly mean the the
// full payment succeeded.
func (p *controlTower) SettleAttempt(paymentHash lntypes.Hash,
attemptID uint64, settleInfo *channeldb.HTLCSettleInfo) error {
attemptID uint64, settleInfo *channeldb.HTLCSettleInfo) (
*channeldb.HTLCAttempt, error) {
p.paymentsMtx.Lock(paymentHash)
defer p.paymentsMtx.Unlock(paymentHash)
payment, err := p.db.SettleAttempt(paymentHash, attemptID, settleInfo)
if err != nil {
return err
return nil, err
}
// Notify subscribers of success event.
p.notifySubscribers(paymentHash, payment)
return nil
return payment.GetAttempt(attemptID)
}
// FailAttempt marks the given payment attempt failed.
func (p *controlTower) FailAttempt(paymentHash lntypes.Hash,
attemptID uint64, failInfo *channeldb.HTLCFailInfo) error {
attemptID uint64, failInfo *channeldb.HTLCFailInfo) (
*channeldb.HTLCAttempt, error) {
p.paymentsMtx.Lock(paymentHash)
defer p.paymentsMtx.Unlock(paymentHash)
payment, err := p.db.FailAttempt(paymentHash, attemptID, failInfo)
if err != nil {
return err
return nil, err
}
// Notify subscribers of failed attempt.
p.notifySubscribers(paymentHash, payment)
return nil
return payment.GetAttempt(attemptID)
}
// FetchPayment fetches the payment corresponding to the given payment hash.

@ -104,15 +104,18 @@ func TestControlTowerSubscribeSuccess(t *testing.T) {
}
// Mark the payment as successful.
err = pControl.SettleAttempt(
info.PaymentHash, attempt.AttemptID,
&channeldb.HTLCSettleInfo{
Preimage: preimg,
},
settleInfo := channeldb.HTLCSettleInfo{
Preimage: preimg,
}
htlcAttempt, err := pControl.SettleAttempt(
info.PaymentHash, attempt.AttemptID, &settleInfo,
)
if err != nil {
t.Fatal(err)
}
if *htlcAttempt.Settle != settleInfo {
t.Fatalf("unexpected settle info returned")
}
// Register a third subscriber after the payment succeeded.
subscriber3, err := pControl.SubscribePayment(info.PaymentHash)
@ -215,13 +218,18 @@ func testPaymentControlSubscribeFail(t *testing.T, registerAttempt bool) {
}
// Fail the payment attempt.
err := pControl.FailAttempt(
info.PaymentHash, attempt.AttemptID,
&channeldb.HTLCFailInfo{},
failInfo := channeldb.HTLCFailInfo{
Reason: channeldb.HTLCFailInternal,
}
htlcAttempt, err := pControl.FailAttempt(
info.PaymentHash, attempt.AttemptID, &failInfo,
)
if err != nil {
t.Fatalf("unable to fail htlc: %v", err)
}
if *htlcAttempt.Failure != failInfo {
t.Fatalf("unexpected fail info returned")
}
}
// Mark the payment as failed.

@ -301,7 +301,8 @@ func (m *mockControlTower) RegisterAttempt(phash lntypes.Hash,
}
func (m *mockControlTower) SettleAttempt(phash lntypes.Hash,
pid uint64, settleInfo *channeldb.HTLCSettleInfo) error {
pid uint64, settleInfo *channeldb.HTLCSettleInfo) (
*channeldb.HTLCAttempt, error) {
m.Lock()
defer m.Unlock()
@ -313,7 +314,7 @@ func (m *mockControlTower) SettleAttempt(phash lntypes.Hash,
// Only allow setting attempts if the payment is known.
p, ok := m.payments[phash]
if !ok {
return channeldb.ErrPaymentNotInitiated
return nil, channeldb.ErrPaymentNotInitiated
}
// Find the attempt with this pid, and set the settle info.
@ -323,24 +324,26 @@ func (m *mockControlTower) SettleAttempt(phash lntypes.Hash,
}
if a.Settle != nil {
return channeldb.ErrAttemptAlreadySettled
return nil, channeldb.ErrAttemptAlreadySettled
}
if a.Failure != nil {
return channeldb.ErrAttemptAlreadyFailed
return nil, channeldb.ErrAttemptAlreadyFailed
}
p.attempts[i].Settle = settleInfo
// Mark the payment successful on first settled attempt.
m.successful[phash] = struct{}{}
return nil
return &channeldb.HTLCAttempt{
Settle: settleInfo,
}, nil
}
return fmt.Errorf("pid not found")
return nil, fmt.Errorf("pid not found")
}
func (m *mockControlTower) FailAttempt(phash lntypes.Hash, pid uint64,
failInfo *channeldb.HTLCFailInfo) error {
failInfo *channeldb.HTLCFailInfo) (*channeldb.HTLCAttempt, error) {
m.Lock()
defer m.Unlock()
@ -352,7 +355,7 @@ func (m *mockControlTower) FailAttempt(phash lntypes.Hash, pid uint64,
// Only allow failing attempts if the payment is known.
p, ok := m.payments[phash]
if !ok {
return channeldb.ErrPaymentNotInitiated
return nil, channeldb.ErrPaymentNotInitiated
}
// Find the attempt with this pid, and set the failure info.
@ -362,17 +365,19 @@ func (m *mockControlTower) FailAttempt(phash lntypes.Hash, pid uint64,
}
if a.Settle != nil {
return channeldb.ErrAttemptAlreadySettled
return nil, channeldb.ErrAttemptAlreadySettled
}
if a.Failure != nil {
return channeldb.ErrAttemptAlreadyFailed
return nil, channeldb.ErrAttemptAlreadyFailed
}
p.attempts[i].Failure = failInfo
return nil
return &channeldb.HTLCAttempt{
Failure: failInfo,
}, nil
}
return fmt.Errorf("pid not found")
return nil, fmt.Errorf("pid not found")
}
func (m *mockControlTower) Fail(phash lntypes.Hash,

@ -345,6 +345,9 @@ type launchOutcome struct {
// reflect this error. This can be errors like not enough local
// balance for the given route etc.
err error
// attempt is the attempt structure as recorded in the database.
attempt *channeldb.HTLCAttempt
}
// launchShard creates and sends an HTLC attempt along the given route,
@ -382,14 +385,15 @@ func (p *shardHandler) launchShard(rt *route.Route) (*channeldb.HTLCAttemptInfo,
if sendErr != nil {
// TODO(joostjager): Distinguish unexpected internal errors
// from real send errors.
err := p.failAttempt(attempt, sendErr)
htlcAttempt, err := p.failAttempt(attempt, sendErr)
if err != nil {
return nil, nil, err
}
// Return a launchOutcome indicating the shard failed.
return attempt, &launchOutcome{
err: sendErr,
attempt: htlcAttempt,
err: sendErr,
}, nil
}
@ -398,9 +402,8 @@ func (p *shardHandler) launchShard(rt *route.Route) (*channeldb.HTLCAttemptInfo,
// shardResult holds the resulting outcome of a shard sent.
type shardResult struct {
// preimage is the payment preimage in case of a settled HTLC. Only set
// if err is non-nil.
preimage lntypes.Preimage
// attempt is the attempt structure as recorded in the database.
attempt *channeldb.HTLCAttempt
// err indicates that the shard failed.
err error
@ -493,13 +496,14 @@ func (p *shardHandler) collectResult(attempt *channeldb.HTLCAttemptInfo) (
"the Switch, retrying.", attempt.AttemptID,
p.paymentHash)
cErr := p.failAttempt(attempt, err)
attempt, cErr := p.failAttempt(attempt, err)
if cErr != nil {
return nil, cErr
}
return &shardResult{
err: err,
attempt: attempt,
err: err,
}, nil
// A critical, unexpected error was encountered.
@ -533,13 +537,14 @@ func (p *shardHandler) collectResult(attempt *channeldb.HTLCAttemptInfo) (
// In case of a payment failure, fail the attempt with the control
// tower and return.
if result.Error != nil {
err := p.failAttempt(attempt, result.Error)
attempt, err := p.failAttempt(attempt, result.Error)
if err != nil {
return nil, err
}
return &shardResult{
err: result.Error,
attempt: attempt,
err: result.Error,
}, nil
}
@ -558,7 +563,7 @@ func (p *shardHandler) collectResult(attempt *channeldb.HTLCAttemptInfo) (
// In case of success we atomically store settle result to the DB move
// the shard to the settled state.
err = p.router.cfg.Control.SettleAttempt(
htlcAttempt, err := p.router.cfg.Control.SettleAttempt(
p.paymentHash, attempt.AttemptID,
&channeldb.HTLCSettleInfo{
Preimage: result.Preimage,
@ -571,7 +576,7 @@ func (p *shardHandler) collectResult(attempt *channeldb.HTLCAttemptInfo) (
}
return &shardResult{
preimage: result.Preimage,
attempt: htlcAttempt,
}, nil
}
@ -691,7 +696,7 @@ func (p *shardHandler) handleSendError(attempt *channeldb.HTLCAttemptInfo,
// failAttempt calls control tower to fail the current payment attempt.
func (p *shardHandler) failAttempt(attempt *channeldb.HTLCAttemptInfo,
sendError error) error {
sendError error) (*channeldb.HTLCAttempt, error) {
log.Warnf("Attempt %v for payment %v failed: %v", attempt.AttemptID,
p.paymentHash, sendError)

@ -1741,10 +1741,12 @@ func (r *ChannelRouter) preparePayment(payment *LightningPayment) (
}
// SendToRoute attempts to send a payment with the given hash through the
// provided route. This function is blocking and will return the obtained
// preimage if the payment is successful or the full error in case of a failure.
// provided route. This function is blocking and will return the attempt
// information as it is stored in the database. For a successful htlc, this
// information will contain the preimage. If an error occurs after the attempt
// was initiated, both return values will be non-nil.
func (r *ChannelRouter) SendToRoute(hash lntypes.Hash, rt *route.Route) (
lntypes.Preimage, error) {
*channeldb.HTLCAttempt, error) {
// Calculate amount paid to receiver.
amt := rt.ReceiverAmt()
@ -1774,7 +1776,7 @@ func (r *ChannelRouter) SendToRoute(hash lntypes.Hash, rt *route.Route) (
// Any other error is not tolerated.
case err != nil:
return [32]byte{}, err
return nil, err
}
log.Tracef("Dispatching SendToRoute for hash %v: %v",
@ -1804,34 +1806,37 @@ func (r *ChannelRouter) SendToRoute(hash lntypes.Hash, rt *route.Route) (
hash, channeldb.FailureReasonError,
)
if controlErr != nil {
return [32]byte{}, controlErr
return nil, controlErr
}
}
// In any case, don't continue if there is an error.
if err != nil {
return lntypes.Preimage{}, err
return nil, err
}
var htlcAttempt *channeldb.HTLCAttempt
switch {
// Failed to launch shard.
case outcome.err != nil:
shardError = outcome.err
htlcAttempt = outcome.attempt
// Shard successfully launched, wait for the result to be available.
default:
result, err := sh.collectResult(attempt)
if err != nil {
return lntypes.Preimage{}, err
return nil, err
}
// We got a successful result.
if result.err == nil {
return result.preimage, nil
return result.attempt, nil
}
// The shard failed, break switch to handle it.
shardError = result.err
htlcAttempt = result.attempt
}
// Since for SendToRoute we won't retry in case the shard fails, we'll
@ -1848,10 +1853,10 @@ func (r *ChannelRouter) SendToRoute(hash lntypes.Hash, rt *route.Route) (
err = r.cfg.Control.Fail(hash, *reason)
if err != nil {
return lntypes.Preimage{}, err
return nil, err
}
return lntypes.Preimage{}, shardError
return htlcAttempt, shardError
}
// sendPayment attempts to send a payment to the passed payment hash. This

@ -2809,13 +2809,13 @@ func TestSendToRouteMultiShardSend(t *testing.T) {
for i := 0; i < numShards; i++ {
go func() {
preimg, err := ctx.router.SendToRoute(payment, rt)
attempt, err := ctx.router.SendToRoute(payment, rt)
if err != nil {
errChan <- err
return
}
successes <- preimg
successes <- attempt.Settle.Preimage
}()
}

@ -3978,10 +3978,15 @@ func (r *rpcServer) dispatchPaymentIntent(
payment,
)
} else {
preImage, routerErr = r.server.chanRouter.SendToRoute(
var attempt *channeldb.HTLCAttempt
attempt, routerErr = r.server.chanRouter.SendToRoute(
payIntent.rHash, payIntent.route,
)
if routerErr == nil {
preImage = attempt.Settle.Preimage
}
route = payIntent.route
}