diff --git a/VERSION b/VERSION index c737ff345..2902901de 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.176.7 +0.176.8 diff --git a/_assets/tests/wikipedia.ico b/_assets/tests/wikipedia.ico new file mode 100644 index 000000000..e70021849 Binary files /dev/null and b/_assets/tests/wikipedia.ico differ diff --git a/images/decode.go b/images/decode.go index 0a6b7d7af..8e8342738 100644 --- a/images/decode.go +++ b/images/decode.go @@ -11,13 +11,35 @@ import ( "io/ioutil" "net/http" "os" + "regexp" "time" + "unicode/utf8" "golang.org/x/image/webp" "github.com/ethereum/go-ethereum/log" ) +var ( + htmlCommentRegex = regexp.MustCompile(`(?i)`) + svgRegex = regexp.MustCompile(`(?i)^\s*(?:<\?xml[^>]*>\s*)?(?:]*>\s*)?]*>[^*]*<\/svg>\s*$`) +) + +// IsSVG returns true if the given buffer is a valid SVG image. +func IsSVG(buf []byte) bool { + var isBinary bool + if len(buf) < 24 { + isBinary = false + } + for i := 0; i < 14; i++ { + charCode, _ := utf8.DecodeRuneInString(string(buf[i])) + if charCode == 65533 || charCode <= 8 { + isBinary = true + } + } + return !isBinary && svgRegex.Match(htmlCommentRegex.ReplaceAll(buf, []byte{})) +} + func Decode(fileName string) (image.Image, error) { file, err := os.Open(fileName) if err != nil { @@ -109,6 +131,8 @@ func GetType(buf []byte) ImageType { return GIF case IsWebp(buf): return WEBP + case IsIco(buf): + return ICO default: return UNKNOWN } @@ -124,6 +148,10 @@ func GetMimeType(buf []byte) (string, error) { return "gif", nil case IsWebp(buf): return "webp", nil + case IsIco(buf): + return "ico", nil + case IsSVG(buf): + return "svg", nil default: return "", errors.New("image format not supported") } @@ -153,6 +181,12 @@ func IsWebp(buf []byte) bool { buf[10] == 0x42 && buf[11] == 0x50 } +func IsIco(buf []byte) bool { + return len(buf) > 4 && + buf[0] == 0 && buf[1] == 0 && buf[2] == 1 || buf[2] == 2 && + buf[4] > 0 +} + func GetImageDimensions(imgBytes []byte) (int, int, error) { // Decode image bytes img, _, err := image.Decode(bytes.NewReader(imgBytes)) diff --git a/images/encode_test.go b/images/encode_test.go index 51f374e54..dba458623 100644 --- a/images/encode_test.go +++ b/images/encode_test.go @@ -110,3 +110,30 @@ func TestGetPayloadFromURI(t *testing.T) { payload, ) } + +func TestIsSvg(t *testing.T) { + GoodSVG := []byte(` +   + Sorry, your browser does not support inline SVG. + `) + + BadSVG := []byte(` + + `) + + require.Equal(t, IsSVG(BadSVG), false) + require.Equal(t, IsSVG(GoodSVG), true) +} + +func TestIsIco(t *testing.T) { + GoodICO, err := Asset("_assets/tests/wikipedia.ico") + require.NoError(t, err) + + GoodPNG, err := Asset("_assets/tests/qr/defaultQR.png") + require.NoError(t, err) + + require.Equal(t, IsIco(GoodICO), true) + require.Equal(t, IsIco(GoodPNG), false) + require.Equal(t, IsPng(GoodPNG), true) + require.Equal(t, IsPng(GoodICO), false) +} diff --git a/images/meta.go b/images/meta.go index 6cacc07b0..26f6166da 100644 --- a/images/meta.go +++ b/images/meta.go @@ -8,6 +8,7 @@ const ( PNG GIF WEBP + ICO ) const ( diff --git a/images/qr-assets.go b/images/qr-assets.go index d5c0c2def..ecc698700 100644 --- a/images/qr-assets.go +++ b/images/qr-assets.go @@ -1,17 +1,22 @@ -// Code generated by go-bindata. DO NOT EDIT. +// Code generated by go-bindata. // sources: -// _assets/tests/qr/QRWithLogo.png (13.814kB) -// _assets/tests/qr/defaultQR.png (12.007kB) -// _assets/tests/qr/status.png (9.398kB) +// _assets/tests/1.gif +// _assets/tests/2x1.png +// _assets/tests/spin.gif +// _assets/tests/qr/QRWithLogo.png +// _assets/tests/qr/defaultQR.png +// _assets/tests/qr/status.png +// _assets/tests/wikipedia.ico +// DO NOT EDIT! package images import ( "bytes" "compress/gzip" - "crypto/sha256" "fmt" "io" + "io/ioutil" "os" "path/filepath" "strings" @@ -21,7 +26,7 @@ import ( func bindataRead(data []byte, name string) ([]byte, error) { gz, err := gzip.NewReader(bytes.NewBuffer(data)) if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) + return nil, fmt.Errorf("Read %q: %v", name, err) } var buf bytes.Buffer @@ -29,7 +34,7 @@ func bindataRead(data []byte, name string) ([]byte, error) { clErr := gz.Close() if err != nil { - return nil, fmt.Errorf("read %q: %w", name, err) + return nil, fmt.Errorf("Read %q: %v", name, err) } if clErr != nil { return nil, err @@ -39,9 +44,8 @@ func bindataRead(data []byte, name string) ([]byte, error) { } type asset struct { - bytes []byte - info os.FileInfo - digest [sha256.Size]byte + bytes []byte + info os.FileInfo } type bindataFileInfo struct { @@ -70,6 +74,66 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } +var __assetsTests1Gif = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x0a\xf2\x74\x73\x93\x63\x60\x60\x08\x77\x75\x0a\x08\x0b\xb0\xf0\x11\x64\x60\x60\xd0\x67\x60\x60\x60\x60\x0f\x78\x66\x34\x7d\xe7\xff\xc6\x8e\x17\xf5\x0c\x0c\x80\x00\x00\x00\xff\xff\xd7\x34\xfd\x79\x26\x00\x00\x00") + +func _assetsTests1GifBytes() ([]byte, error) { + return bindataRead( + __assetsTests1Gif, + "_assets/tests/1.gif", + ) +} + +func _assetsTests1Gif() (*asset, error) { + bytes, err := _assetsTests1GifBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "_assets/tests/1.gif", size: 38, mode: os.FileMode(436), modTime: time.Unix(1696070017, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var __assetsTests2x1Png = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x0a\xf2\x74\x73\x93\x63\x60\x60\x08\x77\x75\x0a\x08\x0b\xb0\xf0\x11\x64\x60\x60\xd0\x67\x64\x60\x60\x60\x0f\x78\x66\x34\x7d\xe7\xff\xc6\x8e\x17\xf5\x0c\x0c\x80\x00\x00\x00\xff\xff\x94\xff\x5b\xfe\x26\x00\x00\x00") + +func _assetsTests2x1PngBytes() ([]byte, error) { + return bindataRead( + __assetsTests2x1Png, + "_assets/tests/2x1.png", + ) +} + +func _assetsTests2x1Png() (*asset, error) { + bytes, err := _assetsTests2x1PngBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "_assets/tests/2x1.png", size: 38, mode: os.FileMode(436), modTime: time.Unix(1696070017, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var __assetsTestsSpinGif = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xb8\xfb\x3f\xd3\x8f\xff\xff\xff\x78\x3c\xf6\xd8\x81\x0d\x1b\xc3\xc8\x61\x9b\x43\x64\x18\xa9\x46\x68\xce\xc7\x58\x45\xad\x42\x73\x8a\xa2\x5a\x85\x26\xd2\xe6\x7c\xb6\x16\x42\x68\x44\xa9\x28\x87\x1c\x9f\xa5\x59\x07\x9e\x9d\x9e\xa2\x44\x0e\x8d\x54\x2a\x15\x29\xa9\x94\xef\xe5\xf5\x7e\x5f\xde\xdf\xcf\xfb\xf5\xc3\xfb\x75\xff\x1b\xae\x97\xdb\xf5\x76\xbb\xbb\x79\xb8\x32\xac\x83\x01\x10\x00\x53\x75\x81\x95\x95\x95\xef\xdf\xbf\x7f\xfe\xfc\xf9\xcd\x9b\x37\x13\x13\x13\x43\x43\x43\x8f\x1f\x3f\xbe\x7b\xf7\xee\xcd\x9b\x37\x5b\x5b\x5b\x1b\x1a\x1a\x6a\x6b\x6b\xcb\xcb\xcb\x0b\x0b\x0b\x73\x73\x73\x53\x53\x53\x13\x12\x12\x8e\x1e\x3d\x1a\x15\x15\x15\x1a\x1a\xba\x6b\xd7\xae\xad\x5b\xb7\x7a\x7a\x7a\x3a\x3a\x3a\xda\xd8\xd8\x58\x58\x58\x18\x1b\x1b\x53\x28\x14\x0d\x0d\x0d\x0c\x06\x03\x00\x00\x1e\x8f\xa7\xac\x60\x7d\x5c\xfc\xb6\x39\x39\xb0\x5c\x2c\xcd\xe8\x08\x10\x00\x00\xca\x0f\x18\x46\x03\x00\x40\x03\xfe\x75\x20\x00\x02\xc8\x15\x3e\x43\x54\x1b\x5f\x7d\xa9\xab\xb9\xe1\x97\xb4\xc9\x76\xb0\xf5\xc4\xab\xce\xee\x85\x9b\x2b\x88\x14\x29\xa5\x29\xd2\x96\x7a\xfa\xbe\x41\xcb\xbb\x44\xc7\xf3\x03\xc6\xad\xfb\x6f\x86\xb4\xbc\x30\x6d\xff\xf0\x3b\xf9\xf6\x94\x45\x67\xb4\xfd\xf9\xc1\xf7\xeb\xfe\xfa\x98\x74\xfb\xd5\x17\xeb\x9b\x07\x6f\xbd\x5a\xf8\x69\x77\xeb\xf3\x0a\x02\x25\xaf\xa8\xac\xa6\xa9\x43\x35\x5c\x63\x66\xb9\xde\xc6\xde\xd1\xd5\xd3\x67\xeb\xf6\x5d\x41\x21\x7b\xf7\x1f\x3c\x12\x77\x3c\x29\x39\x3d\x3b\x5f\x54\x5c\x56\x59\x7d\xe1\xf2\xd5\xe6\xb6\xae\x6e\xe9\xbd\xfb\x8f\x07\x86\x5e\x4c\x4c\xbd\x79\xff\xe9\xcb\xe2\xcf\x3f\x10\x1a\xab\xa4\xa2\xbe\x4a\x57\x6f\xb5\x89\xf9\xda\x0d\x1b\x37\x39\xb9\x79\xf9\x6e\xdb\xb1\x7b\x4f\x68\x44\xd4\xa1\xa3\xc7\x12\x4e\xa6\x64\xe4\x14\x9c\x3e\x73\xf6\xdc\xf9\x8b\x57\xae\xb5\xb4\xff\x75\xeb\x76\xef\x83\x7f\x06\x9f\x8f\xbe\x7c\xf5\xf6\xc3\xe7\x85\xef\xbf\x56\x10\x31\x04\x8e\x84\x0f\x80\xb1\x30\x43\xcc\xec\x01\x53\xd0\x87\x88\x6c\x09\xbf\x27\x19\x52\x3a\x44\x2e\x61\x10\x7a\x5c\x54\x61\x74\x8d\xbb\xf8\x94\x43\x32\x11\xed\x83\xd2\x62\xad\x70\x0c\x40\x22\x75\x5d\xb1\x6d\x15\x00\xa5\xa2\xd1\x80\x1a\x5d\x3c\xc8\xe7\xab\x98\xaf\xbe\x47\xdb\xc2\x84\x9e\x94\x31\x8e\x69\x36\x46\x4e\xad\xfe\x5b\x05\x9f\xa9\x7c\x02\xe0\x02\x5b\x11\x64\x2f\xba\x82\x0d\x15\x7c\x22\xe7\xac\x0a\xe0\x58\xcf\xf8\xb7\x1b\xf4\x5a\x21\x3c\x1e\xbc\x9c\x8a\xb1\xbb\xb8\xfd\x80\x07\x35\x2a\x0b\x19\x98\x55\xfd\xed\x8c\xca\xbe\x9d\x40\x8c\x1b\x8e\x63\x02\x4a\x5d\x40\xff\xa2\xec\x25\x13\x69\x4f\xa0\x5c\xa6\x92\x72\xdd\xcf\xa1\xcf\x23\x04\x14\xbc\xb1\xff\x7b\x93\xb9\x5c\x93\xff\x23\xa9\xd6\xfc\x53\x93\x27\x57\x0c\xe5\x19\xdc\x46\x71\xc5\xfd\x0a\xa4\xaf\xb3\xeb\xf1\x6f\xe6\x3b\xe4\x6a\x76\x9c\xc5\xcb\x64\x50\x3a\x56\x99\x7b\x25\xe7\x66\x0b\x7f\x9f\x72\xa8\x82\x7c\x87\x8d\xf8\xe2\xae\x36\x02\x03\xcd\xe6\x50\x9c\x50\xb8\x9b\x72\xd7\x54\xf2\xaf\x4b\xc2\x08\x7e\xb1\xca\xb2\x80\x10\x00\x31\xa0\xe5\x06\x33\x99\x20\x22\xf6\xfd\xf3\x11\xe4\xf0\xc6\xf5\xb6\x59\x45\xe3\xfe\x44\x1e\x59\xb5\x11\x5e\xfc\x38\xbe\x7b\x8e\x6d\x03\xf5\x6d\x28\xde\x37\xd5\x40\x17\x62\xa0\x15\x2b\x6e\xcf\xc9\x8f\xc1\x4c\x01\x38\x77\x7d\xfd\xf6\xad\xdf\x7b\xf0\x7c\x48\x75\xe9\xbb\x2e\x4a\x8d\xc6\x97\xd9\x20\x76\x96\x14\x2a\x10\x6d\xdd\xc7\x91\x8a\x1c\x8c\x2f\xf0\xe2\x9d\x7e\x35\x16\xc1\xc0\x54\xc1\x47\x26\x9d\xc4\x51\x0c\xba\x2c\x08\xf9\x76\x7e\x21\x50\x11\x0a\xe0\x80\x08\xcb\x09\x15\x66\xce\x5a\x7d\x56\x80\x9b\x6f\x99\xb8\x06\xd8\xb6\x75\xe7\xeb\x42\x5b\x9a\xb0\xb6\x78\xf7\xde\x52\xc0\xf7\x8d\x1f\xbb\xda\x07\x9a\x68\x74\x40\x47\x54\x97\xbe\x29\xd5\xb4\x6d\xd4\xdf\x10\x9c\xbd\x6f\x4a\x51\x9d\xc7\xba\x58\x71\xec\x78\x7f\x0f\x5a\x03\x50\x57\x2c\x0f\x11\xed\x43\x54\xf0\xa6\x2e\xad\x3e\x37\x3d\x43\x7a\x5b\x62\x8b\xf3\xac\xab\x38\x1e\x24\x7c\xbe\x01\xc2\xb3\xc4\x69\x82\xa1\x46\x10\x7d\xf6\xc8\x0b\x63\xf4\x2a\x36\xd9\xb8\xf0\xbc\x68\x17\xa2\xd6\x06\x2f\x9b\xb6\x9f\xbf\x9b\x99\x12\x31\x36\xbf\x40\xdd\xca\x18\x12\x6b\x9f\x58\x4a\x5c\x5d\xaa\x90\xae\x11\xe9\x5b\x1d\xaa\xca\x9f\x96\x2f\x56\x7c\xbb\xd7\xa6\xb9\x98\x67\xa2\xd0\x17\xb4\x3f\xda\xba\x13\xda\x3d\x74\x84\xae\x9f\xa1\x93\xdb\xb2\xd2\xbc\x9d\x5a\x3f\xf3\xae\x66\x8d\xfc\xcb\x6f\xdf\xa2\xfc\x27\x8a\x8f\x36\xf8\x1b\x46\xba\x5d\x3d\x36\x9c\x1f\x41\x69\x98\x91\xd4\xd1\xda\x47\xe3\xbf\x13\x1c\xa8\xec\x35\x3a\x2d\x1e\x37\x13\x14\x6b\x43\xb3\x23\xdf\xed\x6e\x33\xe3\x91\xe4\xeb\xd5\xc8\x9f\xf9\x3b\xaa\x25\x1f\x7c\x18\xca\x34\x28\xf7\x20\x8a\xd5\x64\xdf\x9b\x87\xb7\x00\x2a\x29\xcf\x08\xd7\x51\xfd\x97\x2d\x80\x79\xfb\x3b\xf3\x3e\x06\x99\x38\xe0\x1e\xb8\x39\xd7\xf2\x2f\x3d\x06\x2e\x88\x69\xf8\xc0\xc3\xf1\x3e\x30\x8d\xc5\xe7\x4e\x8d\x7b\x1f\xbd\xf5\x93\xb8\xb4\xf0\x48\x6f\xf0\xd7\x3f\x9e\x1b\x29\x0c\xab\x5e\x93\xb4\xd6\x81\xb6\x99\xee\x00\x48\x60\x22\x17\xe5\x7b\xd7\x52\xd1\x54\xfa\xac\x56\x04\x34\x74\x05\xbc\x6d\x7b\x3e\xc8\x69\x61\x1a\x83\x8f\x45\x15\x6d\x2f\xa2\x5a\xc6\xdb\x46\x0f\xdd\xd6\x6e\x1f\x3b\x3a\x18\xd8\x3e\x7e\xec\x55\x45\xfb\x44\xc2\xc2\x78\xfb\xcb\x93\x08\x9d\x0e\x59\x8a\x4a\x50\xc7\x64\x86\x5e\x65\xc7\x54\xce\xda\x89\x8e\x57\x05\x4e\x3a\x9d\xd3\xa7\xb7\x05\x75\xbe\x3e\x13\x5a\xd9\xf9\xe6\xec\xd1\x89\xce\xb7\xe7\x52\x74\xba\x66\xce\xaf\x3e\x1d\xd4\xf5\xee\xe2\xf9\xca\xae\xf7\x57\x5a\x26\xba\x3e\x5c\xbb\xad\xf3\xd7\x6c\xcb\x60\xd0\x5f\x1f\xdb\x5f\x55\xfe\xf5\xe9\xaf\x85\x89\xbf\x3e\xdf\x42\x98\xfb\x60\xfe\x5f\x76\x84\x00\x21\x80\x2d\x60\x0b\xfc\x4f\x76\x40\x0e\xfc\xe6\x86\x5f\x95\x29\x34\x49\xab\x82\x52\x9a\x4f\x7d\xfb\x4a\x0e\x2a\x3d\x58\x80\xb2\xbd\x00\x43\xaa\xd9\x74\x2d\xcd\xcd\xd0\x88\x38\xc3\x8a\x00\xa4\x46\xfe\xfd\x63\x3a\x1f\x4e\x77\x86\x4e\xdd\x14\x41\x11\x0d\x45\xd3\x69\xd5\x44\xdc\xbd\x6a\xbe\xcf\x35\x30\x65\x70\x14\x18\x5a\xfd\xf0\xc9\xc8\x78\x15\x31\xd8\xee\x47\x11\x4c\xa2\x61\xcc\xa6\xc7\xe5\xf0\xd9\xce\xfb\x0d\x92\x15\xfa\xe4\x0c\xaf\xab\xbe\xd1\xee\x0a\xbe\xa0\x8d\x19\xd8\x39\x11\xef\xba\x78\x98\x10\xfd\x98\xc2\x53\x7b\x5f\x34\x9b\xd7\x98\x4e\x29\x59\x33\xfc\xf8\x42\x11\x2b\x28\x29\x8f\xc8\x90\xd7\x24\x23\x8d\x7e\xa7\x21\x77\xf8\xe7\x43\x65\x86\xf4\x41\xbc\x85\x8a\xba\xf8\x02\xb0\x6a\xd2\x52\x53\xa9\xac\xce\xd8\x96\x69\xcb\xac\x9e\xc6\x1f\x8a\xf7\xe9\xca\x62\x5b\xec\x2b\xa3\x96\xe0\xc8\x0c\x67\x77\x77\x67\x2b\xf8\x34\xdb\xcd\x71\x77\x4e\x10\x0d\xaa\xa0\x52\x64\x4c\x04\x66\x79\xe9\x07\x82\x74\x4f\xd8\xa3\x6a\xbb\x1f\xc7\xe6\x8a\x33\x4a\x90\x8a\xba\x8e\x01\x1c\xfa\x23\x77\x5e\x73\x74\x3f\xf9\xfb\x0a\x47\xb7\x2f\x69\xc5\x27\x9f\x15\x1a\xb9\x5b\x01\xfc\xc1\x6e\x4b\xe4\x5c\x7b\xd3\x26\x5a\x0f\x31\x22\xff\x56\x82\xae\xe9\x7e\x46\x55\x1b\xf7\x5b\x42\x29\x26\x20\x2e\x64\x01\x7c\x22\x00\x4b\x36\x3c\x9d\x29\x31\x70\x88\xf0\x23\x07\x9e\x98\xfd\x6a\xb0\x98\xf9\xac\xc9\x82\x20\xde\x7c\x45\xad\x07\x44\x44\xd0\xf6\x86\x3b\xa8\x64\xa6\x75\xc5\x7d\x1e\xaa\x05\x28\x20\xff\x9a\x5e\x22\xf5\x6f\x32\x8f\x3e\x89\x23\xd1\xd9\x5c\xba\xe4\x10\xbe\x29\x4d\x57\xd7\xe7\x46\xc4\x27\xd3\xa6\x0c\xf3\xd0\x7b\x01\x55\x0e\xaa\x02\x53\xa3\x97\x78\x6e\xb0\xd5\xbb\x01\x75\x9a\x1f\xbf\xf1\x09\xed\xc3\x10\xf2\x01\x14\x2f\xbf\xe4\x96\x5a\x9d\x56\x48\x10\xf2\xc2\x7a\x32\x70\x04\x3c\xfd\xa0\x45\xda\x40\xf4\xaa\x55\xb6\x31\x4b\xfc\x1e\x07\x70\xd8\x68\xbb\x7b\xcc\xc4\x94\x20\xe3\x7d\x9f\xb5\x1f\x07\xf8\xf9\x3c\x4e\x17\xc5\x88\x99\xe1\xd8\xdd\x48\x97\x93\xcb\xf6\x7d\x1a\x08\xdc\xcc\x01\xe4\x68\x89\xf8\x4d\xdd\xc7\x52\x9f\xfd\x03\xce\x0c\x85\x84\xa5\xc5\xa4\x51\x61\xba\xd0\x21\x71\x88\xf2\x5d\x80\xc4\x01\x71\x85\x58\xf9\x8b\xdd\xe4\x6d\x3a\xb0\x73\xa3\x03\x6f\xc1\x9f\xcb\xb7\x01\x46\x9e\xb8\x9e\x34\xae\x6f\xd2\x31\x26\xf2\x57\xbf\x44\xab\xa7\xfa\x7b\x25\xc9\x23\x53\x3c\x3d\x03\x73\x4f\x4b\x90\xf3\x06\x11\x0e\x59\x86\xb3\x92\x5c\xef\x3b\xe5\xa9\x79\xbe\x10\x43\x08\xa2\xbb\x2b\xdc\xb1\xd8\x4a\x39\x63\x17\x5b\x49\x9f\x81\x9b\xbf\x1b\xdd\x7d\x1b\x71\xf3\x41\x9e\xbf\xfe\x16\x17\xd5\xfb\x6c\x56\xb3\xc4\xe5\xf4\xde\x78\xe5\xb0\x3d\xad\xb8\x3b\x95\x4a\xb8\x6a\xf4\xbd\xbc\xa2\xdc\x70\xe1\x99\x3d\xc5\x92\xb4\xa2\x73\xf0\x57\xa9\xee\x81\x1b\xf1\x6e\xe6\xa3\xfe\x4e\x1e\x5c\xdb\x7d\x5b\x4e\xdb\xe4\x05\x6a\x04\x54\xc8\x7f\x1c\xd9\x75\xf4\x6a\xe0\xa9\xd1\xe3\x5b\xa8\x3f\xbd\x4e\xb5\xa4\xfe\x2f\xef\x85\x02\x21\xc0\xc6\xff\xc5\x6e\x36\xd8\xd5\xdc\xe0\x25\x0f\x38\xdc\xf8\x97\xf7\xcc\x06\xce\x77\x21\x40\x8b\x1d\x93\x11\xf2\x18\x51\x8f\xe8\x32\xc7\xa4\x12\x4a\x75\x14\xd0\x03\xec\xdd\x58\x83\x62\x0e\x9d\x78\x75\xf8\xcc\xb6\xeb\x69\xf1\xb7\x26\x2d\x0a\xea\xd6\xe5\x63\xf6\xac\x2b\xb7\xd3\x2c\xb9\xcf\x6f\x71\x17\xfe\x59\x1c\xee\x2c\x7d\xf6\xf7\xa3\x79\xb9\xab\x33\xf3\x0a\x0f\x4f\x4c\x1a\x28\x7e\xea\xf9\xad\x81\x7f\x3a\xf2\xae\x36\xf2\x66\xad\x95\x4d\xf6\x38\x06\xc7\xac\xb6\xaa\xa6\xfd\x59\xb2\x0e\xaa\xf6\xf6\x0f\xfe\x43\x9a\x7d\x5d\xf3\x85\x71\xb5\x82\x4c\x9b\xa3\x16\xfe\x04\x1e\x66\x63\xfe\x5a\x2e\xae\x7f\xac\x71\x45\xcb\x88\xce\x58\xab\x4f\x42\xd4\xe1\x4f\xa7\xe9\x68\x50\x35\xad\x36\x6d\x74\x0b\xf5\xb8\xb6\xf4\x5b\x4d\x9f\x16\xb3\xd1\x5c\x2b\xc0\xeb\x13\xe9\x63\xf5\xc5\x5f\xae\x2f\xe8\xbd\x6b\x69\xfa\x30\xd4\x34\x5a\xde\x6b\xc2\xac\x09\x3d\x97\x0f\xce\x3c\xfd\xf6\x40\x60\xec\x06\xc5\x4f\xc6\xe1\xc7\x82\x59\x7b\xaa\xd3\x6c\xe0\x81\x07\x91\x54\xd4\xa5\x7c\x1d\x0f\x39\x4f\x5e\xc8\x7d\x75\x35\xa5\x58\x4c\xa6\x78\xe5\x88\x81\x57\x11\x9e\xa4\xd5\x58\xb7\x25\x35\xb5\x6c\xfd\xa1\x17\xa9\x42\x66\x8d\x6b\xb9\x7d\xd4\xfb\xe9\xf8\x5e\x1f\xfe\x39\x7b\x5d\x32\xdd\x31\xdc\x78\xdb\x9a\x64\x0c\x33\x73\x4d\xec\xfe\xa7\x68\x79\xea\xe3\x87\x97\x63\xa3\x2c\x30\x98\xd4\xa1\x99\xad\xa6\x18\x04\x8e\xa8\x49\x12\xbe\x73\x44\x6e\x27\x23\xcc\xc2\x24\xdc\x60\x69\x72\x9b\x29\x3c\x8c\xa4\x52\x10\x2f\x3b\xd4\xa8\x89\x2d\x4f\xee\xaa\xe2\x61\x35\xfa\xd7\xd7\x39\x55\xd2\x94\x58\x53\x28\x33\xaf\x06\x12\xa4\x62\x33\x7f\xdd\xb7\xbb\xf2\x8e\x3d\x0a\x21\x9e\x36\xe3\xc5\x47\xef\x40\xf2\x24\x33\x93\x6e\xa0\x64\xfc\xf6\x76\xa7\x03\xe4\xe1\xb9\x60\xa9\x3d\x3a\x63\x4b\x68\x23\x10\xbc\x60\x45\xe4\x6c\xd1\x92\xc8\x7a\x9c\xd0\x0a\x38\x19\x89\xcf\x65\xc4\xc2\x13\xb1\xb6\xe7\x18\xeb\xa6\x3c\x0b\xb6\xa3\xe8\x31\xa4\x3f\x55\xd0\x21\x58\x85\xf6\x76\xe2\xe6\x62\xaa\xae\xb2\x20\x1a\xc9\x95\x04\xf3\xd0\x8a\x4a\xc3\x16\x62\x8e\xe0\x93\x07\xa8\x56\x8b\x7f\xe0\x92\x83\x57\xc2\x8e\x64\x85\xf2\xf9\xc6\x18\x16\x31\xcb\x74\x90\xde\x58\x19\x47\x38\x5c\x5e\xe8\x21\x87\x86\xe8\x00\x72\x25\x56\x28\x80\xc4\xaf\x39\xb9\x16\x78\x48\x28\x41\xdd\x8e\xa7\xef\x0e\x0a\xb5\x7d\x9e\xa5\xa4\x94\x28\x99\x40\xf5\x8e\x50\x02\x75\xe3\x4b\xea\xee\x22\x89\xbb\x24\x67\x37\xfe\xe2\xdc\x9d\xb4\x52\x30\x62\x07\x40\xd1\x2c\x69\x7e\xbe\xe5\xd2\x73\x87\xb4\x4d\x22\x77\xa9\x93\x13\xd4\xc8\x47\xe9\x72\xb9\xa0\x48\x95\xd0\xd4\x0f\x28\xb2\x17\x25\x99\x6b\x83\xfb\x9e\xb9\x07\x25\x5f\x52\xd5\x09\x7c\x81\x87\xfe\x45\x21\x12\x0d\xe8\xfe\x5b\x82\x9e\x63\x88\x6a\xf7\xa1\x2e\x76\x35\x37\x6c\x54\x9e\x9a\x1b\x88\x3d\x40\x6a\xeb\x5e\xf8\x6d\xd2\x21\xbf\x69\x8f\xc9\xa2\xf1\x43\x1f\xa9\x9a\x70\x26\x06\x89\xe9\x5c\xdd\xba\xdf\x6b\x57\xde\xd0\xea\xc5\xe1\x86\xa4\x58\xaf\x53\x71\xbf\x8c\x7f\xc9\x6f\x6e\x89\x9c\xc5\x1e\x7a\x72\xad\xf9\xd7\x4d\x33\xb9\xf7\x5d\xa0\x8c\x48\x02\x26\x2e\x79\x57\x00\x92\x0a\x02\x71\xa6\xa7\xa6\x04\xa7\xaf\x49\xc4\x5b\x75\x6b\x7d\xa9\x2b\xc5\x30\xa7\x48\xde\x57\x69\x49\x2c\x11\xaf\x99\x24\xb2\x56\xe3\x1e\x11\x55\xea\x5f\x1e\x23\x60\x9a\x9d\x1b\x7e\xd7\x5e\x9e\x22\x67\x89\x80\xe1\xae\xaf\xef\x80\xa8\xa9\x37\xf7\xa0\x6b\x00\x06\x37\x43\x58\x74\x1e\xbf\xec\x29\x3f\xfb\x78\xff\xfb\x2d\xcf\x01\xe6\xd1\xf7\x3a\xcf\x97\x8b\x76\x0e\x60\x9c\x95\x60\x1e\xfa\x57\x92\x78\xc1\xdd\xa3\x65\x41\x5f\x25\xf3\x64\x6f\x88\x4a\xc5\x8e\xd7\x2d\xf3\x7b\xbe\x5d\xd1\xc2\x18\x71\x65\x02\x77\x8f\xb0\xdf\xab\x2c\xf8\xe0\xed\x74\x45\x0d\x33\x77\x60\xcd\x64\x66\x86\x1a\x45\xb3\xc3\x6d\xfe\xb6\x4b\x0e\xd6\xb2\x6d\xc4\x3d\x24\xb8\x37\x9d\x90\xa6\xbf\x0d\xb5\x12\x69\xf0\x80\xb9\x1d\xc6\xe7\x6a\x18\x17\xf7\x95\x55\x45\x7f\xe9\x0f\xab\xed\x01\xcb\x37\xea\x33\x39\xcc\xf0\x9d\x6b\x57\x23\xf5\xc9\x45\x73\x4c\xc1\x5a\x82\x4b\x05\xcc\x15\x12\xf7\xc1\xe8\x8d\x31\x6d\x8e\xee\xa1\x12\x08\xb3\xed\xd2\x7a\xde\xc0\x23\xb7\x66\x84\x02\x35\x11\xd9\x25\xbb\x3b\xd8\x14\x76\xbd\xb2\x44\xc0\x4c\xad\x82\x15\xfb\x7d\x1a\x6c\x9e\xff\x93\x51\xfd\xd9\x73\x9a\xf3\x2d\xbb\x27\x0d\x8b\x6f\x74\xde\x32\x27\x8b\x82\x51\x47\x5c\xad\xce\xba\x1d\xa8\xce\x92\xd7\xb0\xe4\xd4\x49\x0a\x9d\xf9\x10\xee\xc6\xd6\x58\xad\x3b\x5a\xb6\xca\xa1\x34\xa2\x19\x2d\x95\x09\xe3\xce\x58\xb8\xd3\xb7\xb4\x81\xa9\x18\x07\xdd\x07\x18\xbf\x2e\x58\x97\x40\xb2\xe1\xcd\x35\x06\x7b\x24\xcb\x5f\x5d\x1b\x80\x31\x49\x90\x08\x60\x0c\x4e\x82\x24\xff\x1e\xcd\x7c\xd9\x93\xf1\x80\xc7\x9d\x5c\x97\x56\x99\x56\xf3\x39\x6e\xbe\x36\x27\x76\xd2\x0b\xd0\x12\x73\x97\xa5\x29\x65\xc9\x0f\x42\xd5\x29\xe2\x9e\xb8\x87\xaa\xca\x5f\xf5\x52\xb3\xe0\xc4\x0d\x6e\x05\xa1\x00\xb8\x2a\x3e\x37\xc4\xf1\xa4\x81\x11\x47\x10\x45\x3a\xc4\x6e\x1c\xda\x94\xa3\xc5\x90\x87\x81\x7b\x8b\xbe\x87\x0c\x9c\xdd\x1d\x0f\x63\xb7\xcb\xb4\x57\x25\xfb\xa3\xcb\xe3\xf3\x6d\xc5\x64\xd4\x78\x53\x55\x9f\xbc\x86\x88\x0b\xc0\x44\x16\xd0\xb3\x6d\x09\xc3\x7a\x25\xaf\x1e\x23\x3c\x8f\xca\x89\x49\x07\x20\x74\x7f\x0b\x82\x67\xe2\x27\x0c\x45\x93\x64\x6f\xb6\xc9\xe1\xa3\x25\x20\x5a\x05\xbe\x14\x06\x29\x7b\xd3\x41\x84\xa6\xb1\xb5\xa3\x0e\x63\x0e\xac\x3c\xb3\x27\x59\xe3\x42\x0c\x05\xf8\xbf\x2d\x2e\xff\xae\xb3\xb9\xe1\x83\x22\x73\xcb\x8d\xd6\x13\x39\x69\x82\x85\xdf\x1e\xbf\x92\x2f\x3a\xe4\xb6\x1e\x45\x02\x77\xaa\xfb\x8f\xc5\x80\x82\xcd\x22\xe6\x2e\x7c\x79\x25\xed\xdd\xd7\x1d\x9e\xc5\xd7\x9d\x0e\x9f\x71\xe6\x9d\xf2\x1a\x6b\xf6\x48\x50\x6c\xc7\xec\xa2\x25\x7c\x55\xd3\x28\xe1\x15\x93\x03\x75\x0f\x37\xfc\x40\x8e\xfd\x6e\x58\x02\x97\x14\xc8\x9a\xf7\x0b\xfb\x0d\xae\xd6\x0b\x2a\x60\x56\xf3\x8d\x40\x51\x87\xa0\xd6\x74\x88\x43\xc0\xcf\x14\x11\x95\x31\x91\x10\xb1\x0c\x3f\xde\x70\xe0\xe3\x2c\xf3\xf2\x93\xc7\x50\xe4\x0b\x51\x4d\xf3\x7b\xdb\xab\x7d\x69\xaa\xc2\x7c\xdc\xf9\x1b\x86\xe0\xab\xaf\x65\xe5\x5b\xd4\x66\x9b\x67\xe4\xea\xb7\x76\xb2\x46\x5f\x2f\xe2\x6e\xe4\x33\xd7\x5e\x94\xdb\x60\x7a\xe8\x67\xf4\xda\x9f\x01\xbe\x87\xb1\xf1\x1b\x6a\xd1\x16\xad\x1b\x1e\x0f\x3e\x1f\xf5\x45\x62\x70\x99\x5f\xbe\x2f\xa8\xa3\x29\xd3\x87\x64\x80\x9f\xf5\xe3\x75\x96\x62\x2e\xe5\x76\xda\xe4\xc4\x48\x94\xd1\x96\x60\x06\xff\xbb\xa1\x27\xee\xd8\x21\x17\x20\x17\x87\x2d\xa7\x5e\xd8\xcf\xd9\x94\x63\x07\x8b\x96\x23\x56\xf6\xe9\x79\x05\xc6\x4e\xcf\x63\x1a\x15\xa8\x8a\xc8\xf8\xfb\xd3\x5e\xa8\x05\x17\x08\x85\x55\x0e\xd8\x67\xd9\xf0\xb4\x10\xc4\xe5\xff\x74\x26\x87\xad\xca\x36\xc4\x0a\xa9\xfe\x5c\x59\x71\x9e\xcf\x82\xb2\x6d\xda\x71\x2b\xd0\x11\x18\x7c\x8c\x64\xf7\x52\x5f\x36\x40\xf2\xd7\x75\x7e\xff\x70\xa4\x65\x21\x34\x75\xc6\x8c\x64\x9c\xcb\x18\x10\xdd\xbc\xbf\x35\xeb\x52\x9e\x1c\xa8\x62\xc3\x1b\x6e\x14\xa7\xc3\x72\x0a\x9e\x38\x26\x5f\x7d\x1f\xc4\xbf\x76\xc4\x58\x26\x0b\xfe\x82\xc6\xb0\xcd\x04\xc6\x01\x0c\x47\x68\x2f\xbb\x6a\xbd\x9a\xa3\x0c\xe2\x28\x69\x5b\xc6\xa8\x9d\x0a\x6e\x4d\xd3\x46\xe8\x44\x16\x03\xcf\x9d\xdd\x90\xd8\x83\x7a\x40\x66\xee\x9a\x03\x68\x5d\xc3\x84\x3a\xef\x5e\xe9\x7b\x5c\x83\x0b\x39\x53\x3b\x98\x2e\x8f\xc0\xe0\xf0\xc3\xa5\x06\x4e\xef\x14\xd5\x67\x20\xf2\xe3\x9f\x99\x00\xba\x49\x37\xe6\x1b\x81\x2c\xfd\xfc\xb7\x96\x26\x6b\xe0\xe0\x72\x96\x00\xd3\xa4\xd1\xef\xd4\x58\x65\x83\x34\x7b\x5f\x90\x83\x69\x24\xaf\x87\x67\x63\x61\x16\xab\x02\x85\x0d\x38\x72\x4e\x0d\xc1\xc4\x8f\x06\xa7\x27\xd1\x58\x41\x5c\x65\x61\x08\x47\x4e\xce\xe8\xa2\x44\x17\xc1\x66\x05\xa2\x3c\x8b\xc8\x14\xb9\x6b\x77\xdf\x00\x9b\x19\x24\xba\x6e\x78\x71\xa9\x2c\x78\xf7\x72\xda\x8e\x14\x50\x23\xb1\xbf\x07\xbd\x14\xcb\xd6\xca\x1b\xb7\x6a\x1c\x41\x44\xcf\x33\x99\xb0\x46\x24\x07\x14\xac\xae\x73\x4f\x0e\xc0\x33\x1a\x25\x99\x1b\x60\x2e\x13\x81\x1b\x73\x0e\x3b\xac\xba\x74\xf8\x1e\x48\x69\xb5\x82\x50\xbb\xb7\x0a\x0d\x94\xd4\x02\x38\x20\x1c\x34\xc1\xe5\x27\x28\xd5\xb8\xbe\xc1\x6e\xa6\xf2\x0d\x56\xfd\x3b\x92\xa1\x80\x2d\xb0\xf1\xff\x47\x52\xf4\x5f\x72\x56\x0e\x9d\x1f\x58\x87\xaf\xbb\xde\x38\xd5\xb9\x59\x29\xee\x62\x69\x1f\x79\x99\xb2\x05\xd6\xcd\xc2\xd0\xaf\xe2\xfe\x56\x53\xa1\x93\xf2\xc5\x17\x86\x67\x6c\x62\x0f\x7b\xf9\x7c\x54\x7f\x67\x5a\x19\x3e\x12\x3a\xa2\xc6\x85\xe4\x67\x97\xba\x0a\xdb\xda\x7c\x17\x76\xb7\x4c\xfc\x93\x52\xd4\x98\xf7\x11\xec\xc2\x48\x4c\x2f\xa9\x6a\xab\x26\x7d\xab\x1f\xab\x20\x5c\x65\xe4\xfb\x55\xe0\xc7\x02\xa5\xbf\xed\x76\x5e\x4d\xbd\xe9\x7e\x60\x2a\xbc\x22\x1e\x79\x22\x56\x1a\x3d\xef\xd2\x9c\x59\x5c\xd6\x18\xf7\xac\x8c\x5f\x06\x67\x16\x23\x71\x8d\x9a\xc4\x9a\x47\xdb\xcb\xdc\x3b\xdb\x30\x73\xc5\x1c\xcd\xb2\x2e\x98\x6c\xf3\x17\x46\xef\xc7\x44\xd2\xb8\x2a\x7e\xba\xd9\x28\x74\xb5\xc0\xd7\x78\x23\x96\xb0\xfa\x87\xcd\x39\xdf\x7f\x8d\x52\x5f\xd5\xbe\x7f\x06\x73\x22\xe5\x4d\x23\xa4\xed\xf5\x9f\xd1\x71\xbf\x72\x62\x43\x01\xf0\x38\xea\xed\xeb\xdd\xb1\xfd\x32\x03\x82\x9d\x8e\xe3\x1d\x0b\x53\xea\x5d\xbe\xda\x36\x12\x83\x83\xe1\xe4\x6d\x50\xa4\x73\x80\xaf\xe9\xab\xc4\x20\x96\xc6\x9d\x91\xad\x80\x0e\x3a\x10\x2a\x59\x21\xd2\x55\x8f\x09\xc9\xaf\xf2\x3b\x3e\xd7\x28\xd0\x93\x07\xcd\x4f\x6e\xff\x45\x90\x00\xb0\x02\xe3\x68\xdc\x12\x50\xe5\x2d\x38\xc7\xf4\xe8\x1e\x7e\x26\x93\x66\x94\xbb\x6f\x8a\x14\x0a\x99\x86\xd7\xf7\xf8\x9c\xeb\xa2\xef\xa4\xd4\xfa\x2b\x69\xaf\x67\xb1\x65\xaf\x49\x36\xd7\xf6\x04\x7f\xe1\x08\x27\xeb\x46\x94\x48\x5a\xc4\xbe\x60\x71\x72\x6a\x12\xd5\x5b\x73\x6e\xfe\xe3\xc7\xf5\xa5\xaa\xf6\x32\xef\x32\x8a\x14\x5c\x8f\xa7\x87\x75\x48\x64\x63\x7c\x18\x47\x32\xe2\x5c\xc8\x6d\xd4\x2b\xd4\xb6\x8f\x2a\x11\xca\x7c\x92\xb1\x1a\x3e\x7b\x78\x1c\xf3\x0c\xbe\xb6\xa1\xf9\x9e\xa1\xbe\x87\x1f\xbd\xac\x8d\x74\x4a\x86\x58\x82\x9e\x66\x50\x99\x1c\x21\x61\x3a\xac\x87\xe5\xee\x69\xbc\x64\x02\x67\x7b\x20\xe2\xf3\x69\x87\x71\x11\xe7\xf8\x84\x0a\xce\xfb\xfc\x41\x7a\xf5\xd2\xe1\x91\x6b\xc1\x2d\x31\x13\x65\xab\x4d\xe5\x25\x16\xee\x5c\x69\x20\xf4\x85\xfa\xe0\xec\xd1\x03\x0b\xf3\x56\x28\xec\xa3\xf6\x55\x11\xe6\xab\xf8\x00\xf2\x81\xca\x8d\xa3\x7c\xe4\x5b\x07\xf2\xfd\xe3\x1f\xb3\x58\x92\x84\x6b\x79\xde\x2a\x3d\xf1\xaa\xa9\x19\x7b\x8e\x19\xb3\x51\xbb\xf7\xce\x1a\xf1\x03\xc3\x14\x4b\xb8\xb2\xa4\x45\x5a\x63\x40\x2a\x1f\x33\xb7\xea\x84\x4a\xa2\x51\x72\xc6\x43\xad\xc6\xb1\xb4\x74\x3c\x0b\x74\xff\x66\xc1\x95\x66\xc7\x2d\x1d\x1b\x81\xa6\x86\x99\x12\x58\x2d\x80\xe3\x00\xb7\x8e\xb1\x93\x41\x4a\xc8\xfa\x3c\x00\xc7\xc4\xf7\x20\xf4\x44\x2c\x7d\x39\x48\x8b\xae\x5d\x18\xbf\xdc\x9c\xa7\xa7\x34\x8d\x76\xc8\xd6\xc3\xd0\xf9\x25\xf3\x9d\xaf\x98\x49\x4a\x73\x3c\x82\x9c\xbc\x2d\x00\xc2\xeb\x2e\xef\x44\x80\x18\x6f\x37\xd7\xf2\xfe\xeb\xae\x6f\x94\xfe\x9b\xd0\xff\x11\x77\x28\xb0\xf1\xbf\x09\xfd\x2f\x71\xcb\xeb\x1d\x6e\x6e\xf8\xd5\xe6\x64\x71\xa1\xf1\x44\x81\x83\xad\x26\xe2\x0f\xc2\xeb\xca\xa9\xcf\xfe\xd8\x32\xc0\x3e\x25\xca\x68\x4d\x31\x64\x62\x48\xf4\xd8\x2a\x2d\x3f\x77\x19\x63\x12\xb2\xcb\xf7\x99\x74\x8b\xcb\x54\x12\xdc\x62\x6e\x53\x9f\xb4\xef\xc9\xae\x23\x8c\x11\xc3\xbb\x5e\x9f\x0f\x55\xa8\xb2\x73\x22\x4f\x4c\xbf\xc6\x2c\x56\xf0\x08\x93\x15\x79\xfa\x3a\x5d\xee\xad\xf8\xa4\x65\x53\xfb\xca\xd9\x13\x7c\xa4\x65\x12\x63\x51\xa3\x2c\xf7\x19\x7e\xef\x04\xbe\xf0\x89\x10\x78\xdf\xa4\x3c\x53\x73\x24\xbf\x11\x55\xba\xb5\x28\xb1\x6d\xba\xab\x49\x2c\xf2\x9b\x98\xcd\xee\x4f\xea\x4f\x03\xe1\x77\x85\xf8\x51\xb8\xaf\x84\x44\x1c\x0b\x44\x29\x59\x66\xa0\x42\xf5\xe4\x48\xf7\xfe\xf0\x12\xa8\xd6\xbb\x87\xf6\xe9\x51\x36\x99\x3c\xbf\xb4\xed\x62\xeb\xad\xdb\xbd\x0f\x6e\xe1\x8c\x98\x7e\x01\x9c\x99\xcf\x0b\xbb\xaf\x47\xa9\x03\x61\x1c\x69\xba\x22\x4a\x89\x6a\xc5\xab\xd2\x5e\xab\x02\xe3\x58\xb2\xfe\x1e\xc4\xdd\x6c\x35\x3b\x5a\xcd\x90\x10\x56\xc9\x54\x36\x4f\x7e\xc8\xdb\xa7\x57\x60\x8a\x33\xe2\xf4\x37\xae\x04\x1b\x3c\x28\xa6\xbe\xfd\xa1\xc1\x24\x93\x1f\x95\x59\x05\x4f\x3d\x94\x4b\xa9\xf1\x51\xf3\x54\x76\xae\x03\x3e\xa1\x2d\x09\xb3\x6d\x94\x8e\x8b\x05\x3d\x14\xa3\xee\x7a\x52\x24\x5f\xd9\x29\x1d\xa7\x7e\x61\x5d\x82\x33\x47\x90\x9a\xe8\xbf\x96\xc3\xcb\xba\xd3\x6f\x4a\xda\xa4\xc7\x16\xff\x54\x75\x4a\x43\x63\xf2\x0f\x8f\xf2\x0a\x53\xf9\x08\xa5\x35\x75\x0d\xd9\x3d\x8e\x30\x32\x30\x88\x10\x9e\xf1\xd1\xd8\x0c\x41\xb8\xf1\xfe\x26\x53\x60\xac\x80\x52\xe4\x0d\x18\x89\xc3\xb5\xac\xce\xc9\xcd\xbd\x0f\xff\x40\xf6\xdc\x2a\xa7\xcc\x71\xb7\xc0\x37\x78\x6f\xe9\xab\x54\xf6\x1e\xc7\x4e\x36\x08\x51\x95\x76\x1b\xe6\x28\xe2\x3e\x40\xbb\xca\x65\x15\x46\xf5\x3b\x92\x8f\x20\x18\xf9\x09\xc5\xc0\x66\x40\x7c\x8d\x92\xcb\x90\x70\xac\x11\x86\x9e\xf2\xb2\x4f\x94\xac\x09\xc1\x7b\x7b\xac\x2d\x4f\x3b\xd8\xe1\xc8\x9b\x47\x79\xf6\x77\x02\x39\x9f\x0c\x40\x2c\xf5\x46\x12\xd3\xd1\x7a\x61\xf3\xfe\x6a\x25\xa3\x17\x8a\x7c\xc1\x6c\xa5\x9e\x3e\xfb\xf3\x89\xd3\xa2\x99\x7b\x2f\x14\x24\x92\x28\xe5\xe8\x0b\x7b\x12\x6e\x31\x33\xce\x5a\x4f\x1d\x8b\x79\xa3\x71\xc4\xa0\xb1\x7d\xcc\xb0\x12\x27\x7b\xc9\x0a\xb5\xa6\x93\x43\x51\x9e\x24\x17\x5e\xb5\xa9\x3b\x11\x9a\xb1\xe6\x39\xa6\xbe\x0c\x9c\xaf\x8c\x5c\xf9\x06\xf2\x21\xfd\x83\x11\x53\x49\x86\x63\x86\x9a\xdb\x9d\x0d\x00\x07\x98\x40\x8c\x94\x66\xa9\xb8\xb6\x4d\xe5\x31\xfa\x7b\xc7\x40\xda\x72\x66\xa6\x37\x8c\x1f\xa2\x6e\x78\xe3\xdc\x01\x08\xad\x61\x56\xb8\xaf\x2d\xad\x51\xeb\xd8\x8e\x4a\x91\x04\xc2\x4e\xf7\xd6\x2a\xac\xc9\x5f\x7d\x61\x67\xa1\x50\xdd\xf5\x3f\xcd\xf0\xdb\x64\xb8\xee\x97\xd4\x62\x24\x3f\x39\xf1\x55\x93\x9d\x62\xe7\xca\x73\xbe\x74\x1b\x9f\x45\xee\x38\xae\xa7\x7f\xbf\x4f\xab\x2c\x2e\x5d\x7a\xb5\x86\x68\x57\xd5\x9d\xdc\xc7\x14\x9f\xba\xca\xaf\x5f\x34\x94\x75\xdf\x09\x03\x3a\xbc\x1f\x26\x35\xd4\xb4\x0e\x9f\x70\x44\xe0\x62\xd7\xd1\x0e\xee\x11\xc9\xb2\xe6\x3a\x59\xbf\x4f\x95\xe7\x91\xfa\xc0\xea\x19\xed\x6e\x92\xe2\x63\x87\x6c\xa2\xb6\xed\xfd\x25\xc2\x1f\xbf\x71\x8f\xc8\x68\x36\x8d\x77\x0f\xdf\x96\x57\x85\x92\x2f\x23\x07\x24\xc6\xc4\x70\xbd\xb5\xc4\x6a\xa5\xd5\x85\xd5\x4f\xf3\xc8\x9c\x44\x1e\x7c\x2c\xd2\x99\x24\x9e\xfa\xd1\x43\xbb\x5c\x39\x97\xad\xc5\x96\xa0\x12\x62\x12\xc3\xac\xe6\x0c\x7a\xdd\xf3\x89\xb4\x29\x1c\x9d\xcd\x8d\xf1\xde\x76\x92\xad\xdf\x8f\x99\x91\x3e\x3d\x71\x86\xc8\x28\x80\xb5\x98\x61\xee\xbe\x0f\x06\x2c\x47\x5b\xdd\x0c\x80\xa2\x82\x17\xf4\xed\x07\x85\x5f\x47\x5b\xc5\x90\xf5\x51\x25\xb1\xb8\xcc\x92\x3c\x99\x03\x20\xb5\x6e\xac\x69\xaf\x7a\x78\x83\x02\x29\x3a\x4b\xda\x65\x4a\x82\x93\x4c\x94\x7e\xa6\x6c\xa5\x60\xb3\xc1\xe9\xa2\x20\x29\x4c\x06\x04\x18\xec\xfa\x43\x53\xd7\x25\x5f\x0a\x04\x95\xf6\x27\x21\x86\xe5\x61\x7e\x8a\x3c\x29\x9f\xba\x39\xfb\x6b\xbf\xa6\xca\x4b\x8c\x6d\x23\xd7\x0a\xf1\xec\xf2\xf6\xb5\x5a\xef\xd9\x8e\x80\xdf\x25\xd2\xd5\xe4\x47\xfb\x5d\x99\x10\x86\xb8\x66\xda\xfb\x81\x5f\xba\xf2\xaa\x89\x24\xe9\x47\x0f\x0b\xc3\xf1\x2e\xc3\xeb\x3f\x4b\x46\xe5\x7a\x10\x72\x27\xa7\x3b\x9b\x86\xc9\xc9\xf0\xad\xf0\x1a\xee\x93\x0f\xc9\x12\x08\x93\xa6\xbb\x6a\xcc\x51\x9a\xf3\x20\x50\xee\xa7\x7d\xd2\x2c\x73\xfe\xea\x46\x6b\x7b\x9b\xbe\x65\x06\x94\x82\x28\x12\xb8\xa7\x06\x9f\x02\x83\x9f\x10\xb4\xf4\x31\x53\x4f\xb6\x4c\x05\xd6\xbb\x78\xf1\xc4\x9c\x7b\x02\x24\xef\xdd\x3a\x97\x1e\xd3\xa0\x99\x87\x78\x92\xe4\x76\x33\x1f\x4c\x19\xfe\xd4\x35\x77\x64\xfd\xe7\x90\x0f\x18\x05\xef\x43\x2e\x92\xf2\x78\x68\x15\xf8\x46\xd1\x77\x20\xb5\x07\x81\x69\x4c\x33\x8f\xe8\x96\xb0\xb3\xcf\x79\x7b\x22\x95\xa6\x93\xaf\xb4\xcb\xc2\xda\x37\xbc\x9d\x4c\x4a\x7a\x08\xa0\xe6\x0a\x6a\xce\xf9\xce\xef\x3b\x5d\x04\x2d\x69\xe3\xef\x25\xe5\x73\x97\x51\xce\x76\x4b\x1f\x2f\xc8\xf8\x06\x61\x84\x9d\x1a\xb9\x07\xda\x99\xc9\xca\x8b\xce\xae\xd4\x7e\x87\x23\x2f\xe3\x1e\x1f\x9e\x41\xe2\x26\xf7\x09\xaa\x8e\xa3\x14\x1a\xc5\xd8\xd2\xe1\x2d\xcc\xe3\xb8\xfe\x98\x33\x39\xc1\xac\x2f\x3b\x8e\xcb\x5b\x3d\x9b\x4a\x35\x1c\x13\xa1\xf5\x61\xb2\x90\x09\xfd\x5d\x14\xa9\xab\x94\x01\x8b\x1d\xdd\xec\xe3\x96\xa0\x8d\x71\x2e\xf3\x6a\xb9\x7e\x13\x2c\x67\x70\x77\x65\xfa\x6b\x1c\xc4\x78\x57\x5b\x62\x96\xfa\x1f\x5a\x24\x4a\xda\xd9\xdc\xf0\x0b\x42\xd8\x0e\xc6\x32\x9f\x76\x76\xab\xe9\x75\x23\xc0\xb4\x8c\xb4\x66\x61\xa9\xdf\x35\xc0\xb2\x63\x2b\x87\xa1\x9b\x3b\x55\x73\xdd\xda\x4b\x7e\xf3\xc5\x85\xaa\x65\xf7\x1d\xc5\xe2\xd5\x54\xb8\xb9\xe6\x40\xef\xab\x49\xfa\xc0\xd4\x0e\x12\x6b\xc7\x2a\xda\x01\xdf\xde\x10\x9d\xbc\x1e\xab\x4b\x20\x6c\x15\x3d\x7b\x82\xd1\x97\x05\x17\xd3\x95\xaf\xe2\x59\x89\x1d\xf1\x61\xe4\x87\x4d\x38\xd7\x32\x98\xc6\xed\x8c\xf5\xb6\xb2\x86\xfe\x8c\x38\xc4\x29\xba\xfb\x75\x1d\xa0\xf5\x95\x56\x9e\x22\x3e\x94\x57\xc6\x3f\xa4\x72\x66\x63\xfd\x96\x1f\x16\xe7\x91\xb8\xf6\x6d\x38\x3a\xcb\xcf\x59\x9f\x6d\xc7\x65\x1f\xb1\xaa\x79\x34\xd1\x40\xbf\x49\x72\x0e\xe0\x70\x02\x98\xa4\x12\xa2\xdf\x52\x50\xc9\xef\xd4\xc3\x9a\xcf\xa3\x8f\x45\x84\x71\xfc\xac\x9e\x22\xe9\xe4\xae\xe0\xcc\xdb\x01\xd8\x80\x16\x22\x7f\x4e\xb1\x72\x83\x9e\x3e\xc6\x7b\xa9\x91\xa2\x82\x37\xac\x73\x6d\x44\x90\xc9\xe0\x06\xdc\x1c\x26\x48\xc8\x67\xba\x00\x48\xfc\xc1\x60\x95\x49\x96\x28\x07\x52\x30\xc2\xe9\x47\xae\x4c\x3a\x28\xf9\xaf\xdb\xab\x21\x99\xfc\x72\x47\x80\x56\xbd\x11\x48\xeb\xb8\x76\x5a\x00\x11\x76\xeb\xf3\x39\x3d\x53\x2e\x72\x15\x18\x02\x9b\x3e\x39\x9e\x76\x6e\x63\xcc\xa3\x1a\x82\x44\xf2\x37\x16\x47\xcd\x5a\x85\xf7\xcf\xe0\x97\xf9\x44\x25\xda\xad\x89\xa3\xed\xf4\x85\x89\x0c\x1e\x10\x6c\x3a\xda\x86\xff\x03\x6a\xb0\x38\x66\xe3\x5d\x06\x86\xf6\x42\xf1\x31\xf3\x97\x37\x77\xc7\xa6\x1e\xd0\x97\x84\xbe\x94\x1e\x7f\xd0\x36\x63\x41\x4a\x9e\x94\x66\x82\x6a\x36\x12\x99\x43\xea\xfd\x62\xf3\x1d\xa8\xd2\x50\xbe\xe0\x71\xe5\xa6\x9c\x04\xa3\x29\xe0\xdd\xc0\x05\xa5\xc8\x24\x63\xce\xba\x0f\x43\x57\xb0\x76\xf9\x79\xd4\xc6\x59\x55\x04\x5e\xcb\xe1\xf8\xf5\x0f\x10\x0a\x57\x1e\xfe\xe3\xac\x1e\x13\x44\x76\x17\x0c\xee\x05\x8f\x31\x04\x70\xef\x39\x73\xae\x68\x17\xfe\xd3\xdb\x5e\xd5\xd9\xfa\x8a\x3b\xcc\x43\x1f\x70\x44\x2d\xbe\xe9\xd8\xdd\x7f\x5e\x2b\x2b\xc5\x64\xe4\x8b\xf3\xc7\xde\x51\xa7\x2f\x6b\xc8\xb4\x8e\x27\x67\xdc\xd9\x78\xfe\xb0\x45\xae\x7e\xb6\xca\x97\x73\xa1\x11\xb8\x88\xca\x2c\x57\xc7\x23\xbd\x25\xdc\x51\x08\xbb\x9f\x8f\x1e\x0d\x44\x26\xaa\x3d\xc4\xbd\x72\xd1\x77\x13\x50\x09\x73\x23\xba\x2d\x5a\x3c\xf1\x49\x71\x91\xb2\x28\xee\x7b\xfc\xf6\x8c\x84\x02\x85\xe1\x52\xdf\xb2\xc8\x0c\x28\xd5\x60\xe2\x59\xb5\xbe\x26\xea\x08\x75\x67\x78\xe2\x05\xff\x5c\x4b\x7b\x77\xb1\xaa\x4d\xae\x1b\x22\xdf\xae\x29\x34\x74\x4d\xc5\xd2\xda\x1d\xce\xab\x1f\xbf\xe6\xe8\xd7\xbb\xb4\x9e\x4b\xb2\xcd\x07\xb2\xe2\xfd\x7e\x66\x18\x6c\xda\xb1\xdf\x58\x79\xe7\xbf\xfb\x38\xe4\x7f\x37\xc6\x7d\xa8\xd4\x26\xc5\x8b\xbf\xa4\xf3\x26\x56\x44\x03\x83\xe6\xee\x05\xf8\xee\xe1\xf5\xca\x3a\x4d\x91\x96\x61\x36\x9e\xb9\x4d\x1e\x9a\x5a\xca\x72\x4e\xb2\x98\x61\x9e\xad\xf6\xa3\x8b\x1f\xbe\xc9\x4b\x5f\x5a\x74\x06\xd8\xbb\x1b\xa9\x66\xf6\x64\x3f\xdb\x1f\x90\xe2\xd8\x13\x7d\x2b\x81\xa0\x8a\x7b\x03\xed\x2b\x0a\x08\x3f\x30\x79\x82\x88\x61\x54\xcc\x04\x87\x71\xd8\xfa\x42\x39\xa9\xaa\x8e\x61\x19\xd1\x9b\xbe\xde\x13\x0f\x77\x1f\x28\xc5\x10\xeb\xeb\xf1\xc4\xca\x24\x53\x76\x64\x10\x3d\xd7\x43\x39\xff\x92\x50\xa7\xfa\x45\x92\x73\x64\x08\x8b\x28\x94\x1c\xc9\xcb\x13\x95\x4d\x54\x1b\xce\x86\x5b\xd9\x90\xb3\x97\x45\x30\x8c\x25\x8e\xda\x07\xe8\x6f\xd4\xc9\x65\x14\xe0\x84\xcd\xec\xfc\xe1\x2d\x33\xae\xc0\x9f\x17\xaa\x7e\xeb\xe4\x9c\x8d\xc9\x78\xe6\xe9\x75\xec\xd5\x7b\x8c\x62\x2a\xce\xa8\x02\xe9\x8a\x4b\xa3\x04\x0e\x40\x71\x84\xd1\x18\xfc\xa9\x53\xe2\x28\xc7\x8b\x88\x13\x66\x6c\x15\xca\xfd\xdd\xab\x89\x47\xbb\xeb\x4c\x1c\xc4\x0e\xb0\x9c\x0e\x85\x4e\xe7\xf7\xe7\x24\xfb\xe7\xd1\xc8\x4c\xff\x95\x77\x23\x5a\x87\x50\x18\xfa\x60\xdf\x13\xbd\x47\x68\xf9\x81\x13\x82\xfe\x0c\x07\x6f\x75\x63\xcf\x3c\x02\xfd\x81\x81\xf7\x5a\x8c\x56\x4c\x8d\x71\x15\x27\x19\x9c\xc7\x17\xbe\xa2\xdc\xc7\x02\x55\xd2\x80\xa1\xae\x16\x20\x79\x6b\x01\x41\x53\x8b\xf9\xf4\x68\x46\x17\x60\x1a\xa8\x39\x1c\x11\xb5\x77\x87\x50\xf5\x6c\xb9\x8b\xd7\xec\xd0\x93\x9a\x75\xaf\x36\xaf\x5d\xd8\xba\x6b\x42\x49\x5e\xc7\xa8\x61\xf0\x8c\xf7\x0b\x30\xe5\x16\xa6\x90\x5b\x92\x2b\xbb\x1b\xaa\xc9\xf8\x64\x09\x18\x76\xa8\x2c\xaf\x09\x7d\x5c\xbe\xb3\x4e\x80\xa8\xdc\x94\xb2\x68\x3b\x24\x62\x41\x17\x7c\xcf\x2f\x66\x18\x31\x05\x30\x96\x24\xc9\x37\x5d\xd5\x36\xd9\xb7\x66\xb2\x29\xc1\x2e\xa1\xdd\x64\xb4\x1d\x35\xfd\xe6\xe6\xe8\xf7\x43\x43\x57\x63\xb1\x11\xac\xb3\x1d\x15\xd7\x5d\x6e\x89\x63\xb3\x36\x34\xdf\x7a\x3f\x74\x65\x21\xfc\xea\x6f\x35\x7e\x6e\x51\xeb\xd9\xcd\x19\xf1\x5f\x66\x9c\xb7\xef\x09\x09\x6a\xfa\xe7\x57\x57\x07\xb5\x27\xf6\xfc\xeb\xeb\x1e\xbc\xeb\x37\x95\x91\x99\x3e\xa5\x19\x23\x55\xce\x17\xdf\xaa\x8e\xdb\xbf\x4e\x73\x94\xf8\x4f\xd4\x4f\xdf\x51\x47\x5f\xb8\xdf\xab\xe3\x85\xbb\xdc\x3e\x86\x76\xb4\x66\xdc\x0e\x50\x81\xc2\xd0\x11\x6c\x6b\x83\x07\x1b\x2c\x6a\xb8\x39\xa0\xe6\xcf\xf6\x33\xf6\xdd\x9b\x5d\xfd\xe2\xdf\xd6\x86\xa3\xf8\xc9\x4d\xae\x68\xed\x38\x80\x93\x4e\x47\xda\xba\xa5\x03\x97\x4b\x41\x66\x62\x0d\x20\xd5\x34\x3d\xbe\x2f\xb3\x22\x1e\x9d\xfd\x7c\xdc\x3f\xef\xc0\x31\xb7\xac\x65\xcc\xa5\xa0\xd3\x3c\x6f\xab\x87\x6b\xbd\x7c\xde\xe9\x27\xdb\xb9\x8c\x84\x14\x87\x2f\x2f\x4d\x62\x02\x2d\x7f\x84\xab\x9b\x8b\x1c\xf6\x52\xd4\x2d\x23\x24\xe1\xd4\xba\x2c\xb7\xd2\xee\xda\xd7\x9c\xf2\x63\x61\x77\xc7\x92\x0c\x84\xc6\x19\xb9\xd6\x65\x3f\x7a\x62\x8e\xa2\x8e\x63\xab\xd2\xa6\xaa\x74\xce\x66\x56\x37\x47\x84\xff\xc7\xfd\x0d\x5b\xc0\x17\x7f\x49\x2d\xea\x6d\x7d\x53\xfa\x3a\xbb\x11\xc2\x70\x7f\xea\x0d\xca\x29\xe7\x1e\xb2\xc9\xdd\x5a\x23\x7f\x23\x5c\x50\xb1\x37\x2a\xf4\xb0\x82\x22\xc6\xb9\xea\x2e\x4d\x95\xa4\x88\xbe\x9d\x56\xb2\xfd\x9a\xa1\xc3\xed\xe4\x4e\x67\xc5\x97\xa2\x49\xc2\x29\x67\x2d\x68\xb0\x74\xbf\x1d\x25\x20\x11\xb7\xbf\xf0\x51\x1e\x89\xe9\x4e\x73\x95\x15\x7e\xad\x2d\xc5\x39\x27\xc6\xf0\x62\xb8\x46\x5a\xf9\x78\x06\xcd\xcc\xde\xf9\x14\xf3\xcf\x29\xd8\x28\x8c\x1d\xb4\x37\xf3\xa0\xbc\xd1\xd8\x09\x33\xdb\xea\xa2\x23\x3e\x89\xbc\x80\x24\xd2\xc1\x7c\x5e\x92\x23\x3e\x77\xe8\x72\x16\x4c\x8f\xae\x8b\x63\xcf\xfe\xc8\x27\x1b\x25\x59\xf2\x40\xa1\x26\x82\xc4\xa6\x1d\xd5\xb7\x3d\x43\x4f\x9c\xd2\x60\xaa\x17\x60\x6c\xb9\x33\x41\x3e\x7e\x27\x11\x5a\xee\x29\x36\x7b\x9c\x42\x69\x51\x42\x73\x82\x2d\x81\x71\x96\x96\xd9\xda\x77\x76\xdd\x51\x00\xe5\xde\x57\xfb\x01\x01\x1f\xd3\x83\x66\x09\x32\xee\x1d\x3e\x8c\x35\x33\x24\xd3\x09\x12\xc4\x61\x7c\xf5\x53\x6c\x23\xf3\xb6\xe5\x76\xf3\x4a\x80\x14\xb7\x52\x4d\x4d\x29\xc6\xa9\x91\x39\x5b\xa8\x02\xa6\x5c\xaf\xb7\xb6\x77\x1d\x76\xb0\x5e\xd9\xc7\x9d\x28\x11\x49\x6a\xbd\x90\xa8\x3f\xda\xd1\x8d\x46\x6e\xcd\x5e\xaa\x86\x28\xe4\x82\x94\x0f\x55\xbb\xfc\x25\xe4\xe2\xd7\xf5\xa6\x28\xe4\x03\x70\xa4\x81\x71\xba\xcb\x15\xf3\xb5\xc7\x47\x30\xb7\x99\xeb\x8a\x0c\x97\x5f\xd3\x59\x43\xef\x93\x11\xee\x19\xcb\xce\x55\x43\xce\x39\x08\xff\x77\x49\x9d\x26\xd0\xfd\x09\x12\x46\x0d\xaf\xba\xfb\x4e\x83\x39\x88\xbc\xaf\xbc\x3c\xb0\x9d\xae\x72\xb9\x7b\x49\xf0\x7b\x3b\xcf\x9d\xff\xe8\xb3\xfd\x42\x1a\x83\x63\xf5\x6e\xe0\xbc\xdd\x02\xbd\x61\x17\xdf\x99\x80\x58\xd2\xc8\x34\x4d\x88\x8b\x7e\xfa\x59\x5f\xd1\x88\x99\x70\x2c\xba\xdf\x5a\xfa\xfe\xcd\xe6\xd1\x63\xb9\xc1\x9d\x69\x4a\xab\x75\x9c\xae\x67\xbf\x79\x7c\xf6\x64\xc2\xef\xe5\x1f\x3d\x43\xf7\xaf\x85\xde\x7a\xb4\x24\xfc\x48\xc9\x6e\x31\x7f\x8b\x0d\xea\x5d\x2c\x7c\x15\x3c\x3b\xf2\x93\xd6\x8e\xcd\xcb\x08\x43\x99\xdd\x92\x33\x73\xd1\x01\xdb\xda\x84\xba\x13\xa9\xe0\x4f\x8e\x51\x41\xf8\x84\x53\xef\xcd\x58\x91\xdf\xb8\x69\x95\x0e\x20\x1f\x37\x40\xb9\x1d\x47\x68\x20\x57\x44\x59\xd7\x88\x9d\x88\x26\x00\x9b\x0c\x40\x33\xa7\x1f\x59\xfc\x2c\xe2\xcb\x94\xb5\xa8\x47\xf2\xfd\xde\x56\x0c\x06\x67\x18\x25\x6f\x51\xc8\xa2\xd6\x77\x90\x73\x2c\xba\x67\x28\x72\x88\x7a\xcc\x94\xfa\x7b\xbb\xba\x10\x9c\xc5\x63\x75\xa7\x3c\x66\x73\x47\x7a\x01\xc5\x32\xee\x69\xbc\x53\xb5\x78\xe2\xd8\x46\xc5\x45\xfd\xd3\x46\x22\x14\x79\xab\xf3\x56\x2b\x66\x7a\xf7\x81\x9d\xd3\xbb\x70\xc7\xf7\x79\x9a\xf8\xa6\x7b\x40\x51\xa5\x3f\x94\xa1\xff\xf3\x29\xbe\x0f\x95\x7c\xbc\xb9\xe1\x57\x57\x46\x35\x19\x4e\x7c\x15\x8f\x70\xf8\x47\x84\x48\x31\xcc\xac\x59\xc2\x53\x3d\x52\x6a\xc5\xaa\xc6\x9e\x64\x9a\x43\x0f\x87\xa4\xef\x9b\x0a\x7f\xe7\xdb\xd9\xe5\x6c\xf5\x83\x94\xb3\xe8\xd1\x3b\xb7\x06\xf7\x70\x68\xf8\x7a\xee\xd7\x30\x61\x80\x99\x9a\x67\xc8\xa3\xb8\x5b\xa6\x75\x45\xfd\x79\xa7\x30\x8c\x00\x0e\x6d\x57\xdf\x8f\x3c\xa3\x1b\x37\x0d\xe0\x12\x62\x19\x99\xc5\x09\x0b\xe3\xb0\x6c\x45\x64\xf7\x6e\x0d\xb6\xa3\x46\x36\x8e\x19\x7d\x24\x68\x99\xef\x98\xbf\xc6\xea\x54\x80\x48\xdf\xaf\x31\xc4\x5d\x22\xd2\x02\xba\xb5\xf1\x95\xcd\x2e\x33\xeb\x17\x27\xf2\xcd\x12\xb3\x86\x21\x98\xce\x9e\xa9\x5e\x44\x91\x80\xb5\x0c\x1b\x95\x1c\x92\xf7\xcc\x76\xfd\xda\xba\xfe\x4a\x7d\x9a\x7a\xee\x30\x35\x88\xbb\x37\xc0\xaa\x3c\xe0\x1f\x23\x9c\x8e\x32\x71\x46\xa5\xe4\x4c\x98\x89\x1f\xc4\xc1\x3a\x98\xf9\x54\xb2\x88\x91\xdc\xe0\x94\x74\xac\x9b\x37\xab\x29\xa4\x56\xc2\xe7\x77\xbb\x5a\xb0\xda\xa1\xb2\x32\x7f\x94\xb9\x91\x91\x05\x07\x4c\x53\xd0\xf6\x39\x22\xe1\xae\x50\xab\xef\x64\xa9\x7a\x39\x87\x08\xc5\x23\x72\xb4\x4f\x71\xda\x9e\x64\x87\xdb\x19\x8a\x3a\xb6\x31\x4b\xdc\xe0\xa0\xee\x62\xe5\x1f\x3f\x42\xd2\x43\xf9\x30\x56\x2a\xd6\xe0\x0b\xab\xde\xfe\x73\x4e\xdb\xb2\x2f\xd4\x42\x9c\xbd\x05\x81\xc4\xb0\x89\x54\x1a\x20\x40\xa9\x31\x96\xea\x5f\x08\x9c\xd2\x76\x9a\x67\xc7\xd5\x92\xd4\xdc\x01\x91\xe1\x95\x3f\xc4\xfb\xfc\x0b\x58\x90\xbb\xfb\xf2\x03\x48\x70\x79\x97\x82\xa2\xfc\xc3\xb4\xa6\x67\x91\x9b\x28\xd0\xfa\xba\x71\x3a\xe8\x10\xa2\x05\xaa\xad\xea\x38\x03\x83\xac\x36\x4f\xdd\xd7\x57\x68\xb0\x93\xed\xa3\x24\xcd\x08\x6b\x3e\x43\x23\x8a\x32\x7d\xbf\xc7\xac\xd7\x66\xfd\x81\x48\x03\xa8\x7d\xe8\xcb\x54\x94\xcb\x60\x67\xcb\xd2\x1f\xd3\xd4\x6b\x73\xca\x3d\x1e\x85\x10\x99\x23\x99\x9f\x32\x2d\xdb\x58\x60\x76\x82\x67\x3e\x15\xd5\x2d\x46\x55\x9e\x50\x38\xc8\x76\x3f\x15\xd6\xfe\xf8\xb7\x41\xdd\xa7\xbf\xef\x9c\xe9\xa0\x05\x5c\xcf\xfc\x5c\xd0\xb6\x69\xc7\xd6\xbb\xa9\x5d\xf7\xfd\x76\xe9\xa3\xb0\xf0\x09\xb5\x0f\x7f\x83\x33\x11\x1a\x72\xc6\xcc\x5e\x94\x5c\x4f\xe9\x06\xa9\xba\x55\xf4\xef\x5e\x47\xa6\xc2\xbd\x0c\x78\x73\x47\xec\x19\x71\x32\x6c\xa5\xce\x4f\x57\xd6\x2c\xc9\x3e\x6c\x16\x3d\xfc\x22\x55\x4f\xe8\x0f\x25\x4a\xf3\x18\xd2\xac\xc1\x5a\x23\xc7\x2c\xcf\xeb\xa8\x2a\x77\xed\xcb\x6c\x4a\x82\x3b\x1b\xf3\x0a\x23\xa7\x48\xd6\xa3\x2d\xc7\x77\xe8\xe1\xae\x08\x06\x5e\x61\x4d\xdf\xd7\x4d\x15\x64\x3f\x61\x70\x04\x05\x7e\x7b\x6b\x30\xd6\x66\xdf\x77\x67\x0e\x1a\x1c\xd5\x2d\x66\xbc\xe9\x78\x8d\x35\x41\x11\x20\x60\xe3\xff\x17\x00\x00\xff\xff\x46\x3c\x33\x56\x0f\x21\x00\x00") + +func _assetsTestsSpinGifBytes() ([]byte, error) { + return bindataRead( + __assetsTestsSpinGif, + "_assets/tests/spin.gif", + ) +} + +func _assetsTestsSpinGif() (*asset, error) { + bytes, err := _assetsTestsSpinGifBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "_assets/tests/spin.gif", size: 8463, mode: os.FileMode(436), modTime: time.Unix(1696070017, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + var __assetsTestsQrQrwithlogoPng = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xfb\x55\x54\x1c\x51\xb7\x05\x0a\x23\x0d\x41\x1a\xd2\xb8\x35\xae\x41\x1b\x77\x77\x08\x10\x02\x34\x90\x40\x43\xe3\xee\xee\x34\xee\x09\x1e\x2c\x48\x02\xc1\xdd\x3d\x40\x08\x21\x58\x70\x6f\x20\xb8\xbb\xc3\x3f\xf2\x9d\xf3\x7f\xe7\xde\xb7\xfb\x50\x0f\x35\x46\x8d\x5d\x55\x6b\xcf\x35\xd7\x9a\x63\xcf\x15\xf3\x46\x53\x19\x0f\x87\x12\x07\x05\x05\x05\x4f\x55\x45\xe1\x2d\x0a\x0a\xca\xcf\x7f\x17\x16\x1a\x0a\x0a\x0a\x83\x98\xe8\x10\x0a\x8a\x60\xa7\xaa\x82\xac\xae\x4f\xce\x41\xa0\x6f\x00\xb1\xe2\x42\xf0\x5d\x96\x3f\x5f\x2b\x0b\x3d\x13\xfd\x52\x24\x87\x1b\x4e\x34\x78\x4d\xc9\x14\xc3\x22\xe6\xfb\xba\x1b\x4f\xf4\x0e\x07\x26\x31\x76\x7b\x5d\xe8\x26\xb1\xb7\x25\x19\x53\x57\x21\x9d\x82\x8c\x6c\x20\x2a\x3d\x67\x14\xee\x5f\x66\x2c\xb9\x16\xd5\x9f\xa8\xa2\x80\xe4\xd7\x89\x43\x39\x81\x4f\x52\xc5\xd7\xfa\xef\x9d\x5f\x96\x7e\x1a\xb5\x00\x7d\xe9\x0e\xfe\x2a\xa6\xa5\xaf\xaf\x27\x3d\x79\x39\xe5\x9e\x8c\xa0\x03\xbc\x7a\x33\x3e\xd5\x13\xbc\x8b\xca\x76\xe3\x29\x07\xe7\xc4\x40\x0d\xfd\x6e\x80\x83\x86\x16\x51\x4b\x0c\x00\xe0\x98\xbf\xc2\xc2\x22\xfe\xf1\x16\x04\x62\x8b\xff\x4a\x47\xf7\x86\x5c\x5d\x56\x26\x1f\x92\x8e\x08\x09\x51\x78\x6e\xaf\xaa\x3a\x5a\x68\xb4\x07\x0f\x4a\x56\x9c\x02\x3e\x8d\x6c\x5d\x1d\x2e\xde\x6b\x3a\x37\x2f\x56\xc3\x3a\x7f\xd5\x55\xcc\xf5\xbb\x4a\xd0\xd3\xd3\x0b\x08\x10\x83\x74\xa1\xd0\xad\xcd\x4d\x54\x74\x74\x45\x6d\xe3\x36\x8f\x09\xbb\x46\x0d\x41\xd3\x74\xcb\x6a\x58\xa7\x5d\xf3\x62\x6f\x5a\x4b\x4b\x0b\x29\xd7\x3b\x3a\xa7\xa1\x91\x91\xca\x8a\x0a\x87\x9d\x6e\x26\x55\xaf\xa3\x25\xc3\xea\xd9\x7b\xa9\xc8\x8e\x8e\x8e\xd8\x58\x9c\xd5\xdd\x47\x80\x2c\x28\x57\xcc\x93\x8f\x32\x01\x8b\x12\xe8\xf8\x67\x68\x74\x94\x46\xd8\x09\xdc\x61\x17\xaa\xe4\xe6\x76\x36\x48\x1b\x1c\x0f\xcf\x4c\xba\xc8\xe0\x36\xa6\x94\xf4\xf3\x70\x74\xac\x9c\xd3\x2d\xd5\x15\xf7\x3e\x02\x8b\xba\x31\xd1\xcd\x35\x3b\xaf\x5e\xec\x4e\xfa\xe6\x91\x65\xaf\xad\xad\x45\xbd\xa4\xd5\x54\x51\xb1\x29\x43\x9d\x9d\x9a\x8a\xa7\x14\xdc\xdb\x9b\x2e\x47\xfe\x5a\x1f\x88\xcb\xe0\x7a\x3f\x03\x92\x1c\x74\xe5\xb7\xfa\x3d\xd7\xec\x6c\x22\x0f\x60\x49\xd9\xed\x09\x45\x37\x6e\xf7\xba\x0c\x04\xd6\x5b\x8d\x2c\x74\xfa\x37\xe7\x68\xdf\x63\x74\xc2\x9e\x47\x84\xff\xad\xf7\x42\x76\x63\x33\x6e\xc0\x35\x67\xd9\xa9\x79\xde\x41\x43\xb2\x09\x73\xcd\xad\xd5\x62\xc2\x1d\x6c\x5d\x1e\xf5\xef\xed\xc8\x7d\x66\x84\xa5\x61\xf6\x08\x26\xb9\x7a\xd1\x44\x48\x77\x36\x00\x41\x27\x02\xc6\xf7\x89\xb1\xc9\x52\x5a\x5d\x77\x6b\x05\xa9\xab\x81\xc2\x97\x08\x0a\xc5\x81\x80\x0e\x27\xb3\xd8\xff\x86\x16\x69\xc9\x91\x8a\xd2\x07\x49\x50\xda\x68\x47\xf9\x4b\x82\xa0\x6b\x59\x76\xea\xcf\x30\x01\x01\x32\x86\x23\x40\x80\x4e\xa7\x5c\x80\xec\x8e\x87\xd8\x09\x56\x25\x74\xdf\xad\x15\x8c\xff\x62\x9d\x34\x41\x29\x6c\xe3\xf9\x76\xa8\xf5\xdf\x73\xab\x6b\x2e\xdf\x74\xd9\x73\x35\x59\x85\x78\x81\x45\x6c\x6a\x20\xc0\xaa\x7e\x0c\x1d\x56\xe3\x3b\xbc\x2c\xbf\xce\x95\x31\x92\x62\x36\xb5\xaf\x6f\x05\x0b\xe4\x89\x07\x5d\x9d\x9a\xdf\xcf\x70\x9d\xfd\xfb\xb4\x0a\xa3\xd6\xb7\xe9\x46\x31\x98\x1a\x93\xa5\xa5\xa5\xdb\x63\x9f\x9d\xa3\xf3\xdb\xda\xee\x46\x84\x57\x39\xb9\xb9\x9d\xa2\x7b\xac\xea\x0b\xc6\x48\x1f\xef\xaf\x57\xbb\x83\xa5\x0d\x2c\xa3\xfa\x6a\xad\x46\xb2\xce\xce\xce\x5e\x10\x9a\x93\xcf\xb4\x79\xee\x5f\xaf\x06\xaf\x5a\xf0\xc5\xe8\x8b\x24\xbe\x6f\x75\xdb\x2c\xd5\x29\xa1\xdc\x33\x29\x9f\xee\xba\x9c\x79\xaf\xad\xad\x8d\xc4\xb9\x53\xd9\x89\x81\x75\xfa\x71\x99\x74\xe5\x14\xb2\xd5\xaa\x82\x14\xf6\x67\x2a\x2d\x2f\xe9\x64\x9b\x9d\x96\xd3\x79\x4c\xf0\xf9\xcb\x3f\xff\x1c\x1a\x32\xac\xb3\x88\xe1\x5c\x49\x7e\x1c\xd8\x5b\x68\xb4\x7f\xfb\x36\xf9\xa1\x56\x92\x9c\x3b\x83\x83\x93\x13\x28\x2b\x33\x79\x31\x5f\x6f\xed\xee\xee\x4e\xf5\x18\xfd\xd3\x2f\xc4\x4a\x51\x71\x60\x7d\x20\xae\xda\xa4\x7b\x05\xd4\x39\x60\x16\xda\xad\x85\xa0\x33\xea\xf4\xbb\xbc\x3f\xee\x76\x8e\x96\x12\x10\xf0\xb8\xdc\x9b\x8e\x89\x89\x49\xa0\x81\x2b\x28\xf4\xe7\xcb\x86\xe9\xb2\xeb\x15\xf9\x7f\xa0\x63\x62\xb2\x40\xf6\x84\x6a\x7c\x7b\x4b\x30\x6f\x4c\xda\xc9\x60\xfe\x28\x36\x11\xbe\xae\xb6\xe1\xa7\xf3\x5f\x2c\xcb\xe4\xc5\x6f\xc6\x3c\x3c\x04\x84\x9b\xee\x63\xd7\xcf\x4b\x98\xf5\x63\xd1\x7d\x13\x42\x93\xf4\xbf\x3a\x58\x6a\xe5\xbf\x11\xd1\x87\x42\xad\xac\xac\xd0\x72\x99\xc6\xce\x95\x93\x68\x14\xe7\x84\xf7\xf6\xf6\xec\xec\xec\x90\x1c\xcb\x6d\x9e\x61\x49\x8c\xb5\xb5\xb5\x75\xfd\xb0\xac\xe2\xee\xc7\xab\x45\xda\xe0\x07\x02\xa3\xdd\x85\x46\xfb\x66\xa7\x65\x99\xfa\xe2\xe2\xad\xf1\x02\x79\xe4\xc5\xaf\xf3\x00\x6d\x6d\x82\x25\x79\x55\xd5\xa1\x26\xc7\x45\x95\xb3\xd5\x63\xb9\xaf\x6f\x13\xc0\xa2\x7c\x12\x12\x4b\xd7\xbc\xf9\xbd\x90\xd7\x56\x56\xc5\x9c\xd9\x5a\xcf\x4f\x8f\x8b\x4d\x8e\xfb\xb3\x3a\x18\x4c\x9a\x9f\xa5\x1c\x21\xe4\x28\xb5\x9a\x25\xe2\x41\x0f\x22\xaf\x6b\x3c\xf7\xa1\x86\x49\xfe\x5b\x9f\xac\xed\xec\xed\x7b\x0f\x35\x4b\xdc\x6f\x4e\xd6\x20\xbd\xa9\xaf\x74\x7c\xf2\x5e\x00\xbc\x8f\x57\x02\xf7\x4a\x4b\x4c\x11\x9e\xfb\x33\xbd\xe8\x37\xa7\x83\xb4\xbd\xd8\x55\xae\x2a\xea\xea\xf2\x15\x28\x7d\x90\x8d\xc1\xa4\x8c\x69\xb8\x9d\x1d\xfb\x52\x5f\xa3\xfd\x2c\x03\x03\x43\x40\xf7\xb2\x05\xdf\xe3\xcd\x46\xd2\xce\x35\xc3\xbf\x25\x90\x34\x91\x2f\x69\x8f\x3c\xc4\x7a\x83\x2b\xa1\xfb\xfc\x63\x12\x8c\xf6\x38\xef\x9b\x9d\x22\xee\xa5\x5d\xd7\x01\xe3\x25\x00\x0c\x0c\x0a\x60\xe4\x64\x89\x56\x51\xd4\x17\x87\x88\xff\x17\x2f\x3c\x90\xac\x04\xbb\x7e\xd3\x2d\xcb\xcc\x24\x9f\x13\xfe\xd6\xd6\x46\x39\x33\x60\xdf\xb8\x50\x53\x03\x09\x67\x61\x11\x11\x21\x77\x6a\x5b\x76\x32\x18\xb5\x34\x84\x96\x4c\x0e\xfc\xf8\x71\x27\x42\x03\xec\x43\x84\x85\xc1\x53\xf0\x15\xb5\x47\xb2\x85\x67\x6d\x04\x42\xfe\x61\x8d\x5e\x9c\x51\x22\x40\xe2\x2a\x7e\xba\xca\xb8\x1d\xfd\x05\x3e\x8a\xb1\xa8\xc6\x24\x2e\x29\xa7\x48\xd0\x83\x08\x9d\x8a\x9a\xda\x1d\x32\xec\xa5\xe9\xe2\x67\x40\xf2\xb9\x3e\x1c\xbe\xc6\x51\xdd\xf1\xd6\xd8\x98\x4b\x08\x1b\x61\xd0\xe6\xb1\xeb\x7f\xdc\xb9\x7d\xff\x41\x4e\x4e\x0e\x69\x35\x9c\xce\xd5\x7d\xbb\x45\x05\x91\x4b\xdc\x58\xf1\xdb\xaf\x0c\x7b\xf1\xf2\x6e\x65\x6d\x23\x7a\x30\xaf\x76\xca\xce\xb3\x1c\x5a\x29\x33\x79\xe8\xd5\xb7\x4d\x76\x8a\x35\xd9\xe4\xf8\x1e\x60\xae\xda\x03\x79\x0d\x87\xc3\xf5\xf4\xd2\xe6\x98\x54\xff\xd8\x08\xdc\xb9\x5f\x15\xb3\xe1\xd0\xd0\x0f\xba\xd6\x75\xc8\xd3\xea\xb0\xf1\xcd\xa0\xe7\x33\xa9\x9d\xd2\xfe\x1f\xfd\x49\xec\xf1\x41\x5d\x5c\x5c\xec\xec\xd8\x41\x5f\x15\xa9\x46\xf7\xab\xbb\x57\xfe\xf1\x85\x8b\x51\x9f\x7c\x48\xdf\xda\x5c\x8b\xab\xb9\xa1\x21\x45\x0b\x9f\x59\x7f\xf4\x44\x91\xb2\x70\x9b\x7c\xc9\x64\xab\xd3\xb2\x58\xfd\xfc\x12\x48\x56\x57\x77\x0a\x81\x81\xcb\x14\x35\xaf\x8c\x97\x24\x66\xbe\xeb\xd1\xb6\xfa\x78\xe4\x7d\x92\xa6\x18\x47\xea\xb8\xd4\x72\x9a\x41\xf5\x91\xd8\xa9\x59\x9c\x91\x71\xe3\x6c\x73\x18\x19\x3b\x64\x71\x16\x55\x6b\x93\xb5\xd2\x68\x4f\x86\x40\x96\x96\xe4\x65\x89\xba\x6f\x31\x8e\x1a\xfc\x82\x7e\xfb\x2f\xfb\xce\xa0\x8f\x37\x1c\x65\x84\xf6\x14\x55\x83\x4e\xf5\x7f\xf0\x65\x8f\xd4\x19\xf1\x89\x79\xee\xfd\x6d\xaf\xaa\x23\xa0\xc3\x2a\x34\x6e\xf7\xaa\x79\x20\xa0\xa4\xbc\xeb\x7b\x29\x4d\x47\x43\x49\x45\xb5\xd8\xe1\xeb\x3e\x3e\x65\x23\x20\xe9\x77\x81\x52\x30\x0d\x90\xd5\x85\x42\x9f\x4e\xfa\x5e\x9a\xe9\x80\xc2\x3f\x7c\xf8\xe0\x75\xb8\x70\x2b\x85\x5b\x32\xe9\xbb\xf1\x03\x0f\xa4\x34\xec\x0a\x0e\x20\x25\x10\xbc\xac\xd3\x6d\x39\x3d\x3d\xed\xf1\x1d\x26\x8b\x26\x38\xed\x9a\x34\x27\x27\x25\x20\xa0\xe7\x18\xff\x49\xf4\xc4\x37\x13\x4d\xc0\x88\x09\x24\x47\x8a\x4b\x46\xc2\x09\x47\x7c\x26\x11\x4c\x43\x9b\xc3\x19\x7d\xf4\x57\xf7\xd7\xc7\xb4\x82\x76\xc4\x0c\x41\xf6\xf3\x75\x96\x71\xa4\x5c\x68\x23\x33\x95\xef\x83\x2f\xa7\xf5\xf3\x87\xea\x0e\x3a\x7c\xcf\x57\xfc\xf6\xb9\x6a\x63\xe0\x73\x73\xb5\xe6\xd2\x8f\x17\x3a\xab\xb7\xc8\xd1\x5c\x71\x22\x56\x4d\xc0\x10\x25\x04\x98\x12\xde\x7e\x71\xb4\xec\x3f\x98\x48\xdd\xf5\x42\xe7\xa7\xb1\x7c\xae\x66\xb3\xeb\x86\xd2\x2a\x91\x0b\x16\x02\x19\xfc\xe1\x73\x77\xbc\xe2\x74\xdf\x98\x66\x16\x08\x41\xb7\xe3\x21\x76\x13\xa7\xa8\x9d\x3a\x6d\xa7\x18\xce\xad\x06\xe3\x57\x4d\x3e\x39\xe4\x1c\xe6\x03\xea\xe8\xeb\xbf\xa8\xca\x37\x27\x94\xec\x3d\x0f\x30\x96\xa4\x64\xc8\x67\x63\x17\x11\x69\xc1\x2e\xf2\x90\x38\x3d\x49\x50\xf9\x3f\x8e\xa5\x73\xe6\x20\x06\x84\x16\xdb\xb6\x62\xc3\x41\x2e\xad\x46\x30\xfe\xf2\x96\x65\xa7\x1b\x10\x53\xe4\x6d\x18\xcb\xd8\x39\xac\xbe\x5d\x25\x1f\x5a\xce\x8c\x06\x90\x60\x04\x0f\xa2\xb7\x71\xc4\xf8\xd3\x82\x9f\x55\x41\x80\x0e\x7c\xf2\xc8\x52\x5d\x76\x9f\x70\xf0\x20\x2f\x10\x3d\x8b\x3c\xb2\xa0\x4f\xd2\x27\xcf\x5b\x2c\x57\x43\xc4\x74\x88\xe3\x04\xe3\x8c\x7c\xf8\xd0\xab\xa4\xb8\xb8\xd0\x3c\xc3\x32\x74\xfb\x36\x8e\x8c\x87\x01\xab\xac\xbc\x5c\xe7\xed\x5b\x35\x75\xf5\xde\x34\x54\x74\xcc\x80\xfb\xc3\xe6\xfc\x4f\x9f\x3f\x77\xfb\x9c\x9a\xad\xf2\xfb\x60\xbc\x78\x51\x6d\xd2\x2d\x25\x25\x45\x63\x34\xf4\xeb\x97\xdf\x5a\x04\x99\x4c\xbd\xe7\xfe\x8c\xfd\x6c\x95\xa2\x35\xc9\xf9\x0b\x91\x44\x9e\x77\x0d\x36\xc8\x9e\x50\xa4\x1a\x1c\xbe\xa6\xce\xd3\x09\x08\xb7\x0f\xeb\xad\xb1\x1a\xa1\x9c\xd3\xde\xde\xaf\xee\x7e\xba\xd9\x48\x92\xe5\x17\x12\xf2\x5a\x6e\xf3\x8c\x6e\x76\x39\x5d\x1f\x50\x4d\x61\x11\x5c\xdb\x6d\x2f\x2b\x63\xaf\x69\xa5\xf2\xc9\x53\xfe\x6b\x88\x05\x58\x72\xf2\x86\x42\x49\xc1\x66\xd2\x0e\x73\x10\x91\x1a\x56\x06\x06\xb9\x99\xf9\xf7\x5f\xdf\x5e\xee\xcf\x56\x9b\x0f\x26\x22\x7f\x95\xea\x94\x24\x82\x45\xd1\xb2\x62\x62\x62\x4e\xb6\xe9\x41\x3e\x77\xbb\x25\x6b\xaf\xc0\x22\x2e\xc8\xb9\x5a\x73\x64\xbb\x3d\xdf\xa7\x0a\x28\xc7\xeb\xe0\xfb\x2b\x47\x9f\x70\x2d\xc9\x4b\xe2\x3b\x46\xc7\x5a\x83\x44\x1a\x49\xca\x90\xd0\xe1\x10\x86\xff\x4b\x0e\xd7\xf8\x08\x38\xec\x4f\x95\x54\x38\xea\x8d\xea\x89\x3d\x64\x37\x73\x64\xeb\xef\xdf\xbf\x2c\x12\x98\x7e\x03\xf5\x63\x52\x71\x10\x16\x53\x72\xaf\xd3\xf5\x01\x6a\x71\x2f\x14\x44\x61\x21\x43\x83\x0a\x31\x2d\x2d\x8f\x92\x7e\x9c\x46\xd1\x04\xdb\xf0\x1a\xa0\xaf\x06\x15\x1d\xb3\x27\xeb\x28\x4f\xd2\xff\x3b\x80\x3d\xcd\xee\x62\x67\xc2\xb8\xcd\x03\x55\x9f\x90\x88\x68\xed\x55\xe6\xeb\xe2\x18\x22\x56\x34\x8c\x57\x89\x1b\xae\xae\xae\x10\xd9\xd7\xaf\x7f\x0f\xf3\x74\x03\x1d\xa4\x88\x15\x2d\xad\xad\x57\x5b\x5c\xd1\x3d\x76\x3c\xc4\xd6\x0c\xb6\x77\x76\x6c\x6e\x8c\xc0\xc4\xc4\x53\xd5\x26\xd2\xab\xd6\x7f\xa5\x05\x28\x13\xae\x81\x28\xb0\xbe\xe6\xdb\x28\xdc\xc4\x8d\x71\xfa\x2b\x91\x44\x73\x10\xd3\xa4\x76\xa9\xae\x59\x56\x63\x64\x31\xdd\xae\x09\x28\x7c\x6a\x4a\xb7\x25\xaa\xbf\x5f\x21\x6e\x80\xa1\xfc\xc5\xd8\xab\x7c\x67\x65\x22\x5d\x3d\xbd\xcb\x9d\x09\xf4\x3c\x73\x35\x35\x1c\x3f\x94\x97\xb7\x82\x92\x2e\x38\x84\x3e\xd2\x5a\x92\x16\x3a\xdd\xb3\x83\x82\x0c\xdb\xbc\x4b\xd6\x1b\xc5\x61\x47\xb2\x6e\x18\x1a\x27\x3d\xa8\x2a\x58\xfd\xde\x93\x3b\x34\x68\x78\x26\x79\x97\xfd\x43\x06\x38\x34\xf8\xff\x09\x89\xcf\x3c\x0e\x45\x64\x69\x59\x19\xda\x67\x4b\x60\x9f\x9c\xbc\x7c\xf6\xcc\xba\xb6\xb1\x31\x9e\xbd\x67\xe3\x3b\x2e\x31\xae\x8f\x13\x36\x0a\x73\x7b\xaf\x62\xdd\x44\xc0\xd7\x47\xcb\xe8\xfa\x02\x94\x78\xe0\x2c\x4e\x1c\x5e\x97\x8f\xa8\xaa\x0d\xe2\x7d\x90\xcd\xcd\xcd\x1a\x4c\x3e\x01\x01\x62\xa1\x82\x96\x65\xa7\xb9\x02\x9c\xc1\xd3\x7f\xb4\x9a\x9c\x6e\x39\x5f\x56\xc6\xee\xf3\xe2\x25\x36\xf6\x47\x95\xd5\xba\x1e\xd7\x9c\x01\x33\xd9\x68\x80\x5d\x23\x25\xf7\xdd\x3a\x76\x54\x1f\xfd\x44\x6f\x61\xc1\xdb\xd2\xbf\x59\xef\x3b\x20\x33\x69\x1c\xfa\x56\x23\x59\x18\x60\x45\x01\xca\x91\x74\xae\xf7\x7e\xd7\x47\x5c\xfb\x14\x58\x2d\xcb\x47\xa9\xa9\xa9\x15\x15\x9c\x2e\x96\x07\x73\xb5\xff\xd0\x76\xb0\xee\xbe\x3d\x9a\x2b\xea\x6e\x25\xff\x6c\x49\x6e\x75\xb9\x37\x1d\xfc\xb0\x41\xdb\x9b\xa6\x5d\xa4\xd4\xf9\xfc\x74\xdf\xd3\xa5\xfd\xfe\xbd\xb8\xe3\x42\xc3\xc3\x43\x80\x0c\xdd\x90\x0a\xd4\xc0\x40\xc4\xeb\xc0\xc0\x74\x98\x51\xf5\x2c\xec\xa5\x14\xb9\x90\x03\x39\x9d\x88\xef\xd9\xdf\x6c\xe7\x2e\x6c\x83\x49\x0b\x3e\xc7\xd5\x2e\x63\xb7\xef\x21\xae\xf7\x57\x87\xa5\x3a\x25\x68\xb0\x7e\xd7\x87\xc7\xeb\x55\x5a\x41\x3b\x5d\xf9\x0b\x98\xb6\x91\x91\x84\xe7\x9e\xae\x82\x60\x5e\xd0\xe3\x9d\xe3\x42\x03\x36\x5c\x6b\xa9\xdd\xfb\xf8\x57\x1a\x47\x60\xb0\xd9\xf1\x4a\x67\xb3\xc3\x3c\xc3\xfe\x20\x32\xa2\x36\x47\x73\xbb\xf2\x7d\x73\x8f\xf3\xbb\x92\xc9\xa1\x4b\x25\x39\x79\x50\xf8\x9f\x3f\x6f\xe7\xcc\x18\x45\x7f\xfb\x33\xf0\xf1\x11\x9e\x92\x2e\x3b\x79\x3b\x3a\x72\x2d\xad\x4d\x6a\x49\xe3\x11\xd5\x70\xbe\xd7\xd5\x0d\x57\xe9\x3b\xf0\x6a\x87\x37\x31\xaa\xbe\x3d\x53\xad\x9f\x77\x68\x6d\x6d\x0d\xa9\x95\x93\x97\x9f\xf0\x12\xc8\x2a\x3e\x3f\x3f\x47\xa5\x45\x8a\x24\x9e\x8c\x9c\x61\x08\x68\x90\x11\x13\xf7\x98\x58\x62\xaf\x6f\x6c\x4c\xc4\x56\x65\x65\x51\x1a\xc6\x7c\x2b\x2a\x2a\xda\xcc\xfb\x44\x4c\xf1\xdf\x9e\x80\xc6\xdc\x57\xcf\xd4\x87\xdd\xf4\x2f\xa1\x04\x20\xdf\xfa\x54\xa6\x93\x03\x58\xad\x8d\xb9\x83\xed\xd7\xf8\xea\xb6\x4e\x0a\x56\x82\x7c\x66\x7c\x08\x97\x68\xa6\x88\x84\xff\x99\x9c\xec\xbe\x3f\x12\x77\xf9\xaa\x5f\x0d\x4b\x61\xd1\x40\x1b\xc9\xca\xca\xe2\x7a\xdf\x64\xc0\x99\x1e\xe9\x17\x1d\x17\x97\x2d\xe9\x2f\xc4\x96\x25\xa3\x3d\x75\x30\x5f\x1f\x85\x4f\x8d\x83\xb5\xe4\x74\xbd\x3e\x10\x27\x4b\x34\x78\x6a\x3b\x59\xdc\xeb\xe4\xea\xe9\xe9\xe9\x72\x20\xff\xfa\xf5\xef\xa5\x56\xf7\x50\xa3\x57\x7f\xfa\x4e\xa9\xb1\xb1\xb1\x4f\xec\xc7\x77\x3d\x70\xc9\xb8\x15\xe2\x4f\x56\x3a\xfd\xdf\x37\x39\xa0\xe2\xc3\x24\xc6\x9c\x17\x9b\x0e\x83\x9f\xaf\x83\x51\x43\xdf\x55\x46\x32\x9b\x54\x42\xa9\xa8\xa9\xf1\xb2\x10\x74\x60\x49\x3f\xe2\x2b\x37\x7a\x55\xb7\x89\x42\x45\x53\xa0\x48\xa2\xba\x83\x94\xb0\xd3\xd2\x5c\x57\xa0\x38\x68\x61\xc9\xe9\x7a\xb9\xdd\x9b\x8a\x32\x2f\x73\x9c\x43\x50\x90\x64\x0d\x31\x53\x67\xa9\x7e\x93\xba\xe7\xd5\x3e\x39\x39\xb9\x56\xc7\x2b\x2a\x2a\x8a\xda\xfc\xa9\x90\xe4\x3c\xb9\x62\x28\xaf\x7b\x6b\x77\xb2\xa4\xef\x62\x60\x60\x60\x47\xf7\x6d\xa7\xff\x75\x64\x3d\x8b\x3f\x5a\x13\x3a\x26\x06\x86\xa0\xfd\xcc\xc1\xd6\x48\x36\x44\x56\x4d\x0d\x67\x09\x7e\x7d\xb4\x6c\x6f\x67\xc7\xf4\x03\x4f\xe1\xb9\x50\x1b\x4d\xf6\x43\x4a\x4a\x98\xd4\xbb\x24\x5a\xe9\xbc\x62\x5b\x85\x97\xb6\xb6\xb6\x90\xc0\xc1\x44\x6a\x0e\x76\x76\x10\xe3\x52\x77\xb0\x74\x45\xef\xa9\xd1\xdf\xd4\x54\x62\x43\x9d\x0f\x0f\xb3\xfc\xf6\x75\x46\x82\x8f\xf9\xb2\x61\x07\x5e\xe2\xeb\x31\x79\x1f\x0e\xb3\xe2\x59\x6c\x92\x93\x6a\x3e\x77\x33\x55\x2f\x86\xcf\x2e\xa2\x77\xea\xdc\xd4\xa7\x08\xc5\x04\xf7\xcb\xcf\xe1\x90\xac\x19\xff\xef\x8e\xf4\x0c\x43\x6d\x20\xe4\x79\x41\x77\xb6\xa0\xb3\xde\xf3\x80\xa0\x20\xa9\x0a\x48\x45\x45\x45\x87\xcb\x1a\x9a\x0d\x54\x5f\xbf\xd9\x71\x91\xb4\x69\x28\x35\x35\xb5\xa7\xcc\xb1\x7d\x39\x68\xf7\x0f\x73\xb8\xc6\x0f\xbb\x46\xaf\xe3\x15\x6a\x01\x0d\x16\x1d\x59\x59\x54\xce\x6f\x6f\x89\x31\x88\x98\x98\x98\x7a\x0a\x3b\xe9\xb0\x22\x22\x22\xe8\x64\x9e\x50\x89\x58\x86\xfe\xe9\x16\x73\xed\x8f\x21\x1b\x2d\x1d\x1d\x12\x22\xec\x4a\x20\x80\x4f\xf8\x48\xb6\x70\x77\xd0\xa3\x18\x67\x99\xda\x1b\x43\xc3\xf9\x46\x7b\x7d\xd5\x57\xf6\xe4\xc4\x8a\xbd\x71\x07\x24\xbd\xbd\xbd\x8e\x0b\x0d\xb2\x0e\xd1\x56\xf5\xa2\xdc\xdc\xf8\x02\xcb\x4e\xde\x30\x18\x6c\xd2\xef\xce\x1f\x5e\x31\x9a\x2b\xde\x77\x1b\x48\x8d\x3f\xf8\x45\x35\x45\xf3\xb3\x14\x5e\x95\x85\x95\x55\x9e\x84\x2f\xa1\x40\x51\x51\x91\xf7\xe1\xc2\x74\x9d\xa5\xba\x8b\xe5\xe9\xfa\xc0\xee\xee\x6e\xbe\xef\xf9\xd6\x08\xaf\xf9\x0f\xba\x2d\x09\xa7\xa5\x96\x22\xe5\x24\x34\xdc\xd7\xbe\xbe\xb7\xea\x3c\x9d\xba\x6f\xde\xa0\x60\xad\x04\x5e\x2f\x9b\x0f\x26\x86\xd2\x60\x21\x42\x56\x29\xfa\x20\xea\x19\xdc\x92\x01\x37\x2e\xf2\x8f\xca\x0a\x0a\x60\x11\x97\x7c\xec\xf2\xb9\xd9\xe9\xe9\x91\x3c\x49\xaa\xd1\xab\x26\xd3\x5e\x34\x9f\x70\x5f\x5f\xdf\xa1\xa1\x21\xba\xf7\x55\xac\x91\x40\x0a\x37\x64\x0f\x6a\x38\x86\xd7\x70\x3a\x57\xd8\x8b\x97\x57\x81\x2a\xf2\x91\xc0\xf9\x56\x77\xd6\xf5\x41\xfe\xa0\x87\x1b\x41\xfb\x99\x10\x02\x52\x52\xd2\x44\x0a\xfe\xad\x92\xcf\x41\x67\x8f\x04\xb0\xb5\x88\x5a\x2c\x44\x88\xb4\x34\xb1\xa2\x6a\x45\xa5\x87\xa4\xcc\xa4\x8d\x00\x25\x10\xf3\x86\x34\x66\x20\x76\x43\xa4\xe1\x36\xc5\x72\xfe\xc3\x07\x10\xc4\xba\x64\xd2\xb6\x79\x71\x8d\x07\x94\xb8\x91\x1c\x30\x0b\x01\xc8\x7e\x18\x57\x97\xd1\xd6\x4d\xd1\xaf\xad\x2e\x2f\x4f\x91\x20\xa0\x29\x80\x55\x5f\x33\x85\xc8\x4e\x36\x0c\x59\xc8\x41\x48\x13\x37\xa2\x17\x25\xd7\x04\x63\x3a\xde\x55\x46\x2a\x93\x83\xc1\x4b\x7f\x3f\xbd\xfb\x4f\x86\x8d\x5f\xc4\x5f\xc6\x71\xcc\x90\x48\xe0\x9c\x08\x2f\x02\x13\x37\x4e\xb6\x54\xb4\x89\xfb\x20\x35\x8d\xab\xf6\x57\xe0\x64\xa6\xb5\x63\x48\xe2\x86\x53\x33\x95\x43\x84\x80\x46\x0a\x13\xb6\x33\x91\xd9\xda\x7d\xa4\x5f\x91\x6d\x16\x1d\x56\x7f\xd3\xfa\xee\xeb\xef\xae\x60\x4e\x11\x7e\x60\x51\xd9\x8b\x96\xef\x75\x9c\x7e\xd7\xc4\xe5\x3f\xfa\xf4\x91\x04\x7e\x5e\x6c\xa1\x22\x96\x37\x2f\x54\x93\xbf\x2c\x51\xfe\x86\xf4\xff\x79\x36\xc5\x5b\x76\x6a\xb6\x78\x90\x18\xeb\x63\x24\xbe\xec\xcc\x7f\x45\xba\x1e\x75\xe9\x6b\xa6\x33\x43\xfe\x60\x59\xf1\xe5\xcb\x97\xe7\xbb\xea\x67\x34\x8d\xec\x91\x26\xb3\x01\x1c\x83\x58\xb9\x6d\x48\x31\x1b\xbb\xa0\x20\x89\x94\xfc\x72\x9b\xe7\x7e\x73\xf7\x23\x97\x8d\x5d\xe3\x82\xf7\x8a\xef\x0b\x52\xac\xba\xfa\x7a\x56\xcd\x9c\xb9\x37\x51\x00\x59\x20\x95\x90\xc3\x4c\x85\x61\x34\xeb\x8f\xfe\xfe\x1e\xfd\xae\x9b\xf5\xb8\xe5\x76\xef\x30\x2b\x1f\x9f\x9b\xd5\xe7\x27\x6f\xba\xdb\x3a\xce\x76\xaf\xc3\x05\x7e\xeb\x51\x81\xa9\x82\x5e\xd3\xb9\x1a\x38\xba\xc4\x26\x2e\x19\x77\x0f\x23\x10\x0f\xef\x71\xdf\xe4\x39\x96\xed\x31\x70\x7b\x34\xf7\x5f\x13\x88\x5c\xde\xbf\xbc\x6b\x68\x68\xf0\x3a\x5c\x10\x54\x38\x26\xc9\xe0\x31\xc9\xe3\xb3\xc4\xb9\x69\xe5\x03\xa2\x8b\xa3\xc1\xc9\xbd\x6e\x4e\xd6\xc4\xbd\x8f\x42\x38\xbc\xda\x8d\xcd\x36\xfc\x2e\xa7\xf5\xa3\x80\x14\x68\x59\x6b\x6b\x6b\x75\x9d\xe2\x96\xbb\xbb\x87\x5e\xf7\xf9\xb2\x61\xc8\xc5\x12\x8d\x6c\x4c\xa2\xd4\xd4\xd4\x06\xdb\xc9\x1f\xd7\x25\xf6\x02\x59\xbf\x7f\xbf\x6e\x79\xd1\xca\x42\x8d\x4d\x43\xfe\x35\x0c\x53\x4c\x6d\xb0\x1e\x54\xfc\xcc\x42\x8d\xcd\xc4\x92\xfb\xe1\x03\x48\x95\xfe\xb7\xe7\xfe\xcc\x6d\xd7\x17\x0d\x34\x55\xfa\xdf\x4a\x3d\x26\x14\x1c\xa0\x5e\x7a\xad\x96\xd4\xab\xfd\xcc\x2e\x37\x76\xdd\xff\xd5\xfa\x1f\x58\x3b\x88\x00\x1f\x53\x53\x89\x29\x28\xb0\xab\x14\x14\x14\x0e\xe6\xeb\x5f\x08\xe4\x6a\x6e\x87\xa0\xa2\xfb\x5d\xec\xac\xf9\x47\xb5\xb6\xb6\xba\x18\xde\x1e\x1c\x38\x18\xca\x27\x87\x6c\xdf\xea\x94\x68\x0e\xb9\xfd\xee\x0e\x7a\x6c\xab\x50\x4e\x4d\x4f\x0f\xba\xdd\xcc\x88\xae\x01\x0f\xf9\x0e\xd8\x35\x06\x9d\x8f\x08\xd3\x55\xd1\xf6\xd5\x48\x05\xde\xf5\x90\x92\xb4\x42\x28\x13\x54\x55\x55\x6b\xcc\x24\xc5\xc5\xa9\xbc\x9a\x93\x43\x98\x86\x64\xc3\x30\x87\x70\xea\x43\xf7\x91\x31\xa7\x2c\xac\x5a\x79\x80\x17\x01\xc9\x4c\x2f\x80\xe4\xc8\xaf\x88\x36\xa3\x82\xf8\xfb\xee\xb9\x36\x4f\x0e\xfc\x02\xc5\x38\x52\xb3\x7c\xd4\x6d\x2a\x07\xa1\xc5\x68\x02\x46\x24\x0d\x93\x5c\xb6\xd1\x9a\x71\x80\x7b\x0b\x58\x25\x6f\x47\xcf\x87\x8c\x04\xd0\xe5\xcd\x56\x50\xc2\x66\x37\x96\x27\x79\x12\xcf\xf4\xbd\xdd\x9a\xc4\x3f\xe6\x64\xa5\x2b\xf0\xfe\xcf\x9f\xb7\x35\x91\x9c\xc3\x9a\x79\x12\x14\xb5\x74\x4a\x45\xa7\xbf\x3f\xf1\x4b\x75\x11\x10\x10\x26\x55\x11\xb1\x6a\x92\x03\x31\x21\x11\x48\x24\xb2\xa2\x82\x53\xe0\xf3\x4f\xa8\xb0\xcf\xde\x13\x9c\x1a\x7b\xec\x5c\x41\x32\xe0\x20\x81\x0e\x6b\x82\x57\xe3\x08\x02\x02\xb1\xce\x84\x53\xfb\xc9\x1d\x85\x30\x5f\x3c\x89\xe7\x10\x00\x50\xbb\xb1\xaa\x95\xd9\x3e\xd2\x3f\xf8\x7e\xdb\x31\xc6\x7a\xba\x12\xc3\x50\xfc\x57\xf7\x05\x02\x2f\xab\x4d\x06\x6d\x29\x94\x5c\x5c\x5c\x1c\x1c\x2a\xd8\x74\x6b\x39\xf7\x5d\x44\x0e\xbc\xda\x15\xde\x1f\x8a\xd3\x3c\xfa\xb1\x6b\xa0\xf1\xc4\x0f\xd4\x55\xec\x68\xaf\x80\x42\x99\xae\xde\x82\xc2\xcb\xca\xd8\x55\x1d\x78\x81\x08\x3a\x39\x39\xb9\x1e\x6b\x8a\x3e\x48\xca\x10\xa0\x5f\x06\xd8\x67\x93\xd5\xf4\xae\x12\x4f\x52\x1b\x04\xe8\x84\x39\x0b\x65\x67\x7f\x08\xa4\xbe\xb4\xd9\xe9\x66\x52\xe5\x7e\xdf\x74\xb0\xec\xbd\x4a\x32\x40\x97\x55\xcc\x45\x3a\x9c\x2b\xee\x5d\x05\xeb\xf4\x3b\x5a\x6a\xa5\x12\x76\xf2\x19\xd1\xfa\xed\x0a\xee\x88\x24\x8f\x34\xac\x84\xfa\xc4\x48\x48\x92\x95\x95\x97\xc3\xd1\x62\x9a\xd1\xc6\xce\xd3\xd2\xd2\x64\x56\x40\x78\x22\x90\x50\xa5\x22\x5e\xca\x04\x64\x8c\x52\x11\x01\xf7\x19\x1d\x16\x9a\xdf\xaf\x3c\x99\xf3\x1e\xf4\xb5\x81\xee\xfb\xf5\x81\x38\xf7\xad\xdf\xb2\xc0\xc2\xe2\x62\xcc\xab\x0d\xed\xf2\xe9\x1d\x35\x9e\x98\x98\x98\xdd\xdd\x5d\x3a\xd6\x5a\xf2\x60\xd4\x87\x1b\x80\xac\x88\xcf\x09\x32\x99\x59\xbd\xc7\x6b\xa5\xc2\xb0\xfe\xb8\xfb\x99\x26\x5c\x0a\x17\xe1\x72\xbc\xd2\x59\x56\x56\xc6\xf2\xb0\x1c\x7c\xb3\x16\xf5\xaf\x5c\x6d\xd0\x0a\xda\x4d\x5d\x1d\x2e\x26\x28\x31\xf6\x9d\x35\x42\xdb\xfe\xac\x97\x35\xb4\xd8\x55\x36\x8c\xf4\xfe\x93\x94\x1e\xa9\xaf\x0c\x48\x08\xaa\xb0\x71\xf5\x52\x00\x3a\xc6\x7a\x6b\x82\xb9\x2e\x41\x41\x4f\x0d\xb6\x93\x48\xd0\xfd\xdc\x9c\xc1\xcd\xc0\xec\xf4\x74\x5a\x7a\x3a\x82\x45\x35\x99\xeb\x7d\x53\xf8\x80\x6f\xdc\x80\xdb\xf3\x53\xe0\x3f\x1d\xf3\xef\xde\xb2\xb8\xae\x8e\x2f\x53\xfc\xb3\xff\x51\x6b\xf7\xe3\xa1\x33\xdd\xbe\x48\xe2\xc6\x3f\xc1\x52\xcc\x84\xf5\x7d\x34\x57\x5c\xbf\x1a\x76\x28\x5e\x3d\x77\x78\xb5\xbe\x6e\x26\xe3\x0c\x21\xc7\xa7\x95\x8a\x1f\xbd\xda\xda\x8c\xdb\x74\x11\x71\x5a\xe9\xd8\x9d\xee\x7e\x21\x73\xa1\xa8\x00\x22\x07\x62\xc6\x74\x12\x8d\xc6\x73\x29\xb1\xd0\xb3\xc4\xc3\x0d\x3c\x24\x03\xc0\x49\x3c\x20\xfb\x4f\x84\x80\x89\x02\xf9\x28\x51\xf7\xad\x8e\x9b\x75\x05\x32\x8d\x2d\x8b\xd5\xf6\x80\x11\xb7\xf6\x2f\x55\x33\x6a\x93\x02\x83\xe7\xcf\x14\x84\x89\xe6\xec\x24\x70\x1c\x68\x63\x3c\x3f\x8b\x17\xce\xf1\xb8\x14\x0b\xa7\x6e\x18\xe3\x2d\x58\x6a\xe4\x44\x22\xe9\x0d\x5e\x74\x3b\xc0\x61\xe1\x3c\x7c\x78\xb3\xcd\xf7\x9c\x05\x21\x53\x32\xe9\xb9\x33\x5e\x40\xbf\xcf\x14\x09\x9f\x9e\x9e\x9e\xad\x32\x96\x4f\x98\x73\x96\x88\x25\x81\xd2\x76\xa5\x5a\x41\xc8\x93\x53\x52\x74\xde\x92\x46\x28\xf7\xe7\x76\xbe\x71\xdd\x5a\x4a\xf3\xbf\xa6\x06\xde\x23\x8b\x68\xc7\x70\xb9\xc9\xf6\xdd\x6a\xaf\x87\xa9\xc9\xb8\xf5\x04\xe2\xfe\x5c\x1e\x4e\x57\x38\x57\x7f\x3b\x79\xa3\xfb\xf6\x39\x2a\xde\xc4\x28\xd9\x9f\x98\x62\x9f\x9e\x91\x8f\xcf\x6d\xba\x4c\x2f\x85\x55\x8b\x8b\xb3\xf8\x3a\xc0\xaf\xe8\x5b\x4b\xe2\x46\xc0\x34\x0b\x84\xd3\xe4\xad\xd5\xfd\x2e\x6c\x2d\x42\x9d\xa4\x28\x6a\x40\x7a\x59\x34\x87\xe9\x33\xd6\xfc\x12\x07\xf1\x0f\x9c\x2c\x09\x5f\x3e\x4d\x9b\xa4\xdc\x0e\xef\x03\xdd\x4f\xcb\x2b\x99\x21\x68\x89\x1b\xe7\x71\x76\xcf\xfe\xdb\x09\xf4\x8f\xe6\x4a\x78\xb6\x05\xb3\x1c\xe5\x7b\x09\xb5\xeb\x1b\x1b\x19\x5c\xef\x31\x3b\x16\x28\x22\x6f\x1f\xce\xc7\xe2\x62\x63\x51\x64\x9b\x9d\x96\x59\x5e\x67\xa2\x64\x41\xcb\x2f\x53\xb4\xa4\x42\xd1\x5f\x28\x25\xd1\x2c\x97\x68\xd1\x8e\xc7\xc7\xc4\x84\x3a\x12\x70\x0e\x1f\x2d\xb5\x12\x91\xbe\xaa\x32\x6a\x45\xd0\xbc\xb5\xb2\x62\x01\x8f\xac\xbd\x64\x60\x64\x64\xd5\xca\x7b\x5d\x16\x7f\x7f\x45\x96\x3b\xda\xb5\x38\xbe\xb2\xcd\x78\xe0\xb5\x35\x3e\xb1\x2e\x46\xc5\x0f\x77\xe0\x48\xaf\x1a\xfe\xf9\x93\x8d\x87\x87\xcc\xfb\xab\xf0\x8a\x0f\xba\xab\xb9\x93\xd3\x11\x99\x49\x00\x2a\x90\x85\x32\xc1\xea\xee\x62\xd7\xc5\x71\x74\xb2\x44\xcb\xda\xca\x4a\xc8\xcf\xd4\xa9\xf9\xbe\x7e\x4c\x2a\x6c\xf8\x47\x48\x5b\x9e\x54\xa1\x5e\x39\x54\xa7\x44\x13\x43\x59\x3d\x4d\x8d\xf9\x63\xbc\xe4\x5a\x44\xad\x99\xb9\xf9\xda\x6b\x1c\xfc\xa8\x8d\xbf\x43\x29\x10\x73\xcf\xc3\x05\x92\x2b\x6b\x76\x2e\xae\xe5\x66\x67\xda\xdf\x06\x8c\x4a\xf1\x06\x35\xa6\xb2\xf2\x8f\xf5\x9c\xd9\x1f\x3f\xa2\x5a\x8b\x9d\xc4\x16\x29\x27\x55\x99\x74\xaf\x78\xdf\x45\x9a\x42\xc8\xa1\x95\xef\x22\x88\x16\x02\xef\xe3\x34\x73\x5b\x87\xef\x9a\x1e\xd7\xc8\x8b\x27\x3f\xc2\x0b\xb2\x40\x29\x6a\x45\x2c\x00\xfa\x9f\xbb\x66\x1c\xe5\x46\xe9\xec\xc2\x7d\x2e\xc0\xe1\xcf\x62\xee\xc2\x6c\x6c\x36\x4b\xe7\xae\xe4\x91\x8f\x97\xd5\xc1\x8d\xf3\x0e\xd4\xe2\x5e\x0f\xb3\xdd\x4f\x11\x35\x15\xd4\x22\x2e\xa6\x63\x79\x92\x21\xb5\x53\x76\x97\x15\x86\xf5\xa6\xdb\x83\x97\xfb\xb3\xf7\x7d\x06\x02\x1a\xce\xcb\x6d\x7a\xdc\xfc\xbd\xd1\x49\x49\xc1\xf7\x87\xcd\x96\x7a\xab\x01\x72\xd2\x0b\x00\x59\x26\x56\x56\xad\x3c\x89\xcb\xb9\x21\xff\x92\xfa\xc0\x75\xf6\x58\x86\x77\xfd\xe4\x7e\x1e\x82\xde\x36\xb4\x84\x04\x55\x13\x65\xaa\x39\x3d\xfd\x81\x35\xa3\x3f\x96\xd8\x2b\x1e\x9f\x2e\xb4\x7c\x31\x04\x39\x07\x3f\x8f\x76\xd9\x0b\xbc\x49\x61\xd5\x1a\x19\x1a\xba\x3d\xa8\x1f\xa3\xf9\x15\x4e\x23\x2a\x51\x10\x3f\x5d\x20\x1f\x95\x9a\xaa\x18\x31\x70\x51\xab\x63\x09\xf3\x96\x01\xf6\x15\x16\x79\xf4\xa5\xac\xfb\x49\x50\xc3\x71\xd2\xfd\x76\x92\x01\x05\xf8\x8c\x0c\xdf\x05\xb0\x0f\xe5\xae\x03\x52\x82\xb7\x96\x02\x23\x37\x93\x72\xd9\xed\xe7\xbf\x67\x26\xd7\xed\x1c\xcc\xd7\x6b\xd8\x63\x07\x1a\x9d\x30\x2d\xe0\x4c\xdb\x5d\xe6\x88\xba\x7f\x67\x5c\xef\xba\xb7\xae\xd5\xb7\xa5\x1e\xac\xed\xd7\x5c\x3b\x2f\xf6\x56\xf3\xab\x6a\x65\xd5\xef\xc5\x12\x2c\xfd\x91\x60\x47\x42\x54\x49\xb6\x59\x79\xfc\x64\x08\xa6\x21\x10\xb6\x1e\xcd\x61\x89\x6f\x0b\x8a\x47\x1e\x93\x95\x97\x95\xed\x9d\x6d\x0e\xbb\xfc\x93\xb5\x2e\x80\xce\xc5\xc3\x48\x6c\xa6\x7c\xdb\x05\x07\x21\x56\x16\x16\x04\x07\xb4\xfc\x72\x34\x57\x5c\x26\x6d\xa0\xce\xc1\xc9\x89\x7b\xdc\x09\x17\xf1\xc6\xd0\x70\x57\x4b\x8e\x3c\xb6\x30\x12\x9f\xfa\x6e\xbd\x7f\x35\xaf\xf3\x8d\xb6\xee\x01\x33\x19\x5b\xa2\x79\x67\x9b\x62\x97\x44\x81\x63\xa6\xb3\x58\x99\x4a\x7d\xd3\xe0\xe4\xd6\x9f\xcf\x07\x08\x3a\x62\x92\xd9\xdc\xce\x37\xa7\xeb\x71\x44\xc1\x0f\xa7\x83\x3f\xf0\x48\x64\xea\x14\x80\x7d\xc4\xc4\xc4\x3d\xae\xdf\x5d\x5d\x5d\x5d\xb2\x2c\xea\xe7\x03\x2e\xf7\xf4\xf2\xdb\xbd\xc5\x72\x47\xb2\x85\xa3\xfc\xbf\x95\x95\xb1\x73\x70\xd8\xdb\xe0\xf1\x02\xed\x27\x0a\x31\xc0\x9e\x60\x12\x12\xcf\xc3\x05\x41\x10\x32\x1c\x6e\x30\x9c\xce\x35\xc1\x4c\xfd\x68\x59\x21\x1f\x85\xaf\x2a\x77\xe0\x7d\x30\x87\x4a\x4b\xf1\xe7\xcf\x1f\xa6\x53\x32\x88\x00\xe5\x88\x32\x6d\xe0\xc5\x5a\x14\x2d\x82\xc3\x24\xe8\x76\xb3\xbc\xba\x0b\x67\xcb\xa1\xd6\x00\xe6\xbb\x49\x32\xd7\xb4\x63\x0d\xa7\x4d\x19\xba\x28\x91\x7e\x8c\x79\xfb\x69\x34\xa7\x7d\x5d\xcf\x64\xfa\xb4\x74\x3c\xe3\x47\xf3\xe9\xc7\xf2\xbd\x28\xb2\x29\x76\xa9\xcc\x42\x97\xac\x2d\x91\x44\x69\xf7\xa3\xa0\xe3\x23\x63\x58\xc0\xa9\x62\xb0\x59\x2b\x02\x81\x48\x4e\x49\x19\x4c\xa4\xc6\xcd\x6a\x76\x5a\xa6\x14\x76\x02\xe7\x2c\x79\xed\xfe\xf9\xea\x62\x33\x59\xaa\x53\x12\x74\x9e\xbd\x1a\x12\xc1\x47\x0e\x5c\x6c\x72\x0c\x4b\x79\x28\x2e\x29\xe9\xbe\x3f\x6a\x8f\x66\x2d\xfe\xf2\xa5\x47\x0a\x36\x3f\x3f\xbf\xf1\x23\x01\x1d\xaa\x5d\x34\xd1\xe2\x7f\xed\x74\x53\x73\x8c\x1d\x4c\xa1\x4e\x68\x56\x3d\xbb\x9f\xa0\xc4\x78\x50\xf1\xd3\x15\x9c\x43\x62\x8c\xa6\x21\x69\xea\x17\x33\xa2\x0c\x02\x18\x4e\x6c\xc2\x0a\xa6\xed\xfa\xbe\x7f\x77\x5a\x29\xeb\xf4\x5e\x8d\x23\x11\xe2\xd4\xe5\x0f\xf2\x28\x3f\x81\xf8\x52\x7d\x82\x29\x27\x03\x58\xaa\x7e\x76\xde\x27\x66\xdf\x36\xaa\xaa\x86\x09\x52\x76\xa7\x9e\xad\xb3\x87\x16\x5b\x47\xa2\x86\xf5\xa2\x54\x17\x40\xcb\x2b\xab\xaa\x30\xff\x95\x2e\x58\x75\x14\xf6\x85\x9f\xe4\x7a\x0a\xcf\xbb\x3b\xb8\x5f\xae\xa6\xbe\x8e\x0e\xfa\xeb\x1f\xc0\x3e\x1f\x3c\x32\x47\x3f\x8a\xe1\x60\x73\x39\x19\x0d\x31\x6a\x31\x0f\x2c\x3c\x7e\x93\x2e\x2b\xd9\xe1\x03\x91\x44\xc9\xd9\x76\xc3\xfd\x74\xbe\xbd\xf0\x18\x53\x72\x1a\x72\x52\x8a\xf4\xee\x80\x91\xc2\x19\x1b\xcb\xe9\x90\x47\x4f\xe4\x10\xe1\x0a\x2f\x70\x7f\xbe\x9e\x75\x58\xbb\x59\xbd\x43\x45\x9f\x00\x9e\xd5\xd5\x99\x45\x60\xb3\x78\x16\xf6\xe6\xad\x55\xd1\xa7\xe7\x9a\x0a\x9b\x1f\x4e\x53\xa6\xb4\xce\x02\xa7\x3c\xaa\x1e\x84\x51\x8c\x33\xbc\x40\xf9\x07\x98\x6a\xf2\x5f\x5f\x9a\xf1\x38\xa7\x5f\xc4\x8a\xf4\x52\xef\x6a\x92\x38\x77\x00\x4e\xb1\x24\x63\x48\x54\x14\x02\xe5\x4a\x28\x2b\x0b\x0b\x54\xaf\xbd\xb3\xeb\x20\xfc\xaa\x40\x7b\x0b\xd3\x3c\x83\x4a\x4e\x83\x2b\x50\xaa\x04\xcd\x2b\x02\x44\xed\xcc\xf0\x5d\xe0\x24\x0b\x04\x08\x7d\xaa\xaa\xbf\x94\x79\xd0\x3f\xea\x41\xe2\x0f\xf4\x60\x60\x87\x5a\xe0\x3d\x6a\x49\x4d\xf6\xc7\x5b\xd6\x1a\xac\xf8\x6c\xe0\xdd\xe8\xce\x95\xeb\xf3\x88\xc4\x2b\xa3\x25\x6e\xe0\x83\x45\x50\x58\xc7\xed\xa6\xcb\xa6\xab\x8c\xdb\x41\xfb\x5d\x8e\x8b\x42\x2d\xb1\x81\xfb\x33\x95\x19\x3c\x26\xf8\x79\x3f\x21\xbf\x17\x1a\xed\xd7\xc2\x0c\x56\xbb\x02\xc9\xb8\x8d\xd8\xaa\x88\x55\x93\x3b\xfd\xaf\x47\x39\x3c\x26\x04\xd4\x14\xe8\x54\x25\x0a\x8c\xa3\x8d\xdc\xeb\x96\x7b\x69\x1e\xb6\x73\x11\x8b\xcf\xac\xaa\x44\x1a\xee\x69\xa4\xfa\xa8\xb0\x0f\xe9\xe9\x2c\x91\x6b\x1b\x22\x4f\x5b\xd9\xce\x0c\x39\x9f\xc0\xf8\x51\x4c\xe5\x21\x00\xa1\x6c\x3c\xfa\x26\xbf\xef\xbb\x1e\xdc\xc6\x6d\xc4\x52\x42\xdf\x6f\x7f\x28\x94\x34\x37\x34\x08\xb4\x34\x7d\x3d\x76\x85\xe2\x15\xc4\x50\x0c\x6f\xba\xa9\x1e\xf0\xab\xaa\xaa\xe6\x69\x73\x43\x1e\x07\x69\x83\x81\xab\x7c\x96\xbf\x52\x4f\x37\x06\x19\xc9\x71\x47\xe3\xb9\xd4\xea\xcc\x07\x13\x31\xac\xcd\x9b\x17\x1f\x6f\xb7\x3f\xf7\x01\x6a\x6b\x6b\x37\x06\x93\xa2\x82\x11\xd2\x7f\x89\xfb\x68\x49\xb4\x6c\xa6\x14\x0c\xa2\x17\xde\x0d\xba\x74\x84\x3c\x3e\x84\xf6\xb2\x11\xb2\xaa\x3e\x84\xd2\x52\xca\x62\xb9\xb5\xce\x2d\x32\x37\x99\xb3\xaa\xf3\xc0\x4a\x53\x73\x04\x7c\x61\xdf\x6a\xff\x7c\x84\x2f\xd5\x9a\x0f\x2a\xd8\x53\x27\x6e\xb8\xa0\xb9\x6b\x41\x80\xee\xeb\xfd\xd8\x80\x50\xa3\x1a\xce\xfb\xc7\xeb\x55\x46\xac\x0b\xbf\xc7\x9f\x1f\x19\xcd\xcd\xcd\xb3\x4f\x0a\xb4\x72\xde\x18\x3e\xdb\x9e\x16\x12\x7b\xb6\xb7\x2e\x9b\x90\xb9\x48\x1f\x4f\xa0\x45\x3e\x3e\xa0\x4e\xda\xfd\x34\x2d\x62\x17\x50\x20\x21\x2d\x14\xa2\xd4\xa5\xc4\x93\x05\x89\x0c\x9f\x09\x89\xeb\xc0\xd6\x38\xd9\x9b\x48\x33\x16\x1c\xbc\x84\xd8\x76\x50\x1f\xec\xbc\x21\xec\x69\x7b\xaa\x29\xab\x9f\x2b\xe6\xfd\x30\x22\xe1\xef\xf0\x08\x08\xaa\xf0\x70\xf5\x5e\x50\xe9\xb1\x93\x70\x63\x49\x9f\x7f\x5a\xee\x9d\x9a\x6a\x53\x0f\xae\x6b\x35\x02\x0f\x3f\x6e\x2f\x45\x6d\x64\x4e\x0e\xf0\xc6\x67\xd4\x5f\x13\x61\xcd\xc7\x5f\xc6\xb5\xb3\xdc\xbd\xec\x4c\xf4\x43\x7a\x16\xc9\x4e\x97\x67\xb7\x7a\x8f\x7d\xcb\xb4\x12\xab\x8c\x64\xc2\x32\xca\xd9\x1f\xfb\xc3\xcd\x53\x03\x3c\x76\x73\xd7\x24\xdb\x76\xa9\x2b\xac\xe7\xd3\x34\x15\x89\x0c\xac\xe5\xe9\xde\xc1\x67\xbf\xfd\x2a\xab\x3c\xd1\x50\x4e\x40\xe8\x5d\x34\xf1\xf7\x2e\x4b\xc9\x63\x27\xa2\x96\x93\x54\x1d\x0a\x25\x35\x20\x4e\xdc\x20\x24\x24\x34\x6d\x3d\x1b\xcd\x15\x77\x91\x33\xe9\x84\x3d\x2f\xb9\x8f\xf5\x3e\x91\x08\x65\x3b\xae\x76\x05\xe2\x5d\x8e\xb9\x1a\x2d\x36\x39\xc2\xe1\xd2\xec\xec\x7b\xfb\xd5\xdd\x4a\xc0\x57\xd2\xd2\xb4\x42\xbb\x53\x53\x53\x07\xab\xdd\xb4\x12\x1f\x2d\x0d\x45\x8e\x90\xa1\x58\xd8\xd0\x35\x11\x16\x82\xfa\xdf\x04\x0b\x19\xac\x0d\x87\x0b\xa2\xdf\x75\xac\xaa\x5f\x56\x3e\x19\xfe\xfe\x63\xa7\xaa\xea\x3b\xa4\x16\x37\xbc\xab\xe0\x0a\x4c\x34\x2f\x36\x4d\x1b\x78\x1b\x89\xa5\x12\x93\x98\x18\xb4\x16\x41\xd6\xc3\x50\xcf\x99\x9d\x96\x86\xd1\x4e\xd3\x68\x3f\x5b\xe5\xbe\x3d\x1a\x5d\xb2\xd4\xee\xfd\x12\xf6\xb7\xdd\xfb\x38\x91\x82\x1f\xb3\xa0\x8f\x93\x9d\xbd\xcd\x63\x97\xd0\x40\xbe\x7d\x39\x68\x67\x9c\x5e\x01\x7e\x57\xae\x5f\xfd\xeb\x11\xee\x03\xaf\x58\x5a\x5a\x5a\x7d\x7e\xba\xa6\xcb\x94\xab\x9e\x3d\x5e\x6e\x27\xab\xd2\xad\x77\x5c\x6c\x9a\xaf\xb7\x0e\x2b\xce\xb4\x00\x6a\x7e\x4c\x4b\x4e\x46\xcb\xf8\x9a\x2a\x53\x34\x11\x70\xbb\x99\xe1\x92\x58\x6d\xdc\xee\xd5\xf9\x70\x36\x8c\xe7\x0b\xf0\x21\x5d\xe7\xe6\xe4\xcc\x91\x0a\x14\x7b\x8d\x9c\xce\xa6\x63\x30\x2a\x7a\x4b\xc0\x3d\x1b\x0c\x55\xab\x64\xf9\x91\x60\x37\xbd\x61\x5b\xbf\x34\xe6\xba\x6b\xec\xaf\xc1\xa5\xe6\x5e\xf0\x96\x80\x60\x2d\x2b\x87\xf6\x98\x4e\x6d\xd5\xe3\x78\x45\x92\x91\x11\xfd\xa9\x34\x1e\x2c\x4a\x68\x55\x51\x6b\x3e\x58\x05\xeb\x6c\x2b\x58\xc4\x90\xcd\x14\x75\xdf\x12\x3f\xee\x40\xaf\x02\x52\x8b\x79\x8c\xe5\x49\x62\x6d\x5c\x4b\x3f\x9d\x26\x45\xe0\x92\x21\xb6\x3a\xfd\xaf\x61\x81\x97\x7a\xfd\x9c\x34\xdf\x0a\x64\xfa\x70\xcd\xb1\x11\x28\xe5\x32\xe4\x91\x04\xf5\x2f\x51\xd0\xb4\x38\xc8\x55\x93\x93\xd9\x84\x1a\xd4\x94\xfe\xd0\x27\x6e\xd4\x24\xfc\x24\xfb\xf9\xc8\xab\x18\x6e\xff\xba\x97\x3d\xb3\xf6\xdd\x0f\x8a\x76\x66\xa5\x9f\x9b\xec\xe9\x44\xdc\xc6\x8d\x2d\x1f\xb3\x70\x75\x6a\xd8\x39\x75\x03\x37\x7f\x91\xf4\x7f\x61\x2a\x93\xf2\x11\x54\x50\x49\xff\x49\x94\xac\x48\xea\x19\x1a\xfd\xbe\xff\x37\xe6\xb3\x35\xb7\x46\xa7\x8e\x74\x2c\x4b\xae\x8c\x7c\xfc\x12\xa2\xba\x21\xf6\xe5\xcc\xbe\x45\x5c\xf6\x57\xe9\x79\x1e\xe3\x4a\x85\x61\x5a\xae\x8d\x78\xa6\xde\x1c\xe9\xe0\xa7\x59\x32\xba\xc4\x1f\x29\x96\x7f\x08\x82\xb3\x9c\x32\xf8\x6b\x75\x44\x14\x9f\x06\xcd\xbf\xdb\xe4\xff\x7d\x02\xdb\x64\x49\x07\xd5\xfd\x7e\x9b\x10\x0b\xfd\xaa\x22\x51\xab\xe3\xa3\xea\xfa\x51\x5f\xf9\xc9\x84\xb6\xe3\xe1\xb5\x6a\x32\x10\x1b\x1b\x95\x56\x2f\x57\x33\xea\x89\xc5\x1f\x43\x16\xa4\x54\x44\x10\x30\x2d\x40\x99\x30\xbc\x89\xe6\x67\x31\xc1\x40\x4c\x4a\xba\x75\x7f\x9c\xbd\xd1\xd2\xd6\x26\x96\xb9\x62\x0a\xe9\x09\xd3\x2d\xd5\xd5\xd3\xd3\x33\x1d\xae\x2a\x2d\x6d\xf5\xdc\x87\x5e\xd3\xa0\x67\x29\xee\xaa\xfd\x7a\xe2\x12\x6f\x5b\x3e\x03\x60\xc1\xb0\xc4\xbc\x6b\x1f\xa2\x70\xaf\x27\x36\x1c\x48\xbf\xaa\xdb\xd8\x2f\x5c\xcd\xe3\x67\x15\x87\xae\x67\xd3\x61\x65\x15\xaf\x99\x3a\xc5\x16\x82\x30\xb4\x15\x04\xf9\xe4\xa6\xb9\xb1\x10\x16\x9f\x2d\xc9\x8b\xcb\xca\x70\x00\x15\x4f\x0f\xc3\xbc\x94\x96\xad\x47\x3b\x97\x7e\xaa\x2b\x36\xad\x9e\x15\x9d\x10\x68\x06\xb7\x31\x3e\xb5\x18\xa0\x1f\x0e\x1e\x64\x7e\xd5\xfa\xb7\x50\x3e\x0a\x7f\x77\x77\xb7\x06\x63\x2b\xec\xa5\x94\x41\x93\x03\x05\x9d\xcf\xd5\xbc\x75\x12\xad\xf4\xd1\x7d\x90\xdf\xc6\x8f\x04\xc3\x7a\xab\xd0\x0d\x0c\x45\xed\x72\x68\x25\x22\x89\xcc\x7a\x2c\x8f\x5a\xc8\x81\x3c\x13\x31\x61\x13\xf0\xfc\x78\xdd\x27\x37\x1d\xe8\x2f\x78\xbf\x0b\xa3\x1f\x3c\x45\xd0\x3d\x78\x8c\xf5\x42\x24\x14\x6f\x2f\x1e\xb7\x22\xf2\x39\x66\x39\xef\xf1\x89\x45\x3f\x6c\xcb\x22\x7a\xee\xaf\x62\xcd\x76\xb2\xce\xb7\xc7\xfe\x01\x10\x42\x3a\x76\x9e\x2d\xe4\x88\xd0\x81\xe1\x91\x43\x4c\xfb\x22\xf1\xa2\x4d\x0e\x8e\x96\xdb\xe1\x25\xc2\x5a\x2a\x72\xe5\x63\xb9\xe2\xac\x56\xd4\x44\xd9\x7e\x9d\x52\x92\x92\xd4\x81\x55\xa9\xc8\xc3\xe6\xd5\x7f\x49\x80\xc4\x37\xf1\x3f\x14\x34\xcc\x73\x81\x91\xab\x97\x4c\x0e\x51\x7e\xd0\xdf\xf1\x68\xd3\xcc\x15\x0b\xbd\xf0\xe2\xce\x28\x2f\x2c\x44\xf3\xe2\x3d\xfc\xf3\x55\xdd\xcc\xac\xf0\x38\x7e\xa0\x8e\xf3\xe1\x3d\x71\x2e\x15\xdc\x79\x28\x5b\xd8\x19\xd6\x15\x40\x01\x81\x2a\x28\x84\x4f\xd8\xf4\xbb\xfe\xeb\x9f\x71\x33\xd8\xcf\xe2\xec\xc2\x10\x08\x1c\xa7\xd9\xf4\x27\x0b\x67\x92\x24\xb7\x18\xe2\xde\x9a\xef\x49\xa2\x24\x26\x4f\x5a\xb2\x11\x03\xea\xdc\x1f\xa0\x5c\xf1\x9d\xed\xd9\xde\x81\xa7\x43\x95\xef\x9b\xc5\x3c\xf7\x00\x85\x1e\x22\x89\xe5\x95\x95\x11\x25\x4b\x85\x8a\xb8\x17\x19\xd5\x85\x34\xb0\x41\x4c\xd3\xfa\x79\x64\x05\x42\xa9\x48\x1b\x8a\x03\x9a\xc0\x67\x39\x15\x49\xb3\x4f\x0f\x5a\xb7\xe0\x0c\x39\x79\x73\xb9\x03\x3f\xf5\x93\x64\xf6\x63\x0e\xf0\x6e\x68\x69\xc2\xf7\xa4\x24\x09\xa7\x53\x4f\xbb\x5f\x3c\x8e\x95\x5a\x4d\xd1\xd7\xde\x8d\x28\xbf\xf0\xdb\xbb\x85\x73\x71\xa6\x31\xef\xee\xee\x06\xb5\x75\x48\x15\xfb\x14\x6a\x88\x69\x79\xe3\xd3\xfe\x91\xde\x1a\x9f\x30\x8b\xdc\x1c\xdb\xd6\xad\xe1\x94\x76\x53\x31\x0a\xc8\xd1\x2e\x8a\xdc\x9f\xc2\x98\x10\xd0\x87\xbb\x1a\x77\x59\x89\xba\x3f\x05\xed\x6a\x79\x55\xe3\x8f\x10\xc7\xbc\xdc\xa5\x9d\x6c\x8b\xb0\x3b\x5d\xf7\x14\x76\x5a\x42\x29\x75\xcb\x63\x13\x28\xf6\xa8\xfe\x2c\xb8\x64\x29\x79\x1a\xfa\xc8\x28\xf6\x51\xef\x53\x06\x53\xed\x47\xf9\x77\x53\xf3\xe4\xbc\xa6\x97\xdf\x37\x7f\x75\x20\x16\xa0\xa7\x3f\x6e\x44\xcc\xbf\xa9\x46\x6c\x88\xf4\xb9\xe8\x4d\x1f\xfd\x69\xbf\xaa\x6b\xbf\xca\x7a\x27\xbc\xc0\xba\xbe\x1a\x48\x78\xe3\x1e\x58\x18\x05\xb4\x69\x72\x1f\x9c\x59\x6e\xf7\x1e\x9e\xe6\x90\x02\xff\x9c\x0e\x14\x90\xd3\x5f\x67\x5e\xfa\xda\xd0\x20\xc0\xc8\x88\x0e\x16\x63\x8b\xcd\x12\xb0\x25\xe4\xec\x0e\xbe\xdb\x2d\xe1\xb7\xfa\x8d\x32\xf2\xe1\xc3\x07\x0a\x7e\xab\x9e\x2a\xe9\x9a\x20\x92\xbe\x9a\xcc\xcc\xcc\x7f\xbc\x83\xec\x61\x88\x9c\x5b\x6d\xf3\xc4\x05\x31\xb1\xb0\x74\xdd\xac\xc7\x99\x2a\x37\x2f\x1e\x2e\x36\x3b\x47\xe1\xba\x01\x69\x24\x5a\x9c\x57\xbb\x42\x42\xb9\x8d\x5a\x20\x3e\x27\xa6\x48\x32\x2d\xed\x29\x75\x9e\xce\xa9\xae\x40\x7f\x19\x9e\xe2\xe0\x88\xf3\xbc\x52\x5d\xf6\x53\x2f\x60\x5f\x5e\xe0\xd5\x7c\xd5\xf2\x5d\xd0\xf9\x32\xb5\x48\x3f\x8d\xee\x3d\x29\xc0\xd7\x5e\xed\xa3\xb4\xfb\x74\xcb\xf6\x46\x12\xb5\x24\x24\xf8\x29\x80\xb7\x7f\xc5\x41\x68\x2c\x47\x94\x48\xe8\xbd\x6a\xc0\x0f\x6c\xc4\x07\x95\x23\x01\x0d\x61\xb8\x40\xa1\x01\xd5\x0b\xd2\xe4\xd1\x3c\x49\xff\x13\xa4\xac\x42\xea\x68\x38\x36\x51\x9b\xd7\x21\x4e\xd5\x89\xc4\x18\x04\x98\xaf\x5f\x3e\xad\x53\xa2\x19\x51\xfe\x56\x2a\x9f\xe8\xe2\xbb\xa5\xa5\x65\x02\x58\x94\x50\x68\xf7\x60\xb5\x5b\xfa\xd5\x2b\x6c\x90\x0a\xb9\x7a\x00\xbd\xcb\x67\xda\xa0\x1b\x7a\xb0\xd9\xf1\x65\x36\xeb\x2d\xdd\x72\xbb\xb7\xf3\x78\xbe\x6c\x6b\x6b\x2b\xf2\x57\x9b\xe7\x3e\xb2\x7f\x88\xf0\xc7\x19\xb8\xe7\x8b\x6a\x0a\x1f\x1f\x5f\x48\x88\x89\xb6\x36\xaf\xcd\x38\xdd\x07\x44\xbb\x46\xb6\x50\xb9\x7e\x35\x0d\xdf\x85\x6f\x70\x32\x22\x7a\x7c\xbf\x94\xfe\xd1\x3c\x12\x68\xe3\x75\xb0\xe3\x7d\xdc\x71\x9e\xd8\xff\x09\x3f\x84\x2e\x3a\x3e\x1e\x38\xc7\xbc\xdf\x13\x8a\xce\xd3\x75\xc3\x70\x73\x19\x19\x1e\x0e\x16\xf7\x02\xe2\xd7\x5e\x13\x41\xcb\x3d\xe7\x6a\xe0\x2e\xd1\x9d\xb3\x37\xa2\xd8\xbd\xf9\xb2\x61\xf8\x34\x12\x58\xc0\xba\x2e\x07\xa3\xb3\x70\xef\x6a\x69\x93\x6a\x8a\x38\x49\xfb\x67\x7f\xc2\x9f\x94\xc9\x3c\xe8\x32\x17\x86\x6f\xde\x40\x82\x9f\x1e\x72\xc5\x9b\xf0\x83\xb8\x03\xb6\x52\xc3\x9b\x2a\x5f\x03\xe8\xef\x65\xe4\x41\x3e\x8b\xd0\xe2\x4f\x3a\x84\x98\xd2\x64\x5d\xee\x83\x33\xb7\xe7\xdb\xc2\xfd\x7a\x52\x55\x05\x4b\xa8\xf9\x6b\xa2\x81\xd2\x83\xc8\x4b\x66\xa9\xdd\xef\xed\xd1\x67\x67\x67\xcc\xea\xe9\x7f\xff\xfe\xfd\xf2\x85\x33\x4b\xb8\x53\x3e\x70\xbd\xf1\x3e\xba\xdf\x1e\xc2\x46\x58\xad\xd5\x41\x3a\xdd\xde\x3e\xff\xd6\xb0\xce\xe7\xb4\x6d\xb9\xdd\xfb\x3e\x0f\xe5\x54\x1f\x18\x51\x8b\x50\x18\x18\xb3\xfe\x1c\xe8\x75\x75\x60\xc8\xab\x67\x71\x4c\x63\xec\xb4\x52\x76\xc9\xab\x67\x21\xf7\x9e\x48\x7e\xf6\xe0\x6e\x3d\xe5\xe2\xe2\x82\x4a\xd8\x49\x22\xeb\xcf\x5d\x5f\x94\x37\x86\xad\x9c\x1c\xda\x9b\xea\xd2\xe9\xbd\xd8\x58\x9c\x16\xa5\xe8\x2f\x72\x8d\xd6\x66\xd0\xac\x62\xb8\x5f\x25\x94\x8a\x96\xf6\x25\x40\xb5\x96\x90\x7a\x9d\x15\xa6\xa3\x43\x44\x46\xf6\xa2\x5c\xc6\x30\x3d\x42\x9c\x93\x93\x33\x7c\xd3\x08\xd8\xd7\x3f\x55\x8b\x54\x73\x71\x39\xb9\xdc\x9f\xed\x25\xaa\x84\x96\xf7\xb7\xb6\x77\x74\x74\xd4\xd5\x25\x6f\xb4\x94\xeb\x57\x73\xbf\x6b\xd8\xb9\x39\xdd\x58\x6c\x76\x3e\x5e\x2d\x31\xfc\x9c\xf7\x91\xae\xd5\x31\x21\x8d\x94\x3a\xeb\x52\x8c\xfd\x8b\x54\x6b\xe5\x0e\xc3\x9a\x97\xa8\x56\x8e\x48\x9b\xf7\xf1\x0a\x87\x7e\xd5\x89\x04\x8f\x1d\xe9\xdf\x3d\xfe\x04\x25\xf3\xc1\x44\xea\xd0\x78\x4b\x01\x4a\x66\x1a\x9e\xe4\xbf\x4d\x79\xd1\x31\x31\xa1\x8c\xeb\xcc\xad\x36\x8e\x42\x54\x62\x8d\xfc\x8a\xda\x5c\xef\x9b\x14\xbe\x3d\x31\xb7\x7a\x04\x86\x7a\xa7\x8c\xae\xf5\x45\xf5\x82\x72\x35\xb7\x3b\x7c\xcf\x47\xf3\x24\x71\xb1\x98\x16\xa4\xeb\xe7\x73\x3e\x7e\x44\xa5\xa5\xd2\xaf\x32\x12\x75\x41\xca\x8c\x1f\xac\x74\xde\xeb\x9b\x04\x62\xc0\x24\x34\x26\x5f\xbd\x7a\x15\x3d\x87\x5a\x3f\xdf\xe1\xb8\x28\x34\x5e\x40\x87\xb5\x3f\x5b\x1d\x25\x6e\x61\x48\xba\xa5\x1e\x5b\x08\xad\x86\x49\x06\xdc\xb8\xb8\x6c\x8e\x17\xc8\xcb\x47\xe1\x63\xd0\x26\xd7\xd4\xd4\x38\x2e\x36\x35\x3a\x2e\x92\x82\x2a\xde\x35\xda\xf5\x45\xe2\xad\xaf\x3a\x35\xb7\xd7\xd4\x7c\x80\x93\xbb\x66\xc7\x61\x4d\x2a\x84\xdb\xe2\x9c\x20\x7e\x42\x8e\x9e\x4b\x36\xbc\x08\x00\x93\x6d\x9e\x53\xdd\x63\x69\x94\x97\xee\x63\x92\xb3\xcd\xce\x26\xe3\xd9\x74\x58\xb4\x01\x27\xbd\x65\x7a\xe5\xe3\xb8\xb8\x45\xce\xab\x5d\xcf\x0f\xdb\xd2\xb2\x3a\xaf\xb5\xf1\x89\x0e\x16\x1a\xf7\x3b\xaf\x57\xec\x77\xbc\x80\x7d\x42\x8e\x0b\x80\x8c\x95\x87\xb5\x28\xda\x7f\xd2\xe5\xc4\xae\x43\x29\x65\xb0\xbf\x3f\xe0\x72\x5a\xdf\xa5\x4c\x18\x9b\x2d\x36\x39\x7b\xa1\xbf\x9d\x80\xd2\x8b\x93\xd8\x7d\x5b\x1f\x0a\x15\x52\xd0\x02\x29\x18\x18\x90\xe7\x58\xc4\x6f\x88\x64\xc2\x92\x79\x8d\x72\xf8\x0b\xe5\x93\x99\xc2\xc2\xc2\xd6\xf0\x07\x38\xb7\xa3\x79\xd5\x77\x06\xaa\x39\x1f\xf4\x52\x40\xf9\xe7\x31\xb5\x9c\xd9\xe9\xe9\x5e\x07\x73\xbc\x6f\x64\x4c\x7f\x7e\xa0\x7f\x7e\x5c\x7d\xe6\x12\x52\x4d\x0e\xf7\xe4\xe8\xf2\xd8\xc1\x4e\x53\x8b\xe0\xf6\xf9\xeb\x21\x36\xa1\x93\xfe\x05\x60\x4d\x5e\x5c\x57\xf7\xc7\x3b\xa1\x7b\xfb\xfd\x39\x6d\x6c\xfc\x26\x35\xb4\x9c\x64\xb4\x3e\xfa\x9b\x73\x3e\x8a\x4c\xa9\x59\x35\x1d\xdd\xc9\xd3\x00\x22\x49\x34\x0f\xbf\x82\x30\x0d\x33\x71\x43\x62\xac\xaf\xd9\x87\x87\x08\x83\xa4\x98\xb0\x3d\x99\x38\x03\x21\x7e\xa1\xa8\xc5\x42\xaa\x14\xe6\xac\x4c\xd4\x43\xb0\xe9\x22\xd1\x75\x7c\x52\x11\xc9\x7c\xfa\x98\xf6\x55\x89\x8c\xfa\xf7\x9a\x1e\x09\x00\x95\xa6\x40\x04\x23\x38\xa8\x67\x1d\x2c\xfb\x32\xb9\x99\x65\xef\xdb\xe3\xeb\xce\xbf\x92\x99\xeb\x3c\xc1\xb7\xb8\x73\x95\xa2\x89\x29\x53\x0a\xe4\x22\x2e\xc8\xa5\x56\x77\xd9\xc9\x5d\x8f\x2a\xc3\x7a\xcc\xf4\x62\x1e\x58\x47\xf4\x8e\xc9\xd7\xb7\x9d\xe7\xa3\xe2\x93\xc5\x1a\xe8\xfa\x75\x75\x75\x4f\xa7\x49\xc1\x3d\x1f\x31\x9c\x3b\x2f\x49\x41\x57\xbc\xc0\xf6\x80\x5b\x3e\x39\xd7\xdf\xae\x4b\x91\x78\x54\x7c\x7c\x7c\x3d\x69\xc9\xc9\x84\x37\x9d\x0b\x0e\x4d\xcd\xab\x41\x54\x52\x42\x5e\x07\x73\x04\xc5\xc2\x9f\x5e\xd7\x85\x33\xb5\x2f\x77\x05\xdc\xba\xb5\xb0\x05\xc8\xc9\x7d\x1f\xcd\x15\x97\xad\x6f\x68\xf0\xb8\x3d\xdb\xec\x12\xff\x35\x7f\x78\x45\xc2\x01\xed\xa1\x08\x5f\x6c\x76\x7e\x99\x74\x72\xb4\xdc\x6e\x6b\x6b\xeb\xd2\x10\xc1\x69\x4a\x2e\x64\xd6\x1f\xad\x0f\xf3\xc5\x08\x5a\xa7\x7d\xbe\x51\x76\x71\xeb\x87\x38\x8c\xe6\x88\xaa\xaa\xaa\x06\xbd\x2a\x9f\xd8\x04\x6a\x7d\x96\xe2\x72\x75\x4a\x95\x78\xed\x44\x72\x6f\x9d\xe7\x5b\xdc\xd4\x44\x7a\xaa\xa0\x4a\xe2\xaf\x75\x63\x66\x75\xe5\xb8\xf7\xac\xf4\xee\x1d\xa5\x99\x04\xac\x7c\x4e\x5f\x4f\xaf\xb7\x4a\x5d\x56\x56\xb6\xb4\xb4\xd4\xe5\xe5\x6c\x95\x71\xd8\xa6\x19\x78\xd0\xfb\x78\x25\xc1\xc7\xcc\xd3\xb3\xb1\x3f\x2f\x25\x39\x19\x8d\x68\xa9\xc3\xb7\xde\xb0\xde\x0a\xd2\x9b\x48\x2d\x6e\x8a\xf8\xfd\xfb\xf5\x05\xbd\x53\x2f\x02\x03\x12\x18\x14\xd4\xa5\x80\x71\x8e\xab\x5b\x9b\x11\xc0\x4e\x13\x44\x72\x1f\xe5\x4c\xa8\x3d\x8e\x25\xd1\x9a\x18\x84\x83\x86\xf3\x1f\x07\x48\x5d\xf9\xdc\xf5\xde\x34\x6e\x3a\xf9\xf7\xef\xdf\xff\x49\xa3\xac\xb4\xb4\xb4\xba\xa5\x72\xdf\x3c\x69\xef\x23\xb0\x03\xca\x2b\x1e\x1e\x5a\x7e\xab\xf8\x0a\x6d\x55\x31\x89\xe0\xa7\x8e\x1d\x2c\x66\x06\x31\xb1\x36\xff\xeb\xa3\x68\xae\xec\x6d\x5f\x1f\x1c\x42\x17\xf0\x8b\x92\x8f\x97\x00\x45\x6d\x74\x4c\xa0\xcd\x44\x21\x46\xcb\x7a\xc9\x30\x9b\xa2\xf6\xe3\xfd\x75\xd4\x25\xd2\xae\x91\x92\x06\x6e\x68\x48\xd1\xa6\x52\x38\xef\x10\xf4\x74\xbb\x1d\x9a\x10\x6d\x39\x7f\x70\x70\x90\x95\x45\x29\xf3\x46\x57\x17\xe0\x6d\xd3\xf8\xee\xfe\x72\xff\xc5\xa0\xdd\xbf\x1f\x05\x10\x10\x10\x74\xfa\x5d\x26\x7b\x6b\x2a\xc4\x99\x12\xae\x19\x97\x4f\x5b\x59\x59\xb5\xd1\x07\x9c\x0d\xb1\xb2\x63\xc1\xc2\xfa\x98\xbe\xb7\x4f\xee\x82\x25\xfd\x04\x96\xfa\xa6\x4a\x75\x8c\xb9\x33\xda\x6b\x6b\xde\x55\x8e\x49\x3f\x4b\x3c\xf4\xc7\x10\xb1\x8a\x81\xf1\xfb\xb9\x4a\x4b\x4b\xd9\x99\x98\xac\xf8\x62\x4e\xb8\x95\x4c\x7a\xa9\x63\x83\x22\x50\xdc\x22\xbc\xc7\xf0\x67\xab\x8c\xe3\x60\x16\x31\x27\xa3\xe7\x12\x01\xfe\x8a\x8a\x8a\x63\x79\x92\x70\x3f\xf0\xe0\x1a\x3e\x11\x21\x21\x0e\x2e\x2e\x6a\xe7\xf0\x66\x16\xaf\x39\xe6\x6b\x88\xc3\x1c\x24\xaa\x8f\x5e\xd9\x2b\xc3\x70\x00\x76\xa1\x18\xee\xf8\xdb\xac\xd6\xd8\x30\x57\xa5\x07\x02\x5c\x42\x1f\x3b\xef\xe9\xab\x27\x08\xd1\x93\x62\x70\x01\xeb\x97\x4f\xdb\x50\x95\x7d\xd6\x39\xe1\x9f\xf9\x63\x1f\xe5\x46\x66\x78\x91\x8c\xa1\x31\xb6\x7b\x2e\xf1\xd2\xfb\x27\x24\xfe\x6f\xa3\x1f\xe1\x4f\x49\xc2\x57\x7c\xe9\x88\x10\x99\xff\x98\xf1\xba\x95\x6c\xd2\xd4\x30\x02\x24\x14\x22\x5a\x96\x9d\xae\x25\x3d\xb1\x23\xe1\x98\x61\xa8\x47\xa1\x85\xdf\xb2\xb2\xb2\x94\x9c\x23\x0a\xa3\x19\xf7\x49\x13\x94\x18\x5d\x75\x64\x51\xfa\x20\x22\x9c\xdf\xc9\x40\x00\x38\xdf\x27\x05\x7d\xf0\x04\xbd\x5c\xb2\x50\xb2\xa5\x61\xfb\x32\xfe\xb1\xa0\x5f\x27\xcd\x0a\xde\xb4\x5d\xa3\xc5\x47\x47\x21\x2a\x87\x34\x37\x11\x70\x8d\x03\x77\xe8\x88\xd5\xa4\x5d\x63\xb4\xe8\xde\xa5\x5f\xf6\x08\xe6\x35\x5d\x31\x34\xa4\x3c\x6e\x38\x90\xf1\x89\x6f\xe6\xe7\x47\xc6\x24\x5a\x69\xfc\xac\xeb\xe3\xd5\xcf\xe2\xde\xdc\x6d\x99\x42\xc0\x34\xb5\x46\xab\x11\x4a\xde\xdc\x9a\xe8\x83\x83\x03\x78\x5f\xe4\x6d\xd1\xdf\xf0\x04\xfa\x2e\xd3\xbb\x8b\xdd\x22\xa5\x84\xb3\x8f\x06\x20\x40\xca\x10\xd3\x7e\x00\x31\x2d\x6d\xb7\xf3\xaa\x54\xe6\x32\xb3\x1e\xd3\x58\x8e\x68\xbd\xcd\x04\x43\x8f\xaf\x52\x91\xeb\x64\xb1\x06\xb5\xb8\x17\x00\x90\xc2\xa2\x81\xa8\xe7\x5c\xed\x0a\xf4\x3f\x5a\x6a\x3d\xd1\xbe\xe3\x09\xbe\x1d\x56\xa6\x0d\x9c\x1a\x47\x11\xa0\x1c\xf9\x1e\x81\x4b\xd0\x4a\xf0\x6b\x78\xf8\x5f\xbb\x27\x22\xd9\xdf\x60\x3b\xb9\x35\x92\xfd\x22\x4b\xa9\x88\x80\xf8\xcf\x29\xc1\x13\x1f\xd4\x47\x52\xa6\xbe\xa1\x41\x37\x9d\x29\x0e\x4e\x7e\xe0\xce\xba\x65\xd6\xe2\xb2\xf6\xbd\x6f\x2a\x4f\xb8\x5a\x19\x79\x37\x6b\x23\x40\x98\x9d\x04\x68\x6c\x6c\x24\xe3\x81\x85\x17\x79\x30\x55\xe9\x6a\x5f\xa2\x68\x74\xc2\x78\xd6\x0e\x16\x2f\x6d\xbe\x05\x17\x4d\x90\x93\x91\x45\x61\xdd\xbf\x62\x63\xfb\x39\x32\x12\x61\x1c\x06\xf3\x3f\x14\x94\xee\x0b\xa7\x51\xa4\xd8\xc7\x6e\x1e\x7a\x10\x2b\x7e\x66\xe3\x4b\x47\x98\xa0\xfe\xe7\x18\xff\x67\x4a\x2d\x79\xe4\x7c\xa7\xbf\x70\x61\x9d\xb9\x86\x24\x92\x23\xec\xc5\xcb\x48\x6f\xfb\xd8\x42\xa9\xbb\x1d\xc6\xf0\x36\xc2\xd1\x5e\xce\x5f\x44\x43\x43\x43\x2e\x31\xfc\x02\x22\x89\xf7\x57\x8b\xce\xb8\xb8\xb8\xbd\x69\x4b\x4b\x4b\x97\xfb\xb3\x61\xac\x76\x8d\x0b\x19\x30\x3f\xec\x74\x5c\xad\xcf\x52\xb9\xb9\xb9\x87\xe6\xcf\x66\xf8\x1b\xb5\xe6\x83\x0c\xc5\x1f\x72\x73\x13\xbe\xd5\x27\xc1\xe7\x32\x79\xcd\x4d\xeb\xb5\xb2\x85\x1c\x49\xb9\x8d\xb0\xbe\xf8\x57\x42\x71\xd5\x75\xcd\xfc\xca\x82\x1f\xf7\x4d\xf2\x0d\x61\xb0\x44\x95\xb4\x7d\xec\xac\x62\xef\x83\xb9\xd0\x9f\x35\x03\xae\x4b\xa9\xaf\x74\x90\xe6\x56\xb6\xb6\xaf\x0a\x0b\xc5\x15\xb5\x89\x58\x35\xe3\x63\x62\x64\x25\x49\x2a\x33\xaf\x2f\x06\x93\xe3\x5e\x4a\x3f\x80\x8e\x4e\x0e\xe6\xeb\x77\x7e\xe5\x10\x0a\xfc\xcf\x79\x6d\xd7\x7b\x42\x23\x6e\xb2\x85\x29\x72\x02\x02\xd7\xc3\x05\xc1\x1b\xd2\x16\x9c\x6e\x9e\x13\x81\x5d\x95\x0f\xe9\xe9\x91\x2d\xcb\x64\x29\x89\x00\x97\xf4\x26\x99\x7c\x8d\x6c\x21\x66\x66\xe6\x13\x22\xf8\xac\xba\x16\xf9\xff\x18\xbe\x06\x2b\xfe\xcf\xf0\xd5\x8d\x62\x2e\x79\x77\xdb\x86\x1e\xcb\x6a\x71\x07\x0b\xf7\xae\x84\x2e\x56\x19\x8b\xb7\x52\x70\xc2\x55\xd6\x45\xa7\xed\x3c\xdb\xbd\x0e\x03\xb4\xb2\x09\x28\x29\xdf\x41\xa1\x98\x59\x08\x3a\x05\x05\x85\xf0\xa8\x28\x46\x98\x96\x83\x03\xe7\x77\x46\x76\x4e\xce\x8a\xa1\x5c\x82\xf1\x37\xa5\xba\xae\xae\xae\x3d\xf1\xf2\x20\xc0\x3b\x07\x4b\xc3\xa6\x2f\x5f\x00\x5e\xdc\x21\xcb\xc3\x0a\x09\xf6\x46\x46\x39\xc7\xbc\xc7\xe0\xc1\xb4\xf4\x74\xb4\xaf\x1c\x91\x70\x38\x1c\x6e\x55\x4f\xc1\xf6\x3b\x4b\xd0\xde\x6b\x7b\xf4\xb9\x34\xb7\x60\x72\x17\x29\xe8\x21\x02\xfe\xfa\xf5\x6b\x1d\xb1\x83\x94\xa5\xc6\x95\xb2\xe5\x8b\xb3\xb9\x58\x15\x15\x15\x19\x9f\x69\xdf\xc2\xba\x3a\xb7\xab\x83\x79\x99\xca\x78\xf8\x5c\x9d\xe5\x30\xb2\x85\x0e\x9b\x2d\xf6\x5d\xad\x19\x86\xc6\xe4\xcb\xbf\x12\xbc\x35\x43\xd7\xfc\x56\x29\xf9\x96\xc3\xe9\xf7\x57\x87\xe8\xdb\x6f\x26\xd8\xc2\xf3\x9b\x17\x0f\xdd\xb7\x47\x23\xea\x57\xd5\x46\x43\x6a\x6b\x6b\x4d\x82\x6e\x2d\x2d\x2c\xbe\x24\xd1\x76\xb7\xb5\xb5\xfd\xfd\x6b\x21\x62\x64\xb7\xd4\xe2\x6a\x6b\x6b\x8b\xbc\x4a\x4e\x4e\x9e\xaf\xb7\xee\xdb\xa5\x5f\xf1\x3f\xee\x9c\x9a\xd2\x95\xf9\x90\x96\x26\xe8\xb9\xa7\xeb\x81\x86\x85\xdd\x01\x21\x55\xd4\x4e\x2e\xaa\xfe\xfc\xa6\x7c\x3a\x19\x8b\xa8\xfa\x5b\x55\x55\x64\xa0\xc8\xa1\x97\xb8\x99\xac\x2b\x58\x99\x98\xea\x4e\x51\x26\xd9\x42\x57\x37\xf5\x18\xf5\x00\x41\xa7\x0b\x85\x32\x2c\x41\xb1\x11\xd1\xb1\xb1\x67\x81\x14\xcc\x2c\x8e\xb2\x20\x0f\x31\x63\x0f\x0f\x81\x16\xb3\xe6\x45\x2e\x52\xdc\x07\x85\x34\x35\x0c\xa2\xfc\xe6\xe8\x17\x72\x04\x2b\x24\xff\xb5\xdf\xda\x99\x49\x40\xb4\xbf\x1e\xcb\x95\x7d\x33\x06\xf6\xb4\x58\xc8\x27\x13\x7f\x8b\x79\xac\x3d\x3b\x3b\x9b\xa9\x32\xbe\x87\xe8\x20\xaf\xf7\x67\x5f\x5e\x01\x70\xb0\xb1\x0d\x9b\x9d\xa8\x0f\x6a\x22\xbc\xb6\x4d\x0d\xaf\x9c\x83\xef\xa9\x38\xbf\x5d\xed\x4e\x5a\x3f\x3d\xdc\x46\x7b\x7e\x12\x71\x35\x93\x93\x43\xb3\x21\x25\x23\xab\x36\x6a\xfd\xe3\x9d\x1d\xb3\xec\x64\xd2\xea\xc6\x7c\x80\x98\x29\xd6\xc8\xa6\x16\xf7\x0a\x29\x26\x9f\x3a\x6e\x9f\x14\xd3\x98\x74\x33\xfe\x25\xe4\xbc\x92\x93\x96\x86\x91\x65\xdc\xe6\x61\xd8\xe2\x52\x20\x1d\xb5\x7a\x71\x71\x61\x3e\x98\x18\x6a\xe5\xe3\x73\x53\xac\x91\x1d\x52\x8d\xaf\x9a\xec\x02\xdb\x7b\x81\x5e\x99\x79\xbd\xfa\x85\x91\x4c\xa7\xf8\x35\x81\xbb\x83\x00\x7e\x1e\x4b\xae\x6a\x0a\x4b\xcc\x2b\x81\x80\xfe\xaf\xea\x19\x12\x3a\xb0\xde\x13\xfe\xfe\x95\x60\x89\xcb\x29\x1d\xef\xe3\x95\x08\x5a\x5e\xcb\x5f\xc4\x99\xa6\x37\x27\x6b\x9a\x25\x44\x0f\xb3\x76\x8d\x52\xe7\xbf\xf9\x21\xa1\xb3\x20\x7f\x6c\x4c\x3c\x4a\xa6\xbb\x96\x3b\x7c\x4b\x0e\xdd\xff\xba\x8d\xf7\x51\x6f\x48\x0c\x8c\x83\x4e\x89\x42\x24\x82\x39\x93\x99\xda\xbd\x8f\xf1\xf5\x6b\xaf\x89\x24\xc6\x4c\x3a\x7c\x08\xaa\x6c\x10\x91\x74\x58\xad\xad\xad\x2e\x7c\xec\xd8\x22\x89\x71\x09\x09\x11\x29\x8b\x4a\x8a\x8a\xd4\xa2\x6e\x80\x5e\x8e\xc3\x85\x46\xfb\xe5\x36\x41\x9b\xbd\xcb\xbb\xde\xb0\x17\x7d\x83\x18\xd8\xc8\x77\x74\x85\xf8\xad\xce\xab\x5d\x32\xc6\x31\x70\x83\x6c\x21\x47\xa4\x79\x6a\xaf\xa9\x8a\x9a\x9a\xdc\x97\x8c\xca\x6f\xdf\x7e\x0e\x0d\x9d\x46\x91\xb4\x79\xec\xa2\x69\xb5\x2a\x27\xd1\xec\xb8\xc9\x33\x33\x33\x7f\xfa\xf4\x09\xf9\x6b\xb9\xdd\x7b\xed\x9c\x22\x12\x6e\xdc\xe6\x11\x93\x98\x88\x29\x1f\x1b\x17\x27\xee\xba\x0e\x70\x48\xdb\x9b\xa9\xcc\x26\x53\x14\x78\x07\x48\xc1\x3a\xf6\xeb\x7c\x1a\x2f\x90\xc7\x8f\xea\x9b\x57\xf8\x56\x56\x46\x29\xe6\xc1\x26\x41\xd3\x70\x32\x7a\xfe\x90\xcc\xac\xde\xf0\xae\xb2\x18\x35\xf3\x75\x71\x75\xf7\x13\x25\x0d\x5c\x49\x29\x12\x56\xed\x1c\x0d\x2b\x9a\xa8\x78\xd7\x88\x13\x04\x18\xae\x8b\xc6\x16\x03\xe3\x67\x0c\x33\x53\x14\x0c\x6f\x22\xb0\x97\x9c\x84\x5f\xf7\x9c\x4b\xf8\x11\x5c\x1d\x2d\xe3\x2a\xd3\xfb\x47\x94\x9c\x68\x4e\x0a\x48\xa0\x94\x4c\x62\xbf\xec\xd1\xf1\x29\x61\xc3\x81\xc9\xab\x02\xf0\x23\xe1\xef\x9b\x1c\x42\xc9\xd6\x7e\x7e\x64\x84\xc3\xe1\x21\x2b\x0e\x42\xd6\x96\x96\x05\xa2\xca\x5e\x97\x3c\x8d\xef\xf0\xd4\x38\x05\xb1\x2d\x98\x41\x83\x90\x78\x38\x79\xf8\x44\xec\xb6\x6f\x32\xd3\x1a\x01\x21\x80\x9e\xdb\x43\xbe\x59\x65\x1d\x84\x8d\xf8\x20\x2e\xeb\x61\x43\x1c\x09\xdf\x11\xb0\xa9\x6b\xd9\x0b\x95\x99\xad\xb8\x06\xe8\x24\x45\x3e\x71\x60\x21\x7e\xfa\xba\x3c\x57\xf9\x45\x6b\x24\x33\x75\x5a\xa3\x5c\x06\x0a\xe0\x10\xdf\xe0\xff\x87\x04\x9e\x30\x2b\xf8\x80\x8c\xea\x3c\x5a\xa0\xf0\xa5\x87\x3b\x42\x1b\x01\xca\x39\xfb\xbc\x6d\xdf\x86\xf4\x9c\xc2\x6f\x48\xa4\xa9\x08\x73\x4d\xdf\x5a\x88\xb7\x52\xf3\x22\x9e\x75\xde\x80\xab\x91\x13\xa8\x73\xd9\x49\xd9\xa1\x51\x24\x71\xdf\x43\xcc\x20\xcb\x4b\x2c\xf7\xe4\x69\x18\x12\x3f\x61\xa3\xf0\x6d\x6b\xa0\x42\x29\xff\x15\xe9\xd1\x75\xe0\x07\x4f\x4f\xcf\x1d\x1c\x69\xb3\x15\x14\x9f\x70\xf0\xa0\x61\x25\xd4\x65\xe0\xd0\x8b\x0a\x88\x99\xef\x1b\xf5\xec\x84\xf5\xc4\x07\xb5\xb2\x62\x11\xf3\x92\x41\x68\xe6\x8a\x39\x2e\xb5\x68\x1f\x65\x87\xf1\x5a\x8f\xe6\xd4\x9a\x0f\x22\xac\x9c\x9c\x8e\xca\xab\xbb\x62\x4f\xc0\x60\x11\x17\xe4\x47\x46\xe5\x90\xd7\x6f\x8c\x8d\x25\x9d\x57\x24\xe6\xac\xce\x76\x4b\x3e\xd3\x88\xba\x01\x04\x16\x9b\x1c\xdb\x7d\xcf\xad\x62\xa8\x28\xd0\xa0\xe5\x9e\x2b\x1d\xbe\xb7\xb7\xb7\x78\x04\x0d\x76\xd3\x7b\x45\x49\x52\x68\xca\xb6\x79\xdb\xfa\x15\x06\xae\x17\x3b\xda\x32\xe3\xad\xee\xdb\xcf\xb7\x9f\x9f\x3f\x32\x79\x84\xd4\x9a\x0f\x26\x26\x50\x09\x23\xac\x6c\x6d\x6d\xdd\xdc\xea\x8e\xe5\xd2\xac\xab\xec\xb1\xcd\xcc\xcc\x84\x9c\x57\xc0\x14\x14\xd8\x55\x07\x4b\xad\xe7\x1b\x49\xd2\x98\x23\x5e\x87\x0b\xbd\xac\x40\x04\x5d\x07\x4b\xc6\x79\x46\x2d\x3b\x3b\x3b\x12\x27\xae\xab\x67\xec\xce\xc0\xf5\x12\x45\x23\x99\x69\xa2\x3b\xaf\xe6\x3f\xce\xe5\x08\x05\x21\x9e\xf2\x17\x36\x6d\x46\xdc\x86\xb6\x8a\xfd\x7b\x9a\x35\x26\x79\x00\xa1\x6c\xbc\xa3\x37\x02\x05\x3d\x71\xa4\x14\x14\xf3\xf5\xd6\x5a\xe1\x58\x3c\x31\x4b\x6e\xad\x46\x3b\x4c\xdb\x6e\x05\xd0\xf2\x76\xaf\x43\x9c\xf7\x9e\x42\xce\x2b\xc0\xa4\x37\x25\x93\x9e\xc7\x2b\xc6\x33\xd0\xa2\x9f\xff\xb5\xe6\x6b\x31\x98\xdf\x9a\x50\xb7\xec\xfe\x38\x43\x3e\x3d\x06\x28\xe4\x6b\xbc\xed\x8a\x3f\xa9\xad\x7e\x22\xa1\xa0\xb8\x8d\x92\x7e\x40\xe5\x9e\x75\xbd\xdc\xd3\x13\xe9\xef\x0a\xbc\xbf\x62\x54\x8a\x47\xb1\xaf\x84\x96\xb3\x6a\xe5\x01\xef\xbd\xad\xad\xad\x3f\x8b\x7b\x57\x15\x3c\xf9\xe6\x49\x7b\xec\x80\x8c\x36\x5a\x3d\xf7\x67\x18\x95\x13\x01\x75\x4d\xef\x2a\x83\x6e\x37\x33\xd6\x08\x63\x09\xbf\xe9\x96\x8d\x49\x3f\x83\xb1\x10\x08\x3a\x62\x62\x62\xba\x8e\x67\x23\xee\x59\xe1\xd5\x00\xf4\x92\x6e\x39\xc0\x41\x1c\xb9\x54\x80\x08\xa7\x46\x46\x6a\x2a\x58\xc2\x07\x54\x80\x96\x16\x57\x57\x57\x37\x92\x2d\x1c\xb6\x81\xa6\xa8\xdd\x7d\x3b\xe2\x9c\xc5\xd7\x0f\x2b\x99\xa4\x96\x0e\x02\xb3\xcc\xb5\x79\x96\x57\xd0\xfb\x59\x69\x44\x26\x18\xbd\xec\xa5\x8d\xab\x7e\x11\x10\xc7\xd4\x2f\xc5\xcb\x3b\x61\x56\x1b\xf2\xec\x97\x2e\xf1\x09\x02\x47\x13\xeb\x87\xa1\xc5\x48\xa7\x5b\x7f\x3d\xe2\x35\xff\xd1\xb2\xec\x24\x63\x62\x6c\xbc\x5c\xa4\xfc\xd2\xb0\x9c\x7d\x28\x2b\xe0\xe6\x04\x6e\xf8\x03\xbd\x95\xfe\x4a\xa9\xe8\x74\xaa\x54\x67\xc7\x50\xfa\xca\x84\xb3\xf5\x24\x38\xfb\xc4\xfd\xf3\xd9\xa6\xd7\x73\xf3\xf7\x90\xa3\xd9\x2e\x1f\x76\xe9\x18\xbe\x74\x44\x14\xca\x7f\xc2\x93\xf4\x08\x55\x99\xf4\x30\x34\xa4\xa8\xf9\x36\x2e\x90\xd0\x74\x72\x22\x61\x02\x85\x62\x2e\x6a\x29\xbc\x64\x1f\x4f\x25\x1e\xb9\xc6\x19\xc3\x97\x97\x97\x9f\xe8\x9d\xd1\xd6\xd6\xae\xf9\x4b\x49\x4d\x9d\xb0\x62\x28\x27\x27\x67\xba\xcd\x1a\x09\xff\xf5\xeb\xd7\xc3\x04\x7f\xf6\x6b\x16\x83\x03\xfb\x95\x0e\x5f\x5b\xdb\x57\x35\x94\xd8\x08\xa4\xbf\xe7\x40\xe4\xc9\x1c\x3f\x14\x06\x83\xb9\xb9\xf1\x9d\x0c\x13\x01\x50\x0f\x85\x0c\x74\x74\xf8\x1d\x17\x1a\x3a\x3a\x24\x5c\x2c\x47\x73\x44\x57\x83\x9f\x25\x6d\xde\x12\x33\x73\x84\xe9\x1b\x1b\x2f\xff\xfe\xc4\xef\xbc\xd4\x82\x5a\xd5\xf1\x74\xb7\x1f\x47\xca\x65\x17\x4d\x33\x78\x2a\xfd\xb8\xab\x55\xa3\xa7\x56\x3e\x5d\x78\xc8\x3f\x34\x34\x74\x82\x5d\x94\x9f\x8f\x6c\xee\x7e\xe4\x0a\x70\x48\x8d\xc3\x26\x62\x79\xb8\x1d\x0b\xc6\x1c\xf9\xf3\xe7\xcf\xed\xf9\x76\x1f\x05\x03\xa5\xb1\x25\x11\xb2\xd6\x9a\xf3\x34\x2e\x82\xfb\xf9\xa5\x3c\x67\x1b\xc0\x1a\xeb\x07\x04\x48\x5d\x84\xc0\x1c\x3b\xbf\x3e\x5e\xcd\xd0\x65\x54\x5e\x25\xa4\xa1\xe1\xde\x8f\x51\x2a\x22\x28\x6e\x5e\x3c\x0c\x9a\x99\x16\x24\x07\xba\x44\x39\x35\xb7\x77\x74\x80\xf3\x10\xcf\x6f\x2c\xfe\xff\x43\x1d\x88\xa8\x11\x83\xee\x68\xca\xa1\xcf\x6e\x7d\xdd\x3e\x2d\xea\x21\x21\x79\x19\xb3\x75\x4b\xa8\xc2\xbb\x17\xc7\xab\x26\xe9\x67\x92\x0c\x0c\x72\x4e\xa7\x40\x72\x04\xdd\xc1\x7c\x3d\x2b\x3f\x3f\xd1\xeb\xdf\x66\xb5\xf9\xe7\xdf\x1f\x4f\xfa\x5e\xf2\x5b\x8f\x02\x38\x14\x27\x2f\x96\xdb\xbd\xe1\x88\xc0\xfb\xab\x5e\x52\xaa\x31\x56\x86\x3a\x85\x38\x54\x96\xe0\xa7\xf3\xcf\x70\xdb\xe6\x96\x16\x9f\x1f\xf1\x14\x2e\xf4\x41\x17\xf4\xfb\x7f\xbe\xaa\x07\x3f\xdf\xaf\x86\xda\xe3\xa9\x26\x4f\x16\x6b\xf8\x1f\x36\xce\xa2\xc8\x6e\x8f\xe6\x12\x34\x0f\x63\x44\xc2\x07\x93\x68\x3f\x8b\xba\xb3\x90\xc3\x8d\x8d\xa9\x25\x82\x80\x7d\x56\xbf\x33\x51\xc9\x0c\x3f\x86\x30\xa9\x7a\xa8\xde\xb2\x98\x56\x34\x5d\x9e\xe4\x76\x11\xec\x32\x9b\x9a\x92\x7b\x3d\x3d\xdc\x6a\x49\x3f\x4e\x5d\xbf\x97\x18\x0e\x55\xc1\x74\xa9\xa5\x49\xa0\x49\x56\xfb\xea\xb7\x16\x41\x86\xe4\xe0\x80\x56\x7c\x10\xfc\x9e\x9c\x9c\x7c\xb8\xd8\xdc\xc7\xac\xb5\x35\x92\xbd\x6d\x3d\x40\x00\x00\xc8\xb6\x04\x3d\xde\x35\xda\xcf\x82\x00\x8f\x77\x97\xd9\x52\x81\x62\x6d\x44\x17\x3a\x34\xdd\x95\xe3\xc1\x12\xeb\xed\x8b\xf2\xe4\x79\xcf\x49\x6f\x5e\x8b\xe1\x04\x51\xfc\xaf\xd1\xc5\xdc\x15\x9c\x91\x92\x32\x19\x2e\x9e\xb5\x78\xa8\xc4\xe1\x6b\x9b\xd5\xe5\x73\xca\xe0\xd2\x4c\x08\x90\xfd\xfa\x16\x8f\x52\x00\x0b\x34\xe7\xd0\x94\x93\x03\x5e\xed\x9c\x7a\x15\xfb\x8f\xf3\xa5\x3f\xca\x8d\x64\x09\x8a\xfb\x9e\x59\xc8\xb3\xab\xc9\x82\x98\xe6\x2b\x3d\xc4\x8c\x9b\x9d\x96\x43\x9c\x72\xe9\xb0\x44\x1c\x7a\x89\x38\x87\xf3\xa4\x83\xbb\x9a\x9a\x9a\x0a\x1e\x3a\x92\x73\x7e\xc1\x64\x41\x0a\xb3\x55\xc6\x96\x9f\x88\xec\xec\xed\xb5\x72\x44\x50\x31\x41\x84\x84\xc9\x99\x99\x6c\x1c\x0d\x06\x34\xe6\xad\xcb\x47\xcc\xea\xe9\x37\xa5\x57\x11\xf4\x58\x68\x6d\x7f\x82\x3d\x3d\x2f\x69\x9f\x4e\xa2\xde\x37\x3b\x85\x72\x1c\x77\x5e\xaf\xf4\x86\xbd\x90\xe5\x67\x65\xdd\xbe\xdd\xfe\x7c\x6d\x7c\x4e\x03\x06\x77\xd8\x4e\x16\xe3\x53\x8b\x09\xf8\xfd\x7e\xf1\x92\x26\x07\x02\x47\x43\xa4\x31\xd3\x78\x71\xbd\x6b\xf8\xf9\xf3\x67\x88\xa3\xfb\x8e\x7b\xed\xb2\x53\xf0\x46\x82\x30\xc8\xf9\xe3\xb6\xaf\x21\xbd\xb7\x58\xae\x53\x5f\x24\x5e\xb2\xdc\x95\xcd\x3f\x1c\xaa\x67\x70\x63\x8c\xa0\xa2\x63\x1e\x2c\x36\x6b\xa5\x27\x65\x1c\xe8\xd0\x67\xbd\xcc\x02\x17\x1e\xd3\x54\xbc\xe9\x81\x00\x9f\x56\xf2\x8b\x66\x25\x43\xe1\x99\xd0\xf2\xcb\xed\x38\xc5\xe4\x2f\x7d\x6b\x27\x8f\x54\xaf\x7e\x90\xfc\xf2\x33\x4b\x29\x79\x33\x65\x23\x50\x87\xd9\xe3\x0a\xee\xd8\xe2\xce\x50\x2f\x35\xab\x46\x7e\x0c\xf9\x6e\x80\x43\x83\xf2\x6c\x69\xc3\xf3\x9e\x5e\x16\xf4\xa4\xc0\x25\x8c\x46\x99\x80\x09\x2d\x8c\xa5\xa2\x3d\x81\x11\x0e\x2f\xf5\x01\xcc\x30\x08\x56\x73\x53\x28\xb5\x3f\x18\xa3\x21\xe8\xe2\x95\x8a\x8e\x0b\x70\x92\x6f\xfc\xb4\x3e\x30\xd9\x42\xc8\x2d\x86\x36\xf2\x24\x7b\x34\xc0\x83\x09\x4a\x8c\x2d\x3b\xea\x0a\x12\x40\xde\x12\xd0\x01\x6f\xf1\xb4\xdd\x26\x77\x16\x59\x91\x96\xb1\xf1\x72\xa3\xfd\xec\x43\xbc\xf1\x15\xb5\x59\x69\xce\xd5\xe1\x22\xfa\x44\x1a\x3c\x93\x43\xbf\xaa\xa7\xe4\xfb\xcd\xcd\xcd\xdc\x9c\x01\x44\xab\x7d\x39\x68\xf3\x17\xc9\xaa\xb2\x0a\x48\x61\x7b\x34\xf7\x71\x68\xee\xbd\xb6\x36\x6a\xbb\xbb\x6f\x84\x66\xc9\xfe\x9f\xaf\xb8\x0c\x88\xae\xb6\xb6\xbb\x1f\x09\x54\x4f\x6c\x5c\x8b\xcd\xce\xce\x42\xd9\xb2\x93\x66\xb5\x7f\xb7\xb6\x10\xf8\x9b\x9a\x86\xa0\xf0\xff\x99\x31\xaa\xf9\xc9\x92\x52\x6a\x3e\x98\x78\x46\xa8\x29\xb9\x6e\x67\x83\x91\xf4\xea\xff\xe1\x05\xfd\xff\x30\x14\x75\xf2\x8c\x86\x82\xf2\xfc\x6c\x3d\xb4\x93\xa2\xc5\xdd\x2d\x81\x82\x82\x82\xa2\xaa\xa8\xa9\x50\x25\x67\x8a\xf8\xff\x05\x00\x00\xff\xff\x03\x5e\x06\x03\xf6\x35\x00\x00") func _assetsTestsQrQrwithlogoPngBytes() ([]byte, error) { @@ -85,8 +149,8 @@ func _assetsTestsQrQrwithlogoPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "_assets/tests/qr/QRWithLogo.png", size: 13814, mode: os.FileMode(0644), modTime: time.Unix(1684560243, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc8, 0x9f, 0x71, 0xf7, 0x44, 0x33, 0xa3, 0x2a, 0x9c, 0xb4, 0xd7, 0x51, 0x9d, 0x1a, 0xdc, 0x36, 0x50, 0xfa, 0x17, 0x48, 0x3c, 0xa, 0xfe, 0xda, 0x6, 0x28, 0xe4, 0xef, 0x75, 0x64, 0x39, 0xf4}} + info := bindataFileInfo{name: "_assets/tests/qr/QRWithLogo.png", size: 13814, mode: os.FileMode(436), modTime: time.Unix(1696070017, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -105,8 +169,8 @@ func _assetsTestsQrDefaultqrPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "_assets/tests/qr/defaultQR.png", size: 12007, mode: os.FileMode(0644), modTime: time.Unix(1684410764, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x34, 0xfd, 0xc9, 0x88, 0xce, 0xea, 0xea, 0xa5, 0x97, 0x8b, 0x82, 0x5f, 0x40, 0x68, 0x75, 0xb8, 0x8, 0x50, 0xcd, 0xea, 0x7e, 0xd8, 0xba, 0xb7, 0x30, 0xa8, 0x4, 0x64, 0xb3, 0x8f, 0x33, 0x3a}} + info := bindataFileInfo{name: "_assets/tests/qr/defaultQR.png", size: 12007, mode: os.FileMode(436), modTime: time.Unix(1696070017, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -125,8 +189,28 @@ func _assetsTestsQrStatusPng() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "_assets/tests/qr/status.png", size: 9398, mode: os.FileMode(0644), modTime: time.Unix(1684410764, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x48, 0x2c, 0x42, 0xb2, 0x4d, 0x24, 0xbd, 0xcc, 0x98, 0x13, 0x6d, 0xbf, 0x9e, 0xb6, 0x9f, 0x26, 0x99, 0x63, 0x44, 0x60, 0x5b, 0x7, 0x42, 0x37, 0xa3, 0xff, 0x3, 0x97, 0xe, 0xeb, 0x8a}} + info := bindataFileInfo{name: "_assets/tests/qr/status.png", size: 9398, mode: os.FileMode(436), modTime: time.Unix(1696070017, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var __assetsTestsWikipediaIco = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x56\x4d\x4c\x63\x65\x17\x7e\xee\x00\x05\xe6\x83\xdc\x7e\x9a\x80\x18\xf9\x89\x33\x01\x92\xf9\x6b\x88\xb8\x41\xb0\x06\x12\x42\x62\x00\x77\x10\x23\xc3\x86\x20\x9b\x3a\x71\x41\x20\x9a\xa1\x26\x06\x58\x98\xca\x4c\x42\x22\x1b\x66\xdc\xa0\x6c\xca\x8c\x24\xb2\xc3\xea\x42\x5c\x90\x02\x33\x20\x61\xd3\x08\xb4\xa5\x2d\xbd\x0f\x1d\x34\x19\x9c\x18\xae\x39\xb7\xbd\xf4\xc7\x56\x43\x62\x74\xe3\x49\xb8\xe7\x9e\x87\xf7\xed\x79\xcf\xcf\xfb\x9c\x0b\x28\xc8\x83\xcd\x66\x85\x82\x7c\xbc\x6b\x01\x5e\x05\x50\x53\x13\xb7\x43\x17\x80\x59\x0b\x60\xb5\xc6\xed\x7a\x05\x18\x2f\x06\xea\x01\xd8\x00\xf4\x03\x06\x6e\x88\x05\x67\x62\x4d\x68\x45\x51\x50\x5e\x5e\x0e\x9b\xcd\x86\xf6\xf6\x76\xf4\xf4\xf4\x60\x70\x70\x10\xc3\xc3\xc3\x98\x98\x98\xc0\xf4\xf4\x34\xe6\xe7\xe7\xb1\xb4\xb4\x84\x95\x95\x15\x6c\x6f\x6f\x23\x14\x0a\xe1\xf4\xf4\xd4\xd8\xaf\xeb\xfa\x29\x33\xe4\x48\x17\xc9\x44\x45\xb2\xad\x4e\xec\xc8\x06\x93\xd9\x97\x93\x47\xe7\xc5\xb3\xc3\x49\xf9\x7e\x59\x9e\xda\xdb\x99\xf8\x3d\x87\x3c\x43\x96\x0c\x58\xb3\xbd\x28\x6a\x53\xf1\xa6\xe3\x87\x28\x10\x35\x05\x57\x3a\xbe\x09\xb8\x49\xad\x4b\xbf\x96\x8e\xaf\xe9\xff\x6f\x26\x23\x50\x7e\x4d\xc7\xdf\x53\x47\x8a\xc9\x2d\x14\xbd\x9c\xee\xb6\xfa\xc9\x72\x83\x8f\x0f\x70\xed\xd6\x72\x2a\x7e\x10\xcb\xe7\x3d\x17\xed\x70\x6d\xb4\xa4\xe2\xbb\x6a\x05\xf7\x2b\xa3\x38\xf6\x06\x4a\x52\xf1\x4f\xf5\x16\x1e\x16\xf8\xf5\x42\x46\xf3\x53\x71\xab\xe2\x22\xed\x53\x78\x8d\xb4\xa7\x44\x16\xc1\x31\x49\x0f\xe0\x20\xbf\xe9\x4b\xe2\x7b\x6a\x21\xc9\x00\x2e\x78\xc9\xfd\xca\x24\xfe\x10\x62\xf8\x21\x59\x0b\x3f\x4d\xe2\x76\xc8\x66\x8f\x6a\x2c\x7d\xce\x67\xc2\x51\x2b\xe4\xbd\x0b\x2f\x89\xe5\x3c\x4b\x5d\x50\xfd\x45\xfe\x5b\xad\x18\x39\xdd\xb8\x6e\xe2\x8f\xf4\xdf\x0c\xb7\x96\x37\xdc\x12\x7b\xb1\x89\x3b\x21\xc1\x7f\xab\x56\x3e\xe8\x94\x52\x98\x91\x69\xaf\xeb\x92\xac\x7e\xdc\x0e\xc8\x52\xcd\xd8\x25\x27\xab\x96\xa8\xa2\x37\x14\xdf\xe1\xf3\xe2\x7f\xc1\x11\xc7\xb7\xf4\x67\xe2\x1c\x45\xe4\xd8\x2c\xc9\xc7\x57\xe2\xf8\xe7\x31\x29\xde\x57\x12\xdb\xc3\xab\xd2\x14\xf1\xc8\x34\x3b\xc4\x5d\xbf\xee\x20\x37\x2d\x3e\x32\x1c\x6f\x8a\x1f\x63\xb2\x32\x5c\x8d\xdb\xe4\x77\xd2\x0f\x07\x68\x26\xf9\x75\x0d\xa0\x7c\x10\xe9\x86\x5e\x30\xfb\x83\x0d\x3f\x7f\x12\xe9\x86\xf2\x21\xd9\x70\xa9\xad\xad\xa1\x76\x4f\x9e\x57\xee\x5e\x6a\x6b\x95\xd7\xd6\xcb\xfc\xb7\xe4\xef\xba\x77\xb9\xee\x75\x4e\x1e\xc8\xc5\x1b\x39\x78\xc6\x60\xa1\x31\x20\x26\x5a\x05\x7e\x12\x5d\x08\x78\x44\xe7\x01\x4e\x83\xe4\xfe\xa8\xff\x93\x74\xc9\x95\x27\x33\x8f\x66\x5e\xcd\x3c\x9b\x79\x97\x39\x53\x03\xc0\x9e\x32\x67\x9c\x17\x92\xbf\x9b\x3a\x67\xca\xca\xca\x50\x57\x57\x87\xc6\xc6\x46\x63\xd6\xf4\xf6\xf6\x62\x60\x60\x00\x23\x23\x23\x98\x9c\x9c\xc4\xcc\xcc\x0c\xdc\x6e\x37\x56\x57\x57\x8d\x39\x13\x0e\x87\x53\xe6\x4c\x46\x3f\x64\x34\xc8\xe9\x9f\xf7\x63\x76\xfe\xdf\xf6\x91\xd1\x14\xa6\xee\xef\x23\xf7\x2e\x9e\x99\x1a\x4a\xc8\x85\x24\x41\x1e\x08\xb9\xdb\xd4\x33\x62\xdc\x38\x5e\xf0\x46\xf0\xb1\xc3\xb4\xa7\x8a\xf7\x1c\xfe\x27\x91\x52\xd3\xb6\x56\x45\x4a\xd6\x4e\xf8\x42\xc2\x8c\xc4\x5c\xac\xbd\x59\xc5\x8f\x12\xf6\xbe\xe2\xe3\x7d\xb8\xb8\x3e\x1b\xb7\xef\x3f\x25\x77\x15\x1f\x83\x09\x0a\xef\x2a\x25\xd7\x2d\xe4\x61\xfc\x44\x51\x21\xcf\x31\xa1\xd4\x57\x0c\x3b\x00\x2f\x35\x6b\xb7\x97\x5c\x30\x4e\xb4\x9e\x2f\x27\x7c\xd4\x47\xee\x1a\x27\x1a\x7b\x46\x6e\x14\x46\xfe\x47\x1e\x54\x1a\xa3\xa3\x85\xbc\x55\xca\xcb\xa4\x56\x24\xec\xa5\xbb\xa9\xa9\x0e\x2e\xb8\xc9\xb7\x7c\xe4\x86\xea\x63\x50\x5f\xe6\xda\x55\xf2\xe6\x3b\xdc\x57\xf5\x02\xde\xd0\x2b\x42\xd5\xfa\xec\x5d\x5d\xef\xcb\x9a\xbf\x73\xc8\x5f\xd5\x27\xb3\x9e\x99\xf5\x8e\x01\xaa\x07\xc8\x73\x02\x8a\xf3\x1f\xb8\xc1\xa6\x1f\xf1\x29\xbe\xeb\x13\xbd\x5c\x93\xd2\xe7\x1e\x64\xef\x73\xf9\x9e\x92\x3e\x6f\x6a\x6a\x42\x47\x47\x07\x86\x86\x86\x30\x3a\x3a\x8a\xf1\xf1\x71\xe3\x7b\x6a\x6e\x6e\x0e\x8b\x8b\x8b\x46\x9f\xef\xec\xec\x20\x18\x0c\x26\xfb\x3c\x11\x70\x22\x3f\x47\x64\x94\x34\x26\xe5\xae\x2b\x20\x73\x86\x53\x9d\xeb\x4d\xa2\x6b\xbf\x7c\x7f\x4b\xba\xaa\xc4\x5f\x11\xf0\x91\xfe\xce\x40\xd5\xa1\xcc\xe7\xe5\xbd\xeb\xec\x24\x5b\x79\xe7\x0b\x7e\x46\xed\xa2\x56\xef\xf7\xed\x73\xf1\xc4\x7f\xf2\xb8\xf9\xce\x9b\x39\xea\x62\xe6\x5f\xf7\xe4\x41\x75\x2a\x72\xc3\xcf\xf7\x27\x7b\x64\xef\xef\x01\x00\x00\xff\xff\xd8\xc1\x95\x6e\xae\x0a\x00\x00") + +func _assetsTestsWikipediaIcoBytes() ([]byte, error) { + return bindataRead( + __assetsTestsWikipediaIco, + "_assets/tests/wikipedia.ico", + ) +} + +func _assetsTestsWikipediaIco() (*asset, error) { + bytes, err := _assetsTestsWikipediaIcoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "_assets/tests/wikipedia.ico", size: 2734, mode: os.FileMode(436), modTime: time.Unix(1709831282, 0)} + a := &asset{bytes: bytes, info: info} return a, nil } @@ -134,8 +218,8 @@ func _assetsTestsQrStatusPng() (*asset, error) { // It returns an error if the asset could not be found or // could not be loaded. func Asset(name string) ([]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { a, err := f() if err != nil { return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) @@ -145,12 +229,6 @@ func Asset(name string) ([]byte, error) { return nil, fmt.Errorf("Asset %s not found", name) } -// AssetString returns the asset contents as a string (instead of a []byte). -func AssetString(name string) (string, error) { - data, err := Asset(name) - return string(data), err -} - // MustAsset is like Asset but panics when Asset would return an error. // It simplifies safe initialization of global variables. func MustAsset(name string) []byte { @@ -162,18 +240,12 @@ func MustAsset(name string) []byte { return a } -// MustAssetString is like AssetString but panics when Asset would return an -// error. It simplifies safe initialization of global variables. -func MustAssetString(name string) string { - return string(MustAsset(name)) -} - // AssetInfo loads and returns the asset info for the given name. // It returns an error if the asset could not be found or // could not be loaded. func AssetInfo(name string) (os.FileInfo, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { a, err := f() if err != nil { return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) @@ -183,33 +255,6 @@ func AssetInfo(name string) (os.FileInfo, error) { return nil, fmt.Errorf("AssetInfo %s not found", name) } -// AssetDigest returns the digest of the file with the given name. It returns an -// error if the asset could not be found or the digest could not be loaded. -func AssetDigest(name string) ([sha256.Size]byte, error) { - canonicalName := strings.Replace(name, "\\", "/", -1) - if f, ok := _bindata[canonicalName]; ok { - a, err := f() - if err != nil { - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s can't read by error: %v", name, err) - } - return a.digest, nil - } - return [sha256.Size]byte{}, fmt.Errorf("AssetDigest %s not found", name) -} - -// Digests returns a map of all known files and their checksums. -func Digests() (map[string][sha256.Size]byte, error) { - mp := make(map[string][sha256.Size]byte, len(_bindata)) - for name := range _bindata { - a, err := _bindata[name]() - if err != nil { - return nil, err - } - mp[name] = a.digest - } - return mp, nil -} - // AssetNames returns the names of the assets. func AssetNames() []string { names := make([]string, 0, len(_bindata)) @@ -221,34 +266,33 @@ func AssetNames() []string { // _bindata is a table, holding each asset generator, mapped to its name. var _bindata = map[string]func() (*asset, error){ + "_assets/tests/1.gif": _assetsTests1Gif, + "_assets/tests/2x1.png": _assetsTests2x1Png, + "_assets/tests/spin.gif": _assetsTestsSpinGif, "_assets/tests/qr/QRWithLogo.png": _assetsTestsQrQrwithlogoPng, - "_assets/tests/qr/defaultQR.png": _assetsTestsQrDefaultqrPng, - "_assets/tests/qr/status.png": _assetsTestsQrStatusPng, + "_assets/tests/qr/defaultQR.png": _assetsTestsQrDefaultqrPng, + "_assets/tests/qr/status.png": _assetsTestsQrStatusPng, + "_assets/tests/wikipedia.ico": _assetsTestsWikipediaIco, } -// AssetDebug is true if the assets were built with the debug flag enabled. -const AssetDebug = false - // AssetDir returns the file names below a certain // directory embedded in the file by go-bindata. // For example if you run go-bindata on data/... and data contains the // following hierarchy: -// -// data/ -// foo.txt -// img/ -// a.png -// b.png -// -// then AssetDir("data") would return []string{"foo.txt", "img"}, -// AssetDir("data/img") would return []string{"a.png", "b.png"}, -// AssetDir("foo.txt") and AssetDir("notexist") would return an error, and +// data/ +// foo.txt +// img/ +// a.png +// b.png +// then AssetDir("data") would return []string{"foo.txt", "img"} +// AssetDir("data/img") would return []string{"a.png", "b.png"} +// AssetDir("foo.txt") and AssetDir("notexist") would return an error // AssetDir("") will return []string{"data"}. func AssetDir(name string) ([]string, error) { node := _bintree if len(name) != 0 { - canonicalName := strings.Replace(name, "\\", "/", -1) - pathList := strings.Split(canonicalName, "/") + cannonicalName := strings.Replace(name, "\\", "/", -1) + pathList := strings.Split(cannonicalName, "/") for _, p := range pathList { node = node.Children[p] if node == nil { @@ -270,20 +314,23 @@ type bintree struct { Func func() (*asset, error) Children map[string]*bintree } - var _bintree = &bintree{nil, map[string]*bintree{ - "_assets": {nil, map[string]*bintree{ - "tests": {nil, map[string]*bintree{ - "qr": {nil, map[string]*bintree{ - "QRWithLogo.png": {_assetsTestsQrQrwithlogoPng, map[string]*bintree{}}, - "defaultQR.png": {_assetsTestsQrDefaultqrPng, map[string]*bintree{}}, - "status.png": {_assetsTestsQrStatusPng, map[string]*bintree{}}, + "_assets": &bintree{nil, map[string]*bintree{ + "tests": &bintree{nil, map[string]*bintree{ + "1.gif": &bintree{_assetsTests1Gif, map[string]*bintree{}}, + "2x1.png": &bintree{_assetsTests2x1Png, map[string]*bintree{}}, + "qr": &bintree{nil, map[string]*bintree{ + "QRWithLogo.png": &bintree{_assetsTestsQrQrwithlogoPng, map[string]*bintree{}}, + "defaultQR.png": &bintree{_assetsTestsQrDefaultqrPng, map[string]*bintree{}}, + "status.png": &bintree{_assetsTestsQrStatusPng, map[string]*bintree{}}, }}, + "spin.gif": &bintree{_assetsTestsSpinGif, map[string]*bintree{}}, + "wikipedia.ico": &bintree{_assetsTestsWikipediaIco, map[string]*bintree{}}, }}, }}, }} -// RestoreAsset restores an asset under the given directory. +// RestoreAsset restores an asset under the given directory func RestoreAsset(dir, name string) error { data, err := Asset(name) if err != nil { @@ -297,14 +344,18 @@ func RestoreAsset(dir, name string) error { if err != nil { return err } - err = os.WriteFile(_filePath(dir, name), data, info.Mode()) + err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) if err != nil { return err } - return os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) + err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) + if err != nil { + return err + } + return nil } -// RestoreAssets restores an asset under the given directory recursively. +// RestoreAssets restores an asset under the given directory recursively func RestoreAssets(dir, name string) error { children, err := AssetDir(name) // File @@ -322,6 +373,7 @@ func RestoreAssets(dir, name string) error { } func _filePath(dir, name string) string { - canonicalName := strings.Replace(name, "\\", "/", -1) - return filepath.Join(append([]string{dir}, strings.Split(canonicalName, "/")...)...) + cannonicalName := strings.Replace(name, "\\", "/", -1) + return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) } + diff --git a/protocol/common/message_linkpreview.go b/protocol/common/message_linkpreview.go index e10d962bd..04e42703e 100644 --- a/protocol/common/message_linkpreview.go +++ b/protocol/common/message_linkpreview.go @@ -15,8 +15,8 @@ type MakeMediaServerURLType func(msgID string, previewURL string, imageID MediaS type MakeMediaServerURLMessageWrapperType func(previewURL string, imageID MediaServerImageID) string type LinkPreviewThumbnail struct { - Width int `json:"width"` - Height int `json:"height"` + Width int `json:"width,omitempty"` + Height int `json:"height,omitempty"` // Non-empty when the thumbnail is available via the media server, i.e. after // the chat message is sent. URL string `json:"url,omitempty"` @@ -31,6 +31,7 @@ type LinkPreview struct { Hostname string `json:"hostname"` Title string `json:"title,omitempty"` Description string `json:"description,omitempty"` + Favicon LinkPreviewThumbnail `json:"favicon,omitempty"` Thumbnail LinkPreviewThumbnail `json:"thumbnail,omitempty"` } @@ -288,12 +289,19 @@ func (m *Message) ConvertLinkPreviewsToProto() ([]*protobuf.UnfurledLink, error) return nil, fmt.Errorf("invalid link preview, url='%s': %w", preview.URL, err) } - var payload []byte + var thumbnailPayload []byte + var faviconPayload []byte var err error if preview.Thumbnail.DataURI != "" { - payload, err = images.GetPayloadFromURI(preview.Thumbnail.DataURI) + thumbnailPayload, err = images.GetPayloadFromURI(preview.Thumbnail.DataURI) if err != nil { - return nil, fmt.Errorf("could not get data URI payload, url='%s': %w", preview.URL, err) + return nil, fmt.Errorf("could not get data URI payload for link preview thumbnail, url='%s': %w", preview.URL, err) + } + } + if preview.Favicon.DataURI != "" { + faviconPayload, err = images.GetPayloadFromURI(preview.Favicon.DataURI) + if err != nil { + return nil, fmt.Errorf("could not get data URI payload for link preview favicon, url='%s': %w", preview.URL, err) } } @@ -304,7 +312,8 @@ func (m *Message) ConvertLinkPreviewsToProto() ([]*protobuf.UnfurledLink, error) Description: preview.Description, ThumbnailWidth: uint32(preview.Thumbnail.Width), ThumbnailHeight: uint32(preview.Thumbnail.Height), - ThumbnailPayload: payload, + ThumbnailPayload: thumbnailPayload, + FaviconPayload: faviconPayload, } unfurledLinks = append(unfurledLinks, ul) } @@ -312,7 +321,8 @@ func (m *Message) ConvertLinkPreviewsToProto() ([]*protobuf.UnfurledLink, error) return unfurledLinks, nil } -func (m *Message) ConvertFromProtoToLinkPreviews(makeMediaServerURL func(msgID string, previewURL string) string) []LinkPreview { +func (m *Message) ConvertFromProtoToLinkPreviews(makeThumbnailMediaServerURL func(msgID string, previewURL string) string, + makeFaviconMediaServerURL func(msgID string, previewURL string) string) []LinkPreview { var links []*protobuf.UnfurledLink if links = m.GetUnfurledLinks(); links == nil { @@ -340,13 +350,20 @@ func (m *Message) ConvertFromProtoToLinkPreviews(makeMediaServerURL func(msgID s } mediaURL := "" if len(link.ThumbnailPayload) > 0 { - mediaURL = makeMediaServerURL(m.ID, link.Url) + mediaURL = makeThumbnailMediaServerURL(m.ID, link.Url) } if link.GetThumbnailPayload() != nil { lp.Thumbnail.Width = int(link.ThumbnailWidth) lp.Thumbnail.Height = int(link.ThumbnailHeight) lp.Thumbnail.URL = mediaURL } + faviconMediaURL := "" + if len(link.FaviconPayload) > 0 { + faviconMediaURL = makeFaviconMediaServerURL(m.ID, link.Url) + } + if link.GetFaviconPayload() != nil { + lp.Favicon.URL = faviconMediaURL + } previews = append(previews, lp) } diff --git a/protocol/common/message_test.go b/protocol/common/message_test.go index a2caec85a..cce0d707b 100644 --- a/protocol/common/message_test.go +++ b/protocol/common/message_test.go @@ -146,6 +146,9 @@ func TestConvertLinkPreviewsToProto(t *testing.T) { URL: "http://localhost:9999", DataURI: "data:image/png;base64,iVBORw0KGgoAAAANSUg=", }, + Favicon: LinkPreviewThumbnail{ + DataURI: "data:image/png;base64,iVBORw0KGgoAAAANSUg=", + }, }, }, } @@ -166,6 +169,10 @@ func TestConvertLinkPreviewsToProto(t *testing.T) { require.NoError(t, err) require.Equal(t, expectedPayload, l.ThumbnailPayload) + expectedFaviconPayload, err := base64.StdEncoding.DecodeString("iVBORw0KGgoAAAANSUg=") + require.NoError(t, err) + require.Equal(t, expectedFaviconPayload, l.FaviconPayload) + // Test any invalid link preview causes an early return. invalidPreview := validPreview invalidPreview.Title = "" @@ -178,7 +185,7 @@ func TestConvertLinkPreviewsToProto(t *testing.T) { invalidPreview.Thumbnail.DataURI = "data:hello/png,iVBOR" msg.LinkPreviews = []LinkPreview{invalidPreview} _, err = msg.ConvertLinkPreviewsToProto() - require.ErrorContains(t, err, "could not get data URI payload, url='https://github.com': wrong uri format") + require.ErrorContains(t, err, "could not get data URI payload for link preview thumbnail, url='https://github.com': wrong uri format") // Test thumbnail is optional. somePreview := validPreview @@ -196,6 +203,8 @@ func TestConvertFromProtoToLinkPreviews(t *testing.T) { thumbnailPayload, err := base64.StdEncoding.DecodeString("iVBORw0KGgoAAAANSUg=") require.NoError(t, err) + FaviconPayload, err := base64.StdEncoding.DecodeString("iVBORw0KGgoAAAANSUg=") + require.NoError(t, err) l := &protobuf.UnfurledLink{ Description: "GitHub is where people build software.", @@ -203,6 +212,7 @@ func TestConvertFromProtoToLinkPreviews(t *testing.T) { Type: protobuf.UnfurledLink_LINK, Url: "https://github.com", ThumbnailPayload: thumbnailPayload, + FaviconPayload: FaviconPayload, ThumbnailWidth: 100, ThumbnailHeight: 200, } @@ -217,7 +227,7 @@ func TestConvertFromProtoToLinkPreviews(t *testing.T) { return "https://localhost:6666/" + msgID + "-" + linkURL } - previews := msg.ConvertFromProtoToLinkPreviews(urlMaker) + previews := msg.ConvertFromProtoToLinkPreviews(urlMaker, urlMaker) require.Len(t, previews, 1) p := previews[0] require.Equal(t, l.Type, p.Type) @@ -230,11 +240,12 @@ func TestConvertFromProtoToLinkPreviews(t *testing.T) { // fetched from the media server. require.Equal(t, "", p.Thumbnail.DataURI) require.Equal(t, "https://localhost:6666/42-https://github.com", p.Thumbnail.URL) + require.Equal(t, "https://localhost:6666/42-https://github.com", p.Favicon.URL) // Test when the URL is not parseable by url.Parse. l.Url = "postgres://user:abc{DEf1=ghi@example.com:5432/db?sslmode=require" msg.ChatMessage.UnfurledLinks = []*protobuf.UnfurledLink{l} - previews = msg.ConvertFromProtoToLinkPreviews(urlMaker) + previews = msg.ConvertFromProtoToLinkPreviews(urlMaker, urlMaker) require.Len(t, previews, 1) p = previews[0] require.Equal(t, l.Url, p.Hostname) @@ -246,7 +257,7 @@ func TestConvertFromProtoToLinkPreviews(t *testing.T) { Url: "https://github.com", } msg.ChatMessage.UnfurledLinks = []*protobuf.UnfurledLink{l} - previews = msg.ConvertFromProtoToLinkPreviews(urlMaker) + previews = msg.ConvertFromProtoToLinkPreviews(urlMaker, urlMaker) require.Len(t, previews, 1) p = previews[0] require.Equal(t, 0, p.Thumbnail.Height) diff --git a/protocol/linkpreview_unfurler_opengraph.go b/protocol/linkpreview_unfurler_opengraph.go index 21d9053b3..ed7d47403 100644 --- a/protocol/linkpreview_unfurler_opengraph.go +++ b/protocol/linkpreview_unfurler_opengraph.go @@ -6,9 +6,11 @@ import ( "io/ioutil" "net/http" neturl "net/url" + "strings" "github.com/keighl/metabolize" "go.uber.org/zap" + "golang.org/x/net/html" "github.com/status-im/status-go/images" "github.com/status-im/status-go/protocol/common" @@ -38,6 +40,43 @@ func NewOpenGraphUnfurler(URL *neturl.URL, logger *zap.Logger, httpClient *http. } } +func GetFavicon(bodyBytes []byte) string { + htmlTokens := html.NewTokenizer(bytes.NewBuffer(bodyBytes)) +loop: + for { + tt := htmlTokens.Next() + switch tt { + case html.ErrorToken: + break loop + case html.StartTagToken: + t := htmlTokens.Token() + if t.Data != "link" { + continue + } + + isIcon := false + href := "" + for _, attr := range t.Attr { + k := attr.Key + v := attr.Val + if k == "rel" && (v == "icon" || v == "shortcut icon") { + isIcon = true + } else if k == "href" && + (strings.Contains(v, ".ico") || + strings.Contains(v, ".png") || + strings.Contains(v, ".svg")) { + href = v + } + } + + if isIcon && href != "" { + return href + } + } + } + return "" +} + func (u *OpenGraphUnfurler) Unfurl() (*common.LinkPreview, error) { preview := newDefaultLinkPreview(u.url) preview.Type = protobuf.UnfurledLink_LINK @@ -58,6 +97,13 @@ func (u *OpenGraphUnfurler) Unfurl() (*common.LinkPreview, error) { return preview, fmt.Errorf("failed to parse OpenGraph data") } + faviconPath := GetFavicon(bodyBytes) + t, err := fetchImage(u.logger, u.httpClient, faviconPath, false) + if err != nil { + u.logger.Info("failed to fetch favicon", zap.String("url", u.url.String()), zap.Error(err)) + } else { + preview.Favicon.DataURI = t.DataURI + } // There are URLs like https://wikipedia.org/ that don't have an OpenGraph // title tag, but article pages do. In the future, we can fallback to the // website's title by using the tag. @@ -66,7 +112,7 @@ func (u *OpenGraphUnfurler) Unfurl() (*common.LinkPreview, error) { } if ogMetadata.ThumbnailURL != "" { - t, err := fetchThumbnail(u.logger, u.httpClient, ogMetadata.ThumbnailURL) + t, err := fetchImage(u.logger, u.httpClient, ogMetadata.ThumbnailURL, true) if err != nil { // Given we want to fetch thumbnails on a best-effort basis, if an error // happens we simply log it. @@ -78,24 +124,25 @@ func (u *OpenGraphUnfurler) Unfurl() (*common.LinkPreview, error) { preview.Title = ogMetadata.Title preview.Description = ogMetadata.Description + return preview, nil } -func fetchThumbnail(logger *zap.Logger, httpClient *http.Client, url string) (common.LinkPreviewThumbnail, error) { +func fetchImage(logger *zap.Logger, httpClient *http.Client, url string, getDimensions bool) (common.LinkPreviewThumbnail, error) { var thumbnail common.LinkPreviewThumbnail imgBytes, err := fetchBody(logger, httpClient, url, nil) if err != nil { return thumbnail, fmt.Errorf("could not fetch thumbnail url='%s': %w", url, err) } - - width, height, err := images.GetImageDimensions(imgBytes) - if err != nil { - return thumbnail, fmt.Errorf("could not get image dimensions url='%s': %w", url, err) + if getDimensions { + width, height, err := images.GetImageDimensions(imgBytes) + if err != nil { + return thumbnail, fmt.Errorf("could not get image dimensions url='%s': %w", url, err) + } + thumbnail.Width = width + thumbnail.Height = height } - thumbnail.Width = width - thumbnail.Height = height - dataURI, err := images.GetPayloadDataURI(imgBytes) if err != nil { return thumbnail, fmt.Errorf("could not build data URI url='%s': %w", url, err) diff --git a/protocol/messenger.go b/protocol/messenger.go index 4efe166b0..41a0e4470 100644 --- a/protocol/messenger.go +++ b/protocol/messenger.go @@ -4342,8 +4342,7 @@ func (m *Messenger) prepareMessage(msg *common.Message, s *server.MediaServer) e if msg.ContentType == protobuf.ChatMessage_STICKER { msg.StickerLocalURL = s.MakeStickerURL(msg.GetSticker().Hash) } - - msg.LinkPreviews = msg.ConvertFromProtoToLinkPreviews(s.MakeLinkPreviewThumbnailURL) + msg.LinkPreviews = msg.ConvertFromProtoToLinkPreviews(s.MakeLinkPreviewThumbnailURL, s.MakeLinkPreviewFaviconURL) msg.StatusLinkPreviews = msg.ConvertFromProtoToStatusLinkPreviews(s.MakeStatusLinkPreviewThumbnailURL) return nil diff --git a/protocol/messenger_linkpreview_test.go b/protocol/messenger_linkpreview_test.go index 27e60ac6e..2299b2b37 100644 --- a/protocol/messenger_linkpreview_test.go +++ b/protocol/messenger_linkpreview_test.go @@ -198,6 +198,63 @@ func (s *MessengerLinkPreviewsTestSuite) readAsset(filename string) []byte { return b } +func (s *MessengerLinkPreviewsTestSuite) Test_GetFavicon() { + goodHTMLPNG := []byte( + ` + <html> + <head> + <link rel="shortcut icon" href="https://www.somehost.com/favicon.png"> + </head> + </html>`) + + goodHTMLSVG := []byte( + ` + <html> + <head> + <link rel="shortcut icon" href="https://www.somehost.com/favicon.svg"> + </head> + </html>`) + + goodHTMLICO := []byte( + ` + <html> + <head> + <link rel="shortcut icon" href="https://www.somehost.com/favicon.ico"> + </head> + </html>`) + + badHTMLNoRelAttr := []byte( + ` + <html> + <head> + <link href="https://www.somehost.com/favicon.png"> + </head> + </html>`) + + GoodHTMLRelAttributeIcon := []byte( + ` + <html> + <head> + <link rel="icon" href="https://www.somehost.com/favicon.png"> + </head> + </html>`) + + faviconPath := GetFavicon(goodHTMLPNG) + s.Require().Equal("https://www.somehost.com/favicon.png", faviconPath) + + faviconPath = GetFavicon(goodHTMLSVG) + s.Require().Equal("https://www.somehost.com/favicon.svg", faviconPath) + + faviconPath = GetFavicon(goodHTMLICO) + s.Require().Equal("https://www.somehost.com/favicon.ico", faviconPath) + + faviconPath = GetFavicon(GoodHTMLRelAttributeIcon) + s.Require().Equal("https://www.somehost.com/favicon.png", faviconPath) + + faviconPath = GetFavicon(badHTMLNoRelAttr) + s.Require().Equal("", faviconPath) +} + func (s *MessengerLinkPreviewsTestSuite) Test_UnfurlURLs_YouTube() { u := "https://www.youtube.com/watch?v=lE4UXdJSJM4" thumbnailURL := "https://i.ytimg.com/vi/lE4UXdJSJM4/maxresdefault.jpg" @@ -213,7 +270,7 @@ func (s *MessengerLinkPreviewsTestSuite) Test_UnfurlURLs_YouTube() { DataURI: "data:image/webp;base64,UklGRiQAAABXRUJQVlA4IBgAAAAwAQCdASoBAAEAAQAaJaQAA3AA/vpMgAA", }, } - + favicon := "https://www.youtube.com/s/desktop/87423d78/img/favicon.ico" transport := StubTransport{} transport.AddURLMatcher( u, @@ -223,9 +280,10 @@ func (s *MessengerLinkPreviewsTestSuite) Test_UnfurlURLs_YouTube() { <meta property="og:title" content="%s"> <meta property="og:description" content="%s"> <meta property="og:image" content="%s"> + <link rel="shortcut icon" href="%s"> </head> </html> - `, expected.Title, expected.Description, thumbnailURL)), + `, expected.Title, expected.Description, thumbnailURL, favicon)), nil, ) transport.AddURLMatcher(thumbnailURL, s.readAsset("1.jpg"), nil) @@ -245,6 +303,7 @@ func (s *MessengerLinkPreviewsTestSuite) Test_UnfurlURLs_YouTube() { s.Require().Equal(expected.Thumbnail.Width, preview.Thumbnail.Width) s.Require().Equal(expected.Thumbnail.Height, preview.Thumbnail.Height) s.Require().Equal(expected.Thumbnail.URL, preview.Thumbnail.URL) + s.Require().NotNil(preview.Favicon) s.assertContainsLongString(expected.Thumbnail.DataURI, preview.Thumbnail.DataURI, 100) } diff --git a/protocol/messenger_test.go b/protocol/messenger_test.go index 4f43be399..6e8cb41f2 100644 --- a/protocol/messenger_test.go +++ b/protocol/messenger_test.go @@ -2291,6 +2291,9 @@ func (s *MessengerSuite) TestSendMessageWithPreviews() { Width: 100, Height: 200, }, + Favicon: common.LinkPreviewThumbnail{ + DataURI: "data:image/png;base64,iVBORw0KGgoAAAANSUg=", + }, } inputMsg.LinkPreviews = []common.LinkPreview{preview} diff --git a/protocol/protobuf/chat_message.pb.go b/protocol/protobuf/chat_message.pb.go index c430b9f0f..6e8cd3e23 100644 --- a/protocol/protobuf/chat_message.pb.go +++ b/protocol/protobuf/chat_message.pb.go @@ -1225,6 +1225,7 @@ type UnfurledLink struct { ThumbnailWidth uint32 `protobuf:"varint,5,opt,name=thumbnail_width,json=thumbnailWidth,proto3" json:"thumbnail_width,omitempty"` ThumbnailHeight uint32 `protobuf:"varint,6,opt,name=thumbnail_height,json=thumbnailHeight,proto3" json:"thumbnail_height,omitempty"` Type UnfurledLink_LinkType `protobuf:"varint,7,opt,name=type,proto3,enum=protobuf.UnfurledLink_LinkType" json:"type,omitempty"` + FaviconPayload []byte `protobuf:"bytes,8,opt,name=favicon_payload,json=faviconPayload,proto3" json:"favicon_payload,omitempty"` } func (x *UnfurledLink) Reset() { @@ -1308,6 +1309,13 @@ func (x *UnfurledLink) GetType() UnfurledLink_LinkType { return UnfurledLink_LINK } +func (x *UnfurledLink) GetFaviconPayload() []byte { + if x != nil { + return x.FaviconPayload + } + return nil +} + type UnfurledStatusContactLink struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -2137,7 +2145,7 @@ var file_chat_message_proto_rawDesc = []byte{ 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x77, 0x69, 0x64, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x05, 0x77, 0x69, 0x64, 0x74, 0x68, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x22, 0xaf, 0x02, + 0x03, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x22, 0xd8, 0x02, 0x0a, 0x0c, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, @@ -2154,170 +2162,173 @@ var file_chat_message_proto_rawDesc = []byte{ 0x61, 0x69, 0x6c, 0x48, 0x65, 0x69, 0x67, 0x68, 0x74, 0x12, 0x33, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x1f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x2e, - 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x1f, - 0x0a, 0x08, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x08, 0x0a, 0x04, 0x4c, 0x49, - 0x4e, 0x4b, 0x10, 0x00, 0x12, 0x09, 0x0a, 0x05, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x10, 0x01, 0x22, - 0xb4, 0x01, 0x0a, 0x19, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x1d, 0x0a, - 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x0c, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, 0x4b, 0x65, 0x79, 0x12, 0x21, 0x0a, 0x0c, - 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, - 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, - 0x6e, 0x12, 0x33, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x1f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, - 0x6c, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, - 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x22, 0xae, 0x02, 0x0a, 0x1b, 0x55, 0x6e, 0x66, 0x75, 0x72, - 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, - 0x74, 0x79, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, - 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x63, 0x6f, - 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, - 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, - 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, - 0x0a, 0x0d, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x43, 0x6f, - 0x75, 0x6e, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x12, 0x33, 0x0a, 0x04, 0x69, 0x63, 0x6f, - 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, + 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x27, + 0x0a, 0x0f, 0x66, 0x61, 0x76, 0x69, 0x63, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, + 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0e, 0x66, 0x61, 0x76, 0x69, 0x63, 0x6f, 0x6e, + 0x50, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x22, 0x1f, 0x0a, 0x08, 0x4c, 0x69, 0x6e, 0x6b, 0x54, + 0x79, 0x70, 0x65, 0x12, 0x08, 0x0a, 0x04, 0x4c, 0x49, 0x4e, 0x4b, 0x10, 0x00, 0x12, 0x09, 0x0a, + 0x05, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x10, 0x01, 0x22, 0xb4, 0x01, 0x0a, 0x19, 0x55, 0x6e, 0x66, + 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x61, + 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x63, + 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x09, 0x70, 0x75, 0x62, 0x6c, + 0x69, 0x63, 0x4b, 0x65, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, + 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, + 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, + 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x33, 0x0a, 0x04, 0x69, 0x63, + 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, + 0x54, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x22, + 0xae, 0x02, 0x0a, 0x1b, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, + 0x75, 0x73, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x4c, 0x69, 0x6e, 0x6b, 0x12, + 0x21, 0x0a, 0x0c, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0b, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, + 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, + 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, + 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x23, 0x0a, 0x0d, 0x6d, 0x65, 0x6d, 0x62, 0x65, + 0x72, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0d, 0x52, 0x0c, + 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x14, 0x0a, 0x05, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x6f, 0x6c, + 0x6f, 0x72, 0x12, 0x33, 0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, + 0x72, 0x6c, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, + 0x6c, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12, 0x37, 0x0a, 0x06, 0x62, 0x61, 0x6e, 0x6e, 0x65, + 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x54, - 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x52, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x12, 0x37, - 0x0a, 0x06, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, + 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x52, 0x06, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, + 0x22, 0xf4, 0x01, 0x0a, 0x19, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, + 0x74, 0x75, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x21, + 0x0a, 0x0c, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x75, 0x75, 0x69, 0x64, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x55, 0x75, 0x69, + 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x05, 0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, + 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, + 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, + 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x63, 0x6f, 0x6c, + 0x6f, 0x72, 0x12, 0x43, 0x0a, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x18, + 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, + 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, + 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x09, 0x63, 0x6f, + 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x22, 0xfa, 0x01, 0x0a, 0x12, 0x55, 0x6e, 0x66, 0x75, + 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x10, + 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, + 0x12, 0x3f, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x23, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, + 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x61, + 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x48, 0x00, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, + 0x74, 0x12, 0x45, 0x0a, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, + 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, + 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x4c, 0x69, 0x6e, 0x6b, 0x48, 0x00, 0x52, 0x09, 0x63, + 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x12, 0x3f, 0x0a, 0x07, 0x63, 0x68, 0x61, 0x6e, + 0x6e, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, + 0x74, 0x75, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4c, 0x69, 0x6e, 0x6b, 0x48, 0x00, + 0x52, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x42, 0x09, 0x0a, 0x07, 0x70, 0x61, 0x79, + 0x6c, 0x6f, 0x61, 0x64, 0x22, 0x67, 0x0a, 0x13, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, + 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x12, 0x50, 0x0a, 0x15, 0x75, + 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x6c, + 0x69, 0x6e, 0x6b, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, + 0x61, 0x74, 0x75, 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x13, 0x75, 0x6e, 0x66, 0x75, 0x72, 0x6c, + 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x22, 0xad, 0x0b, + 0x0a, 0x0b, 0x43, 0x68, 0x61, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, + 0x05, 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x63, 0x6c, + 0x6f, 0x63, 0x6b, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, + 0x70, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x5f, 0x74, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x72, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x6f, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x6e, 0x73, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x73, 0x4e, 0x61, 0x6d, + 0x65, 0x12, 0x17, 0x0a, 0x07, 0x63, 0x68, 0x61, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x06, 0x63, 0x68, 0x61, 0x74, 0x49, 0x64, 0x12, 0x38, 0x0a, 0x0c, 0x6d, 0x65, + 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, + 0x32, 0x15, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x4d, 0x65, 0x73, 0x73, + 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, + 0x54, 0x79, 0x70, 0x65, 0x12, 0x44, 0x0a, 0x0c, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, + 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x43, 0x68, 0x61, 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, + 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x63, + 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x34, 0x0a, 0x07, 0x73, 0x74, + 0x69, 0x63, 0x6b, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x72, 0x4d, 0x65, + 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x07, 0x73, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x72, + 0x12, 0x2e, 0x0a, 0x05, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x16, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, + 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x05, 0x69, 0x6d, 0x61, 0x67, 0x65, + 0x12, 0x2e, 0x0a, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x16, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x6f, + 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, + 0x12, 0x1e, 0x0a, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, + 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, + 0x12, 0x43, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x72, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, + 0x61, 0x67, 0x65, 0x18, 0x63, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x72, 0x64, 0x4d, 0x65, 0x73, 0x73, + 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x0e, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x72, 0x64, 0x4d, 0x65, + 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x40, 0x0a, 0x0e, 0x62, 0x72, 0x69, 0x64, 0x67, 0x65, 0x5f, + 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x64, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x42, 0x72, 0x69, 0x64, 0x67, 0x65, 0x4d, + 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x0d, 0x62, 0x72, 0x69, 0x64, 0x67, 0x65, + 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x05, 0x67, 0x72, 0x61, 0x6e, 0x74, + 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0c, 0x42, 0x02, 0x18, 0x01, 0x52, 0x05, 0x67, 0x72, 0x61, 0x6e, + 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, + 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x70, 0x0a, 0x20, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x5f, + 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x61, 0x67, 0x61, 0x74, + 0x65, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, + 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x61, 0x67, 0x61, 0x74, + 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x1d, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x50, 0x72, 0x6f, 0x70, 0x61, 0x67, 0x61, 0x74, 0x65, + 0x64, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3d, 0x0a, 0x0e, 0x75, 0x6e, 0x66, 0x75, 0x72, 0x6c, + 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x73, 0x18, 0x10, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, - 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x52, - 0x06, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x22, 0xf4, 0x01, 0x0a, 0x19, 0x55, 0x6e, 0x66, 0x75, - 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, - 0x6c, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, - 0x5f, 0x75, 0x75, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x68, 0x61, - 0x6e, 0x6e, 0x65, 0x6c, 0x55, 0x75, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x6f, 0x6a, - 0x69, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x6f, 0x6a, 0x69, 0x12, 0x21, - 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, - 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x12, 0x43, 0x0a, 0x09, 0x63, 0x6f, 0x6d, - 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, - 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x4c, - 0x69, 0x6e, 0x6b, 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x22, 0xfa, - 0x01, 0x0a, 0x12, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x12, 0x3f, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x61, - 0x63, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x48, 0x00, 0x52, - 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x12, 0x45, 0x0a, 0x09, 0x63, 0x6f, 0x6d, 0x6d, - 0x75, 0x6e, 0x69, 0x74, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x72, + 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x0d, 0x75, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, + 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x12, 0x25, 0x0a, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x11, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, + 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, 0x61, 0x72, 0x64, 0x12, 0x51, 0x0a, 0x15, + 0x75, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, + 0x6c, 0x69, 0x6e, 0x6b, 0x73, 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x4c, 0x69, - 0x6e, 0x6b, 0x48, 0x00, 0x52, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x12, - 0x3f, 0x0a, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x23, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, 0x75, - 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, - 0x6c, 0x4c, 0x69, 0x6e, 0x6b, 0x48, 0x00, 0x52, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, - 0x42, 0x09, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x22, 0x67, 0x0a, 0x13, 0x55, - 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4c, 0x69, 0x6e, - 0x6b, 0x73, 0x12, 0x50, 0x0a, 0x15, 0x75, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x5f, 0x73, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x1c, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, 0x66, - 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x52, - 0x13, 0x75, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4c, - 0x69, 0x6e, 0x6b, 0x73, 0x22, 0xad, 0x0b, 0x0a, 0x0b, 0x43, 0x68, 0x61, 0x74, 0x4d, 0x65, 0x73, - 0x73, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x04, 0x52, 0x05, 0x63, 0x6c, 0x6f, 0x63, 0x6b, 0x12, 0x1c, 0x0a, 0x09, 0x74, 0x69, - 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x74, - 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1f, 0x0a, 0x0b, - 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0a, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x6f, 0x12, 0x19, 0x0a, - 0x08, 0x65, 0x6e, 0x73, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x07, 0x65, 0x6e, 0x73, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x63, 0x68, 0x61, 0x74, - 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x63, 0x68, 0x61, 0x74, 0x49, - 0x64, 0x12, 0x38, 0x0a, 0x0c, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, - 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x15, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, - 0x75, 0x66, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, - 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x44, 0x0a, 0x0c, 0x63, - 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, - 0x0e, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x43, 0x68, 0x61, - 0x74, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, - 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, - 0x65, 0x12, 0x34, 0x0a, 0x07, 0x73, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x18, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x74, - 0x69, 0x63, 0x6b, 0x65, 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x07, - 0x73, 0x74, 0x69, 0x63, 0x6b, 0x65, 0x72, 0x12, 0x2e, 0x0a, 0x05, 0x69, 0x6d, 0x61, 0x67, 0x65, - 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, - 0x52, 0x05, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x2e, 0x0a, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, - 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, - 0x66, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, - 0x52, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x12, 0x1e, 0x0a, 0x09, 0x63, 0x6f, 0x6d, 0x6d, 0x75, - 0x6e, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0c, 0x48, 0x00, 0x52, 0x09, 0x63, 0x6f, - 0x6d, 0x6d, 0x75, 0x6e, 0x69, 0x74, 0x79, 0x12, 0x43, 0x0a, 0x0f, 0x64, 0x69, 0x73, 0x63, 0x6f, - 0x72, 0x64, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x63, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x18, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x44, 0x69, 0x73, 0x63, - 0x6f, 0x72, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, 0x0e, 0x64, 0x69, - 0x73, 0x63, 0x6f, 0x72, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x40, 0x0a, 0x0e, - 0x62, 0x72, 0x69, 0x64, 0x67, 0x65, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x64, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, - 0x42, 0x72, 0x69, 0x64, 0x67, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x48, 0x00, 0x52, - 0x0d, 0x62, 0x72, 0x69, 0x64, 0x67, 0x65, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, - 0x0a, 0x05, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0c, 0x42, 0x02, 0x18, - 0x01, 0x52, 0x05, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, - 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, - 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x70, 0x0a, 0x20, 0x63, - 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x5f, 0x70, - 0x72, 0x6f, 0x70, 0x61, 0x67, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, - 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x50, - 0x72, 0x6f, 0x70, 0x61, 0x67, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x1d, - 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x50, 0x72, - 0x6f, 0x70, 0x61, 0x67, 0x61, 0x74, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3d, 0x0a, - 0x0e, 0x75, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x73, 0x18, - 0x10, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, - 0x2e, 0x55, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x0d, 0x75, - 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x12, 0x25, 0x0a, 0x05, - 0x73, 0x68, 0x61, 0x72, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x0f, 0x2e, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x64, 0x52, 0x05, 0x73, 0x68, - 0x61, 0x72, 0x64, 0x12, 0x51, 0x0a, 0x15, 0x75, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x5f, - 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x73, 0x18, 0x12, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x1d, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x55, 0x6e, - 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4c, 0x69, 0x6e, 0x6b, - 0x73, 0x52, 0x13, 0x75, 0x6e, 0x66, 0x75, 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x22, 0xd0, 0x03, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x65, - 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x14, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, - 0x4e, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x4e, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x00, - 0x12, 0x0e, 0x0a, 0x0a, 0x54, 0x45, 0x58, 0x54, 0x5f, 0x50, 0x4c, 0x41, 0x49, 0x4e, 0x10, 0x01, - 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x54, 0x49, 0x43, 0x4b, 0x45, 0x52, 0x10, 0x02, 0x12, 0x0a, 0x0a, - 0x06, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4d, 0x4f, - 0x4a, 0x49, 0x10, 0x04, 0x12, 0x17, 0x0a, 0x13, 0x54, 0x52, 0x41, 0x4e, 0x53, 0x41, 0x43, 0x54, - 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x41, 0x4e, 0x44, 0x10, 0x05, 0x12, 0x28, 0x0a, - 0x24, 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, - 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x4e, 0x54, 0x5f, 0x50, 0x52, 0x49, 0x56, 0x41, 0x54, 0x45, 0x5f, - 0x47, 0x52, 0x4f, 0x55, 0x50, 0x10, 0x06, 0x12, 0x09, 0x0a, 0x05, 0x49, 0x4d, 0x41, 0x47, 0x45, - 0x10, 0x07, 0x12, 0x09, 0x0a, 0x05, 0x41, 0x55, 0x44, 0x49, 0x4f, 0x10, 0x08, 0x12, 0x0d, 0x0a, - 0x09, 0x43, 0x4f, 0x4d, 0x4d, 0x55, 0x4e, 0x49, 0x54, 0x59, 0x10, 0x09, 0x12, 0x16, 0x0a, 0x12, - 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x47, - 0x41, 0x50, 0x10, 0x0a, 0x12, 0x13, 0x0a, 0x0f, 0x43, 0x4f, 0x4e, 0x54, 0x41, 0x43, 0x54, 0x5f, - 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x10, 0x0b, 0x12, 0x13, 0x0a, 0x0f, 0x44, 0x49, 0x53, - 0x43, 0x4f, 0x52, 0x44, 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x10, 0x0c, 0x12, 0x19, - 0x0a, 0x15, 0x49, 0x44, 0x45, 0x4e, 0x54, 0x49, 0x54, 0x59, 0x5f, 0x56, 0x45, 0x52, 0x49, 0x46, - 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x0d, 0x12, 0x21, 0x0a, 0x1d, 0x53, 0x59, 0x53, - 0x54, 0x45, 0x4d, 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x50, 0x49, 0x4e, 0x4e, - 0x45, 0x44, 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x10, 0x0e, 0x12, 0x24, 0x0a, 0x20, - 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x4d, - 0x55, 0x54, 0x55, 0x41, 0x4c, 0x5f, 0x45, 0x56, 0x45, 0x4e, 0x54, 0x5f, 0x53, 0x45, 0x4e, 0x54, - 0x10, 0x0f, 0x12, 0x28, 0x0a, 0x24, 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, 0x5f, 0x4d, 0x45, 0x53, - 0x53, 0x41, 0x47, 0x45, 0x5f, 0x4d, 0x55, 0x54, 0x55, 0x41, 0x4c, 0x5f, 0x45, 0x56, 0x45, 0x4e, - 0x54, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x50, 0x54, 0x45, 0x44, 0x10, 0x10, 0x12, 0x27, 0x0a, 0x23, - 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x4d, - 0x55, 0x54, 0x55, 0x41, 0x4c, 0x5f, 0x45, 0x56, 0x45, 0x4e, 0x54, 0x5f, 0x52, 0x45, 0x4d, 0x4f, - 0x56, 0x45, 0x44, 0x10, 0x11, 0x12, 0x12, 0x0a, 0x0e, 0x42, 0x52, 0x49, 0x44, 0x47, 0x45, 0x5f, - 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x10, 0x12, 0x42, 0x09, 0x0a, 0x07, 0x70, 0x61, 0x79, - 0x6c, 0x6f, 0x61, 0x64, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, - 0x62, 0x75, 0x66, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x74, 0x61, 0x74, 0x75, 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x52, 0x13, 0x75, 0x6e, 0x66, 0x75, + 0x72, 0x6c, 0x65, 0x64, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x22, + 0xd0, 0x03, 0x0a, 0x0b, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, + 0x18, 0x0a, 0x14, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x45, + 0x4e, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x00, 0x12, 0x0e, 0x0a, 0x0a, 0x54, 0x45, 0x58, + 0x54, 0x5f, 0x50, 0x4c, 0x41, 0x49, 0x4e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x53, 0x54, 0x49, + 0x43, 0x4b, 0x45, 0x52, 0x10, 0x02, 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, + 0x10, 0x03, 0x12, 0x09, 0x0a, 0x05, 0x45, 0x4d, 0x4f, 0x4a, 0x49, 0x10, 0x04, 0x12, 0x17, 0x0a, + 0x13, 0x54, 0x52, 0x41, 0x4e, 0x53, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x4f, 0x4d, + 0x4d, 0x41, 0x4e, 0x44, 0x10, 0x05, 0x12, 0x28, 0x0a, 0x24, 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, + 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x4e, 0x54, + 0x5f, 0x50, 0x52, 0x49, 0x56, 0x41, 0x54, 0x45, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x10, 0x06, + 0x12, 0x09, 0x0a, 0x05, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x10, 0x07, 0x12, 0x09, 0x0a, 0x05, 0x41, + 0x55, 0x44, 0x49, 0x4f, 0x10, 0x08, 0x12, 0x0d, 0x0a, 0x09, 0x43, 0x4f, 0x4d, 0x4d, 0x55, 0x4e, + 0x49, 0x54, 0x59, 0x10, 0x09, 0x12, 0x16, 0x0a, 0x12, 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, 0x5f, + 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x47, 0x41, 0x50, 0x10, 0x0a, 0x12, 0x13, 0x0a, + 0x0f, 0x43, 0x4f, 0x4e, 0x54, 0x41, 0x43, 0x54, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, + 0x10, 0x0b, 0x12, 0x13, 0x0a, 0x0f, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x52, 0x44, 0x5f, 0x4d, 0x45, + 0x53, 0x53, 0x41, 0x47, 0x45, 0x10, 0x0c, 0x12, 0x19, 0x0a, 0x15, 0x49, 0x44, 0x45, 0x4e, 0x54, + 0x49, 0x54, 0x59, 0x5f, 0x56, 0x45, 0x52, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, + 0x10, 0x0d, 0x12, 0x21, 0x0a, 0x1d, 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, 0x5f, 0x4d, 0x45, 0x53, + 0x53, 0x41, 0x47, 0x45, 0x5f, 0x50, 0x49, 0x4e, 0x4e, 0x45, 0x44, 0x5f, 0x4d, 0x45, 0x53, 0x53, + 0x41, 0x47, 0x45, 0x10, 0x0e, 0x12, 0x24, 0x0a, 0x20, 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, 0x5f, + 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x4d, 0x55, 0x54, 0x55, 0x41, 0x4c, 0x5f, 0x45, + 0x56, 0x45, 0x4e, 0x54, 0x5f, 0x53, 0x45, 0x4e, 0x54, 0x10, 0x0f, 0x12, 0x28, 0x0a, 0x24, 0x53, + 0x59, 0x53, 0x54, 0x45, 0x4d, 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x4d, 0x55, + 0x54, 0x55, 0x41, 0x4c, 0x5f, 0x45, 0x56, 0x45, 0x4e, 0x54, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x50, + 0x54, 0x45, 0x44, 0x10, 0x10, 0x12, 0x27, 0x0a, 0x23, 0x53, 0x59, 0x53, 0x54, 0x45, 0x4d, 0x5f, + 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x4d, 0x55, 0x54, 0x55, 0x41, 0x4c, 0x5f, 0x45, + 0x56, 0x45, 0x4e, 0x54, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x11, 0x12, 0x12, + 0x0a, 0x0e, 0x42, 0x52, 0x49, 0x44, 0x47, 0x45, 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, + 0x10, 0x12, 0x42, 0x09, 0x0a, 0x07, 0x70, 0x61, 0x79, 0x6c, 0x6f, 0x61, 0x64, 0x42, 0x0d, 0x5a, + 0x0b, 0x2e, 0x2f, 0x3b, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x62, 0x06, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x33, } var ( diff --git a/protocol/protobuf/chat_message.proto b/protocol/protobuf/chat_message.proto index 251418add..13ec66a1b 100644 --- a/protocol/protobuf/chat_message.proto +++ b/protocol/protobuf/chat_message.proto @@ -137,6 +137,7 @@ message UnfurledLink { uint32 thumbnail_width = 5; uint32 thumbnail_height = 6; LinkType type = 7; + bytes favicon_payload = 8; enum LinkType { LINK = 0; diff --git a/server/handlers.go b/server/handlers.go index 57256e19c..bd9e0ba1e 100644 --- a/server/handlers.go +++ b/server/handlers.go @@ -34,6 +34,7 @@ const ( discordAuthorsPath = "/discord/authors" discordAttachmentsPath = basePath + "/discord/attachments" LinkPreviewThumbnailPath = "/link-preview/thumbnail" + LinkPreviewFaviconPath = "/link-preview/favicon" StatusLinkPreviewThumbnailPath = "/status-link-preview/thumbnail" communityTokenImagesPath = "/communityTokenImages" diff --git a/server/handlers_linkpreview.go b/server/handlers_linkpreview.go index a3af9728e..c6f74de1c 100644 --- a/server/handlers_linkpreview.go +++ b/server/handlers_linkpreview.go @@ -14,19 +14,27 @@ import ( "github.com/status-im/status-go/protocol/protobuf" ) -func getThumbnailPayload(db *sql.DB, logger *zap.Logger, msgID string, thumbnailURL string) ([]byte, error) { - var payload []byte - +func getUnfurledLinksFromDB(db *sql.DB, msgID string) ([]*protobuf.UnfurledLink, error) { var result []byte err := db.QueryRow(`SELECT unfurled_links FROM user_messages WHERE id = ?`, msgID).Scan(&result) if err != nil { - return payload, fmt.Errorf("could not find message with message-id '%s': %w", msgID, err) + return nil, fmt.Errorf("could not find message with message-id '%s': %w", msgID, err) } var links []*protobuf.UnfurledLink err = json.Unmarshal(result, &links) if err != nil { - return payload, fmt.Errorf("failed to unmarshal protobuf.UrlPreview: %w", err) + return nil, fmt.Errorf("failed to unmarshal protobuf.UrlPreview: %w", err) + } + return links, nil +} + +func getThumbnailPayload(db *sql.DB, msgID string, thumbnailURL string) ([]byte, error) { + var payload []byte + + var links, err = getUnfurledLinksFromDB(db, msgID) + if err != nil { + return nil, err } for _, p := range links { @@ -39,40 +47,82 @@ func getThumbnailPayload(db *sql.DB, logger *zap.Logger, msgID string, thumbnail return payload, nil } +func getFaviconPayload(db *sql.DB, msgID string, faviconURL string) ([]byte, error) { + var payload []byte + + var links, err = getUnfurledLinksFromDB(db, msgID) + if err != nil { + return nil, err + } + + for _, p := range links { + if p.Url == faviconURL { + payload = p.FaviconPayload + break + } + } + + return payload, nil +} + +func validateAndReturnImageParams(r *http.Request, w http.ResponseWriter, logger *zap.Logger) ImageParams { + params := r.URL.Query() + parsed := ParseImageParams(logger, params) + + if parsed.MessageID == "" { + http.Error(w, "missing query parameter 'message-id'", http.StatusBadRequest) + return ImageParams{} + } + + if parsed.URL == "" { + http.Error(w, "missing query parameter 'url'", http.StatusBadRequest) + return ImageParams{} + } + return parsed +} + +func getMimeTypeAndWriteImage(w http.ResponseWriter, logger *zap.Logger, imagePayload []byte) { + mimeType, err := images.GetMimeType(imagePayload) + if err != nil { + http.Error(w, "mime type not supported", http.StatusNotImplemented) + return + } + + w.Header().Set("Content-Type", "image/"+mimeType) + w.Header().Set("Cache-Control", "no-store") + + _, err = w.Write(imagePayload) + if err != nil { + logger.Error("failed to write response", zap.Error(err)) + } +} + +func checkForFetchImageError(err error, logger *zap.Logger, parsedImageParams ImageParams, w http.ResponseWriter, imageType string) { + if err != nil { + logger.Error("failed to get "+imageType, zap.String("msgID", parsedImageParams.MessageID)) + http.Error(w, "failed to get "+imageType, http.StatusInternalServerError) + return + } +} + func handleLinkPreviewThumbnail(db *sql.DB, logger *zap.Logger) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { - params := r.URL.Query() - parsed := ParseImageParams(logger, params) - - if parsed.MessageID == "" { - http.Error(w, "missing query parameter 'message-id'", http.StatusBadRequest) - return + parsed := validateAndReturnImageParams(r, w, logger) + if parsed.URL != "" { + thumbnail, err := getThumbnailPayload(db, parsed.MessageID, parsed.URL) + checkForFetchImageError(err, logger, parsed, w, "thumbnail") + getMimeTypeAndWriteImage(w, logger, thumbnail) } + } +} - if parsed.URL == "" { - http.Error(w, "missing query parameter 'url'", http.StatusBadRequest) - return - } - - thumbnail, err := getThumbnailPayload(db, logger, parsed.MessageID, parsed.URL) - if err != nil { - logger.Error("failed to get thumbnail", zap.String("msgID", parsed.MessageID)) - http.Error(w, "failed to get thumbnail", http.StatusInternalServerError) - return - } - - mimeType, err := images.GetMimeType(thumbnail) - if err != nil { - http.Error(w, "mime type not supported", http.StatusNotImplemented) - return - } - - w.Header().Set("Content-Type", "image/"+mimeType) - w.Header().Set("Cache-Control", "no-store") - - _, err = w.Write(thumbnail) - if err != nil { - logger.Error("failed to write response", zap.Error(err)) +func handleLinkPreviewFavicon(db *sql.DB, logger *zap.Logger) http.HandlerFunc { + return func(w http.ResponseWriter, r *http.Request) { + parsed := validateAndReturnImageParams(r, w, logger) + if parsed.URL != "" { + favicon, err := getFaviconPayload(db, parsed.MessageID, parsed.URL) + checkForFetchImageError(err, logger, parsed, w, "favicon") + getMimeTypeAndWriteImage(w, logger, favicon) } } } diff --git a/server/server_media.go b/server/server_media.go index 7570ea9bd..b30c7e441 100644 --- a/server/server_media.go +++ b/server/server_media.go @@ -52,6 +52,7 @@ func NewMediaServer(db *sql.DB, downloader *ipfs.Downloader, multiaccountsDB *mu imagesPath: handleImage(s.db, s.logger), ipfsPath: handleIPFS(s.downloader, s.logger), LinkPreviewThumbnailPath: handleLinkPreviewThumbnail(s.db, s.logger), + LinkPreviewFaviconPath: handleLinkPreviewFavicon(s.db, s.logger), StatusLinkPreviewThumbnailPath: handleStatusLinkPreviewThumbnail(s.db, s.logger), communityTokenImagesPath: handleCommunityTokenImages(s.db, s.logger), walletCommunityImagesPath: handleWalletCommunityImages(s.walletDB, s.logger), @@ -90,6 +91,13 @@ func (s *MediaServer) MakeStatusLinkPreviewThumbnailURL(msgID string, previewURL return u.String() } +func (s *MediaServer) MakeLinkPreviewFaviconURL(msgID string, previewURL string) string { + u := s.MakeBaseURL() + u.Path = LinkPreviewFaviconPath + u.RawQuery = url.Values{"message-id": {msgID}, "url": {previewURL}}.Encode() + return u.String() +} + func (s *MediaServer) MakeDiscordAuthorAvatarURL(authorID string) string { u := s.MakeBaseURL() u.Path = discordAuthorsPath