From 20da36416c273146ce7a5a308257fdf364d8f023 Mon Sep 17 00:00:00 2001 From: Dan Sosedoff Date: Sat, 5 Nov 2016 21:23:37 -0500 Subject: [PATCH] Implement session locking with --lock-session option --- main.go | 7 +++++++ pkg/api/api.go | 15 +++++++++++++- pkg/command/options.go | 46 ++++++++++++++++++++++++++---------------- pkg/data/bindata.go | 8 ++++---- static/css/app.css | 1 + static/js/app.js | 4 ++++ 6 files changed, 59 insertions(+), 22 deletions(-) diff --git a/main.go b/main.go index 444a908..aeb0ccd 100644 --- a/main.go +++ b/main.go @@ -7,6 +7,7 @@ import ( "os/signal" "github.com/gin-gonic/gin" + "github.com/jessevdk/go-flags" "github.com/sosedoff/pgweb/pkg/api" "github.com/sosedoff/pgweb/pkg/client" @@ -54,6 +55,12 @@ func initClient() { func initOptions() { err := command.ParseOptions() if err != nil { + switch err.(type) { + case *flags.Error: + // no need to print error, flags package already does that + default: + fmt.Println(err.Error()) + } os.Exit(1) } diff --git a/pkg/api/api.go b/pkg/api/api.go index 39207d6..6928291 100644 --- a/pkg/api/api.go +++ b/pkg/api/api.go @@ -68,6 +68,11 @@ func GetSessions(c *gin.Context) { } func Connect(c *gin.Context) { + if command.Opts.LockSession { + c.JSON(400, Error{"Session is locked"}) + return + } + var sshInfo *shared.SSHInfo url := c.Request.FormValue("url") @@ -114,6 +119,11 @@ func Connect(c *gin.Context) { } func Disconnect(c *gin.Context) { + if command.Opts.LockSession { + c.JSON(400, Error{"Session is locked"}) + return + } + conn := DB(c) if conn == nil { @@ -261,7 +271,10 @@ func GetConnectionInfo(c *gin.Context) { return } - c.JSON(200, res.Format()[0]) + info := res.Format()[0] + info["session_lock"] = command.Opts.LockSession + + c.JSON(200, info) } func GetActivity(c *gin.Context) { diff --git a/pkg/command/options.go b/pkg/command/options.go index b2c8435..b4a7dfd 100644 --- a/pkg/command/options.go +++ b/pkg/command/options.go @@ -1,6 +1,7 @@ package command import ( + "fmt" "os" "strings" @@ -8,23 +9,24 @@ import ( ) type Options struct { - Version bool `short:"v" long:"version" description:"Print version"` - Debug bool `short:"d" long:"debug" description:"Enable debugging mode" default:"false"` - Url string `long:"url" description:"Database connection string"` - Host string `long:"host" description:"Server hostname or IP"` - Port int `long:"port" description:"Server port" default:"5432"` - User string `long:"user" description:"Database user"` - Pass string `long:"pass" description:"Password for user"` - DbName string `long:"db" description:"Database name"` - Ssl string `long:"ssl" description:"SSL option"` - HttpHost string `long:"bind" description:"HTTP server host" default:"localhost"` - HttpPort uint `long:"listen" description:"HTTP server listen port" default:"8081"` - AuthUser string `long:"auth-user" description:"HTTP basic auth user"` - AuthPass string `long:"auth-pass" description:"HTTP basic auth password"` - SkipOpen bool `short:"s" long:"skip-open" description:"Skip browser open on start"` - Sessions bool `long:"sessions" description:"Enable multiple database sessions" default:"false"` - Prefix string `long:"prefix" description:"Add a url prefix"` - ReadOnly bool `long:"readonly" description:"Run database connection in readonly mode"` + Version bool `short:"v" long:"version" description:"Print version"` + Debug bool `short:"d" long:"debug" description:"Enable debugging mode" default:"false"` + Url string `long:"url" description:"Database connection string"` + Host string `long:"host" description:"Server hostname or IP"` + Port int `long:"port" description:"Server port" default:"5432"` + User string `long:"user" description:"Database user"` + Pass string `long:"pass" description:"Password for user"` + DbName string `long:"db" description:"Database name"` + Ssl string `long:"ssl" description:"SSL option"` + HttpHost string `long:"bind" description:"HTTP server host" default:"localhost"` + HttpPort uint `long:"listen" description:"HTTP server listen port" default:"8081"` + AuthUser string `long:"auth-user" description:"HTTP basic auth user"` + AuthPass string `long:"auth-pass" description:"HTTP basic auth password"` + SkipOpen bool `short:"s" long:"skip-open" description:"Skip browser open on start"` + Sessions bool `long:"sessions" description:"Enable multiple database sessions" default:"false"` + Prefix string `long:"prefix" description:"Add a url prefix"` + ReadOnly bool `long:"readonly" description:"Run database connection in readonly mode"` + LockSession bool `long:"lock-session" description:"Lock session to a single database connection" default:"false"` } var Opts Options @@ -43,6 +45,16 @@ func ParseOptions() error { Opts.Sessions = true } + if os.Getenv("LOCK_SESSION") != "" { + Opts.LockSession = true + Opts.Sessions = false + } + + // When session is locked, connection UI is not displayed. + if Opts.LockSession && Opts.Url == "" { + return fmt.Errorf("Please provide connection url") + } + if Opts.Prefix != "" && !strings.Contains(Opts.Prefix, "/") { Opts.Prefix = Opts.Prefix + "/" } diff --git a/pkg/data/bindata.go b/pkg/data/bindata.go index c0de656..7702246 100644 --- a/pkg/data/bindata.go +++ b/pkg/data/bindata.go @@ -84,7 +84,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _staticCssAppCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x5a\x5b\x73\xa4\xb8\x15\x7e\xf7\xaf\x20\xdb\x95\xda\x64\x6a\x60\xfa\x86\xed\x6e\x57\x52\x95\x4a\x65\x5e\xf3\xb0\x8f\xa9\x94\x4b\x80\x70\x2b\xa6\x11\x01\x61\xb7\x67\x6a\xff\x7b\x8e\x2e\x08\x49\x48\x0d\xf6\x4e\x76\x78\x98\x06\x74\x8e\x8e\xce\xe5\x3b\x17\xbc\x3a\x23\x52\x47\xdf\x6f\xa2\xa8\x20\x5d\x53\xa1\xb7\x63\x54\xd3\x1a\x3f\xdc\xfc\x7a\x73\xb3\xaa\xd1\x8b\x78\xd5\xd0\x8e\x30\x42\xeb\x63\x54\x92\x0b\x2e\x1e\xe0\x11\xa3\xcd\x31\x5a\xf3\x5f\x15\x2e\xd9\x31\xda\xa6\xeb\xe6\xc2\x6f\x5b\xf2\x74\x62\xea\xd5\x09\xcb\x9b\xe1\x5d\x86\xf2\xe7\xa7\x96\xf6\x75\x71\x8c\x56\x77\x87\xf4\xfe\x50\x8e\x1b\xf5\x95\xd8\xeb\x8c\xda\x27\x02\x3b\x29\x92\x06\x15\x05\xa9\x9f\xf4\xbd\xcb\x52\x4b\x9d\x55\x34\x7f\xb6\xb8\x55\x64\x09\xc3\xb2\xa2\x08\xf8\xf1\x53\x98\xfc\xf7\x07\xf9\xba\x22\x35\x8e\xdd\x87\x25\xad\x59\xdc\x91\x6f\xf8\x18\x6d\x76\x53\xb6\xd1\x66\x2f\x1f\xe6\xb4\xa2\x2d\x1c\xb5\xb8\xcd\x73\xbc\xd5\x94\xaf\xfa\x0c\x42\x4b\x5a\xc0\x68\xa3\xc8\xfa\xb6\xe3\x74\x0d\x25\x35\xc3\xad\xef\x98\x5c\xb0\x0e\x64\x60\x6f\x15\x1e\x2c\x66\x3e\x8b\xd9\x5b\x83\x5d\x53\x0a\x9d\x1c\x4b\xd2\xc2\xaa\xfc\x44\xaa\xc2\xd0\x4f\x2c\xcd\x28\x94\x62\xaf\x3f\xd1\x17\xdc\x8a\x95\xc3\x71\xca\xb2\x74\x16\x25\x1d\xae\x70\xce\x70\xe1\xb8\x4b\x8b\x2b\xc4\xc8\x0b\x9e\x18\x5f\xb0\x18\x39\xae\x1d\x4d\x84\xd8\x1f\x33\x5c\xd2\x16\x2b\x69\x40\x39\x35\xc8\xfc\x73\xf4\xf3\x83\xb5\x2b\xca\x3a\x5a\xf5\x4c\xee\x4a\x19\xa3\xe7\x63\x14\x2b\xdd\xaa\x63\x3e\x78\xfd\x54\xad\x79\x25\x05\x7d\xed\xe0\x76\xbd\xfe\xa3\x5f\xf2\x80\x74\xae\x6a\x33\xda\x16\xb8\x55\xaa\x1d\x6d\xd1\x91\x02\x67\xa8\x0d\x85\x16\x6c\xcf\x4e\x46\x44\x19\x96\x19\xe2\x4e\x85\x93\x3a\x9b\xbe\xbd\x70\xa7\x14\x5e\xa8\x76\x86\x47\xd3\x03\x1c\xf8\x65\x4b\x92\x30\xc2\x2a\xec\x08\x64\xaa\x71\x0c\x77\x25\xdd\xa0\x1b\x2b\x3e\x76\x3b\x3b\x48\x77\xbe\xe0\xb8\xb7\x9e\x29\xe5\x6c\xb6\x76\xc4\xa4\x69\x3a\x09\x97\x8c\x56\x85\x37\xfa\xa6\x27\x49\x34\xaa\x59\xf2\xa5\x01\x10\xf1\xe2\x92\xe3\xef\xf6\xbe\x7b\x77\xdf\x82\xbc\x24\x0c\x65\x15\xee\x62\x1e\x85\x57\x54\x69\x3a\x9e\x69\x4d\xcb\xcc\x83\x69\x37\xfb\x54\x3e\xe0\x41\x08\x50\xf5\x0a\xbc\x7a\x46\xaf\xef\x9d\xbc\xb6\xa8\x11\x12\x68\xc7\x56\xd6\x7a\x17\x17\xe9\x13\x5d\x83\xea\x04\x10\xa9\x85\x58\x8b\x0b\x04\x2b\x50\x87\xa7\xc0\x31\xab\x10\xc9\x4e\xa1\x89\x60\xda\xe2\xb2\xc5\xdd\xc9\x4e\x3e\xa4\x16\x16\x33\xd0\x7c\x89\x7c\x26\x2b\x05\xe8\x42\xcd\x23\xa8\xc4\x4a\xed\xfb\x20\xc4\x3a\xd6\xf6\xa4\xc3\x90\x24\x2b\x79\xf3\x39\x5a\x75\xf8\xbf\x3d\xae\x73\xf1\x9b\x66\xff\x01\x54\xe8\xa4\x27\x0c\x01\xc0\x3d\x0e\x80\x7e\xed\xfa\xd3\x36\xa8\xbe\x98\xd4\x00\x79\x67\xc4\x1d\xe9\x43\x88\xa1\x7d\x60\x70\x25\x07\x36\xbe\x7c\x52\x60\x21\x9c\x11\x20\x30\x02\x5f\x25\x05\x64\xad\x3d\xbf\x1e\x3e\x7d\x31\x17\xb5\x1a\x29\x7d\xcb\x42\x10\x34\x7f\xb2\x79\x9f\x8d\xdf\xae\x7a\xad\xcd\x6d\xc4\x33\x90\xdc\x42\xbf\x5b\x7e\x71\x69\xe7\xb9\xa8\x8a\x44\x1b\x8f\xc3\x59\xd0\x78\xcb\x3c\xc6\xe5\xaf\x6a\x14\x0b\xa5\xb6\x7b\xdb\x70\xc3\xfd\x88\xa2\x1c\x43\x79\xb9\xb0\xb5\x9d\xb9\xc0\x25\xea\x2b\x66\x3a\xf3\xdd\xd7\xbb\x7f\xdc\x7d\x8d\xfe\x40\xce\x0d\x6d\x19\xaa\xd9\x72\xb9\x78\x60\x59\x69\x7f\xff\x95\x5f\x22\xa4\x20\x9e\x94\xcf\xad\xa7\x58\xae\x6b\x88\x8c\x16\x6f\x57\xeb\x47\xdb\x5f\xb5\xfb\x3a\x0e\x3a\x00\x66\x18\x08\x49\xdd\xf4\xcc\x72\x9e\x6d\x3a\xc1\xcd\x13\x29\x0a\x5c\x9b\x04\xc2\xe7\x1a\xec\x26\xe2\xb1\x68\x31\x96\xa2\x9c\xbf\x94\xd1\xec\xab\x64\xb4\x71\x36\xa1\x1c\x33\x84\x83\x3c\x9b\x0c\x1e\x1e\x46\xab\xa2\x28\xbc\x5b\x25\x19\xf3\xe4\xb0\x9d\xc3\x7f\xe7\xa9\x6b\x75\x55\xea\xd4\xbe\x9e\xba\xd5\x49\xb8\x52\xca\xb1\xa2\x14\x01\x7d\x42\x05\x57\xa0\x7e\x66\x1c\x9f\xb5\xa8\x06\x47\xe1\xc9\xc1\x24\x37\xe0\xe1\x70\x38\x78\xca\x6c\x1b\x94\x37\xda\x65\x3c\x2a\x88\x9b\x96\xc0\xf2\x37\xb3\xa2\xd2\xee\x8d\xb3\x74\x8f\x2d\x87\x57\x4f\x02\xcc\x8c\x6a\x36\x70\x0c\x2b\x56\x26\x1b\xee\xf7\xfb\x49\xdd\x3a\x23\xb7\xa7\x80\xbe\xdd\x1f\xd6\x3b\xec\x61\x3f\xbc\xf0\xb0\x5c\x41\x66\x69\xdf\x1e\x9b\x96\x3e\x41\xaa\xeb\x7c\x2d\xdb\x44\xcb\x8b\x1c\x67\xd8\x1b\x21\x14\x56\x5b\x49\xf3\x5e\xee\x49\x7b\xc6\xd9\x72\x14\xf2\x39\x49\x58\x1f\x01\xd5\x73\x8b\x6d\xd2\x7d\x58\x8d\x0a\xd5\x42\xe4\x59\x96\x85\xb7\xac\x90\xaf\xd5\x31\x01\x85\x53\x8e\x99\x5a\xdc\xf5\x6c\x40\x13\x7f\x01\x37\xad\xc7\xb7\xe9\xed\x02\xe4\x9a\x69\x44\x7d\xc0\xd6\x20\xa0\x18\x53\xff\xc4\xde\x7e\x01\x9d\x12\xdd\x45\xa2\x09\x54\x85\xab\x50\x0f\xd0\x39\x38\x66\x44\x3a\xc6\x53\x6f\x10\xef\x45\xda\xe4\x48\x57\x6e\xf8\x35\x39\x5a\x02\xbf\x45\x10\xd4\x0c\xca\x76\x65\x64\xbb\x8c\x73\x29\x4a\x52\x41\xd9\xd6\x99\x2b\x07\xa7\xf7\x96\x55\x3e\x5a\x9d\xe0\x02\xc5\xa7\x9f\xb3\xdb\x8d\xd8\x31\xb6\x75\x62\x6c\x3b\x31\xfd\xd0\xff\x0c\x61\x27\xf0\x31\x28\xa2\xe8\x2c\xe5\x29\xa7\x05\xc7\x68\x67\xef\x28\x63\x51\xf4\xdb\x21\xa1\x64\xd3\x31\x3e\x56\x32\x61\xe9\x12\x38\x49\x7f\x96\x9a\x1c\x24\x4a\xd7\x57\x15\x2f\xe9\xe4\xad\x45\xb7\xbe\x4a\x37\xa6\x79\xe7\xa4\x43\xfd\xbb\x0e\x1c\xd2\xab\x09\xef\xc9\x17\x3b\xcf\xc7\x33\x93\x3f\xac\x1c\x95\xcf\x24\xcc\xfb\x59\xd1\x14\x6a\xfa\xb4\x35\x63\x5d\x4e\xcd\xa5\x6b\x16\x84\xe1\xd0\x17\xf2\x00\xf6\x36\x5f\x1e\xaf\x75\x52\xff\xd6\x13\x0e\x8b\xa2\x8a\xcb\x02\x99\x10\x0e\xd9\x85\x02\xe4\x2a\xe2\x1a\xf4\x09\x3e\x37\xec\x2d\x62\xe6\xd4\x46\x06\xeb\xa8\xa2\x61\x2b\xd6\x1e\x6b\x76\x92\x49\xe5\x4f\xf8\x05\xd7\x7f\x8e\xfe\xea\x52\xce\x50\xd1\xa2\x08\x12\x85\xa6\x4d\x9a\xd1\xc9\xf4\x36\x81\xdc\x63\x1a\x0e\x22\x33\xc2\x07\x7c\xb0\x54\xc0\x31\xd9\x37\xe2\xdc\x3a\xa3\xcb\xdd\x6e\x17\x84\x3e\x78\x90\x3d\x13\x16\x4b\xcd\x9f\x29\x65\x27\xc1\x1b\x4a\x27\x82\x2a\x82\x3a\x5c\xb8\xc2\x8b\xf4\xfc\x82\x3d\x65\xf4\x8e\x5f\xd6\xf2\x7f\xf1\x69\x43\x7c\xa6\x05\xfe\xcb\x4f\x59\x4b\x5f\x3b\xfc\xd3\xbf\x81\x85\x59\x4f\x4d\xbb\x78\x9b\x29\xe2\x97\x23\x83\xe8\x4a\xc0\x1e\x92\xcd\x60\x04\x5b\xe9\xae\xf5\x14\x8d\xa9\x7a\x8f\x9a\xcb\x2d\xbf\x5c\xc3\x8f\xb3\x51\xdf\x5e\xbb\xfb\xbb\x7d\x71\xe7\x14\x9d\xc6\x28\x62\xd2\xba\x69\xc6\x85\x55\x52\xee\xd0\xee\x56\x9a\x0a\x4e\xc5\x48\x8e\xaa\x18\x4c\xf0\x04\xce\x7f\x86\xbe\xa7\xc2\x0f\xf3\x8e\x5d\xf0\x76\x50\xd5\x49\x97\xa1\xbf\xdb\xa5\x1a\x2e\x2f\xe3\x1c\x6d\x13\x6a\xae\xa0\x98\xc0\x17\x16\x8f\x2f\x70\x55\x91\xa6\x23\x9d\x80\xe9\x13\x61\x38\x86\xb4\x9b\x43\x8c\x36\x2d\xec\x7f\xc3\xfb\x73\xc3\x93\xfa\x0e\x34\x2b\xf5\x35\xfa\x35\xb8\xc0\xb7\xd0\x9b\xce\xff\x42\xb5\xf7\xce\xd1\xc4\xa8\xa8\xee\xab\xca\xd2\x9c\x28\x20\x95\xdc\xa2\x0f\xe0\x8d\xf0\x31\xea\x79\x67\x98\x83\x0f\x4f\xb4\xc4\x57\x42\xab\x80\x2c\x2e\xd0\x09\x38\x46\xf4\xa6\x92\x31\x12\xcc\x61\xf1\x67\x93\xff\x64\x8a\xec\x4c\x4a\x53\x17\xbc\x6a\x1a\xe7\x2d\x6d\x02\x06\xd4\x86\x4e\x4a\x7e\x72\xb3\xbc\x1d\xea\x3e\xd7\xc7\x92\x57\x02\x58\x65\xe0\xfc\x84\x28\x5d\x44\x15\xaa\x5e\xc7\xe1\xde\x97\x4f\x51\xfc\xc3\xfe\x71\xab\xdf\xac\xa0\x4f\x81\xb8\x7c\x14\xdd\x92\x3d\x4f\x3a\x58\x4d\xb1\x1a\x77\x69\xcb\x40\xf5\x59\x63\xd1\x3b\x3c\xbe\x92\x1a\xaa\x57\x41\xfc\x2d\x86\xdf\xf8\x02\x71\x60\x97\xdb\x7a\x8e\xe1\xcb\xe5\xb3\x53\x5d\x6f\x7b\x30\x1d\x1f\x25\xa3\x4c\xb1\x39\x7f\xf0\x88\x61\x57\x31\xf2\x68\x3a\xcb\xe1\x82\xb0\xc7\x91\xd7\xe7\x68\x95\x57\xb4\xc3\xc6\x23\x4f\x57\x16\x9a\x82\x3b\x75\x8e\x4e\x50\xce\x26\x11\xf1\x74\x5c\x7a\x48\xec\xee\x6f\xaa\xdc\x33\x46\x33\x16\xe2\xb6\xa5\x6d\x60\x5d\x92\x51\xfa\x0c\x3b\x3e\x7b\xbb\x63\x47\xa1\x1d\x66\x0c\xa2\xaa\x33\xeb\xcf\xdb\xf5\xb4\x55\x53\xdd\x98\xed\x36\xba\xbe\xf5\x72\x3c\x6d\x64\xa4\x70\x44\x51\x20\x9c\xe3\x21\x41\x89\xa7\xba\x3f\xe2\xb3\x1a\xdd\x1d\x49\x05\xab\x7d\x06\x5f\xd9\xa6\xde\x02\xc9\x4a\xc8\x35\x1f\xdd\x55\x61\x81\x38\xa2\x79\xd2\x9c\x1c\x85\x9a\x55\xc1\x36\xb5\x86\x55\x2d\x2a\x48\xdf\xe9\xa1\xb9\x00\xe2\xc0\x2b\x05\xe0\xbe\xb7\x57\xa5\x6a\x92\x13\xae\x1a\xd9\x72\xf9\xcb\x38\x97\x3c\x3f\xe1\x33\x36\x2a\xd4\x19\x33\x77\xa7\xf0\x5a\x23\xbe\x37\xc3\x28\xe7\x87\x43\x12\x30\xfc\x45\x8d\x5b\x7f\xe1\xb2\xa3\xe8\x9f\x6a\xde\x20\x5f\xfe\xd8\xdd\x6e\x92\x4e\x6e\xf2\xfd\x57\xfd\x93\x44\xe1\x7f\xdf\x03\xdd\xaf\x27\x72\x23\x83\x63\x52\x22\x28\xfb\x2a\x6e\x6b\xba\x94\x63\x80\xbc\xc1\xb5\xc9\xe3\xbb\x63\xa4\x91\x2c\xc1\x17\x48\xe0\x05\x14\x52\x1e\xfa\xf9\x5d\x03\xe4\xc1\x5d\xb5\xb4\xea\xff\xb8\x46\x67\x3c\xba\xe8\xec\x57\x49\xff\x47\xfb\xf7\x4e\x72\xef\x03\xdf\xab\x3c\xf2\xd9\xf3\x13\x4f\x58\xb8\x7a\x98\x21\x1c\xd3\x74\x78\xa7\xe1\x89\x0c\x31\xae\x57\xb8\x7f\x69\x21\xf0\x00\xdf\x42\x7f\x57\xb2\x98\x9d\x79\x17\x8f\x9f\x74\xa6\x7a\xf5\x34\x02\x1f\x54\xf5\x3b\xc4\x73\x3f\x0f\xf9\xc7\x7c\x1f\x3f\xbe\xf9\x79\x68\xf1\xdf\x7a\x4c\xf6\x5f\x36\x03\x9e\xea\x6f\xc1\x37\x7b\x35\xf4\xb4\xca\xfa\x9a\xf2\x8f\x2a\x76\x73\x70\x01\xd0\x6e\x69\x55\x7d\xe0\xf4\xc4\x2a\xb2\x87\x59\xd9\xbb\x78\x84\x5b\x4e\x35\x8d\x5c\xd2\xec\xbe\x77\xd3\xd0\xb4\xda\x98\x80\x2e\xe4\x67\x84\xeb\xd5\xe8\x9a\x7c\x38\xff\x4d\xfc\x05\xec\xff\xb6\xf0\x1d\x19\xab\x40\xf9\x3d\xea\x7f\x60\xf8\xb7\x1c\x47\x7f\x17\x4d\x00\xf9\x86\x64\xd1\xfc\xff\x49\xb4\xe0\xef\x8f\x4f\x3d\x83\x78\xf9\x1c\x19\x37\x71\x8e\x55\x87\xe9\xf6\x06\x81\x2e\x7f\xf8\x82\x21\x78\x48\x67\x8d\xb9\x2d\x3d\x3c\xc4\x9f\xee\x4c\x1a\xaf\x39\x3a\x6e\x39\x87\xe8\x7f\x01\x00\x00\xff\xff\x6c\x87\x99\xb3\xf7\x27\x00\x00") +var _staticCssAppCss = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xbc\x5a\x5b\x73\xa4\xb8\x15\x7e\xf7\xaf\x20\xdb\x95\xda\x64\x6a\x60\xfa\x86\xed\x6e\x57\x52\x95\x4a\x65\x5e\xf3\xb0\x8f\xa9\x94\x4b\x80\x70\x2b\xa6\x11\x01\x61\xb7\x67\x6a\xff\x7b\x8e\x2e\x08\x49\x48\x0d\xf6\x4e\x76\x78\x98\x06\x74\x8e\x8e\xce\xe5\x3b\x17\xbc\x3a\x23\x52\x47\xdf\x6f\xa2\xa8\x20\x5d\x53\xa1\xb7\x63\x54\xd3\x1a\x3f\xdc\xfc\x7a\x73\xb3\xaa\xd1\x8b\x78\xd5\xd0\x8e\x30\x42\xeb\x63\x54\x92\x0b\x2e\x1e\xe0\x11\xa3\xcd\x31\x5a\xf3\x5f\x15\x2e\xd9\x31\xda\xa6\xeb\xe6\xc2\x6f\x5b\xf2\x74\x62\xea\xd5\x09\xcb\x9b\xe1\x5d\x86\xf2\xe7\xa7\x96\xf6\x75\x71\x8c\x56\x77\x87\xf4\xfe\x50\x8e\x1b\xf5\x95\xd8\xeb\x8c\xda\x27\x02\x3b\x29\x92\x06\x15\x05\xa9\x9f\xf4\xbd\xcb\x52\x4b\x9d\x55\x34\x7f\xb6\xb8\x55\x64\x09\xc3\xb2\xa2\x08\xf8\xf1\x53\x98\xfc\xf7\x07\xf9\xba\x22\x35\x8e\xdd\x87\x25\xad\x59\xdc\x91\x6f\xf8\x18\x6d\x76\x53\xb6\xd1\x66\x2f\x1f\xe6\xb4\xa2\x2d\x1c\xb5\xb8\xcd\x73\xbc\xd5\x94\xaf\xfa\x0c\x42\x4b\x5a\xc0\x68\xa3\xc8\xfa\xb6\xe3\x74\x0d\x25\x35\xc3\xad\xef\x98\x5c\xb0\x0e\x64\x60\x6f\x15\x1e\x2c\x66\x3e\x8b\xd9\x5b\x83\x5d\x53\x0a\x9d\x1c\x4b\xd2\xc2\xaa\xfc\x44\xaa\xc2\xd0\x4f\x2c\xcd\x28\x94\x62\xaf\x3f\xd1\x17\xdc\x8a\x95\xc3\x71\xca\xb2\x74\x16\x25\x1d\xae\x70\xce\x70\xe1\xb8\x4b\x8b\x2b\xc4\xc8\x0b\x9e\x18\x5f\xb0\x18\x39\xae\x1d\x4d\x84\xd8\x1f\x33\x5c\xd2\x16\x2b\x69\x40\x39\x35\xc8\xfc\x73\xf4\xf3\x83\xb5\x2b\xca\x3a\x5a\xf5\x4c\xee\x4a\x19\xa3\xe7\x63\x14\x2b\xdd\xaa\x63\x3e\x78\xfd\x54\xad\x79\x25\x05\x7d\xed\xe0\x76\xbd\xfe\xa3\x5f\xf2\x80\x74\xae\x6a\x33\xda\x16\xb8\x55\xaa\x1d\x6d\xd1\x91\x02\x67\xa8\x0d\x85\x16\x6c\xcf\x4e\x46\x44\x19\x96\x19\xe2\x4e\x85\x93\x3a\x9b\xbe\xbd\x70\xa7\x14\x5e\xa8\x76\x86\x47\xd3\x03\x1c\xf8\x65\x4b\x92\x30\xc2\x2a\xec\x08\x64\xaa\x71\x0c\x77\x25\xdd\xa0\x1b\x2b\x3e\x76\x3b\x3b\x48\x77\xbe\xe0\xb8\xb7\x9e\x29\xe5\x6c\xb6\x76\xc4\xa4\x69\x3a\x09\x97\x8c\x56\x85\x37\xfa\xa6\x27\x49\x34\xaa\x59\xf2\xa5\x01\x10\xf1\xe2\x92\xe3\xef\xf6\xbe\x7b\x77\xdf\x82\xbc\x24\x0c\x65\x15\xee\x62\x1e\x85\x57\x54\x69\x3a\x9e\x69\x4d\xcb\xcc\x83\x69\x37\xfb\x54\x3e\xe0\x41\x08\x50\xf5\x0a\xbc\x7a\x46\xaf\xef\x9d\xbc\xb6\xa8\x11\x12\x68\xc7\x56\xd6\x7a\x17\x17\xe9\x13\x5d\x83\xea\x04\x10\xa9\x85\x58\x8b\x0b\x04\x2b\x50\x87\xa7\xc0\x31\xab\x10\xc9\x4e\xa1\x89\x60\xda\xe2\xb2\xc5\xdd\xc9\x4e\x3e\xa4\x16\x16\x33\xd0\x7c\x89\x7c\x26\x2b\x05\xe8\x42\xcd\x23\xa8\xc4\x4a\xed\xfb\x20\xc4\x3a\xd6\xf6\xa4\xc3\x90\x24\x2b\x79\xf3\x39\x5a\x75\xf8\xbf\x3d\xae\x73\xf1\x9b\x66\xff\x01\x54\xe8\xa4\x27\x0c\x01\xc0\x3d\x0e\x80\x7e\xed\xfa\xd3\x36\xa8\xbe\x98\xd4\x00\x79\x67\xc4\x1d\xe9\x43\x88\xa1\x7d\x60\x70\x25\x07\x36\xbe\x7c\x52\x60\x21\x9c\x11\x20\x30\x02\x5f\x25\x05\x64\xad\x3d\xbf\x1e\x3e\x7d\x31\x17\xb5\x1a\x29\x7d\xcb\x42\x10\x34\x7f\xb2\x79\x9f\x8d\xdf\xae\x7a\xad\xcd\x6d\xc4\x33\x90\xdc\x42\xbf\x5b\x7e\x71\x69\xe7\xb9\xa8\x8a\x44\x1b\x8f\xc3\x59\xd0\x78\xcb\x3c\xc6\xe5\xaf\x6a\x14\x0b\xa5\xb6\x7b\xdb\x70\xc3\xfd\x88\xa2\x1c\x43\x79\xb9\xb0\xb5\x9d\xb9\xc0\x25\xea\x2b\x66\x3a\xf3\xdd\xd7\xbb\x7f\xdc\x7d\x8d\xfe\x40\xce\x0d\x6d\x19\xaa\xd9\x72\xb9\x78\x60\x59\x69\x7f\xff\x95\x5f\x22\xa4\x20\x9e\x94\xcf\xad\xa7\x58\xae\x6b\x88\x8c\x16\x6f\x57\xeb\x47\xdb\x5f\xb5\xfb\x3a\x0e\x3a\x00\x66\x18\x08\x49\xdd\xf4\xcc\x72\x9e\x6d\x3a\xc1\xcd\x13\x29\x0a\x5c\x9b\x04\xc2\xe7\x1a\xec\x26\xe2\xb1\x68\x31\x96\xa2\x9c\xbf\x94\xd1\xec\xab\x64\xb4\x71\x36\xa1\x1c\x33\x84\x83\x3c\x9b\x0c\x1e\x1e\x46\xab\xa2\x28\xbc\x5b\x25\x19\xf3\xe4\xb0\x9d\xc3\x7f\xe7\xa9\x6b\x75\x55\xea\xd4\xbe\x9e\xba\xd5\x49\xb8\x52\xca\xb1\xa2\x14\x01\x7d\x42\x05\x57\xa0\x7e\x66\x1c\x9f\xb5\xa8\x06\x47\xe1\xc9\xc1\x24\x37\xe0\xe1\x70\x38\x78\xca\x6c\x1b\x94\x37\xda\x65\x3c\x2a\x88\x9b\x96\xc0\xf2\x37\xb3\xa2\xd2\xee\x8d\xb3\x74\x8f\x2d\x87\x57\x4f\x02\xcc\x8c\x6a\x36\x70\x0c\x2b\x56\x26\x1b\xee\xf7\xfb\x49\xdd\x3a\x23\xb7\xa7\x80\xbe\xdd\x1f\xd6\x3b\xec\x61\x3f\xbc\xf0\xb0\x5c\x41\x66\x69\xdf\x1e\x9b\x96\x3e\x41\xaa\xeb\x7c\x2d\xdb\x44\xcb\x8b\x1c\x67\xd8\x1b\x21\x14\x56\x5b\x49\xf3\x5e\xee\x49\x7b\xc6\xd9\x72\x14\xf2\x39\x49\x58\x1f\x01\xd5\x73\x8b\x6d\xd2\x7d\x58\x8d\x0a\xd5\x42\xe4\x59\x96\x85\xb7\xac\x90\xaf\xd5\x31\x01\x85\x53\x8e\x99\x5a\xdc\xf5\x6c\x40\x13\x7f\x01\x37\xad\xc7\xb7\xe9\xed\x02\xe4\x9a\x69\x44\x7d\xc0\xd6\x20\xa0\x18\x53\xff\xc4\xde\x7e\x01\x9d\x12\xdd\x45\xa2\x09\x54\x85\xab\x50\x0f\xd0\x39\x38\x66\x44\x3a\xc6\x53\x6f\x10\xef\x45\xda\xe4\x48\x57\x6e\xf8\x35\x39\x5a\x02\xbf\x45\x10\xd4\x0c\xca\x76\x65\x64\xbb\x8c\x73\x29\x4a\x52\x41\xd9\xd6\x99\x2b\x07\xa7\xf7\x96\x55\x3e\x5a\x9d\xe0\x02\xc5\xa7\x9f\xb3\xdb\x8d\xd8\x31\xb6\x75\x62\x6c\x3b\x31\xfd\xd0\xff\x0c\x61\x27\xf0\x31\x28\xa2\xe8\x2c\xe5\x29\xa7\x05\xc7\x68\x67\xef\x28\x63\x51\xf4\xdb\x21\xa1\x64\xd3\x31\x3e\x56\x32\x61\xe9\x12\x38\x49\x7f\x96\x9a\x1c\x24\x4a\xd7\x57\x15\x2f\xe9\xe4\xad\x45\xb7\xbe\x4a\x37\xa6\x79\xe7\xa4\x43\xfd\xbb\x0e\x1c\xd2\xab\x09\xef\xc9\x17\x3b\xcf\xc7\x33\x93\x3f\xac\x1c\x95\xcf\x24\xcc\xfb\x59\xd1\x14\x6a\xfa\xb4\x35\x63\x5d\x4e\xcd\xa5\x6b\x16\x84\xe1\xd0\x17\xf2\x00\xf6\x36\x5f\x1e\xaf\x75\x52\xff\xd6\x13\x0e\x8b\xa2\x8a\xcb\x02\x99\x10\x0e\xd9\x85\x02\xe4\x2a\xe2\x1a\xf4\x09\x3e\x37\xec\x2d\x62\xe6\xd4\x46\x06\xeb\xa8\xa2\x61\x2b\xd6\x1e\x6b\x76\x92\x49\xe5\x4f\xf8\x05\xd7\x7f\x8e\xfe\xea\x52\xce\x50\xd1\xa2\x08\x12\x85\xa6\x4d\x9a\xd1\xc9\xf4\x36\x81\xdc\x63\x1a\x0e\x22\x33\xc2\x07\x7c\xb0\x54\xc0\x31\xd9\x37\xe2\xdc\x3a\xa3\xcb\xdd\x6e\x17\x84\x3e\x78\x90\x3d\x13\x16\x4b\xcd\x9f\x29\x65\x27\xc1\x1b\x4a\x27\x82\x2a\x82\x3a\x5c\xb8\xc2\x8b\xf4\xfc\x82\x3d\x65\xf4\x8e\x5f\xd6\xf2\x7f\xf1\x69\x43\x7c\xa6\x05\xfe\xcb\x4f\x59\x4b\x5f\x3b\xfc\xd3\xbf\x81\x85\x59\x4f\x4d\xbb\x78\x9b\x29\xe2\x97\x23\x83\xe8\x4a\xc0\x1e\x92\xcd\x60\x04\x5b\xe9\xae\xf5\x14\x8d\xa9\x7a\x8f\x9a\xcb\x2d\xbf\x5c\xc3\x8f\xb3\x51\xdf\x5e\xbb\xfb\xbb\x7d\x71\xe7\x14\x9d\xc6\x28\x62\xd2\xba\x69\xc6\x85\x55\x52\xee\xd0\xee\x56\x9a\x0a\x4e\xc5\x48\x8e\xaa\x18\x4c\xf0\x04\xce\x7f\x86\xbe\xa7\xc2\x0f\xf3\x8e\x5d\xf0\x76\x50\xd5\x49\x97\xa1\xbf\xdb\xa5\x1a\x2e\x2f\xe3\x1c\x6d\x13\x6a\xae\xa0\x98\xc0\x17\x16\x8f\x2f\x70\x55\x91\xa6\x23\x9d\x80\xe9\x13\x61\x38\x86\xb4\x9b\x43\x8c\x36\x2d\xec\x7f\xc3\xfb\x73\xc3\x93\xfa\x0e\x34\x2b\xf5\x35\xfa\x35\xb8\xc0\xb7\xd0\x9b\xce\xff\x42\xb5\xf7\xce\xd1\xc4\xa8\xa8\xee\xab\xca\xd2\x9c\x28\x20\x95\xdc\xa2\x0f\xe0\x8d\xf0\x31\xea\x79\x67\x98\x83\x0f\x4f\xb4\xc4\x57\x42\xab\x80\x2c\x2e\xd0\x09\x38\x46\xf4\xa6\x92\x31\x12\xcc\x61\xf1\x67\x93\xff\x64\x8a\xec\x4c\x4a\x53\x17\xbc\x6a\x1a\xe7\x2d\x6d\x02\x06\xd4\x86\x4e\x4a\x7e\x72\xb3\xbc\x1d\xea\x3e\xd7\xc7\x92\x57\x02\x58\x65\xe0\xfc\x84\x28\x5d\x44\x15\xaa\x5e\xc7\xe1\xde\x97\x4f\x51\xfc\xc3\xfe\x71\xab\xdf\xac\xa0\x4f\x81\xb8\x7c\x14\xdd\x92\x3d\x4f\x3a\x58\x4d\xb1\x1a\x77\x69\xcb\x40\xf5\x59\x63\xd1\x3b\x3c\xbe\x92\x1a\xaa\x57\x41\xfc\x2d\x86\xdf\xf8\x02\x71\x60\x97\xdb\x7a\x8e\xe1\xcb\xe5\xb3\x53\x5d\x6f\x7b\x30\x1d\x1f\x25\xa3\x4c\xb1\x39\x7f\xf0\x88\x61\x57\x31\xf2\x68\x41\xbe\x2b\x5c\x10\xf6\x38\x32\xff\x1c\xad\xf2\x8a\x76\xd8\x78\xe4\x69\xd3\x42\x63\x71\xa7\xf0\xd1\x19\xcb\xd9\x24\x22\x9e\x16\x4c\x4f\x8d\xdd\xfd\x4d\x1b\x78\x0e\x60\x2c\xc4\x6d\x4b\xdb\xc0\xba\x24\xa3\xf4\x19\x76\x7c\xf6\xb6\xcb\x8e\x86\x3b\xcc\x18\x84\x59\x67\x16\xa4\xb7\xeb\x69\xef\xa6\xda\x33\xdb\x8f\x74\xc1\xeb\xe5\x78\xda\xc8\xd0\xe1\x10\xa3\x50\x39\xc7\x43\xc6\x12\x4f\x75\xc3\xc4\x87\x37\xba\x5d\x92\x0a\x56\xfb\x0c\xce\xb3\x4d\xbd\x15\x93\x95\xa1\x6b\x3e\xcb\xab\xc2\x02\x71\x88\xf3\xe4\x3d\x39\x1b\x35\xcb\x84\x6d\x6a\x4d\xaf\x5a\x54\x90\xbe\xd3\x53\x74\x81\xcc\x81\x57\x0a\xd1\x7d\x6f\xaf\x4a\xd5\x24\x27\x5c\x35\xb2\x07\xf3\xd7\x75\x2e\x79\x7e\xc2\x67\x6c\x94\xac\x33\x66\xee\x4e\xe1\xb5\x46\xc0\x6f\x86\xd9\xce\x0f\xc7\x28\x60\xf8\x8b\x9a\xbf\xfe\xc2\x65\x47\xd1\x3f\xd5\x00\x42\xbe\xfc\xb1\xbb\xdd\x24\x9d\xdc\xe4\xfb\xaf\xfa\x27\x89\xc2\xff\xbe\x07\xda\x61\x4f\xe4\x46\x06\xc7\xa4\x44\x50\x07\x56\xdc\xd6\x74\x29\xc7\x00\x79\x83\x6b\x93\xc7\x77\xc7\x48\x23\x59\x82\x2f\x90\xd1\x0b\xa8\xac\x3c\xf4\xf3\xbb\x06\xc8\x83\xbb\x6a\x69\xd5\xff\x71\x8d\xce\x78\x74\xd1\xd9\xcf\x94\xfe\xaf\xf8\xef\x1d\xed\xde\x07\x3e\x60\x79\xe4\xb3\x07\x2a\x9e\xb0\x70\xf5\x30\x43\x38\xe6\xed\xf0\x4e\xc3\x13\x19\x62\x5c\xaf\x70\xff\xd2\x42\xe0\x01\xbe\x85\xfe\xd0\x64\x31\x3b\xf3\x2e\x1e\xbf\xf1\x4c\xf5\xea\xe9\x0c\x3e\xa8\xea\x77\x88\xe7\x7e\x2f\xf2\xcf\xfd\x3e\x7e\x7c\xf3\x7b\xd1\xe2\x3f\xfe\x98\xec\xbf\x6c\x28\x3c\xd5\xdf\x82\x8f\xf8\x6a\x0a\x6a\xd5\xf9\x35\xe5\x5f\x59\xec\x6e\xe1\x02\xa0\xdd\xd2\xaa\xfa\xc0\xe9\x89\x55\x75\x0f\xc3\xb3\x77\xf1\x08\xf7\xa0\x6a\x3c\xb9\xa4\xfb\x7d\xef\xa6\xa1\xf1\xb5\x31\x12\x5d\xc8\xcf\x08\xd7\xab\xd1\x35\xf9\x92\xfe\x9b\xf8\x0b\xd8\xff\x6d\xe1\x3b\x32\x56\x81\xf2\x7b\x34\x04\xc0\xf0\x6f\x39\x8e\xfe\x2e\xba\x02\xf2\x0d\xc9\x2a\xfa\xff\x93\x68\xc1\xdf\x1f\x9f\x7a\x06\xf1\xf2\x39\x32\x6e\xe2\x1c\xab\x96\xd3\x6d\x16\x02\x6d\xff\xf0\x49\x43\xf0\x90\xce\x1a\x73\x5b\x7a\x78\x88\xbf\xe5\x99\x74\x62\x73\x74\xdc\x72\x0e\xd1\xff\x02\x00\x00\xff\xff\x01\xae\xd6\xfb\x08\x28\x00\x00") func staticCssAppCssBytes() ([]byte, error) { return bindataRead( @@ -99,7 +99,7 @@ func staticCssAppCss() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/css/app.css", size: 10231, mode: os.FileMode(420), modTime: time.Unix(1467073917, 0)} + info := bindataFileInfo{name: "static/css/app.css", size: 10248, mode: os.FileMode(420), modTime: time.Unix(1478398875, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -344,7 +344,7 @@ func staticJsAceJs() (*asset, error) { return a, nil } -var _staticJsAppJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xdc\x3d\xed\x72\xdc\xc6\x91\xff\xf9\x14\x23\xc8\x65\x62\x23\x12\x94\xec\xe4\xae\x8a\x4b\xae\x4f\xa1\xe5\x8a\x2e\x92\xe5\x13\xe9\xd4\x55\x31\x2c\x16\x76\x31\xdc\x85\x89\x05\x36\x00\x96\x14\xa3\xf0\x0d\xee\x01\xee\xf9\xee\x49\xae\x3f\xe6\x13\x18\xec\xae\x14\x27\xf6\x9d\x53\xa1\x17\x98\x9e\x9e\x9e\x9e\x9e\xfe\x9a\x1e\xf8\x2e\xad\x85\xcc\xf2\xb6\xaa\x85\xfb\xcf\xa9\x28\xd7\x45\x31\xde\xc3\xe6\x59\x55\x96\x72\xd6\xca\xcc\x6d\xbe\x49\x8b\x46\x72\xfb\xb4\xaa\x6e\x97\x69\x7d\xdb\xb8\xed\x1f\x1f\xb9\x31\x93\x37\xe9\xba\x68\xaf\xeb\xea\xbe\xb9\x2e\xf2\x65\xde\x42\xe3\x8b\xe7\xcf\x15\xea\x75\x5d\xcb\xb2\x7d\x37\xfd\x09\x06\xf0\x47\xa6\xf6\x9b\xbc\x68\x65\xfd\x6e\xd5\xe6\x55\xd9\x20\xd6\x3d\x21\x22\xf9\x97\x75\x5a\x44\xc7\x0c\x1e\x9d\x8a\xfd\x6f\x5f\x5e\xbc\xdc\x8f\x0e\xb0\xad\xac\xda\x6b\xd3\x1e\x3d\xf1\x1b\xe7\xb5\x4c\x01\x1d\x77\x8d\x26\xba\x4d\xb8\x8d\xd0\x1b\xda\xa3\x89\xdf\xb3\x90\x4d\xa3\x47\x14\xd1\x49\xaf\x8d\x7b\x51\x5b\xa7\x63\x7e\x2b\x6d\xc7\x37\xaf\xff\xf8\xca\x6b\xce\xdd\xf6\xe8\x75\xaf\x1d\x59\x61\xbb\xbf\x3e\x17\xdf\xff\xf8\xe6\x8d\x9d\xa9\x69\xa6\xa6\x77\x17\xdc\xbc\x07\xac\xdf\xbb\x59\x97\x33\xe4\x9a\x98\xaf\xf3\x2c\x1e\x11\xe7\xcc\xbb\xe6\xb7\xf8\x46\xd4\xb2\x5d\xd7\xa5\x78\x9b\xb6\x8b\xe4\xa6\xa8\xaa\x3a\x8e\x5f\x88\x67\xfc\x5c\xa7\x65\x56\x2d\xe3\xd1\x48\xfc\x46\x3c\xff\x00\x0b\xf6\xfc\xf9\x28\x69\xab\xf3\xb6\xce\xcb\x79\xfc\xe2\x5f\x46\x49\xb3\x9e\x36\xea\x69\x34\x16\x8f\x80\x5f\xe1\xbb\x44\xf4\x07\x82\xff\x46\x87\xd1\xce\x3f\xed\xdf\xab\xe4\xa7\x2a\x2f\xe3\x28\x1a\x8d\xf7\x1e\xdd\xc9\xc8\xf6\x1c\xd8\x0d\x3f\x5f\xeb\x49\xa1\x98\xe4\x19\xc8\x46\xc3\x0d\xe7\x20\xca\xe9\x5c\x26\x00\xfa\xba\x95\xcb\x38\x52\xef\xaf\xf3\x0c\xb1\x41\x8f\xfc\x46\xc4\x4f\xf2\x8c\xbb\x0b\xee\xcc\x5c\x1a\xd3\x8b\x0e\xa2\x26\x80\xe8\x00\x7a\x11\xf4\xe3\x9e\x9d\x77\x9e\xf9\xc4\x42\xc7\xf7\x20\xf5\x6f\x50\xe8\xe3\x72\xbd\xe4\x01\x8b\x6a\x96\x16\x3d\xdc\x76\x7b\x00\x6e\x84\xed\xcd\xdb\xa2\x62\x3c\x6a\xd0\x55\x5a\x37\xf2\x75\xd9\xc6\x1e\xde\x79\x00\xef\x48\xfc\xed\x6f\x81\xed\xd8\x1f\xe9\x87\x74\x9e\x97\x29\x3e\xbd\xbb\xb9\x01\x0a\x1d\x46\xaf\x00\x39\x6e\xd1\x2f\xe2\x28\x51\x7b\xf7\x10\xdf\x45\xa3\x24\x4b\xdb\x34\x8e\xf8\x61\xac\xc0\xf5\x7e\xf7\xc9\x1f\x5b\xea\x63\x42\x78\x28\x5e\xa0\x98\x11\x74\x88\x1a\xd9\x9c\x55\x6b\x98\x22\x12\x4d\xbf\x2c\x41\xc3\x23\x60\x2b\x30\x12\xda\x0c\x8b\x4c\x7f\x71\x24\xf4\xdc\x95\x3c\xe0\xfa\x68\x12\x46\xe2\x44\x74\x86\x12\x88\xea\xd9\xb3\xee\x8a\xc3\x4b\x9f\xde\x74\x95\x9f\xa5\x45\x11\x2f\x65\xbb\xa8\xb2\x03\x18\xba\x5d\xe0\xdf\x3a\x5d\x36\x07\x62\x36\xb5\x84\xb7\xf9\x52\x56\x6b\x24\xfd\x6b\xdc\x5b\xcf\xc7\xe2\xe8\x48\xfc\x4e\x2c\x73\xd0\x73\x79\x23\x64\x59\xad\xe7\x0b\x1c\xea\x8b\x24\xfd\x29\xfd\x10\x33\x15\xaa\xd7\xb1\xfe\x71\x40\x6f\xd7\x75\x01\x2a\x0b\xc6\x8e\x60\xf7\xd2\x90\xf4\x9a\x89\x38\x56\xff\xe6\x77\xb3\x74\xb6\x90\xc7\xac\xbd\xf9\x0d\xae\xdb\xb1\x26\x91\xde\x2c\x64\x9a\xc9\xba\x39\x56\x33\x07\xed\xf2\xe1\x50\xc9\xfe\x21\xc8\xfe\x71\x67\x17\x12\xd0\x23\x77\x6d\xd6\xb3\x19\xb4\x1c\x1b\x55\x13\x23\xfa\x91\xc1\x34\x9b\xf2\x8b\xb1\xdb\x49\xd6\x75\x55\x3b\x5d\x3e\x2c\x6a\xd0\x02\x6d\xda\xae\x81\x67\x7e\x7f\x5c\x2a\x6e\x11\xa7\xa7\x22\x52\x5c\x88\x2c\x80\x59\x1a\x18\xe9\xa3\xc6\x1c\xfd\xc7\x5a\xd6\x0f\x86\xe5\xe9\x0d\xe8\x79\x81\xbc\x8a\xf5\xab\x23\x34\x49\xcf\x47\xf0\x2a\x6a\x22\xf1\xa8\xe8\x53\x8b\xad\x08\xff\x89\xb0\x24\x24\x4d\xff\x7e\xfe\xee\x7b\xa4\x33\xa9\x65\xb3\x02\xd3\x24\x2f\xe4\x87\x76\xa4\xa7\x85\x52\xd2\xdf\x56\x6c\xe4\x9a\x18\xa5\x20\xf4\xcf\x47\x23\x3d\x11\x40\x83\x1a\x88\x8e\x2a\xee\x02\xbf\x3f\x3e\x92\xf8\xa0\x9e\x75\x71\x5e\xa4\x53\x30\x3f\x83\x28\x43\x38\x5b\xea\xb2\x05\x25\xee\xa5\x98\x20\x0f\x44\xb5\x6a\x95\xec\x6e\x46\x79\x84\x1c\xa5\x9f\xc8\xc6\x23\xdc\x41\x91\xd3\x3b\x38\x0e\x98\x93\xf5\x0c\xd6\x4b\xf6\x07\xdb\x61\x9c\x6d\xd8\x5f\x97\x99\xfc\x20\xcd\x44\x5c\x2e\xed\x3a\x8b\x9c\x51\x6c\x61\xd7\x19\x88\x40\x5b\xa7\x79\xd9\xf6\x06\xdb\x75\xa0\x99\x45\x31\x3c\xd8\x1f\xf2\x06\x14\xfc\xc3\xa7\x88\xd0\x82\xbb\x0c\xe3\xfc\xbd\xf6\xde\x06\xb0\x06\x70\x1a\x87\x6f\x00\x2b\x70\x6c\xb6\x6e\x25\xed\x97\xf8\x2f\xf8\xd7\x67\xbe\x8f\x75\x55\x35\x8c\x96\x20\x11\xa5\xa0\x5f\xc7\xfc\x2f\x11\x1c\x60\x55\x00\xab\x3e\x75\x00\xd5\x6d\xa7\x21\xb2\xbc\x51\x7e\xef\x2e\xdc\x36\x43\xd8\x6e\x3e\x6f\x1c\xda\xcb\x59\x95\xb9\xbc\xf1\xcc\xf9\x3d\x08\x5c\x75\x9f\x4c\xdb\x2a\x55\xad\xa0\x62\x80\xea\x99\x8c\x8f\xfe\xfc\xec\x68\x4e\xfe\x92\xfb\xee\x88\xde\x5d\xbb\xef\x4e\xe9\x55\xd2\xf5\x9d\xa6\xeb\xbc\xc8\xce\x41\xfd\x2f\xd3\x73\xc9\x9a\xb6\x4c\x97\xb8\x89\x58\xcb\x58\xdb\xd4\x70\x33\xd8\xa6\x28\x22\x0b\xc9\x06\xab\x05\xa9\x55\x3e\x38\xd8\x04\x12\x5d\xe3\x9b\xf2\x3f\xd1\x85\x52\x2e\x0c\x72\x97\xcb\xfb\x0e\x84\x88\xfe\x04\x2f\x0d\xc4\x12\x5d\xee\x3c\x2d\xf2\xbf\xca\xec\x5a\x81\x47\x6f\x9d\x97\xc2\x03\x6f\xc0\xb5\x07\xfe\x79\xc3\x46\xe7\xea\x65\x13\xa1\xde\x35\xf4\xe6\x33\x1b\x32\x0c\x90\xbb\x7f\x92\x8b\x59\x91\x36\xcd\x69\x74\x93\x82\x4d\x3c\x64\xa0\xc9\xc9\x51\x3e\xd9\xdf\x30\x87\x5d\xfa\x85\x66\xb6\x4b\xbf\xd0\x14\x7b\xfd\x66\x79\x3d\x2b\xe4\x61\xa5\xba\x7a\xf3\xbe\x45\x40\xb5\x74\x6c\x30\x71\x95\xc9\x5c\xae\xd6\xd3\x22\x9f\x81\xb5\x34\x30\xb0\x23\xc0\xcf\x97\x19\x2f\xb3\x5e\xf7\x67\xd0\x72\x92\xe5\x77\x6a\xd0\xfd\x86\x84\x86\x2c\x26\xf7\x04\x85\xb5\x3f\x21\xfc\x9b\xbb\x1c\xe2\xd0\xfb\x13\x43\xfe\x3e\x93\x7f\x53\x15\xe0\x60\x1c\x56\xfb\x44\xfe\x50\xeb\x4a\x96\x1a\x84\x86\xa6\x69\xc0\xc8\x27\xb0\xc9\xee\x76\x1a\x1d\x24\xa0\x85\xfd\x2e\x6b\x22\x16\x03\x20\x88\x72\xe3\x79\x5d\xad\x57\xa2\xba\x11\x97\x4a\x28\x0e\xd4\x2a\x1f\x84\x56\xed\xc0\x59\x92\x2b\x13\x32\x00\x57\xd5\xae\xb9\x24\x74\x57\x49\x21\xcb\x79\xbb\x40\x36\x83\x1b\x81\x03\xe7\xe5\x5a\x8e\xd9\x7d\x20\x90\x6b\x7f\x61\xc2\x4b\x23\xbe\xfc\x92\xa1\xd9\xbd\x21\xf2\x46\xdd\xfe\xfe\xa2\x6d\xe5\x02\xe3\x43\x0e\xba\x78\xec\x12\xee\x86\xe0\x90\xf6\x7f\x7f\x2d\x01\xe4\xae\x06\xc7\xb0\xce\xe7\x8b\x36\xbc\xa0\x1a\x04\x14\x5b\xe9\xac\x27\x2b\x14\xc5\x3f\xa4\x47\xc4\xf8\x3a\xcc\x57\x68\x1e\x39\x0b\xdf\xa1\x79\x5d\x4c\x22\xe6\x05\xad\x70\x0e\xa1\x0f\x2e\xb0\x8f\xca\x3a\x89\x26\x64\xd4\x22\x95\xe0\xc0\xd8\x4b\xfb\x7d\x1e\xf6\x22\xef\x30\xc4\xf0\x92\xb8\x48\x2e\xea\x61\xfb\xb0\x92\xa7\xfb\xa1\x96\x3c\xe3\xf7\x30\x22\x33\x1d\x7f\xa3\x72\x72\xa6\xfe\x65\x39\x6d\x56\x63\x4d\x05\x4b\x79\x91\xeb\xb9\x3e\xf6\x67\x7c\x04\x53\x76\xf8\xf1\xd8\xdb\xbe\xd4\x66\x20\xac\x81\x51\x40\xbe\x69\x28\xaa\x54\x59\x86\x46\x05\x7b\x10\xe0\x3d\xd5\xde\xe7\x28\x59\xb4\xcb\x82\x83\x71\x68\x72\x5c\xd9\xa0\x97\x4f\x4b\xa0\x54\x46\x5e\x76\x1c\xf8\x2f\xe2\x80\x19\x62\x60\xf6\xf5\x2f\xf9\xe1\x6a\x34\x4a\xd2\x15\xa8\x80\xec\xa2\x72\x49\xd1\x0c\x31\x3b\x88\x49\x49\x6e\xe5\x43\xc3\x54\x38\x3b\xf1\x85\x3b\x6e\x94\x30\x66\x98\x4e\x9a\x65\x67\xb8\xa0\xb1\xdd\x4a\x3e\xe2\x29\x58\x61\xf0\xe9\x5a\x70\xea\xdf\xca\x72\xdd\x70\x44\xd9\xf5\xe9\x65\x33\x4b\x57\xf2\x0f\xc8\x1b\x70\xdd\x78\x2c\x0e\x50\x6a\xf1\x84\xd3\x58\x18\x72\xab\xc7\x35\x8c\x73\x03\xca\xc8\xe4\x1d\xd4\x82\x70\x58\x11\xd3\xc6\x3b\x9a\x00\x75\x38\x2a\x21\x64\xb6\xf7\xd2\x0c\xd1\x49\x03\x44\x6b\x91\xc4\x51\xf6\x27\xf8\xf7\xe4\x08\xdf\xe3\x6a\xbb\x44\xae\xcb\x0e\x99\xda\xc8\x83\xde\x11\x59\x35\x5b\x2f\x21\x86\x4f\x66\x94\xfc\x7a\x55\x48\x7c\x8a\x23\x20\x85\x39\x22\x93\x1c\x9c\x99\xfa\x0f\x17\x6f\xdf\x60\x86\xa5\xad\x9d\xd8\x5d\x26\xb3\x05\x2c\xe5\xf7\xe0\xcd\x34\x96\xe9\xa0\xff\xc4\x37\xa0\xe3\xc4\xb1\x07\x70\xf9\xfc\x2a\x29\xe1\xc7\x9f\xd2\x02\xd5\x62\x27\x34\x3a\x73\xd3\x80\x7e\x7e\xc3\xcf\x10\x02\x3b\x3f\xd2\xae\x05\x37\x01\x54\x33\x6e\x3a\xfc\x85\xe6\xcf\x45\x09\x51\x99\xf2\xcc\x1d\x71\x86\x97\xeb\x82\xc4\x99\xd8\x9f\xb6\x6d\x0d\x33\xc5\x1d\xba\x04\xc2\x50\xd1\xeb\x26\x5a\x01\xf3\x54\xcb\x65\x75\x27\xb5\xc0\x2c\x57\xed\x43\xb0\xa5\xac\x0e\x67\x75\xb5\xea\x7a\x5d\x2b\x59\xc3\x86\x58\x12\x31\x2f\x59\xdc\x55\x84\x90\xd2\xd3\x81\x90\x85\x15\x9d\x54\x39\x5e\xa8\xfc\x6b\x40\x01\x8b\x12\xe1\xa4\x9d\xf7\x99\x2c\x64\x2b\x4d\xc8\x8b\x4b\xb9\x84\x90\x1b\xf3\x28\xd0\xfa\xb2\x96\xe2\xa1\x5a\x43\x20\xae\x7e\xdc\xa7\x65\x2b\xda\x8a\x34\xae\xc2\x82\xaa\x96\x03\x0f\x2f\x04\x11\xdf\x38\x86\xe9\x09\x28\xa8\x9b\xbc\x5e\xc6\x0a\xf7\x68\xa4\x16\xc4\x6a\x9b\xfb\xbc\x9d\x2d\x14\xc5\x9a\x9a\x59\xda\x48\x87\xf4\x63\xb5\xfb\xbc\x80\x20\xba\x78\xff\xe3\xf7\x67\x2f\x2f\x5e\x89\x8b\x97\xbf\x7f\xf3\x4a\x38\xe1\xdc\x40\xd6\x80\x49\xc2\x77\x09\x45\xf4\x23\x91\x16\xb2\x6e\xdd\x37\x63\x27\xfe\xb7\x6b\x6f\xc2\x78\xf3\x6b\x0a\x82\x7e\x3b\x76\x68\x55\xec\x0c\x53\xfa\xed\xfb\x77\x3f\xfc\x63\xa8\xf4\x34\xee\x67\x13\x0f\xea\xab\xaa\x5b\x43\x3c\x65\xcc\x41\xd8\x52\x4c\x2b\xc9\x42\xa5\xe4\xf8\x4d\x64\xb0\xa8\xbc\xba\x64\xdf\xc3\xae\x3f\x19\x41\x06\x76\x41\x39\x42\x3a\xd5\x91\x09\x87\x2f\x3f\xbe\x7f\x1d\x47\xe7\xaf\xde\xbc\x3a\xbb\x10\xbf\x11\xdf\xbd\x7f\xf7\xd6\x32\xc8\x1b\x68\x5d\x17\xb6\x2f\xa6\x28\x91\x71\xc9\xa2\x96\x37\x49\xb3\x2a\x72\xd8\x66\x4f\xa3\x11\x28\x07\x24\x00\xa2\x29\x8e\x01\xbf\x61\x2a\x4e\x2d\x41\x64\x23\x35\xd1\xfc\x5e\xcf\x00\x5b\xa8\x17\xbd\x66\x6a\xf1\xdd\xb5\x4d\xd7\x52\x8b\x9f\xb4\x72\x69\x04\xea\x84\x25\x12\xfd\xce\x18\xc8\xc6\xa8\x6a\x5a\xa4\xe5\xad\xe5\x1c\x40\x24\x37\xa0\x32\x9d\x25\x33\x4b\xf2\x18\xda\xf5\xef\xab\x7b\xb5\xe7\xf5\x66\xbf\x43\xfd\x17\xdc\xef\x10\xa6\xaf\xae\x39\x04\x76\xdd\x4c\xb3\x11\x87\xb7\x36\xf6\x14\xed\x42\xf2\xe4\xbf\x89\xbc\xbd\xda\x15\x69\xb5\x68\xab\xf9\xf5\x2c\x05\x9f\xb6\xb8\x9e\xa6\xb3\x5b\x30\xb3\xe4\x7b\x11\x75\xe4\x6b\x8d\xa3\x41\x39\xdf\x59\xca\x51\x94\x39\xbf\x16\x37\x0b\xe6\xc4\x5d\xde\x3e\xfc\x90\x96\x12\xb8\x4b\x09\x37\x65\x75\x47\x7d\x0e\x36\x20\xd8\x2f\x01\xdd\x7d\x9c\xe5\xb5\x74\x94\x0c\xeb\x1d\xd1\x7d\xad\xb7\xc4\xcb\xf3\x33\xb3\x1f\xb4\xc1\xfc\xf2\xe9\x87\xaf\x7e\xf7\xfb\xaf\xc6\x91\xbb\x77\xbe\x7d\x35\x08\x79\xa6\x21\x55\xb6\xbc\x0b\x15\xf5\xc9\x25\xaf\x86\x37\xae\xb2\x33\x07\x34\x85\xb3\xaa\x58\x2f\x4b\xfe\xfd\xae\x86\xb8\x86\x72\x56\x78\x9a\x65\x85\xe0\x89\x79\x53\xd9\x83\xae\x47\x9d\xc3\xd6\x22\xa2\x1b\x93\x54\x39\x70\x7b\x5d\x75\xa1\xd0\xa9\xf1\xf5\xf2\x30\x73\xc0\x00\x9e\xb4\xf5\xe4\xa4\xcd\x26\xaf\xde\xbf\x7f\xf7\xfe\x98\xf6\xab\x07\xca\x5e\x27\x02\xe1\x9f\xc8\xf3\xbf\x8c\xed\x1c\x6b\x6c\x8e\x39\x75\xdc\x29\xb6\x8e\x63\xc7\xbf\x31\xf6\xc2\x25\x0d\x73\x83\x7e\xc4\xd4\xa3\xf2\xfb\x0a\x10\xcc\xaa\x3a\x6b\x40\x05\x80\xef\xf4\x0f\xa4\x8c\xcf\x38\x0b\x1b\x9b\xe1\x0b\x24\xd1\x26\x40\x34\xe1\x33\x5a\xce\x06\xb4\x40\xfd\x2a\x05\xeb\x67\xb6\x08\x34\xb8\xbb\x16\x1e\xc9\x17\xb2\x22\xe0\xe4\xc0\x71\x28\xf2\xd1\x61\xf6\xca\x8b\xc3\x35\xbd\x93\x1c\x30\x70\xb4\x80\x18\x30\x5c\xc0\xdf\xec\xa5\x20\xae\xc3\x0a\x65\x88\xf4\x99\x91\x28\x04\x98\x38\x5d\x6c\x2c\x61\xf7\x90\x01\x1e\xa9\x55\x5e\xf8\xb1\x85\x2c\x60\x4b\x04\x09\xec\x53\xe4\x8e\xd5\xc5\xf4\xc8\x62\x78\x74\x24\x60\xfd\xf8\x1c\x01\x35\xd4\x32\xbd\x95\xa4\xa1\x98\x7f\xa2\x84\x68\x10\x49\x42\xc9\xf5\x34\xa1\xd9\xcb\x0e\x09\x13\x3d\x08\xb5\x00\xea\x6f\xc1\x60\xd7\x4b\x70\xa5\xc5\xfd\x22\x07\x55\xa0\x90\xaa\x68\xbf\xa1\x81\x90\x6c\x72\xf1\xf2\x29\xe8\x3e\x76\xf8\x68\x04\x32\x8a\xbc\x24\xb0\xbc\xdd\x75\xa5\x74\xef\xbb\x9b\xd8\x81\x75\xfd\x6f\x47\x7a\x7b\x12\x00\x6f\x5d\x9f\xac\xb6\xc2\x43\x44\xbf\xcc\x32\xd0\x94\x05\x52\xb1\x4e\x0b\x14\x2f\xa6\x71\x21\x6b\xe9\x44\xae\x18\x31\x39\x98\x60\x50\xc5\x86\x6c\x72\x42\xb1\x1c\x70\xdd\x71\xe8\x01\xf4\x32\xbf\x1a\xd9\xb4\x08\xf0\x2a\xb3\x0b\xe2\x0e\x8e\x23\xa6\x5a\x59\xb5\x6d\x55\x1a\x61\xf5\x59\xef\x0d\x99\x6a\x01\x9d\xb6\xd0\xad\x2d\x0f\x3f\x34\xf4\x2f\xeb\x4d\x26\x4d\xfb\xa0\xfc\x47\x18\xe1\x90\x5f\xaa\xc8\x97\x1f\x58\x7a\x14\xb4\x36\xd9\x0a\x82\x0c\x0e\x03\xe0\x54\x7a\x4b\x74\xc5\xb0\xe8\x2f\x9c\xee\x3f\x65\xd1\x53\x40\x94\x3e\xe0\x89\xa7\xa1\x69\xd3\x06\xe6\x89\xd4\xd4\xcf\x2a\xb8\x68\x6c\x45\x95\x54\x0e\x4a\xaa\x16\xeb\x46\xcb\x35\xbe\x3b\x69\xa7\x55\xf6\x30\x51\xf4\xe9\xa6\x6a\x8a\xef\x86\xd4\x50\xe7\x08\x58\xc5\x36\xa0\xa5\x63\x7d\xe6\x0c\x2b\x62\xcf\x58\x05\xd8\xc6\x75\x91\x89\xaa\x2c\x1e\xc4\x54\x8a\xbb\xbc\xc9\xd1\x23\xab\x4a\x1e\x12\x36\x89\xda\x22\x79\x86\x71\x24\x67\x85\xae\x51\xda\x01\x6d\xe4\xa8\xce\xa7\x48\x2b\x25\x82\x9d\xb0\x04\xac\xe5\x02\x8f\x68\xd5\x68\x91\x12\x67\x21\x54\x54\x54\xa6\x77\x62\x5d\x88\x22\x4f\x1a\xf0\x84\xb1\xca\xa3\x8b\xc1\xbe\x1f\xab\x3e\x9c\xcd\x70\xd5\xab\x0b\xe3\xcd\x1f\xec\x3e\x39\x1e\xfa\xe4\x82\xc9\x75\x8e\x32\x82\x4e\x86\xa3\x80\x2f\xaf\xc6\x26\xb3\xc3\xdb\xc3\xf7\x46\x68\x33\xae\xcb\x66\x91\xdf\xb4\xf1\xa5\x39\xea\xcd\x71\x4f\xbc\x50\x29\x85\xfc\x2a\x51\x87\x04\xfa\x11\xcf\xfd\x9a\x36\x5d\xae\xae\x3a\x81\xbf\x35\xe3\x1f\x95\x5e\x69\x8e\xc5\x65\x44\x47\xfe\x91\x3e\xa0\x88\x4c\xf7\xe8\xea\x80\x28\x38\x66\x72\x95\x4c\x89\xce\xba\xab\x25\xd3\x47\x31\x8e\xa9\xca\xcb\x15\x1e\x5f\x26\x8b\x3c\x33\x1e\xbf\xb3\x92\x2b\x08\x28\xe3\x88\xb6\x20\x0e\x7b\x83\xe5\x1e\x5b\x0c\x9d\x13\x86\xf6\x33\x16\xb8\x1c\xde\xc9\x98\xcd\xf9\xab\x68\xa0\x1f\x8c\xd3\x96\x35\xce\x05\x3e\x84\x2c\x37\x3b\x81\xd1\x0f\x85\x44\xe7\x8a\xc5\x41\xa4\x1c\x10\x3c\x19\xb0\xbb\xdd\x63\x3a\x3e\x8d\x08\x0a\x44\x90\x9f\xfa\x6c\x4e\x61\x77\xd6\x4e\xe9\xed\x5f\x9c\xcd\xee\xb9\xe0\xaf\x82\xd5\x2e\x41\x9f\xca\x6e\xf7\x84\xf2\xd7\xcb\xf2\xd7\xe5\x4d\xf5\xcb\xf2\x7a\xd3\x79\xaf\x36\x7f\x47\x39\x90\xa9\x4e\x08\x83\x2b\x80\xf9\x4a\xea\x77\x88\x90\x18\x02\x53\x32\x0f\x98\x94\xe0\x54\x5d\x8e\xf2\xea\xb4\x55\x9b\x16\xd7\x4d\xfe\x57\xa9\x53\x88\x14\x91\xd9\xd7\xbd\x1e\xd8\xde\xef\x60\xde\xf6\xe0\x69\xbb\xf5\x3b\xd8\xd7\xbd\x1e\x54\x64\x34\xc3\x2a\x1a\xaf\x87\x7d\xdd\xeb\x41\xd9\x85\xbc\x9c\x6b\xf8\xe8\xc7\xf2\xb6\xac\xee\x4b\xbb\xe8\x7b\xae\xd4\x7d\x47\xe5\x81\x5a\x94\x03\x8b\x8c\x09\xc2\x8e\xa4\xac\x57\x40\x84\x54\xf6\x17\x6c\x8a\xb5\x8d\x4e\x44\xd6\x7d\x29\xb6\x54\x3c\x41\x38\xeb\x3e\x37\xf4\xc2\x4c\x8e\xfd\xad\x44\x75\xe3\x89\xbd\xc0\x03\x8a\x17\x8e\xcc\xc3\x96\x90\x77\x84\xfa\x40\x24\x25\xc0\xe8\x61\x78\xab\x64\x79\x83\x33\x26\x3b\x64\x7e\x87\x05\x30\x40\x2a\x47\xb3\x2e\xbd\x76\x86\x44\x57\x0f\xa4\xe9\xc3\xd8\x45\x53\x6c\xea\xb4\x8b\x89\xcd\xb8\x7b\x13\x0a\x4e\xc2\x7a\x22\x4e\xf0\xb1\xbd\x9b\x3f\xf7\xc7\x01\x52\x14\xa9\x48\x11\x1e\xa9\x75\x09\x3d\x19\x9a\x9a\x43\xc6\xe6\x25\x18\xa4\xfe\x53\x56\x4e\xaf\xd6\x53\xde\xa5\x2a\xde\xd5\x22\xe2\x90\xd8\xd9\x31\x1b\x26\xcc\xca\x6b\xa8\x51\xbc\x50\x2e\x5c\x40\x22\xbb\x3c\x42\x8f\x1e\x44\x94\x4b\xca\x06\xe4\x60\xc8\xe8\xa1\x67\x1a\x07\xd3\x1f\xbf\xa8\x66\xc6\x61\xb1\x62\xc8\x54\x05\x50\xb9\x9f\x3e\x68\xf7\x4b\x08\xf9\x38\xbe\xa2\x02\xc8\x63\x03\xd0\x2f\x8d\x54\x75\x6f\x30\xbf\x6b\xf6\x17\x8f\xdd\xbc\x8f\x6d\xa4\xc0\xfd\x58\x58\x4e\xec\xb9\x87\xf6\x5c\xe7\x6c\xe8\xd2\x98\x50\xa0\xb8\xa9\x51\x53\x54\x91\x2a\x2c\x1a\x84\x4e\x86\xca\x15\x53\x18\x00\xe7\x47\x1f\x9c\x4c\xf3\xb1\x0f\xae\xcd\x35\x81\x19\xd2\x30\x74\x5c\xad\x20\x2e\x61\x30\x50\xcc\x1c\xa6\xc0\xc2\xa8\xa0\x3b\xd7\x23\xc9\x4c\x2d\x18\x83\x2a\x3a\x71\xf3\xa9\x17\xd5\xca\xf5\xee\xef\x31\xee\x45\xf7\x5e\xb9\xf1\xfb\x10\xe5\x3d\x13\x7e\xdf\x67\xf8\xf6\x40\x01\x78\x95\xe0\x97\x06\xe7\x95\x29\x7b\x89\xb0\x6c\x1a\xb3\x96\xdc\x44\x13\xe2\xda\x44\x5d\x4c\x2c\x22\xed\xa0\xa0\x10\x5c\x46\x44\x43\x74\x85\xa9\x5f\xfc\xd5\x73\x96\xa8\x08\x4e\x95\xc8\x50\x9d\xd9\x90\xa5\x76\xdd\x95\xfe\xa9\xd2\x14\x77\xaf\xfc\x7c\xaf\x3f\x10\xc1\x85\x9c\xaf\x81\x7c\xa3\xa9\x69\x0e\x7b\x74\x1c\x43\x32\x4c\xd7\x32\x92\xb1\x76\x2c\xe1\x46\xbf\xcb\x56\xf2\xfd\xa2\x5b\x3c\x38\xcf\x46\xd3\xc6\x9d\xf6\x86\x56\x61\xbb\x7f\xba\x87\x7b\xb3\x6c\xaa\x02\x08\xae\xe6\x71\x7f\x66\xe6\x88\xbc\xc3\x14\x16\xa3\x8f\xea\xc4\x72\xc0\x53\x11\x43\xde\x60\xdf\xcf\xfe\xbb\x1c\x65\x8a\xc8\x29\x0d\xaf\x16\x2b\xc8\x35\x75\x16\x81\x48\xf8\x82\x88\x3d\xfb\xe8\x70\xd0\x7a\xa4\xc3\x1c\x8c\x46\x3d\x32\xce\xb8\x50\x0e\x1e\xb7\xd2\x32\x33\xa0\x6a\x15\x7a\x4e\xb6\x03\xb1\xc1\xad\x1e\x4a\x2c\xdc\xca\x87\x81\xd4\xc2\x6a\xdd\x2c\xe2\x4b\x68\x57\xc9\x03\xf8\x75\xb5\x21\x69\xa0\xba\x3a\xa9\x03\x93\x84\xa4\x3a\x23\xcc\x77\x45\x57\x07\xce\x08\x9c\x3a\x60\x7c\x9f\x10\x40\xd9\xe5\xb6\xb1\x53\x68\xad\xbd\x53\x17\x67\x6f\x56\xde\x9d\x1a\x9d\x1d\xb5\x35\xdf\xea\x90\xdd\x39\x95\xd2\x44\x53\xe2\x4d\x35\x99\x97\x5c\x45\x1e\xad\x30\x51\xa2\x5e\x51\x62\xf0\x18\x93\xd7\xe5\x1c\x4c\x90\xe2\xd8\xa6\x7d\x9a\x2a\x5a\x79\x36\xbd\x25\x36\xcd\x1b\x16\xb8\xa7\x14\xb1\x32\x42\xff\xd5\xe7\x2c\x3b\x6b\xe2\x5d\x98\x5c\xaf\x55\x1d\xea\x2e\x5b\x49\x6d\x11\xe8\x73\x20\x9e\xaa\x72\x54\xf8\x35\x6b\xee\xe0\xef\x4f\x0d\x9e\x10\x3e\xfd\xb0\x2c\x42\xbe\x23\xa8\x12\x69\xf6\x18\x21\xbc\x06\x98\x79\x8d\x37\x93\xec\x16\xdc\xf3\x0f\x6d\xbf\x48\x40\xf8\x96\xb1\xda\xbf\x74\x04\xca\xc6\x1a\xeb\xd5\x63\xba\x11\x62\xdb\xa8\x36\x43\xab\x30\x54\xcc\x84\x65\xe0\x9c\xe6\xb3\xe6\x40\xd7\x0e\x1c\x36\xf7\xa6\xe1\xae\x43\x47\xb3\x87\x8a\x8a\x77\x54\x96\xff\x3c\x9a\xc3\x5a\x71\x38\x3b\xeb\xd8\x15\x97\xe5\x6d\xf5\xa6\xba\x97\xf5\x19\xd8\x3d\x30\x0d\xfa\x50\x22\xd2\xf5\xcb\x23\xcc\x03\x1f\xfa\xd5\x4d\xdb\x2d\x81\xd1\x57\xa4\x04\xd1\x30\x1f\xc5\x5c\xf7\xf3\xb7\x0c\x80\x46\x7f\x6e\x8e\x72\x7b\x5e\xf1\x5e\x62\x89\x82\x2e\xa1\x03\x4f\xb9\x69\x91\xc0\xb4\x7c\x68\x17\xe8\x07\xde\xa7\x8d\xe0\xde\xd9\x11\xd7\x50\x64\x9d\x49\x2c\x53\xac\x0f\xa9\xb1\x74\x44\xd3\x19\xa8\x7a\x08\x5d\x96\x80\x65\x7a\xc5\x53\xfd\xbf\xb1\xa9\x7e\xed\x1b\xa7\x5f\x2c\xff\xff\x66\xe3\x7c\xb6\x1f\xc4\xa5\x33\x17\x55\xcc\xd9\x35\x6b\x18\x7f\x86\x55\x0e\x84\x9d\x3f\x67\x1d\x8c\xad\x76\x09\xdc\x25\xd8\xad\xf4\x45\x97\xbd\x04\xaa\x5e\xf6\xb9\xea\x65\x7f\x34\x1e\xb4\xd3\x8e\x67\xe8\x95\xc4\x84\x0b\x22\xfc\x24\x1d\x65\xe4\xf4\x21\xd0\x46\x27\x79\xa3\x47\x6c\x8a\x50\x86\x4a\x09\x58\x2c\x6c\xf4\x22\x74\xa8\xdb\x11\xbc\xc0\xf9\xf7\x70\x47\x57\x32\x1f\xed\xee\x70\x80\xbb\x51\x3a\x57\xce\x9e\xb0\xe7\x21\xd4\x71\xe7\xbe\x89\x99\x27\x6c\x8f\x95\xbf\x78\x72\xc4\x70\x13\x63\x12\xe8\x50\x18\x4f\x6e\xab\x1b\x61\xa6\xeb\x17\x32\xcb\x82\xef\x63\xaa\x31\xa8\x84\x94\xa3\x50\x76\x36\xe9\x80\x0a\x24\x4b\xa5\x79\xd4\xc3\x38\x3c\xd7\x2e\xf9\x7c\xc2\x19\xcb\x62\x83\xb6\xce\xcb\xbc\x7d\x45\xbb\xc4\x71\x2f\xef\xeb\x5c\xd9\xea\x0b\x73\xd1\x91\xef\x75\xeb\x68\x02\x5e\x40\xd8\x9e\xe0\x03\x84\x09\x6b\xf0\x26\x97\x9e\x4a\x57\x1b\x0f\x04\xf0\x3b\x08\x53\xcf\xf3\xbf\xca\xf8\xc5\xd7\x6e\x34\x82\xa5\x2f\x60\x4a\x20\xf2\x07\x3c\x78\x5e\xbb\x84\xbf\xd5\xb2\xc2\x82\x87\xa8\x03\x78\x0e\x0b\xf7\x43\x9d\x97\xed\xdb\xb4\x86\xc9\xc6\x56\x37\xb9\xae\x11\x6d\x11\x30\xb8\xd0\xe1\x2d\xec\x2b\x46\x8c\x61\xfc\xd1\x6a\xde\xfc\xa5\x88\x36\x75\x00\x51\x26\x1a\xbf\xda\x04\xf4\x63\x23\xcf\xab\x1b\x84\x6d\x62\x65\x7a\x2c\xf0\xac\x5a\x2e\xd3\x32\x6b\x48\x83\xa9\xdf\xf1\x25\x2f\xb5\xf2\xc6\x41\x0d\x7b\xce\x38\xd6\x29\xff\x51\x3e\x58\xaf\x1d\xb6\x23\x80\x9d\xb5\x75\x71\xf8\xaa\xc4\xc4\x8f\x76\xc6\x97\xe9\x0c\x1b\x18\xad\x6a\xe3\x15\x55\x77\x30\xc1\xbb\x72\xae\x60\x32\x49\x4e\x28\x64\x9c\x5c\x47\x0e\x0e\x84\x47\x9c\xb2\x0e\xbb\x13\x38\x44\xdc\x27\x12\x66\x5c\x05\x87\xb4\x2b\x8f\xb3\xd0\x2f\x9a\x2d\x30\x0c\x71\xab\xda\x5c\x55\xd2\x13\x57\xa7\x5c\xa7\x90\x69\xad\xeb\xd8\xfa\x70\x9e\x32\x08\x49\xbd\x53\x05\xd7\x1b\x7a\xe8\x36\xf8\x6a\x7e\x2f\xa7\x9a\x91\x41\x0f\x9d\x39\x64\x8b\xe8\x1e\xfb\x6e\x4a\xf8\x42\xb8\x8b\xda\x24\x93\xb9\xcb\x97\x5f\x0a\xcf\xa4\x4d\xac\x36\xb5\x3b\x89\x49\x60\x63\x33\x76\xdb\x88\x4f\xac\xce\x68\x8a\x6c\xfe\xbc\xcb\xd1\x59\x06\xfb\xb0\x6e\xc1\x8d\xbf\xa8\xaa\xa2\xcd\x57\xfa\x54\x94\xb3\x40\x77\xf9\x1c\xf3\x4e\xc9\xba\x91\xf5\xcb\x39\x96\xa5\x1b\xcf\xf7\xdd\xb9\xf8\x4f\x70\x7b\x27\x3d\x4f\xca\x28\x3b\x8a\x4a\x31\x4c\xd4\x43\x1c\x8b\xff\xf9\xaf\xff\x7e\xc6\x92\xee\x38\x0a\xc6\x87\xde\xd2\x6f\x28\xc1\xbf\x6d\x50\x14\xed\xcf\x1a\x95\x3b\x46\x01\xbe\xf9\xb9\x92\x73\xd9\xb6\xe0\x80\x37\xb6\x94\xc2\xde\xe0\x0c\x9a\x4a\xac\x98\xaa\x44\x59\xb5\xb8\x00\xe8\xc0\x3b\x1f\xec\x00\xc6\xdf\xcb\xfd\x3b\x29\xe6\xd8\x5c\xf2\x85\x69\xdf\xc0\x7a\x65\x84\xc2\xab\x2c\xdd\xe5\x1a\xc6\xc4\x35\xc9\x40\x0a\x90\xef\x8e\x5f\x8a\x79\x51\x4d\xd3\x02\x25\x57\x01\xd9\xd6\x53\xb2\x79\xe3\x3d\xdb\xfb\x3d\xf9\x80\x54\x48\x25\x3f\x40\x48\x82\x91\x88\x86\xd7\xe1\xbd\x63\xd9\x6c\x52\xe8\xda\xde\x59\xed\x5c\x67\x51\x98\xb1\x44\x8a\x1c\x1f\x85\xc6\x62\xe9\x1a\xef\x89\x63\xa6\xdd\x12\xa0\xf0\x60\xdd\x31\xa8\x06\xec\x2e\xcd\x0b\x2a\xbb\x36\x80\x0a\x88\xec\x7d\x30\x19\x15\x22\x85\x2e\xe4\x49\x2a\x77\xde\xe7\xda\x28\xf5\xf4\x89\x14\x32\x7e\x73\xd7\x1d\xcf\x05\x5c\x76\xf9\x5e\x0f\x6d\xf9\x8e\xbb\xe4\x81\x77\xbd\x2b\x5b\x68\xe5\x12\xc0\x7e\xa7\x83\xbd\x7b\x25\xc4\x0a\x3c\x7f\x64\xc4\xfa\x16\xe8\x4b\x5b\x07\xbd\x83\x17\x1a\xf5\x31\x86\xf1\x74\xd1\x84\xeb\x8f\x56\x18\x48\x75\xad\x4d\x95\x13\xab\x03\x31\xae\xc3\xf4\xf2\xf8\xf6\x6b\x16\x4d\x53\xa8\x6f\x5f\xb8\x03\xc2\x5b\x3d\xa0\x89\x0c\x78\x40\x2a\xea\x06\x8b\x96\xd6\x19\x5d\xe2\xb0\x6f\x9b\x85\x77\x7f\x63\x51\x35\xad\x42\xbc\x9a\x5f\xe3\x93\xc5\xa8\x61\x30\x5a\xb1\x30\x54\xf6\xdf\x83\x41\xc5\x69\x61\xf0\x29\x80\x87\x2f\x11\x9a\x32\x7e\xb0\xba\xab\xaa\xc4\xf3\x3a\x8d\x1a\x00\xee\xab\x3a\xf3\xb8\xc8\x7d\xb3\xa9\x10\x16\x7f\x36\xf5\xe6\xad\x8e\x25\x81\xb0\xb0\x3b\xae\x26\x10\xfd\xee\xb7\x5f\x7f\xe5\x57\xea\x71\x6c\x44\x77\xa8\x31\x34\x3c\x3e\xa2\x52\x09\x9a\x0c\xc8\xf2\x31\x9f\x40\xf2\x95\xc5\x7f\xc3\x07\x62\x97\x69\x41\xb4\x58\x51\x81\x0f\x40\x20\xfc\xfc\x06\x96\x04\x79\xcd\x65\xb2\x4d\x11\x50\xe4\xf4\xe9\x10\xb4\x8f\x30\x30\x0c\x6f\x0d\x0d\xbd\xe4\x15\xe0\x24\x0b\x2e\x9c\x07\xf1\xe2\xab\x7f\x4d\x9e\xc3\xff\x5e\x68\x08\x67\xf6\x8c\x12\xec\xa8\xd7\x43\x91\x03\xf0\xa7\x7e\xda\x06\x27\x8e\x15\x8a\x21\x82\x9d\x5c\xa9\x2a\x3b\x07\xe8\x4e\x88\xd5\xbb\xa5\xa6\xef\x3a\x25\xde\xd5\x4f\xaa\x1a\x91\x5e\xb1\x6a\x9e\xd9\x7b\x47\xd8\x03\x7e\x27\x33\x46\xb5\x04\x54\x26\x8f\xdd\x82\xbb\x8c\xe7\x9f\xaa\x3e\xa3\xb9\x56\x40\xd7\x08\x65\x33\xbd\x33\x08\x1f\x9b\x63\xfc\xda\x91\x1e\x59\xdd\xac\x55\x00\x10\x78\x82\xf3\xe1\xb8\x71\x0a\x0d\x10\xe1\x6a\x38\x15\xce\xd0\x3f\x28\x66\x32\xe1\xf1\x8d\x8a\x52\x37\xd1\x49\x75\x32\x88\x42\x44\xf1\x0d\x17\x2f\xe4\x59\xd4\x81\x57\x55\xaf\xee\x9d\x98\x74\x66\x8b\x21\x95\x78\xee\x72\x4f\xcb\xaa\x4a\xfa\xeb\x26\x16\xbe\x88\xf5\x65\x3a\xcc\x54\xa4\xd9\x43\xd7\xdb\xb3\x45\x2e\xe6\xd8\x8d\x1d\xd3\x22\x9f\xdd\x82\x2b\x40\xea\xdf\xe9\xd2\x3f\x50\x1f\x8d\x85\x1d\xd6\xa2\x73\x4e\xb7\x3a\x08\xc3\xe8\x9c\x93\xba\x71\x00\x9d\xa9\xaa\xdb\x91\x3a\x53\x4a\x18\xa6\xce\xab\x1a\xf3\x50\x0e\x4e\xd6\x96\xcc\x8d\x7b\xe8\x4c\x0d\xe5\x76\xea\xfc\xba\xd3\x30\x75\xca\x0f\xee\x21\x1b\x42\xa7\x4e\x51\xc6\x0a\x28\x30\x59\x73\x4c\xe5\xe3\xec\xa1\xeb\x1d\x7e\x8d\xfb\xe8\xec\x79\x48\x97\xc0\x1e\xba\xce\x31\xcf\x58\x53\xb7\xe7\x3a\xad\x43\xdc\x27\x69\xf6\x43\x3c\xa7\xaf\xf5\x5d\xb7\xf5\xf7\x22\x31\xd7\xec\x37\x77\xdb\x7a\x9b\x74\x5c\x44\xc0\x1d\x04\x98\x68\xdc\x1d\x03\x43\x77\x50\x70\x92\x72\x47\x0c\x04\xdc\x41\x60\x33\x8c\x2e\x92\xa8\xad\x5d\x54\x32\x50\x15\x20\xda\x7a\xa8\xb6\xda\x44\x08\x2d\xc8\xf5\x50\x3d\xb5\x47\x85\xbd\x93\xed\x51\x91\xf4\xaf\xea\x0f\x90\xc5\x23\xad\xd2\x9a\x34\x4a\xd2\x56\xf3\x79\x21\x83\xb7\xa1\x77\x1f\x15\x13\x00\xff\x84\xe1\x8a\x3c\x38\x88\x7f\x43\xf8\xb4\x73\x82\xa9\x49\xb0\xc6\xc1\x9c\x63\x52\x96\xd1\x6f\xc7\x77\x91\xfa\xa2\x95\x93\xfe\xb6\xa7\x20\xdd\x3c\xb4\x76\x18\x87\x16\xb2\xdb\xbe\xad\x88\xd0\xc2\xf9\x85\x3c\x07\x22\x58\xaa\x63\x83\x98\x4e\x01\xec\xd8\x7f\x69\x4d\xc8\x4e\x42\x4d\x79\x46\x75\x7d\x23\xc8\x73\x49\x55\x7a\x80\xf1\x5b\xbe\x21\x67\x7c\x40\xef\xc6\x9a\xcf\x5b\xdf\xe6\x22\x20\x5f\x37\xec\x01\x72\xde\x52\x63\xdc\x72\x95\x92\x27\xb4\x6d\x93\x2e\x82\xb3\x20\xa7\xde\x14\xcd\xe0\x5d\x58\xa0\x22\x31\x07\xf6\xcd\xe5\x3e\x12\xb4\x7f\x95\xdc\xf1\xad\x75\xdd\x47\x19\x70\xe0\x2c\xd1\xbe\xef\xdb\xf5\x7d\x08\x81\xd2\x86\xd7\x7f\x5f\x6f\xe4\x7d\xd7\x49\x7e\x62\x11\x6c\x0d\xac\x89\x24\x24\xa3\x91\x6d\x62\xef\x7c\xe1\xe5\x32\xba\xeb\x68\x11\x0c\x41\xaa\xab\x8e\x43\xe1\xdb\x70\xb7\x97\xb6\x57\x58\x9a\xdc\x82\xa3\x30\x9a\xcd\xf2\x96\x4d\x0b\xbb\x44\x99\x98\x08\xfc\xee\xc0\x40\x86\x4e\x8b\x08\xb0\x16\xb6\x29\xb8\x7c\xa0\x52\xf0\x5b\x0e\xa1\x34\x43\x80\x95\x56\xdc\x4e\xfd\x4f\x22\x18\xbc\xf4\xad\x05\x25\x9c\xb4\x48\xfa\xaa\xae\x46\xe7\xa2\xd2\x04\xa8\xd4\xbb\x79\xa4\xec\xbb\x66\x2c\xa6\xdb\x19\x89\x7e\xe5\xd4\x13\x80\x48\xd3\xf7\x69\xea\xaa\xb0\x5d\x66\x7c\x63\x27\x23\x79\xd5\x94\x39\x2f\x47\xae\x14\x11\x6a\x7d\x7a\xf4\xe7\xd2\xe1\xc5\xa9\xf8\xda\x11\x0b\x45\x1b\xe3\x59\x48\xfc\x4e\x0b\x32\xfc\xab\xe7\xcf\x57\x1f\xa2\xee\x61\x86\xc3\x0c\xdd\x51\x51\xb0\x4c\x3f\x1c\x06\x7b\x7b\xcb\x7b\x03\x2b\xbc\xb8\x56\xdf\x98\xdb\x62\x6f\x7b\xa7\xc1\x2e\x26\xac\x78\x35\xc5\x8b\x88\xa6\x59\x4f\xf9\xeb\x98\xbb\x69\xa3\x5d\xd5\xad\xb3\xa9\x95\x12\xd0\x4c\xb8\xc9\xf1\x56\x74\xb0\xec\xd2\xaa\x02\x53\xb8\x19\xec\xe5\x57\x5f\xda\x5e\x9c\x6f\x75\x73\x18\x6e\x67\xaf\x16\xd3\x5d\x71\x35\x98\xa9\xa9\xf4\xab\x21\xaf\x6c\xc4\x49\xa5\x90\x94\x2e\x35\x49\x5d\x4a\x3c\x38\xda\xa2\x53\x5c\xb7\x92\xb3\xfc\x46\xd7\x79\x0a\x27\x3d\x6c\xf7\xd3\x46\x55\xd0\x59\xbf\x84\xd3\xed\x87\xea\xcb\xa3\x9b\xe5\xc0\xfd\x8e\xe7\xaa\xae\x96\xab\x3e\x5d\xa9\x28\xe5\x3d\x57\x6e\xe9\x8f\xa4\xfa\xe5\xba\x2e\x9b\x18\x17\x4c\x9c\x7f\x4c\x7a\x1f\x82\xd9\xc5\x04\x0b\xff\xf3\xad\xfa\x73\xa1\xaa\x29\x38\xfd\x6e\xba\xab\x2b\x04\xe1\x63\x08\xcf\x1a\xdd\xa5\x85\x23\x4b\xdd\xe4\xca\x25\x7f\x0f\xf8\xc0\xf9\xf8\xaf\x5d\x74\x00\x1e\xe1\x5c\xfd\x13\xd0\x9e\xd7\xc0\xd9\x39\xeb\x3c\x0c\x58\x85\x50\xd7\x6e\x1e\xd0\xce\x54\x65\xcf\xe8\x3a\xfa\xa1\x3d\x2e\xdd\xb8\xea\x9f\xe6\xe3\xec\x22\x74\xde\xa1\xad\x5b\x87\xbf\x55\xfa\x94\x40\xec\xf6\x61\x5b\x65\x01\xb0\x64\x5f\x6c\xfd\x16\x6e\xe3\x55\xf7\x70\xa7\x89\x1e\x6f\x77\xa9\xd4\x04\x3e\x73\xe5\x33\xc0\x0e\xd5\x44\x57\xd0\x6d\x17\xdc\xfb\x34\xb4\x9f\x4e\x56\xbe\xf9\xd6\xeb\x25\x26\xdf\x61\x27\xa2\x91\x4f\xba\x5b\x6b\x97\x3b\x1f\xbd\xb4\xb0\xbb\x6e\x2e\x82\x9f\x73\xdd\xb6\x93\xbe\x0b\xff\x0f\x1d\xfe\xef\x7a\x49\x64\xb3\xc2\xe8\xd1\xd5\xfd\x6e\xd5\xae\xab\xd4\xe1\x29\x9e\xca\x0d\xe7\x23\x82\x2e\x96\xf9\xce\xbb\x5f\x43\x31\x2b\xaa\xc6\x4d\x6d\xf4\x53\xf7\x1d\xc3\x10\x3a\xab\xea\x66\x04\x3a\x38\xb7\x91\xe7\x7c\x8d\x33\x70\x88\xba\x69\xd0\xed\xb3\xf0\xce\x2b\xb6\x11\x6a\xbb\x6d\x53\x6e\xc1\xc3\x0e\x3b\x56\xf8\x54\x84\x4f\x2f\xb6\x9f\x57\x7b\x16\x62\x43\xf6\xba\xb3\x92\xa1\x53\x0b\x2d\x48\x43\x7b\xd3\x1c\x48\x6c\xa6\xca\x75\xb0\x87\xec\x17\x7b\xac\x9b\x73\xed\x1d\x98\x5e\xb6\xfd\xef\x9e\xd1\x96\x23\xa0\x5d\xcc\xd6\x56\x0c\x9f\x99\x22\xe0\x1d\xc4\xdf\xd5\x32\x70\xce\x41\x94\x53\x94\x40\x9f\xb0\xa1\xf4\x8b\xfd\x76\x55\x8f\x38\x6e\x67\x1a\x3b\xdb\x35\x04\xad\xce\xaa\x0c\xbc\xbb\x31\x42\xf0\xcd\x62\x10\xd4\x8d\xc0\x0c\xb5\xfa\x2c\x6c\x57\x7a\xb7\x8d\xdf\xa5\x77\xdb\xfc\x3e\x95\xde\x66\xf1\x6b\x20\xb5\x0b\xea\x07\xb7\x43\x8a\xc4\x3d\x90\xdd\xc1\xef\x54\x37\x75\x3a\xe1\x48\x2f\x00\x31\x9f\x2b\x8d\x36\xe7\x2d\xf0\x1b\x96\xa7\xf6\x70\xfb\x12\xfb\x5d\xd9\xda\xe2\xb3\x85\x9c\xdd\x22\x42\x7b\x74\x8f\xb7\xca\x20\xb4\xa7\x23\x31\x70\x22\xcd\x88\x88\x2a\xc1\x97\x4f\xfc\x51\x07\x4f\x7d\x75\x07\x5f\xf9\x3b\x6a\x82\xf7\x0c\x04\xb5\xb8\xc3\xe3\x4e\x8c\xe3\x4d\x03\x28\xfd\x2e\x2f\x0a\x3c\x8b\xd7\x84\xca\x4c\x58\x5c\x48\x28\x59\x1a\xa3\xf2\xfd\xd3\x5b\x22\x05\x9f\x6d\x38\xda\x39\xbb\x25\x08\x7c\xf6\x21\x9c\x93\x5b\x9e\x4e\x63\xee\x71\x85\x0f\x69\x19\x8f\x7a\xe7\x43\x9a\x53\x5a\x82\x41\x3d\x32\x4d\xbd\xb2\xdc\xa0\x0a\x25\x60\x78\x54\x70\x66\x39\xdc\x32\x0f\x05\xb3\x08\xe7\x60\x10\x35\x34\xf6\xf8\x01\xef\x5c\x9e\x58\xc0\x2e\x5b\x10\xd0\x61\x8d\x05\xec\x72\x07\x01\x1d\x0e\x39\x18\x03\x4c\x22\xac\x3e\xa3\x02\x6c\x58\x74\xe5\x63\xa0\x4a\xb4\x33\x41\xc7\xe1\x0b\xcc\x2a\xd0\xea\x4c\x25\xd4\xd7\xa7\xdf\x87\xd8\x45\xb3\x0d\xab\x07\x4c\x3f\x7d\x5e\x5e\xc5\xa8\x0c\x36\x76\xbd\xcc\x87\x0a\x05\xe9\xeb\xcd\xfe\xad\x2d\xdd\x91\xff\x53\x13\x4e\xa2\x9e\xfe\xf3\x15\xc1\x92\x0f\x9e\x85\x5b\x5e\x40\x7d\x71\x7f\x87\x8b\x0c\x06\x92\xa8\x9f\x5b\xf9\xd1\xab\xd6\x10\x8a\xfa\x4b\x7a\x7b\x25\xcc\x3f\xe0\xb4\xf7\x01\x58\x36\xae\x14\x40\x40\x60\xcc\x82\xba\x9d\x48\x64\xba\x9d\xfa\x05\x1f\x7e\x27\x92\xa4\x6e\xa7\x7e\x05\x48\x67\x24\x2d\x60\x57\xee\x48\x9d\xfa\x8f\x4e\x82\xd0\x13\x23\xaa\x0d\xeb\x08\x9d\xbe\x5a\x1e\xbc\x6a\xa1\x3e\x7e\xa0\xb2\x3b\xf7\x69\xde\x26\x49\x62\x5c\x9f\xfe\xe7\xf4\xed\xb7\xf4\xf5\x7f\x43\xc5\x7e\x6f\x4b\x36\x2b\xbb\x2c\x43\xa3\x72\xa1\xaf\x1a\x56\x09\x58\xe4\x07\xca\x88\xa8\x5b\xe5\x26\x9c\xff\xe8\x95\xf9\x6f\x5d\xe9\xa6\x01\x26\x70\x79\xb5\x45\xd6\xb1\xdc\x8f\xea\xdf\x9e\x12\xf1\xc7\x41\x16\xd9\x61\x3a\xe9\xd1\xa1\xe1\x83\x71\x8c\x81\xe3\xa0\xf2\x5a\xeb\x7d\x8f\xcc\x6e\x63\xa7\xef\x92\x0f\x7d\x43\xb3\xf0\xc2\x24\xb7\xfe\x1b\x5f\x07\xcb\x3c\x3f\xf5\xd2\xa6\xbb\xba\x43\x8b\x34\xb8\x44\x9b\xe3\xc1\xe0\x17\xef\xc2\x8b\x10\x5e\x82\xcf\x67\xec\x00\x5b\x4d\x55\x3d\xfc\xff\x7f\x03\x00\x00\xff\xff\x72\xb2\xc8\xc8\x90\x6d\x00\x00") +var _staticJsAppJs = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xdc\x3d\xed\x72\xdc\xc6\x91\xff\xf9\x14\x23\xc8\x65\x62\x23\x12\x94\xec\xe4\xae\x8a\x4b\xae\x4f\xa1\xe5\x8a\x2e\x92\xe5\x13\xe9\xd4\x55\x31\x2c\x16\x76\x31\xdc\x85\x89\x05\x36\x00\x96\x14\xa3\xf0\x0d\xee\x01\xee\xf9\xee\x49\xae\x3f\xe6\x13\x18\xec\xae\x14\x27\xf6\x9d\x53\xa1\x17\x98\x9e\x9e\x9e\x9e\x9e\xfe\x9a\x1e\xf8\x2e\xad\x85\xcc\xf2\xb6\xaa\x85\xfb\xcf\xa9\x28\xd7\x45\x31\xde\xc3\xe6\x59\x55\x96\x72\xd6\xca\xcc\x6d\xbe\x49\x8b\x46\x72\xfb\xb4\xaa\x6e\x97\x69\x7d\xdb\xb8\xed\x1f\x1f\xb9\x31\x93\x37\xe9\xba\x68\xaf\xeb\xea\xbe\xb9\x2e\xf2\x65\xde\x42\xe3\x8b\xe7\xcf\x15\xea\x75\x5d\xcb\xb2\x7d\x37\xfd\x09\x06\xf0\x47\xa6\xf6\x9b\xbc\x68\x65\xfd\x6e\xd5\xe6\x55\xd9\x20\xd6\x3d\x21\x22\xf9\x97\x75\x5a\x44\xc7\x0c\x1e\x9d\x8a\xfd\x6f\x5f\x5e\xbc\xdc\x8f\x0e\xb0\xad\xac\xda\x6b\xd3\x1e\x3d\xf1\x1b\xe7\xb5\x4c\x01\x1d\x77\x8d\x26\xba\x4d\xb8\x8d\xd0\x1b\xda\xa3\x89\xdf\xb3\x90\x4d\xa3\x47\x14\xd1\x49\xaf\x8d\x7b\x51\x5b\xa7\x63\x7e\x2b\x6d\xc7\x37\xaf\xff\xf8\xca\x6b\xce\xdd\xf6\xe8\x75\xaf\x1d\x59\x61\xbb\xbf\x3e\x17\xdf\xff\xf8\xe6\x8d\x9d\xa9\x69\xa6\xa6\x77\x17\xdc\xbc\x07\xac\xdf\xbb\x59\x97\x33\xe4\x9a\x98\xaf\xf3\x2c\x1e\x11\xe7\xcc\xbb\xe6\xb7\xf8\x46\xd4\xb2\x5d\xd7\xa5\x78\x9b\xb6\x8b\xe4\xa6\xa8\xaa\x3a\x8e\x5f\x88\x67\xfc\x5c\xa7\x65\x56\x2d\xe3\xd1\x48\xfc\x46\x3c\xff\x00\x0b\xf6\xfc\xf9\x28\x69\xab\xf3\xb6\xce\xcb\x79\xfc\xe2\x5f\x46\x49\xb3\x9e\x36\xea\x69\x34\x16\x8f\x80\x5f\xe1\xbb\x44\xf4\x07\x82\xff\x46\x87\xd1\xce\x3f\xed\xdf\xab\xe4\xa7\x2a\x2f\xe3\x28\x1a\x8d\xf7\x1e\xdd\xc9\xc8\xf6\x1c\xd8\x0d\x3f\x5f\xeb\x49\xa1\x98\xe4\x19\xc8\x46\xc3\x0d\xe7\x20\xca\xe9\x5c\x26\x00\xfa\xba\x95\xcb\x38\x52\xef\xaf\xf3\x0c\xb1\x41\x8f\xfc\x46\xc4\x4f\xf2\x8c\xbb\x0b\xee\xcc\x5c\x1a\xd3\x8b\x0e\xa2\x26\x80\xe8\x00\x7a\x11\xf4\xe3\x9e\x9d\x77\x9e\xf9\xc4\x42\xc7\xf7\x20\xf5\x6f\x50\xe8\xe3\x72\xbd\xe4\x01\x8b\x6a\x96\x16\x3d\xdc\x76\x7b\x00\x6e\x84\xed\xcd\xdb\xa2\x62\x3c\x6a\xd0\x55\x5a\x37\xf2\x75\xd9\xc6\x1e\xde\x79\x00\xef\x48\xfc\xed\x6f\x81\xed\xd8\x1f\xe9\x87\x74\x9e\x97\x29\x3e\xbd\xbb\xb9\x01\x0a\x1d\x46\xaf\x00\x39\x6e\xd1\x2f\xe2\x28\x51\x7b\xf7\x10\xdf\x45\xa3\x24\x4b\xdb\x34\x8e\xf8\x61\xac\xc0\xf5\x7e\xf7\xc9\x1f\x5b\xea\x63\x42\x78\x28\x5e\xa0\x98\x11\x74\x88\x1a\xd9\x9c\x55\x6b\x98\x22\x12\x4d\xbf\x2c\x41\xc3\x23\x60\x2b\x30\x12\xda\x0c\x8b\x4c\x7f\x71\x24\xf4\xdc\x95\x3c\xe0\xfa\x68\x12\x46\xe2\x44\x74\x86\x12\x88\xea\xd9\xb3\xee\x8a\xc3\x4b\x9f\xde\x74\x95\x9f\xa5\x45\x11\x2f\x65\xbb\xa8\xb2\x03\x18\xba\x5d\xe0\xdf\x3a\x5d\x36\x07\x62\x36\xb5\x84\xb7\xf9\x52\x56\x6b\x24\xfd\x6b\xdc\x5b\xcf\xc7\xe2\xe8\x48\xfc\x4e\x2c\x73\xd0\x73\x79\x23\x64\x59\xad\xe7\x0b\x1c\xea\x8b\x24\xfd\x29\xfd\x10\x33\x15\xaa\xd7\xb1\xfe\x71\x40\x6f\xd7\x75\x01\x2a\x0b\xc6\x8e\x60\xf7\xd2\x90\xf4\x9a\x89\x38\x56\xff\xe6\x77\xb3\x74\xb6\x90\xc7\xac\xbd\xf9\x0d\xae\xdb\xb1\x26\x91\xde\x2c\x64\x9a\xc9\xba\x39\x56\x33\x07\xed\xf2\xe1\x50\xc9\xfe\x21\xc8\xfe\x71\x67\x17\x12\xd0\x23\x77\x6d\xd6\xb3\x19\xb4\x1c\x1b\x55\x13\x23\xfa\x91\xc1\x34\x9b\xf2\x8b\xb1\xdb\x49\xd6\x75\x55\x3b\x5d\x3e\x2c\x6a\xd0\x02\x6d\xda\xae\x81\x67\x7e\x7f\x5c\x2a\x6e\x11\xa7\xa7\x22\x52\x5c\x88\x2c\x80\x59\x1a\x18\xe9\xa3\xc6\x1c\xfd\xc7\x5a\xd6\x0f\x86\xe5\xe9\x0d\xe8\x79\x81\xbc\x8a\xf5\xab\x23\x34\x49\xcf\x47\xf0\x2a\x6a\x22\xf1\xa8\xe8\x53\x8b\xad\x08\xff\x89\xb0\x24\x24\x4d\xff\x7e\xfe\xee\x7b\xa4\x33\xa9\x65\xb3\x02\xd3\x24\x2f\xe4\x87\x76\xa4\xa7\x85\x52\xd2\xdf\x56\x6c\xe4\x9a\x18\xa5\x20\xf4\xcf\x47\x23\x3d\x11\x40\x83\x1a\x88\x8e\x2a\xee\x02\xbf\x3f\x3e\x92\xf8\xa0\x9e\x75\x71\x5e\xa4\x53\x30\x3f\x83\x28\x43\x38\x5b\xea\xb2\x05\x25\xee\xa5\x98\x20\x0f\x44\xb5\x6a\x95\xec\x6e\x46\x79\x84\x1c\xa5\x9f\xc8\xc6\x23\xdc\x41\x91\xd3\x3b\x38\x0e\x98\x93\xf5\x0c\xd6\x4b\xf6\x07\xdb\x61\x9c\x6d\xd8\x5f\x97\x99\xfc\x20\xcd\x44\x5c\x2e\xed\x3a\x8b\x9c\x51\x6c\x61\xd7\x19\x88\x40\x5b\xa7\x79\xd9\xf6\x06\xdb\x75\xa0\x99\x45\x31\x3c\xd8\x1f\xf2\x06\x14\xfc\xc3\xa7\x88\xd0\x82\xbb\x0c\xe3\xfc\xbd\xf6\xde\x06\xb0\x06\x70\x1a\x87\x6f\x00\x2b\x70\x6c\xb6\x6e\x25\xed\x97\xf8\x2f\xf8\xd7\x67\xbe\x8f\x75\x55\x35\x8c\x96\x20\x11\xa5\xa0\x5f\xc7\xfc\x2f\x11\x1c\x60\x55\x00\xab\x3e\x75\x00\xd5\x6d\xa7\x21\xb2\xbc\x51\x7e\xef\x2e\xdc\x36\x43\xd8\x6e\x3e\x6f\x1c\xda\xcb\x59\x95\xb9\xbc\xf1\xcc\xf9\x3d\x08\x5c\x75\x9f\x4c\xdb\x2a\x55\xad\xa0\x62\x80\xea\x99\x8c\x8f\xfe\xfc\xec\x68\x4e\xfe\x92\xfb\xee\x88\xde\x5d\xbb\xef\x4e\xe9\x55\xd2\xf5\x9d\xa6\xeb\xbc\xc8\xce\x41\xfd\x2f\xd3\x73\xc9\x9a\xb6\x4c\x97\xb8\x89\x58\xcb\x58\xdb\xd4\x70\x33\xd8\xa6\x28\x22\x0b\xc9\x06\xab\x05\xa9\x55\x3e\x38\xd8\x04\x12\x5d\xe3\x9b\xf2\x3f\xd1\x85\x52\x2e\x0c\x72\x97\xcb\xfb\x0e\x84\x88\xfe\x04\x2f\x0d\xc4\x12\x5d\xee\x3c\x2d\xf2\xbf\xca\xec\x5a\x81\x47\x6f\x9d\x97\xc2\x03\x6f\xc0\xb5\x07\xfe\x79\xc3\x46\xe7\xea\x65\x13\xa1\xde\x35\xf4\xe6\x33\x1b\x32\x0c\x90\xbb\x7f\x92\x8b\x59\x91\x36\xcd\x69\x74\x93\x82\x4d\x3c\x64\xa0\xc9\xc9\x51\x3e\xd9\xdf\x30\x87\x5d\xfa\x85\x66\xb6\x4b\xbf\xd0\x14\x7b\xfd\x66\x79\x3d\x2b\xe4\x61\xa5\xba\x7a\xf3\xbe\x45\x40\xb5\x74\x6c\x30\x71\x95\xc9\x5c\xae\xd6\xd3\x22\x9f\x81\xb5\x34\x30\xb0\x23\xc0\xcf\x97\x19\x2f\xb3\x5e\xf7\x67\xd0\x72\x92\xe5\x77\x6a\xd0\xfd\x86\x84\x86\x2c\x26\xf7\x04\x85\xb5\x3f\x21\xfc\x9b\xbb\x1c\xe2\xd0\xfb\x13\x43\xfe\x3e\x93\x7f\x53\x15\xe0\x60\x1c\x56\xfb\x44\xfe\x50\xeb\x4a\x96\x1a\x84\x86\xa6\x69\xc0\xc8\x27\xb0\xc9\xee\x76\x1a\x1d\x24\xa0\x85\xfd\x2e\x6b\x22\x16\x03\x20\x88\x72\xe3\x79\x5d\xad\x57\xa2\xba\x11\x97\x4a\x28\x0e\xd4\x2a\x1f\x84\x56\xed\xc0\x59\x92\x2b\x13\x32\x00\x57\xd5\xae\xb9\x24\x74\x57\x49\x21\xcb\x79\xbb\x40\x36\x83\x1b\x81\x03\xe7\xe5\x5a\x8e\xd9\x7d\x20\x90\x6b\x7f\x61\xc2\x4b\x23\xbe\xfc\x92\xa1\xd9\xbd\x21\xf2\x46\xdd\xfe\xfe\xa2\x6d\xe5\x02\xe3\x43\x0e\xba\x78\xec\x12\xee\x86\xe0\x90\xf6\x7f\x7f\x2d\x01\xe4\xae\x06\xc7\xb0\xce\xe7\x8b\x36\xbc\xa0\x1a\x04\x14\x5b\xe9\xac\x27\x2b\x14\xc5\x3f\xa4\x47\xc4\xf8\x3a\xcc\x57\x68\x1e\x39\x0b\xdf\xa1\x79\x5d\x4c\x22\xe6\x05\xad\x70\x0e\xa1\x0f\x2e\xb0\x8f\xca\x3a\x89\x26\x64\xd4\x22\x95\xe0\xc0\xd8\x4b\xfb\x7d\x1e\xf6\x22\xef\x30\xc4\xf0\x92\xb8\x48\x2e\xea\x61\xfb\xb0\x92\xa7\xfb\xa1\x96\x3c\xe3\xf7\x30\x22\x33\x1d\x7f\xa3\x72\x72\xa6\xfe\x65\x39\x6d\x56\x63\x4d\x05\x4b\x79\x91\xeb\xb9\x3e\xf6\x67\x7c\x04\x53\x76\xf8\xf1\xd8\xdb\xbe\xd4\x66\x20\xac\x81\x51\x40\xbe\x69\x28\xaa\x54\x59\x86\x46\x05\x7b\x10\xe0\x3d\xd5\xde\xe7\x28\x59\xb4\xcb\x82\x83\x71\x68\x72\x5c\xd9\xa0\x97\x4f\x4b\xa0\x54\x46\x5e\x76\x1c\xf8\x2f\xe2\x80\x19\x62\x60\xf6\xf5\x2f\xf9\xe1\x6a\x34\x4a\xd2\x15\xa8\x80\xec\xa2\x72\x49\xd1\x0c\x31\x3b\x88\x49\x49\x6e\xe5\x43\xc3\x54\x38\x3b\xf1\x85\x3b\x6e\x94\x30\x66\x98\x4e\x9a\x65\x67\xb8\xa0\xb1\xdd\x4a\x3e\xe2\x29\x58\x61\xf0\xe9\x5a\x70\xea\xdf\xca\x72\xdd\x70\x44\xd9\xf5\xe9\x65\x33\x4b\x57\xf2\x0f\xc8\x1b\x70\xdd\x78\x2c\x0e\x50\x6a\xf1\x84\xd3\x58\x18\x72\xab\xc7\x35\x8c\x73\x03\xca\xc8\xe4\x1d\xd4\x82\x70\x58\x11\xd3\xc6\x3b\x9a\x00\x75\x38\x2a\x21\x64\xb6\xf7\xd2\x0c\xd1\x49\x03\x44\x6b\x91\xc4\x51\xf6\x27\xf8\xf7\xe4\x08\xdf\xe3\x6a\xbb\x44\xae\xcb\x0e\x99\xda\xc8\x83\xde\x11\x59\x35\x5b\x2f\x21\x86\x4f\x66\x94\xfc\x7a\x55\x48\x7c\x8a\x23\x20\x85\x39\x22\x93\x1c\x9c\x99\xfa\x0f\x17\x6f\xdf\x60\x86\xa5\xad\x9d\xd8\x5d\x26\xb3\x05\x2c\xe5\xf7\xe0\xcd\x34\x96\xe9\xa0\xff\xc4\x37\xa0\xe3\xc4\xb1\x07\x70\xf9\xfc\x2a\x29\xe1\xc7\x9f\xd2\x02\xd5\x62\x27\x34\x3a\x73\xd3\x80\x7e\x7e\xc3\xcf\x10\x02\x3b\x3f\xd2\xae\x05\x37\x01\x54\x33\x6e\x3a\xfc\x85\xe6\xcf\x45\x09\x51\x99\xf2\xcc\x1d\x71\x86\x97\xeb\x82\xc4\x99\xd8\x9f\xb6\x6d\x0d\x33\xc5\x1d\xba\x04\xc2\x50\xd1\xeb\x26\x5a\x01\xf3\x54\xcb\x65\x75\x27\xb5\xc0\x2c\x57\xed\x43\xb0\xa5\xac\x0e\x67\x75\xb5\xea\x7a\x5d\x2b\x59\xc3\x86\x58\x12\x31\x2f\x59\xdc\x55\x84\x90\xd2\xd3\x81\x90\x85\x15\x9d\x54\x39\x5e\xa8\xfc\x6b\x40\x01\x8b\x12\xe1\xa4\x9d\xf7\x99\x2c\x64\x2b\x4d\xc8\x8b\x4b\xb9\x84\x90\x1b\xf3\x28\xd0\xfa\xb2\x96\xe2\xa1\x5a\x43\x20\xae\x7e\xdc\xa7\x65\x2b\xda\x8a\x34\xae\xc2\x82\xaa\x96\x03\x0f\x2f\x04\x11\xdf\x38\x86\xe9\x09\x28\xa8\x9b\xbc\x5e\xc6\x0a\xf7\x68\xa4\x16\xc4\x6a\x9b\xfb\xbc\x9d\x2d\x14\xc5\x9a\x9a\x59\xda\x48\x87\xf4\x63\xb5\xfb\xbc\x80\x20\xba\x78\xff\xe3\xf7\x67\x2f\x2f\x5e\x89\x8b\x97\xbf\x7f\xf3\x4a\x38\xe1\xdc\x40\xd6\x80\x49\xc2\x77\x09\x45\xf4\x23\x91\x16\xb2\x6e\xdd\x37\x63\x27\xfe\xb7\x6b\x6f\xc2\x78\xf3\x6b\x0a\x82\x7e\x3b\x76\x68\x55\xec\x0c\x53\xfa\xed\xfb\x77\x3f\xfc\x63\xa8\xf4\x34\xee\x67\x13\x0f\xea\xab\xaa\x5b\x43\x3c\x65\xcc\x41\xd8\x52\x4c\x2b\xc9\x42\xa5\xe4\xf8\x4d\x64\xb0\xa8\xbc\xba\x64\xdf\xc3\xae\x3f\x19\x41\x06\x76\x41\x39\x42\x3a\xd5\x91\x09\x87\x2f\x3f\xbe\x7f\x1d\x47\xe7\xaf\xde\xbc\x3a\xbb\x10\xbf\x11\xdf\xbd\x7f\xf7\xd6\x32\xc8\x1b\x68\x5d\x17\xb6\x2f\xa6\x28\x91\x71\xc9\xa2\x96\x37\x49\xb3\x2a\x72\xd8\x66\x4f\xa3\x11\x28\x07\x24\x00\xa2\x29\x8e\x01\xbf\x61\x2a\x4e\x2d\x41\x64\x23\x35\xd1\xfc\x5e\xcf\x00\x5b\xa8\x17\xbd\x66\x6a\xf1\xdd\xb5\x4d\xd7\x52\x8b\x9f\xb4\x72\x69\x04\xea\x84\x25\x12\xfd\xce\x18\xc8\xc6\xa8\x6a\x5a\xa4\xe5\xad\xe5\x1c\x40\x24\x37\xa0\x32\x9d\x25\x33\x4b\xf2\x18\xda\xf5\xef\xab\x7b\xb5\xe7\xf5\x66\xbf\x43\xfd\x17\xdc\xef\x10\xa6\xaf\xae\x39\x04\x76\xdd\x4c\xb3\x11\x87\xb7\x36\xf6\x14\xed\x42\xf2\xe4\xbf\x89\xbc\xbd\xda\x15\x69\xb5\x68\xab\xf9\xf5\x2c\x05\x9f\xb6\xb8\x9e\xa6\xb3\x5b\x30\xb3\xe4\x7b\x11\x75\xe4\x6b\x8d\xa3\x41\x39\xdf\x59\xca\x51\x94\x39\xbf\x16\x37\x0b\xe6\xc4\x5d\xde\x3e\xfc\x90\x96\x12\xb8\x4b\x09\x37\x65\x75\x47\x7d\x0e\x36\x20\xd8\x2f\x01\xdd\x7d\x9c\xe5\xb5\x74\x94\x0c\xeb\x1d\xd1\x7d\xad\xb7\xc4\xcb\xf3\x33\xb3\x1f\xb4\xc1\xfc\xf2\xe9\x87\xaf\x7e\xf7\xfb\xaf\xc6\x91\xbb\x77\xbe\x7d\x35\x08\x79\xa6\x21\x55\xb6\xbc\x0b\x15\xf5\xc9\x25\xaf\x86\x37\xae\xb2\x33\x07\x34\x85\xb3\xaa\x58\x2f\x4b\xfe\xfd\xae\x86\xb8\x86\x72\x56\x78\x9a\x65\x85\xe0\x89\x79\x53\xd9\x83\xae\x47\x9d\xc3\xd6\x22\xa2\x1b\x93\x54\x39\x70\x7b\x5d\x75\xa1\xd0\xa9\xf1\xf5\xf2\x30\x73\xc0\x00\x9e\xb4\xf5\xe4\xa4\xcd\x26\xaf\xde\xbf\x7f\xf7\xfe\x98\xf6\xab\x07\xca\x5e\x27\x02\xe1\x9f\xc8\xf3\xbf\x8c\xed\x1c\x6b\x6c\x8e\x39\x75\xdc\x29\xb6\x8e\x63\xc7\xbf\x31\xf6\xc2\x25\x0d\x73\x83\x7e\xc4\xd4\xa3\xf2\xfb\x0a\x10\xcc\xaa\x3a\x6b\x40\x05\x80\xef\xf4\x0f\xa4\x8c\xcf\x38\x0b\x1b\x9b\xe1\x0b\x24\xd1\x26\x40\x34\xe1\x33\x5a\xce\x06\xb4\x40\xfd\x2a\x05\xeb\x67\xb6\x08\x34\xb8\xbb\x16\x1e\xc9\x17\xb2\x22\xe0\xe4\xc0\x71\x28\xf2\xd1\x61\xf6\xca\x8b\xc3\x35\xbd\x93\x1c\x30\x70\xb4\x80\x18\x30\x5c\xc0\xdf\xec\xa5\x20\xae\xc3\x0a\x65\x88\xf4\x99\x91\x28\x04\x98\x38\x5d\x6c\x2c\x61\xf7\x90\x01\x1e\xa9\x55\x5e\xf8\xb1\x85\x2c\x60\x4b\x04\x09\xec\x53\xe4\x8e\xd5\xc5\xf4\xc8\x62\x78\x74\x24\x60\xfd\xf8\x1c\x01\x35\xd4\x32\xbd\x95\xa4\xa1\x98\x7f\xa2\x84\x68\x10\x49\x42\xc9\xf5\x34\xa1\xd9\xcb\x0e\x09\x13\x3d\x08\xb5\x00\xea\x6f\xc1\x60\xd7\x4b\x70\xa5\xc5\xfd\x22\x07\x55\xa0\x90\xaa\x68\xbf\xa1\x81\x90\x6c\x72\xf1\xf2\x29\xe8\x3e\x76\xf8\x68\x04\x32\x8a\xbc\x24\xb0\xbc\xdd\x75\xa5\x74\xef\xbb\x9b\xd8\x81\x75\xfd\x6f\x47\x7a\x7b\x12\x00\x6f\x5d\x9f\xac\xb6\xc2\x43\x44\xbf\xcc\x32\xd0\x94\x05\x52\xb1\x4e\x0b\x14\x2f\xa6\x71\x21\x6b\xe9\x44\xae\x18\x31\x39\x98\x60\x50\xc5\x86\x6c\x72\x42\xb1\x1c\x70\xdd\x71\xe8\x01\xf4\x32\xbf\x1a\xd9\xb4\x08\xf0\x2a\xb3\x0b\xe2\x0e\x8e\x23\xa6\x5a\x59\xb5\x6d\x55\x1a\x61\xf5\x59\xef\x0d\x99\x6a\x01\x9d\xb6\xd0\xad\x2d\x0f\x3f\x34\xf4\x2f\xeb\x4d\x26\x4d\xfb\xa0\xfc\x47\x18\xe1\x90\x5f\xaa\xc8\x97\x1f\x58\x7a\x14\xb4\x36\xd9\x0a\x82\x0c\x0e\x03\xe0\x54\x7a\x4b\x74\xc5\xb0\xe8\x2f\x9c\xee\x3f\x65\xd1\x53\x40\x94\x3e\xe0\x89\xa7\xa1\x69\xd3\x06\xe6\x89\xd4\xd4\xcf\x2a\xb8\x68\x6c\x45\x95\x54\x0e\x4a\xaa\x16\xeb\x46\xcb\x35\xbe\x3b\x69\xa7\x55\xf6\x30\x51\xf4\xe9\xa6\x6a\x8a\xef\x86\xd4\x50\xe7\x08\x58\xc5\x36\xa0\xa5\x63\x7d\xe6\x0c\x2b\x62\xcf\x58\x05\xd8\xc6\x75\x91\x89\xaa\x2c\x1e\xc4\x54\x8a\xbb\xbc\xc9\xd1\x23\xab\x4a\x1e\x12\x36\x89\xda\x22\x79\x86\x71\x24\x67\x85\xae\x51\xda\x01\x6d\xe4\xa8\xce\xa7\x48\x2b\x25\x82\x9d\xb0\x04\xac\xe5\x02\x8f\x68\xd5\x68\x91\x12\x67\x21\x54\x54\x54\xa6\x77\x62\x5d\x88\x22\x4f\x1a\xf0\x84\xb1\xca\xa3\x8b\xc1\xbe\x1f\xab\x3e\x9c\xcd\x70\xd5\xab\x0b\xe3\xcd\x1f\xec\x3e\x39\x1e\xfa\xe4\x82\xc9\x75\x8e\x32\x82\x4e\x86\xa3\x80\x2f\xaf\xc6\x26\xb3\xc3\xdb\xc3\xf7\x46\x68\x33\xae\xcb\x66\x91\xdf\xb4\xf1\xa5\x39\xea\xcd\x71\x4f\xbc\x50\x29\x85\xfc\x2a\x51\x87\x04\xfa\x11\xcf\xfd\x9a\x36\x5d\xae\xae\x3a\x81\xbf\x35\xe3\x1f\x95\x5e\x69\x8e\xc5\x65\x44\x47\xfe\x91\x3e\xa0\x88\x4c\xf7\xe8\xea\x80\x28\x38\x66\x72\x95\x4c\x89\xce\xba\xab\x25\xd3\x47\x31\x8e\xa9\xca\xcb\x15\x1e\x5f\x26\x8b\x3c\x33\x1e\xbf\xb3\x92\x2b\x08\x28\xe3\x88\xb6\x20\x0e\x7b\x83\xe5\x1e\x5b\x0c\x9d\x13\x86\xf6\x33\x16\xb8\x1c\xde\xc9\x98\xcd\xf9\xab\x68\xa0\x1f\x8c\xd3\x96\x35\xce\x05\x3e\x84\x2c\x37\x3b\x81\xd1\x0f\x85\x44\xe7\x8a\xc5\x41\xa4\x1c\x10\x3c\x19\xb0\xbb\xdd\x63\x3a\x3e\x8d\x08\x0a\x44\x90\x9f\xfa\x6c\x4e\x61\x77\xd6\x4e\xe9\xed\x5f\x9c\xcd\xee\xb9\xe0\xaf\x82\xd5\x2e\x41\x9f\xca\x6e\xf7\x84\xf2\xd7\xcb\xf2\xd7\xe5\x4d\xf5\xcb\xf2\x7a\xd3\x79\xaf\x36\x7f\x47\x39\x90\xa9\x4e\x08\x83\x2b\x80\xf9\x4a\xea\x77\x88\x90\x18\x02\x53\x32\x0f\x98\x94\xe0\x54\x5d\x8e\xf2\xea\xb4\x55\x9b\x16\xd7\x4d\xfe\x57\xa9\x53\x88\x14\x91\xd9\xd7\xbd\x1e\xd8\xde\xef\x60\xde\xf6\xe0\x69\xbb\xf5\x3b\xd8\xd7\xbd\x1e\x54\x64\x34\xc3\x2a\x1a\xaf\x87\x7d\xdd\xeb\x41\xd9\x85\xbc\x9c\x6b\xf8\xe8\xc7\xf2\xb6\xac\xee\x4b\xbb\xe8\x7b\xae\xd4\x7d\x47\xe5\x81\x5a\x94\x03\x8b\x8c\x09\xc2\x8e\xa4\xac\x57\x40\x84\x54\xf6\x17\x6c\x8a\xb5\x8d\x4e\x44\xd6\x7d\x29\xb6\x54\x3c\x41\x38\xeb\x3e\x37\xf4\xc2\x4c\x8e\xfd\xad\x44\x75\xe3\x89\xbd\xc0\x03\x8a\x17\x8e\xcc\xc3\x96\x90\x77\x84\xfa\x40\x24\x25\xc0\xe8\x61\x78\xab\x64\x79\x83\x33\x26\x3b\x64\x7e\x87\x05\x30\x40\x2a\x47\xb3\x2e\xbd\x76\x86\x44\x57\x0f\xa4\xe9\xc3\xd8\x45\x53\x6c\xea\xb4\x8b\x89\xcd\xb8\x7b\x13\x0a\x4e\xc2\x7a\x22\x4e\xf0\xb1\xbd\x9b\x3f\xf7\xc7\x01\x52\x14\xa9\x48\x11\x1e\xa9\x75\x09\x3d\x19\x9a\x9a\x43\xc6\xe6\x25\x18\xa4\xfe\x53\x56\x4e\xaf\xd6\x53\xde\xa5\x2a\xde\xd5\x22\xe2\x90\xd8\xd9\x31\x1b\x26\xcc\xca\x6b\xa8\x51\xbc\x50\x2e\x5c\x40\x22\xbb\x3c\x42\x8f\x1e\x44\x94\x4b\xca\x06\xe4\x60\xc8\xe8\xa1\x67\x1a\x07\xd3\x1f\xbf\xa8\x66\xc6\x61\xb1\x62\xc8\x54\x05\x50\xb9\x9f\x3e\x68\xf7\x4b\x08\xf9\x38\xbe\xa2\x02\xc8\x63\x03\xd0\x2f\x8d\x54\x75\x6f\x30\xbf\x6b\xf6\x17\x8f\xdd\xbc\x8f\x6d\xa4\xc0\xfd\x58\x58\x4e\xec\xb9\x87\xf6\x5c\xe7\x6c\xe8\xd2\x98\x50\xa0\xb8\xa9\x51\x53\x54\x91\x2a\x2c\x1a\x84\x4e\x86\xca\x15\x53\x18\x00\xe7\x47\x1f\x9c\x4c\xf3\xb1\x0f\xae\xcd\x35\x81\x19\xd2\x30\x74\x5c\xad\x20\x2e\x61\x30\x50\xcc\x1c\xa6\xc0\xc2\xa8\xa0\x3b\xd7\x23\xc9\x4c\x2d\x18\x83\x2a\x3a\x71\xf3\xa9\x17\xd5\xca\xf5\xee\xef\x31\xee\x45\xf7\x5e\xb9\xf1\xfb\x10\xe5\x3d\x13\x7e\xdf\x67\xf8\xf6\x40\x01\x78\x95\xe0\x97\x06\xe7\x95\x29\x7b\x89\xb0\x6c\x1a\xb3\x96\xdc\x44\x13\xe2\xda\x44\x5d\x4c\x2c\x22\xed\xa0\xa0\x10\x5c\x46\x44\x43\x74\x85\xa9\x5f\xfc\xd5\x73\x96\xa8\x08\x4e\x95\xc8\x50\x9d\xd9\x90\xa5\x76\xdd\x95\xfe\xa9\xd2\x14\x77\xaf\xfc\x7c\xaf\x3f\x10\xc1\x85\x9c\xaf\x81\x7c\xa3\xa9\x69\x0e\x7b\x74\x1c\x43\x32\x4c\xd7\x32\x92\xb1\x76\x2c\xe1\x46\xbf\xcb\x56\xf2\xfd\xa2\x5b\x3c\x38\xcf\x46\xd3\xc6\x9d\xf6\x86\x56\x61\xbb\x7f\xba\x87\x7b\xb3\x6c\xaa\x02\x08\xae\xe6\x71\x7f\x66\xe6\x88\xbc\xc3\x14\x16\xa3\x8f\xea\xc4\x72\xc0\x53\x11\x43\xde\x60\xdf\xcf\xfe\xbb\x1c\x65\x8a\xc8\x29\x0d\xaf\x16\x2b\xc8\x35\x75\x16\x81\x48\xf8\x82\x88\x3d\xfb\xe8\x70\xd0\x7a\xa4\xc3\x1c\x8c\x46\x3d\x32\xce\xb8\x50\x0e\x1e\xb7\xd2\x32\x33\xa0\x6a\x15\x7a\x4e\xb6\x03\xb1\xc1\xad\x1e\x4a\x2c\xdc\xca\x87\x81\xd4\xc2\x6a\xdd\x2c\xe2\x4b\x68\x57\xc9\x03\xf8\x75\xb5\x21\x69\xa0\xba\x3a\xa9\x03\x93\x84\xa4\x3a\x23\xcc\x77\x45\x57\x07\xce\x08\x9c\x3a\x60\x7c\x9f\x10\x40\xd9\xe5\xb6\xb1\x53\x68\xad\xbd\x53\x17\x67\x6f\x56\xde\x9d\x1a\x9d\x1d\xb5\x35\xdf\xea\x90\xdd\x39\x95\xd2\x44\x53\xe2\x4d\x35\x99\x97\x5c\x45\x1e\xad\x30\x51\xa2\x5e\x51\x62\xf0\x18\x93\xd7\xe5\x1c\x4c\x90\xe2\xd8\xa6\x7d\x9a\x2a\x5a\x79\x36\xbd\x25\x36\xcd\x1b\x16\xb8\xa7\x14\xb1\x32\x42\xff\xd5\xe7\x2c\x3b\x6b\xe2\x5d\x98\x5c\xaf\x55\x1d\xea\x2e\x5b\x49\x6d\x11\xe8\x73\x20\x9e\xaa\x72\x54\xf8\x35\x6b\xee\xe0\xef\x4f\x0d\x9e\x10\x3e\xfd\xb0\x2c\x42\xbe\x23\xa8\x12\x69\xf6\x18\x21\xbc\x06\x98\x79\x8d\x37\x93\xec\x16\xdc\xf3\x0f\x6d\xbf\x48\x40\xf8\x96\xb1\xda\xbf\x74\x04\xca\xc6\x1a\xeb\xd5\x63\xba\x11\x62\xdb\xa8\x36\x43\xab\x30\x54\xcc\x84\x65\xe0\x9c\xe6\xb3\xe6\x40\xd7\x0e\x1c\x36\xf7\xa6\xe1\xae\x43\x47\xb3\x87\x8a\x8a\x77\x54\x96\xff\x3c\x9a\xc3\x5a\x71\x38\x3b\xeb\xd8\x15\x97\xe5\x6d\xf5\xa6\xba\x97\xf5\x19\xd8\x3d\x30\x0d\xfa\x50\x22\xd2\xf5\xcb\x23\xcc\x03\x1f\xfa\xd5\x4d\xdb\x2d\x81\xd1\x57\xa4\x04\xd1\x30\x1f\xc5\x5c\xf7\xf3\xb7\x0c\x80\x46\x7f\x6e\x8e\x72\x7b\x5e\xf1\x5e\x62\x89\x82\x2e\xa1\x03\x4f\xb9\x69\x91\xc0\xb4\x7c\x68\x17\xe8\x07\xde\xa7\x8d\xe0\xde\xd9\x11\xd7\x50\x64\x9d\x49\x2c\x53\xac\x0f\xa9\xb1\x74\x44\xd3\x19\xa8\x7a\x08\x5d\x96\x80\x65\x7a\xc5\x53\xfd\xbf\xb1\xa9\x7e\xed\x1b\xa7\x5f\x2c\xff\xff\x66\xe3\x7c\xb6\x1f\xc4\xa5\x33\x17\x55\xcc\xd9\x35\x6b\x18\x7f\x86\x55\x0e\x84\x9d\x3f\x67\x1d\x8c\xad\x76\x09\xdc\x25\xd8\xad\xf4\x45\x97\xbd\x04\xaa\x5e\xf6\xb9\xea\x65\x7f\x34\x1e\xb4\xd3\x8e\x67\xe8\x95\xc4\x84\x0b\x22\xfc\x24\x1d\x65\xe4\xf4\x21\xd0\x46\x27\x79\xa3\x47\x6c\x8a\x50\x86\x4a\x09\x58\x2c\x6c\xf4\x22\x74\xa8\xdb\x11\xbc\xc0\xf9\xf7\x70\x47\x57\x32\x1f\xed\xee\x70\x80\xbb\x51\x3a\x57\xce\x9e\xb0\xe7\x21\xd4\x71\xe7\xbe\x89\x99\x27\x6c\x8f\x95\xbf\x78\x72\xc4\x70\x13\x63\x12\xe8\x50\x18\x4f\x6e\xab\x1b\x61\xa6\xeb\x17\x32\xcb\x82\xef\x63\xaa\x31\xa8\x84\x94\xa3\x50\x76\x36\xe9\x80\x0a\x24\x4b\xa5\x79\xd4\xc3\x38\x3c\xd7\x2e\xf9\x7c\xc2\x19\xcb\x62\x83\xb6\xce\xcb\xbc\x7d\x45\xbb\xc4\x71\x2f\xef\xeb\x5c\xd9\xea\x0b\x73\xd1\x91\xef\x75\xeb\x68\x02\x5e\x40\xd8\x9e\xe0\x03\x84\x09\x6b\xf0\x26\x97\x9e\x4a\x57\x1b\x0f\x04\xf0\x3b\x08\x53\xcf\xf3\xbf\xca\xf8\xc5\xd7\x6e\x34\x82\xa5\x2f\x60\x4a\x20\xf2\x07\x3c\x78\x5e\xbb\x84\xbf\xd5\xb2\xc2\x82\x87\xa8\x03\x78\x0e\x0b\xf7\x43\x9d\x97\xed\xdb\xb4\x86\xc9\xc6\x56\x37\xb9\xae\x11\x6d\x11\x30\xb8\xd0\xe1\x2d\xec\x2b\x46\x8c\x61\xfc\xd1\x6a\xde\xfc\xa5\x88\x36\x75\x00\x51\x26\x1a\xbf\xda\x04\xf4\x63\x23\xcf\xab\x1b\x84\x6d\x62\x65\x7a\x2c\xf0\xac\x5a\x2e\xd3\x32\x6b\x48\x83\xa9\xdf\xf1\x25\x2f\xb5\xf2\xc6\x41\x0d\x7b\xce\x38\xd6\x29\xff\x51\x3e\x58\xaf\x1d\xb6\x23\x80\x9d\xb5\x75\x71\xf8\xaa\xc4\xc4\x8f\x76\xc6\x97\xe9\x0c\x1b\x18\xad\x6a\xe3\x15\x55\x77\x30\xc1\xbb\x72\xae\x60\x32\x49\x4e\x28\x64\x9c\x5c\x47\x0e\x0e\x84\x47\x9c\xb2\x0e\xbb\x13\x38\x44\xdc\x27\x12\x66\x5c\x05\x87\xb4\x2b\x8f\xb3\xd0\x2f\x9a\x2d\x30\x0c\x71\xab\xda\x5c\x55\xd2\x13\x57\xa7\x5c\xa7\x90\x69\xad\xeb\xd8\xfa\x70\x9e\x32\x08\x49\xbd\x53\x05\xd7\x1b\x7a\xe8\x36\xf8\x6a\x7e\x2f\xa7\x9a\x91\x41\x0f\x9d\x39\x64\x8b\xe8\x1e\xfb\x6e\x4a\xf8\x42\xb8\x8b\xda\x24\x93\xb9\xcb\x97\x5f\x0a\xcf\xa4\x4d\xac\x36\xb5\x3b\x89\x49\x60\x63\x33\x76\xdb\x88\x4f\xac\xce\x68\x8a\x6c\xfe\xbc\xcb\xd1\x59\x06\xfb\xb0\x6e\xc1\x8d\xbf\xa8\xaa\xa2\xcd\x57\xfa\x54\x94\xb3\x40\x77\xf9\x1c\xf3\x4e\xc9\xba\x91\xf5\xcb\x39\x96\xa5\x1b\xcf\xf7\xdd\xb9\xf8\x4f\x70\x7b\x27\x3d\x4f\xca\x28\x3b\x8a\x4a\x31\x4c\xd4\x43\x1c\x8b\xff\xf9\xaf\xff\x7e\xc6\x92\xee\x38\x0a\xc6\x87\xde\xd2\x6f\x28\xc1\xbf\x6d\x50\x14\xed\xcf\x1a\x95\x3b\x46\x01\xbe\xf9\xb9\x92\x73\xd9\xb6\xe0\x80\x37\xb6\x94\xc2\xde\xe0\x0c\x9a\x4a\xac\x98\xaa\x44\x59\xb5\xb8\x00\xe8\xc0\x3b\x1f\xec\x00\xc6\xdf\xcb\xfd\x3b\x29\xe6\xd8\x5c\xf2\x85\x69\xdf\xc0\x7a\x65\x84\xc2\xab\x2c\xdd\xe5\x1a\xc6\xc4\x35\xc9\x40\x0a\x90\xef\x8e\x5f\x8a\x79\x51\x4d\xd3\x02\x25\x57\x01\xd9\xd6\x53\xb2\x79\xe3\x3d\xdb\xfb\x3d\xf9\x80\x54\x48\x25\x3f\x40\x48\x82\x91\x88\x86\xd7\xe1\xbd\x63\xd9\x6c\x52\xe8\xda\xde\x59\xed\x5c\x67\x51\x98\xb1\x44\x8a\x1c\x1f\x85\xc6\x62\xe9\x1a\xef\x89\x63\xa6\xdd\x12\xa0\xf0\x60\xdd\x31\xa8\x06\xec\x2e\xcd\x0b\x2a\xbb\x36\x80\x0a\x88\xec\x7d\x30\x19\x15\x22\x85\x2e\xe4\x49\x2a\x77\xde\xe7\xda\x28\xf5\xf4\x89\x14\x32\x7e\x73\xd7\x1d\xcf\x05\x5c\x76\xf9\x5e\x0f\x6d\xf9\x8e\xbb\xe4\x81\x77\xbd\x2b\x5b\x68\xe5\x12\xc0\x7e\xa7\x83\xbd\x7b\x25\xc4\x0a\x3c\x7f\x64\xc4\xfa\x16\xe8\x4b\x5b\x07\xbd\x83\x17\x1a\xf5\x31\x86\xf1\x74\xd1\x84\xeb\x8f\x56\x18\x48\x75\xad\x4d\x95\x13\xab\x03\x31\xae\xc3\xf4\xf2\xf8\xf6\x6b\x16\x4d\x53\xa8\x6f\x5f\xb8\x03\xc2\x5b\x3d\xa0\x89\x0c\x78\x40\x2a\xea\x06\x8b\x96\xd6\x19\x5d\xe2\xb0\x6f\x9b\x85\x77\x7f\x63\x51\x35\xad\x42\xbc\x9a\x5f\xe3\x93\xc5\xa8\x61\x30\x5a\xb1\x30\x54\xf6\xdf\x83\x41\xc5\x69\x61\xf0\x29\x80\x87\x2f\x11\x9a\x32\x7e\xb0\xba\xab\xaa\xc4\xf3\x3a\x8d\x1a\x00\xee\xab\x3a\xf3\xb8\xc8\x7d\xb3\xa9\x10\x16\x7f\x36\xf5\xe6\xad\x8e\x25\x81\xb0\xb0\x3b\xae\x26\x10\xfd\xee\xb7\x5f\x7f\xe5\x57\xea\x71\x6c\x44\x77\xa8\x31\x34\x3c\x3e\xa2\x52\x09\x9a\x0c\xc8\xf2\x31\x9f\x40\xf2\x95\xc5\x7f\xc3\x07\x62\x97\x69\x41\xb4\x58\x51\x81\x0f\x40\x20\xfc\xfc\x06\x96\x04\x79\xcd\x65\xb2\x4d\x11\x50\xe4\xf4\xe9\x10\xb4\x8f\x30\x30\x0c\x6f\x0d\x0d\xbd\xe4\x15\xe0\x24\x0b\x2e\x9c\x07\xf1\xe2\xab\x7f\x4d\x9e\xc3\xff\x5e\x68\x08\x67\xf6\x8c\x12\xec\xa8\xd7\x43\x91\x03\xf0\xa7\x7e\xda\x06\x27\x8e\x15\x8a\x21\x82\x9d\x5c\xa9\x2a\x3b\x07\xe8\x4e\x88\xd5\xbb\xa5\xa6\xef\x3a\x25\xde\xd5\x4f\xaa\x1a\x91\x5e\xb1\x6a\x9e\xd9\x7b\x47\xd8\x03\x7e\x27\x33\x46\xb5\x04\x54\x26\x8f\xdd\x82\xbb\x8c\xe7\x9f\xaa\x3e\xa3\xb9\x56\x40\xd7\x08\x65\x33\xbd\x33\x08\x1f\x9b\x63\xfc\xda\x91\x1e\x59\xdd\xac\x55\x00\x10\x78\x82\xf3\xe1\xb8\x71\x0a\x0d\x10\xe1\x6a\x38\x15\xce\xd0\x3f\x28\x66\x32\xe1\xf1\x8d\x8a\x52\x37\xd1\x49\x75\x32\x88\x42\x44\xf1\x0d\x17\x2f\xe4\x59\xd4\x81\x57\x55\xaf\xee\x9d\x98\x74\x66\x8b\x21\x95\x78\xee\x72\x4f\xcb\xaa\x4a\xfa\xeb\x26\x16\xbe\x88\xf5\x65\x3a\xcc\x54\xa4\xd9\x43\xd7\xdb\xb3\x45\x2e\xe6\xd8\x8d\x1d\xd3\x22\x9f\xdd\x82\x2b\x40\xea\xdf\xe9\xd2\x3f\x50\x1f\x8d\x85\x1d\xd6\xa2\x73\x4e\xb7\x3a\x08\xc3\xe8\x9c\x93\xba\x71\x00\x9d\xa9\xaa\xdb\x91\x3a\x53\x4a\x18\xa6\xce\xab\x1a\xf3\x50\x0e\x4e\xd6\x96\xcc\x8d\x7b\xe8\x4c\x0d\xe5\x76\xea\xfc\xba\xd3\x30\x75\xca\x0f\xee\x21\x1b\x42\xa7\x4e\x51\xc6\x0a\x28\x30\x59\x73\x4c\xe5\xe3\xec\xa1\xeb\x1d\x7e\x8d\xfb\xe8\xec\x79\x48\x97\xc0\x1e\xba\xce\x31\xcf\x58\x53\xb7\xe7\x3a\xad\x43\xdc\x27\x69\xf6\x43\x3c\xa7\xaf\xf5\x5d\xb7\xf5\xf7\x22\x31\xd7\xec\x37\x77\xdb\x7a\x9b\x74\x5c\x44\xc0\x1d\x04\x98\x68\xdc\x1d\x03\x43\x77\x50\x70\x92\x72\x47\x0c\x04\xdc\x41\x60\x33\x8c\x2e\x92\xa8\xad\x5d\x54\x32\x50\x15\x20\xda\x7a\xa8\xb6\xda\x44\x08\x2d\xc8\xf5\x50\x3d\xb5\x47\x85\xbd\x93\xed\x51\x91\xf4\xaf\xea\x0f\x90\xc5\x23\xad\xd2\x9a\x34\x4a\xd2\x56\xf3\x79\x21\x83\xb7\xa1\x77\x1f\x15\x13\x00\xff\x84\xe1\x8a\x3c\x38\x88\x7f\x43\xf8\xb4\x73\x82\xa9\x49\xb0\xc6\xc1\x9c\x63\x52\x96\xd1\x6f\xc7\x77\x91\xfa\xa2\x95\x93\xfe\xb6\xa7\x20\xdd\x3c\xb4\x76\x18\x87\x16\xb2\xdb\xbe\xad\x88\xd0\xc2\xf9\x85\x3c\x07\x22\x58\xaa\x63\x83\x98\x4e\x01\xec\xd8\x7f\x69\x4d\xc8\x4e\x42\x4d\x79\x46\x75\x7d\x23\xc8\x73\x49\x55\x7a\x80\xf1\x5b\xbe\x21\x67\x7c\x40\xef\xc6\x9a\xcf\x5b\xdf\xe6\x22\x20\x5f\x37\xec\x01\x72\xde\x52\x63\xdc\x72\x95\x92\x27\xb4\x6d\x93\x2e\x82\xb3\x20\xa7\xde\x14\xcd\xe0\x5d\x58\xa0\x22\x31\x07\xf6\xcd\xe5\x3e\x12\xb4\x7f\x95\xdc\xf1\xad\x75\xdd\x47\x19\x70\xe0\x2c\xd1\xbe\xef\xdb\xf5\x7d\x08\x81\xd2\x86\xd7\x7f\x5f\x6f\xe4\x7d\xd7\x49\x7e\x62\x11\x6c\x0d\xac\x89\x24\x24\xa3\x91\x6d\x62\xef\x7c\xe1\xe5\x32\xba\xeb\x68\x11\x0c\x41\xaa\xab\x8e\x43\xe1\xdb\x70\xb7\x97\xb6\x57\x58\x9a\xdc\x82\xa3\x30\x9a\xcd\xf2\x96\x4d\x0b\xbb\x44\x99\x98\x08\xfc\xee\xc0\x40\x86\x4e\x8b\x08\xb0\x16\xb6\x29\xb8\x7c\xa0\x52\xf0\x5b\x0e\xa1\x34\x43\x80\x95\x56\xdc\x4e\xfd\x4f\x22\x18\xbc\xf4\xad\x05\x25\x9c\xb4\x48\xfa\xaa\xae\x46\xe7\xa2\xd2\x04\xa8\xd4\xbb\x79\xa4\xec\xbb\x66\x2c\xa6\xdb\x19\x89\x7e\xe5\xd4\x13\x80\x48\xd3\xf7\x69\xea\xaa\xb0\x5d\x66\x7c\x63\x27\x23\x79\xd5\x94\x39\x2f\x47\xae\x14\x11\x6a\x7d\x7a\xf4\xe7\xd2\xe1\xc5\xa9\xf8\xda\x11\x0b\x45\x1b\xe3\x59\x48\xfc\x4e\x0b\x32\xfc\xab\xe7\xcf\x57\x1f\xa2\xee\x61\x86\xc3\x0c\xdd\x51\x51\xb0\x4c\x3f\x1c\x06\x7b\x7b\xcb\x7b\x03\x2b\xbc\xb8\x56\xdf\x98\xdb\x62\x6f\x7b\xa7\xc1\x2e\x26\xac\x78\x35\xc5\x8b\x88\xa6\x59\x4f\xf9\xeb\x98\xbb\x69\xa3\x5d\xd5\xad\xb3\xa9\x95\x12\xd0\x4c\xb8\xc9\xf1\x56\x74\xb0\xec\xd2\xaa\x02\x53\xb8\x19\xec\xe5\x57\x5f\xda\x5e\x9c\x6f\x75\x73\x18\x6e\x67\xaf\x16\xd3\x5d\x71\x35\x98\xa9\xa9\xf4\xab\x21\xaf\x6c\xc4\x49\xa5\x90\x94\x2e\x35\x49\x5d\x4a\x3c\x38\xda\xa2\x53\x5c\xb7\x92\xb3\xfc\x46\xd7\x79\x0a\x27\x3d\x6c\xf7\xd3\x46\x55\xd0\x59\xbf\x84\xd3\xed\x87\xea\xcb\xa3\x9b\xe5\xc0\xfd\x8e\xe7\xaa\xae\x96\xab\x3e\x5d\xa9\x28\xe5\x3d\x57\x6e\xe9\x8f\xa4\xfa\xe5\xba\x2e\x9b\x18\x17\x4c\x9c\x7f\x4c\x7a\x1f\x82\xd9\xc5\x04\x0b\xff\xf3\xad\xfa\x73\xa1\xaa\x29\x38\xfd\x6e\xba\xab\x2b\x04\xe1\x63\x08\xcf\x1a\xdd\xa5\x85\x23\x4b\xdd\xe4\xca\x25\x7f\x0f\xf8\xc0\xf9\xf8\xaf\x5d\x74\x00\x1e\xe1\x5c\xfd\x13\xd0\x9e\xd7\xc0\xd9\x39\xeb\x3c\x0c\x58\x85\x50\xd7\x6e\x1e\xd0\xce\x54\x65\xcf\xe8\x3a\xfa\xa1\x3d\x2e\xdd\xb8\xea\x9f\xe6\xe3\xec\x22\x74\xde\xa1\xad\x5b\x87\xbf\x55\xfa\x94\x40\xec\xf6\x61\x5b\x65\x01\xb0\x64\x5f\x6c\xfd\x16\x6e\xe3\x55\xf7\x70\xa7\x89\x1e\x6f\x77\xa9\xd4\x04\x3e\x73\xe5\x33\xc0\x0e\xd5\x44\x57\xd0\x6d\x17\xdc\xfb\x34\xb4\x9f\x4e\x56\xbe\xf9\xd6\xeb\x25\x26\xdf\x61\x27\xa2\x91\x4f\xba\x5b\x6b\x97\x3b\x1f\xbd\xb4\xb0\xbb\x6e\x2e\x82\x9f\x73\xdd\xb6\x93\xbe\x0b\xff\x0f\x1d\xfe\xef\x7a\x49\x64\xb3\xc2\xe8\xd1\xd5\xfd\x6e\xd5\xae\xab\xd4\xe1\x29\x9e\xca\x0d\xe7\x23\x82\x2e\x96\xf9\xce\xbb\x5f\x43\x31\x2b\xaa\xc6\x4d\x6d\xf4\x53\xf7\x1d\xc3\x10\x3a\xab\xea\x66\x04\x3a\x38\xb7\x91\xe7\x7c\x8d\x33\x70\x88\xba\x69\xd0\xed\xb3\xf0\xce\x2b\xb6\x11\x6a\xbb\x6d\x53\x6e\xc1\xc3\x0e\x3b\x56\xf8\x54\x84\x4f\x2f\xb6\x9f\x57\x7b\x16\x62\x43\xf6\xba\xb3\x92\xa1\x53\x0b\x2d\x48\x43\x7b\xd3\x1c\x48\x6c\xa6\xca\x75\xb0\x87\xec\x17\x7b\xac\x9b\x73\xed\x1d\x98\x5e\xb6\xfd\xef\x9e\xd1\x96\x23\xa0\x5d\xcc\xd6\x56\x0c\x9f\x99\x22\xe0\x1d\xc4\xdf\xd5\x32\x70\xce\x41\x94\x53\x94\x40\x9f\xb0\xa1\xf4\x8b\xfd\x76\x55\x8f\x38\x6e\x67\x1a\x3b\xdb\x35\x04\xad\xce\xaa\x0c\xbc\xbb\x31\x42\xf0\xcd\x62\x10\xd4\x8d\xc0\x0c\xb5\xfa\x2c\x6c\x57\x7a\xb7\x8d\xdf\xa5\x77\xdb\xfc\x3e\x95\xde\x66\xf1\x6b\x20\xb5\x0b\xea\x07\xb7\x43\x8a\xc4\x3d\x90\xdd\xc1\xef\x54\x37\x75\x3a\xe1\x48\x2f\x00\x31\x9f\x2b\x8d\x36\xe7\x2d\xf0\x1b\x96\xa7\xf6\x70\xfb\x12\xfb\x5d\xd9\xda\xe2\xb3\x85\x9c\xdd\x22\x42\x7b\x74\x8f\xb7\xca\x20\xb4\xa7\x23\x31\x70\x22\xcd\x88\x88\x2a\xc1\x97\x4f\xfc\x51\x07\x4f\x7d\x75\x07\x5f\xf9\x3b\x6a\x82\xf7\x0c\x04\xb5\xb8\xc3\xe3\x4e\x8c\xe3\x4d\x03\x28\xfd\x2e\x2f\x0a\x3c\x8b\xd7\x84\xca\x4c\x58\x5c\x48\x28\x59\x1a\xa3\xf2\xfd\xd3\x5b\x22\x05\x9f\x6d\x38\xda\x39\xbb\x25\x08\x7c\xf6\x21\x9c\x93\x5b\x9e\x4e\x63\xee\x71\x85\x0f\x69\x19\x8f\x7a\xe7\x43\x9a\x53\x5a\x82\x41\x3d\x32\x4d\xbd\xb2\xdc\xa0\x0a\x25\x60\x78\x54\x70\x66\x39\xdc\x32\x0f\x05\xb3\x08\xe7\x60\x10\x35\x34\xf6\xf8\x01\xef\x5c\x9e\x58\xc0\x2e\x5b\x10\xd0\x61\x8d\x05\xec\x72\x07\x01\x1d\x0e\x39\x18\x03\x4c\x22\xac\x3e\xa3\x02\x6c\x58\x74\xe5\x63\xa0\x4a\xb4\x33\x41\xc7\xe1\x0b\xcc\x2a\xd0\xea\x4c\x25\xd4\xd7\xa7\xdf\x87\xd8\x45\xb3\x0d\xab\x07\x4c\x3f\x7d\x5e\x5e\xc5\xa8\x0c\x36\x76\xbd\xcc\x87\x0a\x05\xe9\xeb\xcd\xfe\xad\x2d\xdd\x91\xff\x53\x13\x4e\xa2\x9e\xfe\xf3\x15\xc1\x92\x0f\x9e\x85\x5b\x5e\x40\x7d\x71\x7f\x87\x8b\x0c\x06\x92\xa8\x9f\x5b\xf9\xd1\xab\xd6\x10\x8a\xfa\x4b\x7a\x7b\x25\xcc\x3f\xe0\xb4\xf7\x01\x58\x36\xae\x14\x40\x40\x60\xcc\x82\xba\x9d\x48\x64\xba\x9d\xfa\x05\x1f\x7e\x27\x92\xa4\x6e\xa7\x7e\x05\x48\x67\x24\x2d\x60\x57\xee\x48\x9d\xfa\x8f\x4e\x82\xd0\x13\x23\xaa\x0d\xeb\x08\x9d\xbe\x5a\x1e\xbc\x6a\xa1\x3e\x7e\xa0\xb2\x3b\xf7\x69\xde\x26\x49\x62\x5c\x9f\xfe\xe7\xf4\xed\xb7\xf4\xf5\x7f\x43\xc5\x7e\x6f\x4b\x36\x2b\xbb\x2c\x43\xa3\x72\xa1\xaf\x1a\x56\x09\x58\xe4\x07\xca\x88\xa8\x5b\xe5\x26\x9c\xff\xe8\x95\xf9\x6f\x5d\xe9\xa6\x01\x26\x70\x79\xb5\x45\xd6\xb1\xdc\x8f\xea\xdf\x9e\x12\xf1\xc7\x41\x16\xd9\x61\x3a\xe9\xd1\xa1\xe1\x83\x71\x8c\x81\xe3\xa0\xf2\x5a\xeb\x7d\x8f\xcc\x6e\x63\xa7\xef\x92\x0f\x7d\x43\xb3\xf0\xc2\x24\xb7\xfe\x1b\x5f\x07\xcb\x3c\x3f\xf5\xd2\xa6\xbb\xba\x43\x8b\x34\xb8\x44\x9b\xe3\xc1\xe0\x17\xef\xc2\x8b\x10\x5e\x82\xcf\x67\x6c\x80\xad\x8e\x20\x3e\xa1\xce\xfa\xee\x06\x44\x47\xb7\x9d\xf2\x3f\x57\x87\xf1\x29\x58\xb7\x3c\xcf\xa6\x6a\x54\x61\x0a\xfc\xff\x7f\x03\x00\x00\xff\xff\x02\x0d\x22\x76\xe2\x6d\x00\x00") func staticJsAppJsBytes() ([]byte, error) { return bindataRead( @@ -359,7 +359,7 @@ func staticJsAppJs() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "static/js/app.js", size: 28048, mode: os.FileMode(420), modTime: time.Unix(1478393403, 0)} + info := bindataFileInfo{name: "static/js/app.js", size: 28130, mode: os.FileMode(420), modTime: time.Unix(1478398933, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/static/css/app.css b/static/css/app.css index 5d45446..839c4ef 100644 --- a/static/css/app.css +++ b/static/css/app.css @@ -475,6 +475,7 @@ position: fixed; right: 8px; top: 10px; + display: none; } #edit_connection, #close_connection { diff --git a/static/js/app.js b/static/js/app.js index 31d514f..1117e34 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -1080,6 +1080,10 @@ $(document).ready(function() { $("#current_database").text(resp.current_database); $("#main").show(); + + if (!resp.session_lock) { + $(".connection-actions").show(); + } } }); });