diff --git a/cmd/micro/actions.go b/cmd/micro/actions.go index 60d95268..7a961229 100644 --- a/cmd/micro/actions.go +++ b/cmd/micro/actions.go @@ -554,7 +554,7 @@ func (v *View) InsertSpace(usePlugin bool) bool { v.Cursor.ResetSelection() } v.Buf.Insert(v.Cursor.Loc, " ") - v.Cursor.Right() + // v.Cursor.Right() if usePlugin { return PostActionCall("InsertSpace", v) @@ -574,15 +574,15 @@ func (v *View) InsertNewline(usePlugin bool) bool { v.Cursor.ResetSelection() } - v.Buf.Insert(v.Cursor.Loc, "\n") ws := GetLeadingWhitespace(v.Buf.Line(v.Cursor.Y)) - v.Cursor.Right() + v.Buf.Insert(v.Cursor.Loc, "\n") + // v.Cursor.Right() if v.Buf.Settings["autoindent"].(bool) { v.Buf.Insert(v.Cursor.Loc, ws) - for i := 0; i < len(ws); i++ { - v.Cursor.Right() - } + // for i := 0; i < len(ws); i++ { + // v.Cursor.Right() + // } // Remove the whitespaces if keepautoindent setting is off if IsSpacesOrTabs(v.Buf.Line(v.Cursor.Y-1)) && !v.Buf.Settings["keepautoindent"].(bool) { @@ -622,18 +622,10 @@ func (v *View) Backspace(usePlugin bool) bool { tabSize := int(v.Buf.Settings["tabsize"].(float64)) if v.Buf.Settings["tabstospaces"].(bool) && IsSpaces(lineStart) && len(lineStart) != 0 && len(lineStart)%tabSize == 0 { loc := v.Cursor.Loc - v.Cursor.Loc = loc.Move(-tabSize, v.Buf) - cx, cy := v.Cursor.X, v.Cursor.Y - v.Cursor.Loc = loc v.Buf.Remove(loc.Move(-tabSize, v.Buf), loc) - v.Cursor.X, v.Cursor.Y = cx, cy } else { - v.Cursor.Left() - cx, cy := v.Cursor.X, v.Cursor.Y - v.Cursor.Right() loc := v.Cursor.Loc v.Buf.Remove(loc.Move(-1, v.Buf), loc) - v.Cursor.X, v.Cursor.Y = cx, cy } } v.Cursor.LastVisualX = v.Cursor.GetVisualX() @@ -753,7 +745,6 @@ func (v *View) OutdentLine(usePlugin bool) bool { break } v.Buf.Remove(Loc{0, v.Cursor.Y}, Loc{1, v.Cursor.Y}) - v.Cursor.X -= 1 } v.Cursor.Relocate() @@ -816,9 +807,9 @@ func (v *View) InsertTab(usePlugin bool) bool { tabBytes := len(v.Buf.IndentString()) bytesUntilIndent := tabBytes - (v.Cursor.GetVisualX() % tabBytes) v.Buf.Insert(v.Cursor.Loc, v.Buf.IndentString()[:bytesUntilIndent]) - for i := 0; i < bytesUntilIndent; i++ { - v.Cursor.Right() - } + // for i := 0; i < bytesUntilIndent; i++ { + // v.Cursor.Right() + // } if usePlugin { return PostActionCall("InsertTab", v) @@ -1088,7 +1079,7 @@ func (v *View) DuplicateLine(usePlugin bool) bool { } else { v.Cursor.End() v.Buf.Insert(v.Cursor.Loc, "\n"+v.Buf.Line(v.Cursor.Y)) - v.Cursor.Right() + // v.Cursor.Right() } messenger.Message("Duplicated line") @@ -1810,7 +1801,7 @@ func (v *View) PlayMacro(usePlugin bool) bool { v.Cursor.ResetSelection() } v.Buf.Insert(v.Cursor.Loc, string(t)) - v.Cursor.Right() + // v.Cursor.Right() for pl := range loadedPlugins { _, err := Call(pl+".onRune", string(t), v) diff --git a/cmd/micro/eventhandler.go b/cmd/micro/eventhandler.go index 29afabb2..85809284 100644 --- a/cmd/micro/eventhandler.go +++ b/cmd/micro/eventhandler.go @@ -104,6 +104,16 @@ func (eh *EventHandler) Insert(start Loc, text string) { } eh.Execute(e) e.Deltas[0].End = start.Move(Count(text), eh.buf) + end := e.Deltas[0].End + + for _, c := range eh.buf.cursors { + if start.Y != end.Y && c.GreaterThan(start) { + c.Loc.Y += end.Y - start.Y + } else if c.Y == start.Y && c.GreaterEqual(start) { + c.Loc = c.Move(Count(text), eh.buf) + } + c.LastVisualX = c.GetVisualX() + } } // Remove creates a remove text event and executes it @@ -115,6 +125,17 @@ func (eh *EventHandler) Remove(start, end Loc) { Time: time.Now(), } eh.Execute(e) + + for _, c := range eh.buf.cursors { + if start.Y != end.Y && c.GreaterThan(end) { + c.Loc.Y -= end.Y - start.Y + } else if c.Y == end.Y && c.GreaterEqual(end) { + // TermMessage(start, end) + c.Loc = c.Move(-Diff(start, end, eh.buf), eh.buf) + // c.Loc = c.Move(ToCharPos(start, eh.buf)-ToCharPos(end, eh.buf), eh.buf) + } + c.LastVisualX = c.GetVisualX() + } } // MultipleReplace creates an multiple insertions executes them diff --git a/cmd/micro/loc.go b/cmd/micro/loc.go index 263e0fb3..b984c02c 100644 --- a/cmd/micro/loc.go +++ b/cmd/micro/loc.go @@ -54,6 +54,28 @@ type Loc struct { X, Y int } +func Diff(a, b Loc, buf *Buffer) int { + if a.Y == b.Y { + if a.X > b.X { + return a.X - b.X + } + return b.X - a.X + } + + // Make sure a is guaranteed to be less than b + if b.LessThan(a) { + a, b = b, a + } + + loc := 0 + for i := a.Y + 1; i < b.Y; i++ { + // + 1 for the newline + loc += Count(buf.Line(i)) + 1 + } + loc += Count(buf.Line(a.Y)) - a.X + b.X + 1 + return loc +} + // LessThan returns true if b is smaller func (l Loc) LessThan(b Loc) bool { if l.Y < b.Y { diff --git a/cmd/micro/runtime.go b/cmd/micro/runtime.go index fd9dafad..be2d8ed5 100644 --- a/cmd/micro/runtime.go +++ b/cmd/micro/runtime.go @@ -1047,7 +1047,7 @@ func runtimeHelpTutorialMd() (*asset, error) { return a, nil } -var _runtimePluginsAutocloseAutocloseLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x77\xda\x3a\xf6\xe8\xff\x7c\x8a\x7d\xd2\xe9\x02\x4e\x6c\x8a\x0d\xa7\x25\x39\xa5\x77\x11\x42\x5a\xd6\x4d\x43\x2e\x90\xd3\xe9\x64\x72\x3a\xc6\x16\xc1\xad\xb1\x19\x5b\xe4\x71\xbb\x3a\x9f\xfd\x2e\xbd\x6c\xc9\x96\x81\xb4\x69\x57\xef\xfc\x4e\xfe\x20\xb6\x2c\x6d\xed\x97\xb6\xb6\xb6\xb6\x65\xd3\x84\xbf\x0d\xbd\x43\x58\xe3\x79\xa7\x11\xac\x1d\xb0\x5e\x1c\x80\xdd\x6c\x1e\x98\xcd\xb6\xd9\x6c\x81\xd5\x39\xb4\x9a\x87\xcd\xd6\x3f\x60\xe5\x24\xd8\x81\xbf\x55\x4c\xb3\x62\x9a\x70\x1e\x47\x37\xbe\x87\x12\xb8\x98\x9e\x98\x1d\x70\x6e\x9d\x18\x41\x82\x63\x3f\xbc\x86\xf9\x3a\x74\xb1\x1f\x85\x09\xf8\xcb\x55\x80\x96\x28\xc4\xc8\x03\x3f\x84\xd5\x3a\x46\x10\xac\x9d\x43\x02\xe1\x57\xda\x67\x80\xc2\x5a\x52\xcf\xee\x93\xf5\xac\x96\x18\xe0\x1b\xf0\x51\x2a\x8d\xd1\x0d\x8a\x13\xa4\xd4\x74\x17\x4e\x5c\x5b\x87\xbe\x1b\x79\x48\x2a\xe6\x25\x1a\x20\xd7\x28\xe4\xd0\x93\xf5\xec\x43\x80\x42\xe9\xd9\xdc\x0f\xbd\x5a\x82\x63\x03\x62\x74\x8d\xee\x0c\xf0\x43\x1f\x1b\xb0\x0a\x1c\x5f\xae\xb6\x74\xb0\xbb\x28\xd4\x93\xfb\x28\xd6\x70\x82\x40\xae\x40\x51\x90\x1e\xc7\x68\x15\x18\x10\xf8\x4b\x06\x87\xd4\x1c\xce\x69\x55\xcf\xc1\x0e\x15\x49\xcd\x8d\x42\xec\xf8\x21\xe1\x2d\x5e\x20\x08\xa2\x5b\x14\xbf\x34\x5f\xad\x57\x2b\x14\x83\xeb\x24\x08\x96\xce\x6a\xe5\x87\xd7\x49\x1d\xfc\x04\x82\xc8\xf1\x90\x67\x90\xba\x09\x22\x00\x1d\xcf\xf3\x89\x40\x9c\x40\x92\x0d\x11\x98\x73\xe3\xf8\x81\x33\x0b\x90\x24\x11\x0a\x55\xe1\x34\xed\x8f\x95\x90\xc2\x5e\x20\x83\x99\xa1\x85\x73\x83\xc0\x49\x48\x77\x7e\x0c\x61\x14\x2a\x3a\xe1\x46\xeb\x10\xa3\x78\xe5\xc4\x38\x81\x5b\x1f\x2f\x28\x09\xe8\xce\x45\x2b\x02\x80\x00\xc4\x0b\x07\xf3\x36\x44\xa8\x8e\x8b\x51\xcc\xf0\x5b\x27\x54\x71\x12\x8c\x1c\x0f\xa2\x39\xcc\xee\x31\x4a\x60\x1e\xc5\x84\xab\xb0\x0e\x7d\x9c\x34\x2a\x15\xd3\xbc\xbc\xac\xf4\xa3\xd5\x7d\xec\x5f\x2f\x30\xd4\xdc\x3a\xd1\xe0\xe7\xa6\xdd\x6c\xbe\x30\xe0\x7f\xdf\x07\x08\x26\x4b\x1f\x2f\x2a\x04\x73\x5a\x27\x81\x18\x25\x28\xbe\x41\x5e\xa3\x52\xe9\x47\x21\x8e\xfd\xd9\x1a\x47\x71\x72\x58\x01\x00\xe8\x05\xfe\x32\xba\x81\x09\x46\x2b\x27\xac\x54\xc6\xc8\xf3\x13\x56\xc5\x8f\x42\x70\x42\x8f\x20\x46\x14\x3a\x89\xd6\xb1\x8b\x68\xc9\xcc\x0f\x9d\xf8\x9e\xe0\xb6\x4c\x0c\x46\x68\x14\xd3\xff\xd1\x1a\x57\x96\x91\xe7\xcf\x7d\xd7\x21\x00\x0c\x4a\xda\x0a\xc5\x4b\x1f\x93\x81\xb1\x62\x43\xc9\x63\x7c\x20\xdc\x99\x47\x41\x10\xdd\x12\x71\xbb\x51\xc8\x44\xc7\xf8\xb1\x44\xf8\xb0\x42\x51\xfc\x15\x54\xac\x12\xc2\x1e\x8e\x0e\xd1\x7f\x58\xae\x13\x0c\x31\x22\x7a\x43\x61\x3a\xb3\xe8\x86\x3c\x12\x5c\x0a\x23\xec\xbb\xc8\xa0\xc0\x00\xf0\x82\xe8\x8d\x9f\x60\x02\x46\xee\x34\xf4\x72\x18\x79\x7e\xe2\x06\x8e\xbf\x44\x71\xa3\x04\x11\x3f\x94\x99\x21\x10\x59\xc5\x91\xb7\x76\x91\x0e\x17\x8e\x03\xc7\xe8\xab\x70\x01\x46\x25\x87\xe4\x45\xee\x9a\x58\x1d\x47\xc8\xeb\x59\x14\x43\x84\x17\x28\x86\xa5\x83\x51\xec\x3b\x41\x92\xb1\x3d\x55\x4a\x99\x0c\x41\xdc\x19\xf2\x69\x3b\xf2\x3c\x74\x96\x88\xe0\x44\x49\x58\xe3\x45\x44\xb4\x3d\x7b\x44\x45\xe0\xe3\x84\xe0\x9c\x2a\x14\x2c\x9d\x7b\x98\x09\xc4\xa8\x3e\xe3\x08\x50\xe8\x45\x71\x82\x88\x86\xac\xe2\x68\x19\x61\x04\x8c\x3f\x38\x01\x0f\xc5\xfe\x0d\xf2\x60\x1e\x47\x4b\xc6\x8b\x24\x9a\x63\x3a\x96\x84\x36\x31\x60\xc9\x0a\xb9\x44\xa9\x60\x15\xfb\x44\xd5\x62\xa2\x4e\x21\x53\xac\x24\xa1\x34\x54\xa6\x6f\x86\x13\x98\x8c\x4e\xa6\xef\x7a\xe3\x01\x0c\x27\x70\x3e\x1e\xfd\x31\x3c\x1e\x1c\xc3\xd1\x7b\x98\xbe\x19\x40\x7f\x74\xfe\x7e\x3c\x7c\xfd\x66\x0a\x6f\x46\xa7\xc7\x83\xf1\x04\x7a\x67\xc7\xd0\x1f\x9d\x4d\xc7\xc3\xa3\x8b\xe9\x68\x3c\x81\xbd\xde\x04\x86\x93\xbd\x0a\x79\xd0\x3b\x7b\x0f\x83\xbf\x9f\x8f\x07\x93\x09\x8c\xc6\x30\x7c\x7b\x7e\x3a\x1c\x1c\xc3\xbb\xde\x78\xdc\x3b\x9b\x0e\x07\x13\x03\x86\x67\xfd\xd3\x8b\xe3\xe1\xd9\x6b\x03\x8e\x2e\xa6\x70\x36\x9a\xc2\xe9\xf0\xed\x70\x3a\x38\x86\xe9\xc8\x20\x9d\x56\x8a\xcd\x60\x74\x02\x6f\x07\xe3\xfe\x9b\xde\xd9\xb4\x77\x34\x3c\x1d\x4e\xdf\x53\x44\x4e\x86\xd3\x33\xd2\xd7\xc9\x68\x0c\x3d\x38\xef\x8d\xa7\xc3\xfe\xc5\x69\x6f\x0c\xe7\x17\xe3\xf3\xd1\x64\x00\xbd\xf1\xa0\x72\x3c\x9c\xf4\x4f\x7b\xc3\xb7\x83\xe3\x06\x0c\xcf\xe0\x6c\x04\x83\x3f\x06\x67\x53\x98\xbc\xe9\x9d\x9e\xe6\xa8\x1c\xbd\x3b\x1b\x8c\x09\xea\x0a\x89\x47\x03\x38\x1d\xf6\x8e\x4e\x07\x15\xda\xd1\xd9\x7b\x38\x1e\x8e\x07\xfd\x29\xa1\x26\xbb\xea\x0f\x8f\x07\x67\xd3\xde\xa9\x01\x93\xf3\x41\x7f\x48\x2e\x06\x7f\x1f\xbc\x3d\x3f\xed\x8d\xdf\x1b\x1c\xe6\x64\xf0\x7f\x2e\x06\x67\xd3\x61\xef\xb4\x72\xdc\x7b\xdb\x7b\x3d\x98\x40\x6d\x0b\x47\xce\xc7\xa3\xfe\xc5\x78\xf0\x96\xa0\x3c\x3a\x81\xc9\xc5\xd1\x64\x3a\x9c\x5e\x4c\x07\xf0\x7a\x34\x3a\x26\x7c\xae\x4c\x06\xe3\x3f\x86\xfd\xc1\xe4\x77\x38\x1d\x4d\x28\xb3\x2e\x26\x03\x03\x8e\x7b\xd3\x1e\xed\xf8\x7c\x3c\x3a\x19\x4e\x27\xbf\x93\xeb\xa3\x8b\xc9\x90\xf2\x6c\x78\x36\x1d\x8c\xc7\x17\xe7\xd3\xe1\xe8\xac\x0e\x6f\x46\xef\x06\x7f\x0c\xc6\x95\x7e\xef\x62\x32\x38\xa6\xcc\x1d\x9d\x51\x52\xa7\x6f\x06\xa3\xf1\x7b\x02\x94\xf0\x80\xf2\xde\x80\x77\x6f\x06\xd3\x37\x83\x31\xe1\x27\xe5\x54\x8f\xb0\x60\x32\x1d\x0f\xfb\x53\xa9\x5a\x65\x34\x86\xe9\x68\x3c\x95\x68\x84\xb3\xc1\xeb\xd3\xe1\xeb\xc1\x59\x7f\x40\xb0\x19\x11\x28\xef\x86\x93\x41\x1d\x7a\xe3\xe1\x84\x54\x18\xb2\x6e\xdf\xf5\xde\xc3\xe8\x82\x92\x4c\x44\x74\x31\x19\x54\xe8\xa5\xa4\xb0\x06\x15\x24\x0c\x4f\xa0\x77\xfc\xc7\x90\xa0\xcd\x2b\x9f\x8f\x26\x93\x21\x57\x13\xca\xb2\xfe\x1b\x60\xec\x6e\x54\x4c\xf3\xea\xaa\x42\xe7\xa9\xa3\xb3\x13\x36\x8a\xc6\x27\x7d\x68\x3d\xb7\x0f\xf8\x04\x76\x31\x3d\xe9\x98\x91\x8b\x11\x4e\xa0\x0b\xbf\xd6\x58\x01\x99\x7a\xa0\x9e\x3e\xa7\xb7\x00\x5d\x76\x67\xc1\x33\x76\x61\x8b\x8b\x96\xb8\x68\xa7\x4d\x2c\x36\x2e\xbb\xf0\xf4\xae\xd9\x34\x5f\x9c\xa4\x0f\xec\xec\x41\xdf\x36\x8f\x4f\x58\x29\x76\xfc\x20\xad\xd2\xca\xaa\x0c\x9a\xf0\xf4\xae\xd7\x34\x8f\xa4\x7a\xf0\x8c\x3c\xb0\xcc\x41\x1f\xec\x9a\x54\x5c\x87\x67\x04\x84\xfa\xf7\xf4\x6e\x70\x0c\x4f\xef\x3a\x4d\xf3\xa0\x00\x62\x60\x0e\x4e\x72\x20\x52\x1c\xda\x19\x0e\x27\x04\x87\x03\x8a\x43\xbe\x3f\xf2\xd4\x32\x4f\x5a\xd0\xda\x01\x91\x93\x36\x43\xa4\x53\xda\x29\xbd\x65\x9d\x76\x48\x7f\x44\x46\x95\x20\x72\x9d\x80\xce\xf6\x0c\x21\xe6\x58\x36\x48\x01\x7f\xc6\xc5\x93\x3d\x23\x05\xfc\x99\xb7\x5e\xae\x94\x67\xa4\x80\x3f\x23\x8e\x9e\xf2\x8c\x14\x88\x67\x51\xbc\x74\xb0\xfc\x8c\x16\xf0\xa7\x01\x0a\x41\x69\x19\xa0\x50\x3c\x22\x0e\x92\xf2\x88\x14\xf0\x87\x31\x5a\xa9\xed\x62\x24\x90\x49\xd6\x33\xf5\x51\xb2\x9e\xf1\x47\xcc\xb7\x93\x1e\xd1\x02\xaa\xd7\x31\xc2\xeb\x38\x4c\xd8\xbc\xb3\x5e\xce\x50\x9c\xb9\x46\x74\x82\x99\xdd\xd3\x67\x39\x8f\x0a\x1c\xcc\x38\xea\x53\xcf\x85\xfa\x85\x41\x12\x81\x17\xad\x67\x01\x4a\x88\x07\xe7\x14\xda\xdc\x38\x81\xef\x39\x38\x12\xc4\x08\xbf\x2f\xf5\xc0\x59\xb7\xd4\xdb\xae\xd3\x79\x89\x80\x8d\xaf\xe9\xf4\x0b\x1e\x9a\x3b\xeb\x00\x27\xf4\x81\x0f\x5d\xf0\xc9\x8c\x67\x55\x0a\x15\xdd\x05\x72\x3f\xf9\xe1\x35\xab\x38\x07\x7c\xbf\x22\xce\x3e\xfc\xa7\x0b\x7b\x8c\xfe\x3d\x42\x52\x58\x11\x9a\x85\xe2\x38\x8a\x6b\x7b\x33\xc7\xcb\x80\x3c\xb1\xc8\xd4\x5a\x55\x30\xab\x42\x8d\x2f\x4a\xd0\xdd\x0a\xb9\x98\xb8\xc5\xd7\x11\x86\xbd\x46\x43\x74\xd2\x68\xc0\x5e\x7d\x8f\x21\x8f\x42\x4f\x41\xc1\x67\x28\x30\x2e\xef\x82\x82\xad\x45\x81\x4b\xa9\x04\x05\xbf\x80\x02\xbd\xe0\x7a\x0e\x5d\x2a\x35\xce\x61\xc1\x39\x0f\x61\x32\xcd\x87\x88\xcb\x3d\x44\x88\xb8\x32\xc4\x33\x4e\x85\x67\xc0\xcc\x21\xea\x10\x85\x99\x01\xe4\xcd\xb9\x58\x59\x6b\xb0\x04\xcd\x2e\xbc\x82\x26\xf5\xb3\x5c\x78\xd9\x05\xcb\x7e\xa1\x92\x9c\x1a\xba\xb4\x84\xe9\xa2\x10\x29\x0a\x12\xc4\xc0\x74\xc1\x3a\x68\x67\x90\x6c\xbb\xa5\x87\x64\xa7\x25\x9c\x5c\x5b\xa6\x17\xf6\xc1\xe2\x34\x73\x0c\xc3\x08\x93\x3a\x0a\x2c\x49\x18\x4c\x7d\xb9\xc4\x19\x87\x1c\xe2\x62\x23\x27\x0e\xee\x39\x83\x15\x26\x6b\xf9\x61\xcb\x3d\xba\x36\xbc\x04\xcb\xee\x10\xcd\x75\x6d\x78\x05\xd6\x81\x55\xda\xff\x30\xa4\x90\xf2\xc3\xa8\xac\x67\xce\x3d\xbb\xc8\x3d\xdb\x96\xb9\xd7\x3a\xd0\x73\xaf\xb5\x03\xf7\x72\x35\x5a\xb9\x1a\xb6\x96\xbf\xd4\xb3\xc5\xa4\xf6\x8f\xe4\x34\x74\x33\xc2\x6b\x8c\xef\xcf\x9b\x32\xdf\xeb\xdf\xc2\x78\xc1\x5d\xd2\x49\xeb\x85\xdc\x89\x2c\xdc\xdf\x0e\x1e\xa3\x93\xef\xa8\x33\x05\x1e\xb6\x14\x1e\xb6\xa4\x9e\x5b\xdf\x45\x5b\x5b\x1a\x6d\x6d\x4b\x56\xc3\x6e\xb7\xf5\xda\xda\x7e\x14\x6d\xcd\xd5\x68\xe7\x6a\xb4\xb6\xe8\xb3\xb8\x6a\xff\x78\xcd\xe6\x4c\xe2\x4a\xd7\x6e\x7f\x17\xcd\x6e\xb7\xcb\x34\xbb\xdd\xfa\x4b\xb3\x77\xed\xb9\xad\xf4\xdc\x96\x7a\x6e\x7f\x97\x31\xd5\xce\xc6\x54\xde\xbf\xd8\x0c\x90\x00\xa3\x00\x4b\xfd\x42\x29\xa2\xe6\x87\xa9\x87\xc7\xd4\x5b\xe7\xd4\x11\x37\xb7\x96\x14\x7d\xb9\x07\xbb\x68\xc4\x17\xf9\x64\xdc\xd0\xb8\xaf\xe3\xc7\x09\xa9\xec\x45\xb0\x8a\xfd\x10\xd7\xaa\x7b\x55\x03\x47\xac\x5d\xed\x53\xdd\x50\xee\x6f\xe8\x7d\x3d\xf5\xc6\x60\xbb\xc3\x17\xa0\xf0\x2b\x5c\x3d\xc9\xcf\x5a\x45\x64\x2d\x68\x49\x25\xcc\xb1\xea\x02\x8f\x50\x67\x0f\x02\x14\x5e\xe3\x05\x74\xa1\xc9\x00\xdc\x2e\xfc\x00\x51\x00\x2f\xbb\xbc\x95\x17\x65\x76\x4a\xd4\xe6\x17\xfb\x90\x79\x4f\xac\x53\xf2\xbb\xaf\x3a\xd4\xc4\x9a\xad\xa2\x24\x87\x29\x57\x16\x06\x28\x15\xbb\x14\x6d\xf7\x50\x88\x7d\xd7\x09\x82\x7b\xc2\x98\x6c\x4d\xc1\xc3\xad\x2c\xc0\xe8\x53\x03\xf1\x91\xc6\x13\xf3\x41\x57\x02\x2f\x1f\x6e\xd5\x29\x09\x81\x99\x45\xd8\xf3\xaa\xa2\xb8\xfd\x1f\xa1\x0b\x1f\xc9\xd0\x31\xad\x47\xe2\xb7\x69\x42\x14\x06\xf7\x90\x20\x0c\x01\x51\x45\xba\xaa\xf8\x08\x3e\x71\x83\xaf\x1d\xec\xdf\x20\xb9\x35\x74\xa1\xe6\x93\x59\xaa\xc9\x09\x27\x97\x75\xd2\x44\xda\x7f\xc8\xea\x27\xd8\x89\x71\x9f\xac\x2e\xd3\x76\x75\xda\x90\xf6\x12\xc0\x3e\x9b\xaa\xa4\x16\x28\xf4\xfa\x22\x58\x50\xfb\x28\xb5\xf8\x28\x5a\x7c\xa4\x2d\x04\xf2\xae\x13\x56\x31\xd0\xa8\x39\xed\x0c\x66\x68\x1e\xc5\x88\xc0\xf9\x45\x8c\xae\x0c\x8b\x57\x29\x7c\x65\x74\x71\x5d\xd8\xdb\x53\x55\xc4\x34\x99\x01\x8b\xe6\xf3\x04\xe1\x84\xa8\xc1\xca\x49\x12\x55\x1d\xf2\xd4\x1e\xdd\x63\x64\xa0\xd0\x23\xff\x89\x50\x0c\x26\xf7\xaf\x54\x6e\xd9\x74\x8a\xe7\x5d\x89\xa0\x82\xe5\x4c\x71\x60\x63\x41\x6f\x28\xb7\x0f\x15\x7d\xbf\x5a\xe6\x71\xe8\x59\x9f\x60\x4a\xa3\x92\xfc\xcd\x62\xe4\x7c\x52\x30\x51\x30\xca\x49\x88\x77\x47\xfa\x50\xa8\xa1\x08\xee\x5b\xea\xc2\x32\x53\x97\x97\xc0\x23\x46\xb4\xa1\x40\x88\xa8\x51\x13\x0a\x4c\xe0\x02\x17\x3b\x58\xa9\xdc\x44\xbb\xba\x30\x08\x97\x97\x6c\x32\x58\x05\x8e\x5b\x1c\xe1\xd9\x9a\xd0\x11\x9b\x46\x80\x9d\x59\x80\x74\xc3\x5c\x00\x21\x3d\xf2\xca\x8f\x30\x31\x6c\x31\xe5\xbc\xd3\x6f\x5c\xb9\x0b\x74\x29\x1a\x94\xc0\x87\x2d\xdf\x33\x2c\x68\xe3\x32\x24\x44\x37\x8f\x33\xb3\xa4\x4a\x2d\x95\x85\xe8\x36\xc1\xc4\x18\xed\xed\xed\x32\x22\xb3\x98\x4c\x77\xc3\x94\x02\x4a\x7c\x81\xeb\xd4\x2a\x62\x3f\xb0\x2f\x41\x31\x95\x15\x78\x8a\x0c\xbf\x68\x34\x40\xb0\xe0\xd2\xbd\xa2\x0e\x52\x5d\x3f\x66\x55\xd2\xf2\x5a\xcd\xc0\x31\x0d\xa6\x73\x90\x98\xc9\x24\xc3\xc5\x22\x62\x7c\x26\xf3\x31\x7c\x0a\xa3\xdb\x04\x9c\x59\xb4\xc6\xc0\x37\x7d\x21\xa1\x1b\xce\x6c\x4b\xd4\x8d\xc2\x1b\x14\x27\x64\x66\xd4\xe9\x36\x03\x27\xf8\xcf\xf1\x90\x24\x4f\x38\x42\x6e\x3f\x04\xee\x87\xb5\x9b\x8e\x2e\x2d\x6a\x2c\xfe\xf7\x68\xa8\x31\x70\x3b\xa0\xb6\x76\x3f\x04\x1c\x35\x1e\xf3\xd6\x61\xc7\x37\xcf\x55\x27\x00\x43\xb2\x5e\xad\xa2\x18\xf3\x1d\x7c\xfd\xf0\x67\x0d\x1f\xc5\x1d\xdc\x3a\xea\x69\x5f\xdf\xe6\xc4\x95\x0e\x2c\xa6\x89\xf9\xa1\xf5\xc0\xe1\xf6\x0a\x9a\xca\xdc\x57\x88\xcf\x29\xc3\x8b\xb5\x63\xa1\x30\xbb\x23\x05\xd5\x0e\x2c\x19\x8a\x3a\x4e\xf2\xd3\x50\x29\x74\x65\x6e\xdc\x3e\xe6\x37\x0d\xe0\xdd\x47\x7f\x11\xcf\x4d\xe3\xd8\x34\x61\x81\xf1\xea\xf0\xd9\x33\x14\x36\x6e\xfd\x4f\xfe\x0a\x79\xbe\xd3\x88\xe2\xeb\x67\xe4\xee\xd9\x05\x9e\x77\xa4\x4a\x1e\xba\x41\x41\xb4\x42\x71\xc3\x8d\xe2\x28\x74\x02\x67\x96\x34\xdc\x68\xf9\x8c\x8c\x9e\x67\x6b\x3c\x37\x3b\x66\x36\x6e\xcc\x35\xf6\x03\x1f\xdf\x97\x85\xa5\xb3\xc4\x10\xae\x9f\x62\x18\xbe\xec\x42\xf3\xee\xc5\x09\x9b\x72\x39\xd6\x4a\x03\x65\x92\xaf\xe5\x9a\x9d\xe4\x96\xd0\xac\x77\x32\xfd\x36\xc9\xac\x7d\xd7\x6f\xc2\x3e\x2c\x1d\xbc\x68\xcc\x83\x28\x4a\x81\xc2\x33\x68\xde\xb5\x9b\xf5\xdf\x35\x0d\x2d\xda\xb0\x43\x1a\xa6\xd5\x9f\xe6\xab\xcb\x88\xd2\xde\x0c\xd6\x96\x57\x41\xa1\xf7\x7b\x09\xce\x27\x27\x5b\x91\x1e\x90\xbe\xcb\xb0\xb6\x9a\xcd\xed\x78\x97\x53\x5c\x24\x25\x83\x60\x7f\x0b\xe5\xec\x9f\xbd\x9d\x01\x56\xb3\x94\x05\xb4\x52\x57\xa8\x86\x06\xc3\x56\x86\xa0\x1e\x3b\x5a\xca\xfe\xba\x32\x07\x65\x16\xe8\x28\xff\x4e\x70\xad\xef\x04\xb7\x49\x35\x89\xc0\x25\x15\x7f\x2f\x84\x2f\xca\xa4\xc3\xfe\xb5\x0a\x42\xa2\x73\x01\x54\x2f\xb8\x9c\x5c\x27\x0c\x23\xb2\x0c\x82\xeb\x18\x39\x98\x66\x5b\x38\x21\x5c\xec\x33\xd9\xfd\x52\x65\x06\x85\xaf\x58\x16\xfe\x1c\x7f\x78\x4e\x08\xb0\xff\x7c\xae\x14\x5a\x36\x2d\xb4\x6c\xb5\xb4\xc3\x4a\x3b\x02\x82\x94\x25\x56\x91\xae\xa1\x9b\x9a\x11\x96\xa0\x45\x16\xb7\x06\x35\xbf\x1f\x52\xdb\x2b\x6d\x62\x81\xbc\xb8\xf5\x53\xed\xf3\xe1\x15\x7c\x54\xcc\x4b\x7e\x47\x67\x21\xaf\xaf\xfc\x79\xda\x83\xaa\xa2\x25\x06\x1d\xc7\x86\x8a\x11\x9b\x00\x40\xb8\x71\xd2\xf3\xf4\xc2\xb4\xf6\x69\xeb\x7a\x31\xc8\xc4\x91\xf9\xc0\x4c\x7b\x9a\x80\x87\x63\xc3\x37\xfc\xba\x01\xcd\x1c\x3e\x42\x77\x9e\xb8\x0b\xdd\x04\x2c\xd8\x2a\x93\x96\x90\x65\x18\x0b\x98\x41\xc6\x6a\x3a\xab\xb9\x8b\xba\xec\xb8\xa7\xb5\x6d\xdd\x68\x9d\x51\xfd\x9a\x71\xd3\xc3\xdb\x1b\x96\x51\x8c\x09\x47\x1e\x6a\x1a\xe4\x57\x54\x6c\x9a\xc4\x34\xb3\xb6\x26\x19\x21\x69\x8b\x0c\x21\xda\xea\x57\xa1\x5d\x4c\xd3\xad\xfc\xd2\x22\xc5\xb0\xb5\x05\x43\xfa\x6b\x2b\x78\xb6\x36\xe0\x49\x7f\x6d\x09\xdb\x81\x8c\x2d\x03\xb6\x0b\xe2\x96\x2d\x30\xcf\x51\x62\x97\x52\xd2\xde\x89\x12\xfa\xdb\x52\xe8\x69\x6f\xa5\x87\xfe\xb6\x24\xaa\x4e\x4a\xa8\x62\xd0\x77\x22\xb0\x93\x23\x30\xa5\xd8\xce\x51\xdc\xd2\x3a\x28\x1c\xaa\xa1\x64\x8a\xd2\xc1\xbe\x6f\x29\xc3\x5d\x8c\x18\xe1\xca\x8c\x79\x70\xd5\x09\xc1\xc7\x28\x76\x70\x14\x13\x17\xcf\x5d\xa8\x61\x57\x74\x47\x1c\xeb\x19\xf7\x61\x69\xd8\x08\x27\x7c\xdb\x3d\xc4\x28\xbe\x71\x02\x9d\xcb\x22\x52\x53\x09\x26\x69\x72\x2a\x41\x9b\xdf\x40\x3a\xf0\x44\x41\x6a\x82\x32\x81\x7d\x28\xae\x34\x79\x60\x82\x8e\x58\xe2\x98\x49\x9c\xc8\x6c\xdd\x27\x7f\x55\x97\x83\x27\xa4\x80\x0d\x57\x09\x6a\x7a\xb9\xcf\x9e\xcb\xb1\xd9\xcc\x9b\xfe\x40\xb3\x3d\x69\xa8\x4e\x7d\xc8\x02\x5d\x9c\x06\x01\x4b\x9a\x46\x56\xc8\xc1\x8a\xe7\x2b\xdb\x45\x35\xc0\x22\x59\x55\xb9\x81\xd4\x3d\xd1\x99\xec\x6e\x3f\xe7\x53\xab\x4b\x85\x5d\xcc\xab\x30\x7f\x14\x19\x85\x82\x7d\xc9\x92\x33\xa5\xc5\xbe\xca\x89\x54\x62\x95\x1c\x47\x02\x27\xc1\x32\x28\x69\x53\x9d\xb3\x2c\xf0\x5d\x24\x99\x75\xca\x42\x83\x34\xab\xe7\xe7\x5f\x5a\x95\x07\x85\x0c\x0a\x39\x55\x7e\x69\xe6\x4c\x35\x6e\xe6\x87\x09\x72\x62\x77\x51\x4b\xa2\x18\x23\x6f\xea\xcc\x02\x64\x10\xbd\x5e\x1a\xe0\x46\xcb\x95\xbc\x74\x5a\x20\xc7\x33\x80\x66\xe9\x74\xc1\x32\xe0\x89\xd4\x46\xaa\xb6\xf4\x3d\xd5\xa5\xa8\x91\x86\xb0\x4f\x5b\xd6\x9f\xd9\xa9\x23\x4e\x77\xdf\xa2\xe5\x4a\x35\x3b\x6c\xb5\x54\xa3\xdd\x98\xb4\xcf\x3a\xbc\x82\xc2\x4a\x89\x68\x67\xd6\xfd\x25\x8e\xd8\x3e\x47\x6d\xe9\x7b\xf5\x2b\x78\x45\x49\x28\x86\xfa\xc8\x1f\x27\x60\xe9\xab\x5a\xa3\x4c\x86\xe2\x8f\x62\xae\xa9\x9b\xd3\xb8\xdd\x48\x86\x5c\xfc\x70\x13\x19\x94\xee\x2b\xa2\x34\x45\x42\xb8\xa8\x71\xbc\x46\x06\xa8\x2d\xd2\x69\xbd\x0c\x2e\x45\xe8\x41\x70\x69\x8b\xa2\xbb\x20\x6c\x87\x23\x0a\x85\x8a\xe5\x34\xcc\x0d\x9c\x24\x79\xeb\x60\x77\xf1\x1a\x85\xcc\x5a\xd6\x68\x59\x9a\x52\x0f\xca\xb4\x41\x46\xe2\xe7\x2f\x52\x61\xec\x84\xd7\xc5\x52\xff\x3a\x8c\x62\xea\xa8\xa5\x08\x48\xd5\x35\xe5\x73\x3f\x4e\x70\x80\x30\xf1\x29\xbb\x94\x46\xc5\x59\xa1\xc9\xfa\x69\x33\xb9\x23\xcc\x4d\x03\x37\xcc\x14\xf7\xba\x5c\x83\x18\x41\x7a\x4b\x53\x6e\x0c\xf8\x60\x10\xff\xd5\x27\xb3\x83\xac\xb4\xd4\x56\x76\xb3\x04\xe0\x74\x08\x70\x52\xc8\x0c\x41\x6e\x29\x57\x8a\x9a\x2b\xb6\x75\xf7\x9e\xee\xe9\xd5\x3a\xe5\x48\x4a\x9b\xac\xd9\x69\x73\xb3\xa4\x39\x8d\x6d\x36\x88\x39\x88\x31\x5d\x04\xf0\xc8\x92\x98\x1a\xdd\x7a\xbd\xd0\x46\xf0\x7a\x73\x8f\x7f\x96\x21\xcc\xc8\x97\x05\xa3\xad\x07\x69\xc8\xa8\xfa\xcb\x2f\xbf\x54\x8b\x68\x68\x47\x2e\x50\x1b\x2c\xc4\x5a\xc0\x10\x34\xa3\x58\xc6\xba\x7a\x55\xd5\x63\xa3\x6e\x07\x94\x76\xcf\x89\x63\x1c\x2a\x25\xeb\x6b\x98\x5e\x4a\x2d\x03\x16\xa3\x65\x74\x83\x18\xb0\x3a\xd0\xf0\xff\x32\xba\x21\x2e\x48\xd5\xac\x6e\x47\x82\x8d\x36\x03\x3e\x6b\xa0\xe5\x71\xfb\x52\x44\x0e\x24\xad\xc8\x46\xa0\x82\x7e\x9e\xe9\xf2\xce\x2e\x13\xc0\xc3\x06\x44\xd5\x61\x92\x22\xb4\x3e\x75\x0e\xe9\xfb\x05\x28\x41\x21\x4e\xe8\x9b\x21\x4c\xb3\x92\x06\xd4\x46\x67\xa7\xef\xa1\x37\xe9\x0f\x87\x45\xbc\xf5\x3c\x78\xfe\x9b\x01\x07\xcd\x2f\x94\x8d\x3d\x30\xe1\x1f\x3b\xb6\x3b\x78\x61\x80\x65\xdb\xac\xa1\x03\x26\xfc\xdf\x72\x3d\x73\x25\xec\xdd\x02\xf6\xf4\xfd\x81\x28\x90\x76\x6d\x1a\x3b\xe2\xd0\x34\xa0\x65\x69\x24\xa4\x53\x39\xcb\x7e\x51\x2f\xc7\xd0\x93\x30\xf4\x0a\x18\x7a\xfe\x35\x7d\xf5\x66\x37\xac\xda\x1d\x03\x7e\x7b\xc1\x18\xd3\x04\x13\x0e\xca\xbb\xbd\x96\xba\xbd\x2e\x74\x4b\x73\x07\xe8\x76\x8c\xb4\xa1\xc5\xc3\xda\xc9\xca\x71\xd1\xae\x18\x59\x06\x74\xb6\xb1\x29\xab\xdc\xde\x85\xab\x69\xf5\x56\xcb\x00\xab\x65\xef\x0e\xbe\xd5\x36\xc0\xfa\xed\x60\xf7\x06\xcf\x2d\xc2\xcf\x07\xb4\xf8\xed\x05\x69\xd2\xb1\x0e\x76\xa7\xa2\x63\x37\x5b\x06\x74\xec\x07\x10\xde\xb1\x09\x25\x1d\xbb\xb5\x3b\x6b\x3b\x76\xbb\x49\x9a\x74\x9e\x3f\xa0\x49\xa7\x43\x07\x5a\xe7\xc5\x97\x0d\xfa\x1b\x48\x8a\x14\x14\xed\x43\x74\x8b\x62\xba\x15\xf3\x2d\x96\xe2\x21\x23\x7e\x25\xe1\xb3\x2a\x2a\x36\x71\x9c\xd6\xec\x75\x25\x69\xd4\x7f\x0d\x52\x44\xfd\xda\x79\xd6\x6c\x50\x8d\x8e\x01\xcf\xdb\x3b\x57\x3f\xb0\x0c\x38\xd8\x5d\x58\x96\x4d\x06\x83\x9d\x6f\xa0\x70\x26\x91\x38\x93\x14\x38\x43\x87\xf5\x57\x58\xc2\x03\x32\x08\x77\xb4\x84\x2d\x7b\x47\x8b\xd9\x6a\xed\x58\xf1\x79\x73\xb7\x8a\xbf\xbd\xd8\x5a\x33\x53\x7c\xeb\xc0\x26\x63\xa5\xb9\xd5\xb4\x70\xe0\x1d\x7b\x57\xc2\x3a\xf6\xae\x94\x75\xec\xd6\xc1\xae\x35\x3b\x2f\x76\x9d\x88\xec\x4e\x67\x83\x82\xac\x25\x05\x59\x17\x14\x84\xee\xe3\x7e\xf3\x50\xde\x3c\xe9\x2b\xe8\xdc\x4a\xe8\xdc\x16\xd0\x71\x82\xd5\xc2\x09\xd7\x4b\x14\xfb\xee\xb7\x0e\xe5\xcd\xf3\xe6\xd7\x12\x53\xde\xee\x21\xf6\xec\x4e\xe2\xc2\x5d\x81\x0b\x0b\x74\xe7\x78\xc8\xf5\x97\xce\xe3\xfa\x0a\x9b\x69\x7e\x21\xd1\x7c\xf2\x10\x9a\x9b\x12\xcd\xf3\xbf\xdc\xfc\xef\xe2\xe6\x83\xbc\x5a\x55\x9b\x17\xa8\xde\xce\xe0\x87\x32\x57\xcb\xd8\xaf\x61\xea\x63\x32\xb4\x9c\x99\xbb\x32\x4e\xce\x02\x50\x63\x1d\x6a\x88\xa6\x92\xa1\x9e\x44\x82\x63\x4a\x3c\x23\x0d\xdd\xf8\xe1\x98\x52\x55\x23\xc6\xab\x9f\x6e\xa1\x03\x0f\x75\x7c\x30\xe8\xbb\xd6\x3e\x4b\xe9\x65\x0c\xa8\x6b\xc2\x74\xf1\xa5\x75\x05\x2f\x59\x20\x96\x40\x61\x09\x10\xe2\xe6\x65\x17\xe2\x4b\xfb\x4a\x2f\x5b\x29\x22\x55\xbe\x68\x94\xae\xb5\x41\x29\xc8\xd4\x48\x04\x04\x74\x61\xaf\x34\x0a\x5e\xa4\x56\xaa\x95\x05\x4c\xb9\xaa\xa5\xb5\xe9\xde\x5f\x39\xc7\x50\xe8\x19\x59\xa8\x48\x1b\x4a\xdb\x09\x81\x94\x71\xff\xe9\x82\x69\xa5\x8b\xe4\xda\x43\x11\x2b\xc5\x2c\x4b\x23\x67\xe9\x83\x22\xc9\x97\xbe\x1b\x8f\xee\x70\xec\xa4\x59\x3b\x06\xed\x9e\x95\xc5\x28\x59\x07\x18\x6e\x9c\x60\xad\x4d\x20\x4c\xd6\xb3\x77\x3e\x5e\x1c\x65\x2f\x09\xd2\x4d\x96\x64\xf6\x2d\x49\xc3\xc9\x4c\xb7\xfb\xf1\x57\xea\x30\xfc\x95\x3a\x2c\x9b\x87\xf4\xe6\xaf\xd4\xe1\x6d\xa9\xc3\xe9\x15\x95\x82\x48\x27\xe4\xe1\x79\xc7\x5d\xd0\x6d\x28\x84\x97\x08\x3b\x74\x12\xa9\x7d\xfe\x62\x7c\xa6\xa0\x3f\x7c\x58\xb2\x4d\xda\xea\xa7\x9b\x6a\xe5\x4b\x5d\x6e\x74\x4e\x43\x78\x0f\x6c\x99\x9a\x0f\x6a\xb3\x51\x9c\xed\x1f\xf0\xf3\x72\x0a\xfb\x07\xbc\x22\x74\xe1\x73\x36\x53\xa5\xef\x44\x74\xe1\xf3\x17\x23\x2d\x77\x9d\x15\x5e\xc7\xf2\xc6\xc2\x17\x79\xa6\xd0\x04\x1d\x29\x25\x97\xb4\xef\x2b\xe8\x82\xe8\xad\x68\xcf\x33\x92\xb3\xda\x4a\x65\x2e\xc6\x1c\x99\x2c\x2d\xb4\x46\xee\x0b\xdb\x7a\xd9\xdc\xd0\xaf\xe7\xe7\x57\xf2\x8c\x94\xeb\xa7\x50\xde\xf1\x61\x88\xee\xf0\x09\xa9\x59\x74\x3e\xe4\x2a\x13\x1c\xd7\x76\xf0\x97\x44\x13\xe2\xe9\xe3\x7c\x03\xcd\xe4\x5c\x46\x32\x76\xe2\xef\x45\xf0\x7c\x1d\x04\x63\x82\xde\x28\x3c\xfb\x2e\xb4\x97\x70\xf4\x01\xe4\x2f\xfd\x70\x9d\xfc\x20\xfa\x35\xc4\xe5\x37\x31\xcb\xe9\xda\x42\xc7\xbf\xd7\x28\xa1\xc8\xfe\xcc\xa2\xfc\x3a\x6a\x75\xe4\x72\xd3\x51\xf3\xbd\x72\x5a\x3f\xa8\xbd\x67\x5e\x04\xef\xb7\x21\xec\xcf\xa5\xef\x5d\x11\xff\xd7\xd4\x3f\xb1\xae\x34\x70\x78\x0d\x4f\xca\xd3\x12\x8d\xd9\xfc\x6c\x94\x01\x2b\x79\x60\x5f\xe9\xd0\xa5\x89\xdd\x3b\xf4\x41\x73\x55\xa4\x1b\xd8\x87\xa0\x20\xe9\x0c\xe7\x2e\x07\xac\x15\x39\x5d\x58\x90\xb9\xcb\x80\x20\xbf\x96\xd8\x4d\xd0\x3a\x61\x6f\x11\x38\x7c\x67\x33\xc7\x69\x9f\x90\xe9\xf6\x21\x5a\x53\x22\x44\x49\x8b\x44\x26\xcf\x0e\x44\xee\x8a\x63\xb4\xfa\x66\x14\xed\x1c\x8a\x05\xc7\xe8\x1b\x06\xdf\xcc\x09\x9c\xd0\x45\x71\x2d\xc1\x71\x3e\xed\x2c\x59\x2f\x35\x09\x47\x33\xd7\x00\xe4\xe6\x72\x1a\xc1\x32\xc0\xe2\x2b\xf3\xb4\xcc\x36\x8a\xaf\x95\xf3\x6d\x7b\xe2\xe1\xcf\xdc\x3a\x51\x6d\x14\xd6\x90\x64\xe5\x14\xf0\x62\x91\x3f\x73\x73\xab\x7e\xf4\x30\xbb\xe8\xf6\xa9\xdb\xe9\xd2\x15\x00\x21\xeb\x15\x34\xf5\x03\x86\xd1\x4c\x7e\xf3\x4c\xe6\xa0\x68\x85\x6e\x59\xf3\x2d\xd2\xc8\x4b\xa5\xac\x99\x7e\xea\x4c\x09\x99\xb9\xdb\x90\xcf\xa7\x66\xed\xd6\xc1\x46\x7a\xa3\x98\xf7\x6e\x6a\xde\xd1\x56\x31\x68\x6e\xe4\x8b\x6e\xf4\x97\x62\xb0\x1d\x71\xd8\xb6\x0b\x5e\x58\x8f\x57\x24\xa0\x8d\xd4\xa1\x65\x96\x40\x37\x30\x77\x72\x01\xd2\xf1\x89\xfe\x4d\x0d\x53\x89\x55\xd9\xa0\x1c\xfe\x1c\xe4\x39\x01\x5e\x49\x00\x9c\x98\x74\x47\xd5\x37\x45\x3c\x8e\x96\xb4\x27\xba\x6c\x56\x1a\x2a\x5d\xfb\xe1\xf5\x29\xd2\x6c\xf8\x67\x55\xa2\x95\x2e\xa5\x43\x43\x50\xe8\x07\xdb\x0c\x4b\xe0\x24\x94\x2e\xa9\xa8\x34\xb7\x88\xdb\x02\x01\x55\x4a\x10\xaa\xa5\x62\xc8\xdb\x8f\x6b\x14\xaa\x09\x44\x74\x49\x50\x6e\x0c\xb4\x41\x9f\x6b\x94\x4f\xce\x94\xa8\xa9\xd7\x94\x1c\x2a\x69\x45\xc3\x13\x92\x66\xc9\xc6\x8c\x24\x99\x49\xfe\xbc\x2c\xdd\x42\x89\x76\x16\x74\xd1\x10\xab\x17\x6d\xba\x97\x58\xaa\xc9\x41\x27\x4d\xa0\x97\xf3\xbd\x2c\x59\x88\x1e\xcc\x5a\xb5\xec\x56\xfb\xb7\xe7\x2f\x3a\x07\x55\x83\xd0\x66\x19\x54\x11\x4a\x1c\x48\xde\x52\xc8\xb8\xbc\xd2\x03\x28\x14\xc0\x34\x31\xfb\x54\xf2\xa2\x3f\x95\xb9\xf2\x9f\xce\xa0\xee\x82\x84\xf0\x3d\xd3\xf4\x3c\xb7\x5e\xb2\x79\x90\xee\xcf\xcc\x4a\x32\x99\xfe\xff\x63\x0e\x9f\xcf\xb5\xcf\x66\x46\x9a\x61\x97\x7a\x08\x62\xb4\x51\xf5\xdf\x27\xba\x42\xff\x1f\x94\x60\xb7\x8d\xc6\xd9\x03\xa6\x00\x89\x4a\xdd\x90\xa8\x3e\xad\x42\xa3\x01\xee\x6e\x33\x6d\x49\xcc\xbf\x14\x81\x54\xf4\xbf\xfe\x10\xd1\x93\x45\xfc\x23\x09\xbe\x8c\x9d\x90\xe5\x00\xfa\xfc\x14\x14\x2a\x59\x70\xe6\x18\xc5\x50\x15\x6f\x2f\x72\x71\x13\x49\x27\x25\xa8\xe8\x18\xac\x8c\x97\xfd\x9f\x6b\xbc\xfc\x4f\x63\xbf\xf9\x23\xd8\xcf\x22\x2f\xff\x45\x5c\xfb\x5f\x3f\x82\x6b\x69\x9c\xe7\xbf\x88\x71\x7f\x6e\x66\xdc\x4c\x7a\x67\xad\x14\xd7\x82\x87\x5b\x96\x71\xfc\xd3\x50\xfd\xb7\x2d\x54\x23\x52\x8b\xac\x74\x99\xb7\xba\x1b\xf9\x38\x1a\x84\xde\x4f\x4f\xfa\xe5\xcf\x63\xde\x4b\xfd\x1c\xde\x2c\x75\x69\x74\x2e\x44\xc1\xbb\xd9\xe6\x07\xd6\x7e\x1e\xc2\xe1\x3b\x38\xc9\x22\x02\x65\xc0\xe7\x92\x8c\x15\x35\x53\x24\x31\xe0\x49\xbe\xed\xd7\xf9\x85\x4a\x78\xcf\x4d\x2e\x9f\xb8\xc9\x55\x09\xe1\x34\x3e\xa1\xf7\x4a\xad\x3a\x95\x52\x9d\x67\x53\x15\x02\x6b\x05\x64\xaf\x1a\x68\xb9\xc2\xf7\x7c\xc0\x6d\x57\xfc\xfa\x7f\x8d\xfc\xd3\x28\x38\xa1\x5d\xc9\xb7\x29\x91\xa0\x78\xd9\xcc\x59\x6d\xa6\x2e\x67\x83\x38\xa7\x0f\x61\xaf\xb6\x07\xf4\x24\xfd\xf0\x5a\xf3\xfe\xc9\x26\x54\x77\xd6\x9d\x68\x55\x73\x9d\xd5\xb6\x31\xdc\xf8\x79\x64\xb8\xcd\x78\xc9\xb1\x29\xb7\x5f\x4f\xf3\x57\xfa\x3c\x73\x65\xab\xbe\x3e\xdd\x44\x6b\xe9\xcb\x4e\xb0\x69\x9e\xf9\xf9\x58\xa4\x8d\x97\x3c\x38\x5e\x58\x01\x35\x3b\xe0\x89\x9b\x14\x23\xc6\xa5\xca\x5d\xcf\x2b\xb7\x04\x49\xcf\xae\xaf\x63\x4f\x2e\xfd\xac\xbc\xb9\x26\x18\xe6\xcf\x73\x6e\x86\x1c\x59\x4c\x70\x4c\x94\x6a\xf7\x18\x62\x21\xa4\x5b\xd0\x98\x4d\xc1\x46\x39\xf6\xa6\xc6\x66\x45\x90\x54\x39\x40\x02\x05\xf3\xac\x23\x72\x47\x49\xa5\xd9\x10\xe2\x7a\x1f\xd4\xf3\x05\x64\x78\x13\x7a\x48\xcf\x26\x70\xec\x18\x9f\xf4\xb2\x0c\x58\x82\x63\x1a\x0c\x2e\x87\xc6\xec\x6a\x14\x78\xa2\x1e\x85\x49\x79\x95\xab\xa3\x76\xa9\xa2\x13\x17\x3a\x51\xf5\x39\x11\x08\xe7\xf6\xae\x92\xb4\xa5\xc0\xa0\x54\xc5\x33\x9d\x29\x6c\x0c\x3f\x06\x75\x45\xf9\x14\xde\xc8\xfe\x26\xfa\xe7\x19\x9e\x3f\x88\x33\x1b\x95\xe8\x6b\xc5\xae\x6c\xda\xe8\x39\xf7\x93\x70\x46\x61\xcd\x2a\x8e\x5c\x94\x24\x79\x7e\x18\xc0\xce\x5c\xa0\x3b\x14\x15\xed\x80\xcd\xa8\x4d\xf8\x2a\x8f\xfd\x4f\x73\x10\x21\x1b\x92\x7c\x03\xa4\x0b\x35\x56\x27\x4b\xe8\x4b\xdb\xa4\x99\x83\x38\xae\xc3\x3e\x2f\xdf\x2f\x80\xca\xb6\x33\x14\xd0\x1b\x6c\x40\x49\x05\x6e\x14\xbb\xf9\x8e\x0b\xb8\xd3\x13\x2b\x54\x66\xf3\x27\xd4\x18\x4a\xef\x48\x3f\x5c\xb4\x96\x22\xa0\xf4\xc6\x34\xa5\xfd\x98\x73\x96\xdc\x99\x1f\x5d\x4a\x9d\xa3\x7b\x9c\x3f\xa7\x89\x1f\x44\x03\x69\xc2\x21\xf1\xf9\x32\xc4\x35\x07\x08\x08\xce\xbd\xcc\xf3\x48\xeb\x1c\x98\xe6\xe5\xa5\x98\x13\x09\x8a\x59\xab\x72\x67\x82\x9f\x71\x4c\x8f\x78\x98\xdd\x63\x54\x35\x52\xec\xf5\x3e\x83\xbb\xc8\x6a\x64\x7b\xd6\x69\xea\x6c\xba\x79\x9d\x76\x6d\xa6\xf8\x98\xa4\xfc\x71\xa0\x6f\x05\x24\x01\x49\x2f\x75\x1b\xd0\xa5\xae\xd8\x4e\x98\x08\x22\xb3\xab\xdd\x02\xe6\x45\x25\x82\xab\xab\x42\x2d\xfa\x66\xb8\x92\x00\x90\xf6\x57\xde\x9d\x69\x72\x91\xba\x0b\x27\xae\x1a\x94\x0e\x25\xbd\x7f\xa1\x71\x06\x53\x23\xc2\x36\x6e\xd3\xdb\xab\xda\xc6\xa6\x5a\xe6\x95\xc3\x32\xad\xcd\x19\x2a\xb2\x33\xa5\x9a\x96\x82\xfa\x2a\x79\x46\xd2\x8e\xa2\xf8\x63\xf9\xff\x2b\xc7\x8f\xa5\x43\xbd\x09\xc8\x74\x25\xad\x4b\xde\xf1\xe7\xb4\x2a\x5f\xb7\xee\xf8\xba\x4c\xba\xac\x27\x4d\x2f\xad\xab\x07\xbf\x2a\x53\x00\xa4\x88\x9c\x43\xe5\x17\xb6\x6e\xe1\xbe\xed\x5d\x16\x91\x54\x2b\xb3\x54\x19\xa0\x96\x01\xeb\x70\xe5\xb8\x9f\x6a\xc5\x40\x43\x61\x9a\xe2\xd0\x44\xc2\xa8\x38\x75\x48\xf3\x8d\x22\x39\xbd\x7e\xf3\x57\x2b\x41\x93\x22\xab\xa4\xb3\x66\x1b\xf2\x9b\xb2\x6c\x55\xd4\x0e\xf9\x44\xca\x4f\x4d\xa2\x5f\xbf\xcc\x61\x4b\x6b\xea\xd0\x2d\xfb\x7a\x26\xd5\x92\x90\x6e\xa9\xd3\x7f\xb9\xec\xfe\x79\xb4\xa6\x11\xc6\xcf\xa5\x24\xd7\xd3\x2c\x5e\x5a\xf7\xd2\xca\xbd\x59\x92\x3e\x68\x69\x5e\x39\x49\x4f\x86\xa2\xb2\xa2\xf5\x0c\x68\x15\x65\x05\xea\x59\xac\xa9\x2e\x89\x2e\xc5\x95\x48\xab\x93\xde\xa9\x10\x9c\xb9\x2e\x65\x4d\xd9\x77\x43\x59\xa7\xd7\xe8\x8e\xf8\x14\xa2\x5b\x56\xc1\x32\x2c\x7a\xdc\x6a\xf5\xcf\x2a\x73\x31\x58\xbd\x28\x06\xbe\xcf\x48\xef\x25\x3e\x12\xfb\xc8\xdf\x4e\xb0\x64\xc9\x96\x66\x31\x6c\x66\xbc\x00\x57\xff\x52\xe4\x73\x5e\x00\xc0\xcd\x33\xef\x5e\x30\xaa\x90\x00\x94\x02\xa0\xaf\x52\x86\x1e\x58\x84\x1e\x9d\xd4\x4a\x25\xa7\xb6\xdc\x9c\x0e\xfa\x10\x71\xe6\x87\xad\xee\x60\x25\x71\x3e\x2f\xfb\xa6\xab\x13\x5f\x2b\xaf\x87\xc4\xd4\x57\xaa\x56\x85\xae\xd2\xf3\x6c\x49\x55\x16\x03\x64\x3a\x52\xd5\x1d\xc7\x56\xb2\x15\xcc\x4f\xac\x5d\x2f\xd3\x12\x9a\xfb\x41\x8c\xb3\x92\x7a\x42\x7a\x28\xfa\x41\xd2\x29\x34\x65\xc9\x17\xdf\x2d\x24\xc3\x58\x41\x7e\x1b\x0d\x70\xb7\xdb\x5e\x1d\x9c\x90\x26\x71\x49\x29\x11\x3a\x0a\x48\xa5\x52\xe4\x15\x2c\x88\xb4\x2e\xc3\xf5\xb2\xe8\x31\x3c\x16\x15\xb0\x65\x53\x5f\x17\xdd\x61\xa1\xb1\x9c\xa6\xd0\x19\xae\x5a\x78\xa9\x87\xe2\xb2\x0a\x2e\x29\x25\x16\x35\xef\xf4\xb2\x79\x45\xaf\xb9\xe2\xe9\x41\x0a\x15\xae\x16\x0c\xe7\x13\x02\x43\x9f\x89\x98\xf5\x59\xe3\x63\x90\xd4\x35\xc0\xaa\xd7\xa5\x0e\xb5\x2c\x94\x9a\x72\x1c\x0b\x4d\x72\x6b\x5c\x3e\x56\x63\x84\xe9\xd0\x93\x8c\x6a\xf6\xd1\x3c\xd5\xa4\x6e\xfc\xd2\x32\x01\x49\x2f\x89\x2f\x4b\xff\xb3\xb7\xcd\x40\x3f\x5c\xf9\xfb\x67\x31\xba\x61\xbb\x5d\x72\xc5\xec\xb0\xa8\xa2\x11\xa7\x69\x4a\xba\xb9\xcc\xc7\xb5\xba\x7c\xb4\x55\x98\x26\x24\xb2\x55\xcc\x13\x56\x53\x7c\x8f\x8d\xa1\xf8\x9f\x2e\x84\xc5\x23\xa8\xa9\x80\xba\xf0\xf9\xb2\x79\x95\x77\x6d\x35\xc6\xcc\x28\xcc\x74\x5f\x0a\x4a\x44\x15\x5a\x75\x98\x18\xe5\x19\x44\x76\x34\xb4\x68\x48\x67\x1b\xbd\xed\x03\xba\x1e\x12\x7c\xd3\x5a\x7e\x42\x7b\xa8\x94\x68\xd8\x54\xd4\x83\x32\x24\xeb\x06\x84\xb2\x79\x26\x75\x98\x33\xcb\x3e\x72\x2e\xaf\x86\x59\x51\xb2\x9e\x65\x9c\x63\x45\xe2\xec\xf3\xae\x7c\x12\x3a\x7b\xe4\xb2\x49\x4c\xbc\x4a\xc6\x0a\xb3\xe3\x2a\xf3\xc7\xcb\x36\x98\x1d\x56\xf2\x01\xd9\x83\x59\xb6\x0a\x52\x1a\x64\xdf\xa8\x14\x13\x2f\x2b\x67\xaf\xb1\x8a\x72\xe6\x4b\xb0\x1e\xf8\x13\x59\x0d\xf9\x13\xfe\x89\xc9\x6e\x3a\x24\x58\x79\xf6\x89\x4c\xfa\x6d\x4c\xd6\x2d\xfb\xfc\x65\x97\x7f\x07\x93\x73\x8b\x9e\x45\xdf\x65\x27\xa6\x70\x52\xe9\xc9\xf9\x5d\x76\xf2\x82\xe0\x96\xf8\xc6\x65\x8c\x56\x95\x4a\x96\x5f\xbe\x70\xe2\x1e\xe6\xbe\x62\x5d\x4c\x7c\x3e\xbc\xec\x82\x90\x05\x8b\x47\xe8\x5e\x50\x14\xa2\x49\x4f\xe3\xe5\x10\x74\xaf\xd1\x4a\x2f\x33\x52\xc9\xfb\x73\x78\x8d\xf0\x88\x7e\x62\xbc\xb6\xe7\xac\x71\xe4\x06\x51\x82\xf6\xa8\xb5\x0b\xfd\x20\xeb\xb0\xe7\x79\xc5\x6a\x62\xe0\x4a\x5a\x94\x3e\x3c\x27\xeb\x1e\xa2\x4f\x7b\xff\xdc\xfb\xe7\xde\x9e\x01\x7b\xd5\x2a\xf9\xfd\xd7\xbf\xc8\x6f\xad\x4e\x7e\x3f\x7f\x21\xbf\x97\x57\x7b\x5f\xa4\xd6\x67\xe8\x36\xf0\x43\xa9\x7d\xa1\x6e\xc6\xb8\x28\x1c\xaf\x43\x54\x8b\x0d\xb8\x49\xd9\x46\x26\xec\x12\xa2\x34\xec\x53\xd7\x17\xc4\x31\xf0\xf9\x01\x8e\x39\x4a\x24\x7b\xe2\xcf\x21\x66\xaf\x6a\x50\xb1\xa9\x15\x2f\xfd\x2b\x03\x6c\x4d\x56\x00\x5f\x36\xae\xe3\x53\x3f\x24\xfa\x7c\xd3\x38\x5a\xcf\x0f\xc9\x4d\xed\xa6\xd1\x5f\xc7\x49\x14\x37\xde\x4b\xc1\x35\xde\x13\xef\x84\xb7\x33\x20\xad\xfb\xf7\x7d\xb6\x2b\xfa\x30\x2c\xc8\xdf\xcd\xe1\x91\xe3\x7e\xa2\x47\xc6\xd4\xe8\x04\x5b\xf4\x09\x6e\x0e\x59\x2f\x63\xff\x7a\x81\xcb\x2a\x69\x8e\x7b\x93\x57\xd2\x9c\x80\x0c\x61\x7a\x54\x25\xfd\xec\xda\x30\x79\x17\xc5\xf4\x25\xcd\x5a\x39\x7d\x26\x9f\x20\x37\xd6\xd8\xcc\x01\x02\x61\xd7\x93\xea\x4a\x5e\x9b\xdf\x2e\x6c\xdd\x57\xe9\xbe\x52\xd8\x12\xaf\xba\xd2\xd8\xe7\x70\xea\xe2\xb3\x7c\x3b\xb1\x6f\xbf\x94\x78\xd3\xa4\xa7\xf0\x56\xcd\x2a\x2c\x50\x8c\xc0\xa7\x6f\x2f\x7b\x28\x46\x73\x14\xf2\x6f\xcf\xaf\x22\x7a\x10\x2f\x79\x90\x82\x3c\x8d\x5c\x7e\x98\xaf\x9f\xd0\xa1\xba\x74\xc4\x77\xb4\x96\x8e\x57\x74\xfe\x4c\x13\x6e\x17\x28\xe4\xdf\xf1\xc0\x7e\x78\x0d\xd7\xf4\x2d\x69\xfa\x01\x77\x1c\x41\xb0\x76\x74\x8d\x86\x98\x7e\xa8\x95\x56\x99\x21\x8e\x58\x4c\x50\xf3\x60\x86\x5c\x67\x9d\x30\x1c\x53\x33\xc0\x3e\x82\x91\x80\x03\x61\x14\xa6\xa8\xb3\x8e\x8a\xaa\x4d\x45\x31\x64\x81\x0f\x53\x26\xce\xd8\x38\x96\x76\xd5\xff\xfc\x75\x6a\x6c\x53\x74\x57\x31\x62\xdd\x73\x53\x57\x7b\x1c\xe3\xb5\xa3\xce\x29\x55\x89\xf9\x84\xee\x86\x21\x26\xd7\x0f\xd1\x1d\xde\xda\x60\xdf\x92\x9b\xdc\x12\x13\xfe\x1a\xe1\x53\xe4\x78\x7e\x78\xfd\x6e\xe1\x63\xc4\x0c\x8f\xd0\x69\xbd\xe1\x55\x26\x01\xd5\xf4\xa6\x58\x2b\x63\x52\x6e\x50\x3a\x2a\x09\x83\x53\x1a\x36\x37\x2f\xb7\x9d\xaa\xe8\x4a\xed\x27\xab\x36\x75\x66\xa5\x55\x36\xe8\xe1\xde\x3f\xc3\x3d\xe2\xb7\xdd\x6a\x72\x36\x0a\xe7\x78\x6c\x53\x3e\xd9\x1f\xa4\xeb\xcf\x82\x36\x66\xd3\xc1\x8f\x9c\x46\x1f\xa0\xaf\xf0\x18\x73\xa1\x38\x5a\xa5\x44\xd1\x1f\x6e\xe4\x6f\x0e\x8f\x51\x80\x70\x41\x09\xb6\x32\xff\xff\x05\x00\x00\xff\xff\x56\x47\xd4\x29\x4e\x88\x00\x00") +var _runtimePluginsAutocloseAutocloseLua = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x7b\x77\xda\x3a\xf6\xe8\xff\x7c\x8a\x7d\xd2\xe9\x02\x4e\x6c\x8a\x0d\xa7\x25\x39\xa5\x77\x11\x42\x5a\xd6\x4d\x43\x2e\x90\xd3\xe9\x64\x72\x3a\xc6\x16\xc1\xad\xb1\x19\x5b\xe4\x71\xbb\x3a\x9f\xfd\x2e\xbd\x6c\xc9\x96\x81\xb4\x69\x57\xef\xfc\x4e\xfe\x20\xb6\x2c\x6d\xed\x97\xb6\xb6\xb6\xb6\x65\xd3\x84\xbf\x0d\xbd\x43\x58\xe3\x79\xa7\x11\xac\x1d\xb0\x5e\x1c\x80\xdd\x6c\x1e\x98\xcd\xb6\xd9\x6c\x81\xd5\x39\xb4\x9a\x87\xcd\xd6\x3f\x60\xe5\x24\xd8\x81\xbf\x55\x4c\xb3\x62\x9a\x70\x1e\x47\x37\xbe\x87\x12\xb8\x98\x9e\x98\x1d\x70\x6e\x9d\x18\x41\x82\x63\x3f\xbc\x86\xf9\x3a\x74\xb1\x1f\x85\x09\xf8\xcb\x55\x80\x96\x28\xc4\xc8\x03\x3f\x84\xd5\x3a\x46\x10\xac\x9d\x43\x02\xe1\x57\xda\x67\x80\xc2\x5a\x52\xcf\xee\x93\xf5\xac\x96\x18\xe0\x1b\xf0\x51\x2a\x8d\xd1\x0d\x8a\x13\xa4\xd4\x74\x17\x4e\x5c\x5b\x87\xbe\x1b\x79\x48\x2a\xe6\x25\x1a\x20\xd7\x28\xe4\xd0\x93\xf5\xec\x43\x80\x42\xe9\xd9\xdc\x0f\xbd\x5a\x82\x63\x03\x62\x74\x8d\xee\x0c\xf0\x43\x1f\x1b\xb0\x0a\x1c\x5f\xae\xb6\x74\xb0\xbb\x28\xd4\x93\xfb\x28\xd6\x70\x82\x40\xae\x40\x51\x90\x1e\xc7\x68\x15\x18\x10\xf8\x4b\x06\x87\xd4\x1c\xce\x69\x55\xcf\xc1\x0e\x15\x49\xcd\x8d\x42\xec\xf8\x21\xe1\x2d\x5e\x20\x08\xa2\x5b\x14\xbf\x34\x5f\xad\x57\x2b\x14\x83\xeb\x24\x08\x96\xce\x6a\xe5\x87\xd7\x49\x1d\xfc\x04\x82\xc8\xf1\x90\x67\x90\xba\x09\x22\x00\x1d\xcf\xf3\x89\x40\x9c\x40\x92\x0d\x11\x98\x73\xe3\xf8\x81\x33\x0b\x90\x24\x11\x0a\x55\xe1\x34\xed\x8f\x95\x90\xc2\x5e\x20\x83\x99\xa1\x85\x73\x83\xc0\x49\x48\x77\x7e\x0c\x61\x14\x2a\x3a\xe1\x46\xeb\x10\xa3\x78\xe5\xc4\x38\x81\x5b\x1f\x2f\x28\x09\xe8\xce\x45\x2b\x02\x80\x00\xc4\x0b\x07\xf3\x36\x44\xa8\x8e\x8b\x51\xcc\xf0\x5b\x27\x54\x71\x12\x8c\x1c\x0f\xa2\x39\xcc\xee\x31\x4a\x60\x1e\xc5\x84\xab\xb0\x0e\x7d\x9c\x34\x2a\x15\xd3\xbc\xbc\xac\xf4\xa3\xd5\x7d\xec\x5f\x2f\x30\xd4\xdc\x3a\xd1\xe0\xe7\xa6\xdd\x6c\xbe\x30\xe0\x7f\xdf\x07\x08\x26\x4b\x1f\x2f\x2a\x04\x73\x5a\x27\x81\x18\x25\x28\xbe\x41\x5e\xa3\x52\xe9\x47\x21\x8e\xfd\xd9\x1a\x47\x71\x72\x58\x01\x00\xe8\x05\xfe\x32\xba\x81\x09\x46\x2b\x27\xac\x54\xc6\xc8\xf3\x13\x56\xc5\x8f\x42\x70\x42\x8f\x20\x46\x14\x3a\x89\xd6\xb1\x8b\x68\xc9\xcc\x0f\x9d\xf8\x9e\xe0\xb6\x4c\x0c\x46\x68\x14\xd3\xff\xd1\x1a\x57\x96\x91\xe7\xcf\x7d\xd7\x21\x00\x0c\x4a\xda\x0a\xc5\x4b\x1f\x93\x81\xb1\x62\x43\xc9\x63\x7c\x20\xdc\x99\x47\x41\x10\xdd\x12\x71\xbb\x51\xc8\x44\xc7\xf8\xb1\x44\xf8\xb0\x42\x51\xfc\x15\x54\xac\x12\xc2\x1e\x8e\x0e\xd1\x7f\x58\xae\x13\x0c\x31\x22\x7a\x43\x61\x3a\xb3\xe8\x86\x3c\x12\x5c\x0a\x23\xec\xbb\xc8\xa0\xc0\x00\xf0\x82\xe8\x8d\x9f\x60\x02\x46\xee\x34\xf4\x72\x18\x79\x7e\xe2\x06\x8e\xbf\x44\x71\xa3\x04\x11\x3f\x94\x99\x21\x10\x59\xc5\x91\xb7\x76\x91\x0e\x17\x8e\x03\xc7\xe8\xab\x70\x01\x46\x25\x87\xe4\x45\xee\x9a\x58\x1d\x47\xc8\xeb\x59\x14\x43\x84\x17\x28\x86\xa5\x83\x51\xec\x3b\x41\x92\xb1\x3d\x55\x4a\x99\x0c\x41\xdc\x19\xf2\x69\x3b\xf2\x3c\x74\x96\x88\xe0\x44\x49\x58\xe3\x45\x44\xb4\x3d\x7b\x44\x45\xe0\xe3\x84\xe0\x9c\x2a\x14\x2c\x9d\x7b\x98\x09\xc4\xa8\x3e\xe3\x08\x50\xe8\x45\x71\x82\x88\x86\xac\xe2\x68\x19\x61\x04\x8c\x3f\x38\x01\x0f\xc5\xfe\x0d\xf2\x60\x1e\x47\x4b\xc6\x8b\x24\x9a\x63\x3a\x96\x84\x36\x31\x60\xc9\x0a\xb9\x44\xa9\x60\x15\xfb\x44\xd5\x62\xa2\x4e\x21\x53\xac\x24\xa1\x34\x54\xa6\x6f\x86\x13\x98\x8c\x4e\xa6\xef\x7a\xe3\x01\x0c\x27\x70\x3e\x1e\xfd\x31\x3c\x1e\x1c\xc3\xd1\x7b\x98\xbe\x19\x40\x7f\x74\xfe\x7e\x3c\x7c\xfd\x66\x0a\x6f\x46\xa7\xc7\x83\xf1\x04\x7a\x67\xc7\xd0\x1f\x9d\x4d\xc7\xc3\xa3\x8b\xe9\x68\x3c\x81\xbd\xde\x04\x86\x93\xbd\x0a\x79\xd0\x3b\x7b\x0f\x83\xbf\x9f\x8f\x07\x93\x09\x8c\xc6\x30\x7c\x7b\x7e\x3a\x1c\x1c\xc3\xbb\xde\x78\xdc\x3b\x9b\x0e\x07\x13\x03\x86\x67\xfd\xd3\x8b\xe3\xe1\xd9\x6b\x03\x8e\x2e\xa6\x70\x36\x9a\xc2\xe9\xf0\xed\x70\x3a\x38\x86\xe9\xc8\x20\x9d\x56\x8a\xcd\x60\x74\x02\x6f\x07\xe3\xfe\x9b\xde\xd9\xb4\x77\x34\x3c\x1d\x4e\xdf\x53\x44\x4e\x86\xd3\x33\xd2\xd7\xc9\x68\x0c\x3d\x38\xef\x8d\xa7\xc3\xfe\xc5\x69\x6f\x0c\xe7\x17\xe3\xf3\xd1\x64\x00\xbd\xf1\xa0\x72\x3c\x9c\xf4\x4f\x7b\xc3\xb7\x83\xe3\x06\x0c\xcf\xe0\x6c\x04\x83\x3f\x06\x67\x53\x98\xbc\xe9\x9d\x9e\xe6\xa8\x1c\xbd\x3b\x1b\x8c\x09\xea\x0a\x89\x47\x03\x38\x1d\xf6\x8e\x4e\x07\x15\xda\xd1\xd9\x7b\x38\x1e\x8e\x07\xfd\x29\xa1\x26\xbb\xea\x0f\x8f\x07\x67\xd3\xde\xa9\x01\x93\xf3\x41\x7f\x48\x2e\x06\x7f\x1f\xbc\x3d\x3f\xed\x8d\xdf\x1b\x1c\xe6\x64\xf0\x7f\x2e\x06\x67\xd3\x61\xef\xb4\x72\xdc\x7b\xdb\x7b\x3d\x98\x40\x6d\x0b\x47\xce\xc7\xa3\xfe\xc5\x78\xf0\x96\xa0\x3c\x3a\x81\xc9\xc5\xd1\x64\x3a\x9c\x5e\x4c\x07\xf0\x7a\x34\x3a\x26\x7c\xae\x4c\x06\xe3\x3f\x86\xfd\xc1\xe4\x77\x38\x1d\x4d\x28\xb3\x2e\x26\x03\x03\x8e\x7b\xd3\x1e\xed\xf8\x7c\x3c\x3a\x19\x4e\x27\xbf\x93\xeb\xa3\x8b\xc9\x90\xf2\x6c\x78\x36\x1d\x8c\xc7\x17\xe7\xd3\xe1\xe8\xac\x0e\x6f\x46\xef\x06\x7f\x0c\xc6\x95\x7e\xef\x62\x32\x38\xa6\xcc\x1d\x9d\x51\x52\xa7\x6f\x06\xa3\xf1\x7b\x02\x94\xf0\x80\xf2\xde\x80\x77\x6f\x06\xd3\x37\x83\x31\xe1\x27\xe5\x54\x8f\xb0\x60\x32\x1d\x0f\xfb\x53\xa9\x5a\x65\x34\x86\xe9\x68\x3c\x95\x68\x84\xb3\xc1\xeb\xd3\xe1\xeb\xc1\x59\x7f\x40\xb0\x19\x11\x28\xef\x86\x93\x41\x1d\x7a\xe3\xe1\x84\x54\x18\xb2\x6e\xdf\xf5\xde\xc3\xe8\x82\x92\x4c\x44\x74\x31\x19\x54\xe8\xa5\xa4\xb0\x06\x15\x24\x0c\x4f\xa0\x77\xfc\xc7\x90\xa0\xcd\x2b\x9f\x8f\x26\x93\x21\x57\x13\xca\xb2\xfe\x1b\x60\xec\x6e\x54\x4c\xf3\xea\xaa\x42\xe7\xa9\xa3\xb3\x13\x36\x8a\xc6\x27\x7d\x68\x3d\xb7\x0f\xf8\x04\x76\x31\x3d\xe9\x98\x91\x8b\x11\x4e\xa0\x0b\xbf\xd6\x58\x01\x99\x7a\xa0\x9e\x3e\xa7\xb7\x00\x5d\x76\x67\xc1\x33\x76\x61\x8b\x8b\x96\xb8\x68\xa7\x4d\x2c\x36\x2e\xbb\xf0\xf4\xae\xd9\x34\x5f\x9c\xa4\x0f\xec\xec\x41\xdf\x36\x8f\x4f\x58\x29\x76\xfc\x20\xad\xd2\xca\xaa\x0c\x9a\xf0\xf4\xae\xd7\x34\x8f\xa4\x7a\xf0\x8c\x3c\xb0\xcc\x41\x1f\xec\x9a\x54\x5c\x87\x67\x04\x84\xfa\xf7\xf4\x6e\x70\x0c\x4f\xef\x3a\x4d\xf3\xa0\x00\x62\x60\x0e\x4e\x72\x20\x52\x1c\xda\x19\x0e\x27\x04\x87\x03\x8a\x43\xbe\x3f\xf2\xd4\x32\x4f\x5a\xd0\xda\x01\x91\x93\x36\x43\xa4\x53\xda\x29\xbd\x65\x9d\x76\x48\x7f\x44\x46\x95\x20\x72\x9d\x80\xce\xf6\x0c\x21\xe6\x58\x36\x48\x01\x7f\xc6\xc5\x93\x3d\x23\x05\xfc\x99\xb7\x5e\xae\x94\x67\xa4\x80\x3f\x23\x8e\x9e\xf2\x8c\x14\x88\x67\x51\xbc\x74\xb0\xfc\x8c\x16\xf0\xa7\x01\x0a\x41\x69\x19\xa0\x50\x3c\x22\x0e\x92\xf2\x88\x14\xf0\x87\x31\x5a\xa9\xed\x62\x24\x90\x49\xd6\x33\xf5\x51\xb2\x9e\xf1\x47\xcc\xb7\x93\x1e\xd1\x02\xaa\xd7\x31\xc2\xeb\x38\x4c\xd8\xbc\xb3\x5e\xce\x50\x9c\xb9\x46\x74\x82\x99\xdd\xd3\x67\x39\x8f\x0a\x1c\xcc\x38\xea\x53\xcf\x85\xfa\x85\x41\x12\x81\x17\xad\x67\x01\x4a\x88\x07\xe7\x14\xda\xdc\x38\x81\xef\x39\x38\x12\xc4\x08\xbf\x2f\xf5\xc0\x59\xb7\xd4\xdb\xae\xd3\x79\x89\x80\x8d\xaf\xe9\xf4\x0b\x1e\x9a\x3b\xeb\x00\x27\xf4\x81\x0f\x5d\xf0\xc9\x8c\x67\x55\x0a\x15\xdd\x05\x72\x3f\xf9\xe1\x35\xab\x38\x07\x7c\xbf\x22\xce\x3e\xfc\xa7\x0b\x7b\x8c\xfe\x3d\x42\x52\x58\x11\x9a\x85\xe2\x38\x8a\x6b\x7b\x33\xc7\xcb\x80\x3c\xb1\xc8\xd4\x5a\x55\x30\xab\x42\x8d\x2f\x4a\xd0\xdd\x0a\xb9\x98\xb8\xc5\xd7\x11\x86\xbd\x46\x43\x74\xd2\x68\xc0\x5e\x7d\x8f\x21\x8f\x42\x4f\x41\xc1\x67\x28\x30\x2e\xef\x82\x82\xad\x45\x81\x4b\xa9\x04\x05\xbf\x80\x02\xbd\xe0\x7a\x0e\x5d\x2a\x35\xce\x61\xc1\x39\x0f\x61\x32\xcd\x87\x88\xcb\x3d\x44\x88\xb8\x32\xc4\x33\x4e\x85\x67\xc0\xcc\x21\xea\x10\x85\x99\x01\xe4\xcd\xb9\x58\x59\x6b\xb0\x04\xcd\x2e\xbc\x82\x26\xf5\xb3\x5c\x78\xd9\x05\xcb\x7e\xa1\x92\x9c\x1a\xba\xb4\x84\xe9\xa2\x10\x29\x0a\x12\xc4\xc0\x74\xc1\x3a\x68\x67\x90\x6c\xbb\xa5\x87\x64\xa7\x25\x9c\x5c\x5b\xa6\x17\xf6\xc1\xe2\x34\x73\x0c\xc3\x08\x93\x3a\x0a\x2c\x49\x18\x4c\x7d\xb9\xc4\x19\x87\x1c\xe2\x62\x23\x27\x0e\xee\x39\x83\x15\x26\x6b\xf9\x61\xcb\x3d\xba\x36\xbc\x04\xcb\xee\x10\xcd\x75\x6d\x78\x05\xd6\x81\x55\xda\xff\x30\xa4\x90\xf2\xc3\xa8\xac\x67\xce\x3d\xbb\xc8\x3d\xdb\x96\xb9\xd7\x3a\xd0\x73\xaf\xb5\x03\xf7\x72\x35\x5a\xb9\x1a\xb6\x96\xbf\xd4\xb3\xc5\xa4\xf6\x8f\xe4\x34\x74\x33\xc2\x6b\x8c\xef\xcf\x9b\x32\xdf\xeb\xdf\xc2\x78\xc1\x5d\xd2\x49\xeb\x85\xdc\x89\x2c\xdc\xdf\x0e\x1e\xa3\x93\xef\xa8\x33\x05\x1e\xb6\x14\x1e\xb6\xa4\x9e\x5b\xdf\x45\x5b\x5b\x1a\x6d\x6d\x4b\x56\xc3\x6e\xb7\xf5\xda\xda\x7e\x14\x6d\xcd\xd5\x68\xe7\x6a\xb4\xb6\xe8\xb3\xb8\x6a\xff\x78\xcd\xe6\x4c\xe2\x4a\xd7\x6e\x7f\x17\xcd\x6e\xb7\xcb\x34\xbb\xdd\xfa\x4b\xb3\x77\xed\xb9\xad\xf4\xdc\x96\x7a\x6e\x7f\x97\x31\xd5\xce\xc6\x54\xde\xbf\xd8\x0c\x90\x00\xa3\x00\x4b\xfd\x42\x29\xa2\xe6\x87\xa9\x87\xc7\xd4\x5b\xe7\xd4\x11\x37\xb7\x96\x14\x7d\xb9\x07\xbb\x68\xc4\x17\xf9\x64\xdc\xd0\xb8\xaf\xe3\xc7\x09\xa9\xec\x45\xb0\x8a\xfd\x10\xd7\xaa\x7b\x55\x03\x47\xac\x5d\xed\x53\xdd\x50\xee\x6f\xe8\x7d\x3d\xf5\xc6\x60\xbb\xc3\x17\xa0\xf0\x2b\x5c\x3d\xc9\xcf\x5a\x45\x64\x2d\x68\x49\x25\xcc\xb1\xea\x02\x8f\x50\x67\x0f\x02\x14\x5e\xe3\x05\x74\xa1\xc9\x00\xdc\x2e\xfc\x00\x51\x00\x2f\xbb\xbc\x95\x17\x65\x76\x4a\xd4\xe6\x17\xfb\x90\x79\x4f\xac\x53\xf2\xbb\xaf\x3a\xd4\xc4\x9a\xad\xa2\x24\x87\x29\x57\x16\x06\x28\x15\xbb\x14\x6d\xf7\x50\x88\x7d\xd7\x09\x82\x7b\xc2\x98\x6c\x4d\xc1\xc3\xad\x2c\xc0\xe8\x53\x03\xf1\x91\xc6\x13\xf3\x41\x57\x02\x2f\x1f\x6e\xd5\x29\x09\x81\x99\x45\xd8\xf3\xaa\xa2\xb8\xfd\x1f\xa1\x0b\x1f\xc9\xd0\x31\xad\x47\xe2\xb7\x69\x42\x14\x06\xf7\x90\x20\x0c\x01\x51\x45\xba\xaa\xf8\x08\x3e\x71\x83\xaf\x1d\xec\xdf\x20\xb9\x35\x74\xa1\xe6\x93\x59\xaa\xc9\x09\x27\x97\x75\xd2\x44\xda\x7f\xc8\xea\x27\xd8\x89\x71\x9f\xac\x2e\xd3\x76\x75\xda\x90\xf6\x12\xc0\x3e\x9b\xaa\xa4\x16\x28\xf4\xfa\x22\x58\x50\xfb\x28\xb5\xf8\x28\x5a\x7c\xa4\x2d\x04\xf2\xae\x13\x56\x31\xd0\xa8\x39\xed\x0c\x66\x68\x1e\xc5\x88\xc0\xf9\x45\x8c\xae\x0c\x8b\x57\x29\x7c\x65\x74\x71\x5d\xd8\xdb\x53\x55\xc4\x34\x99\x01\x8b\xe6\xf3\x04\xe1\x84\xa8\xc1\xca\x49\x12\x55\x1d\xf2\xd4\x1e\xdd\x63\x64\xa0\xd0\x23\xff\x89\x50\x0c\x26\xf7\xaf\x54\x6e\xd9\x74\x8a\xe7\x5d\x89\xa0\x82\xe5\x4c\x71\x60\x63\x41\x6f\x28\xb7\x0f\x15\x7d\xbf\x5a\xe6\x71\xe8\x59\x9f\x60\x4a\xa3\x92\xfc\xcd\x62\xe4\x7c\x52\x30\x51\x30\xca\x49\x88\x77\x47\xfa\x50\xa8\xa1\x08\xee\x5b\xea\xc2\x32\x53\x97\x97\xc0\x23\x46\xb4\xa1\x40\x88\xa8\x51\x13\x0a\x4c\xe0\x02\x17\x3b\x58\xa9\xdc\x44\xbb\xba\x30\x08\x97\x97\x6c\x32\x58\x05\x8e\x5b\x1c\xe1\xd9\x9a\xd0\x11\x9b\x46\x80\x9d\x59\x80\x74\xc3\x5c\x00\x21\x3d\xf2\xca\x8f\x30\x31\x6c\x31\xe5\xbc\xd3\x6f\x5c\xb9\x0b\x74\x29\x1a\x94\xc0\x87\x2d\xdf\x33\x2c\x68\xe3\x32\x24\x44\x37\x8f\x33\xb3\xa4\x4a\x2d\x95\x85\xe8\x36\xc1\xc4\x18\xed\xed\xed\x32\x22\xb3\x98\x4c\x77\xc3\x94\x02\x4a\x7c\x81\xeb\xd4\x2a\x62\x3f\xb0\x2f\x41\x31\x95\x15\x78\x8a\x0c\xbf\x68\x34\x40\xb0\xe0\xd2\xbd\xa2\x0e\x52\x5d\x3f\x66\x55\xd2\xf2\x5a\xcd\xc0\x31\x0d\xa6\x73\x90\x98\xc9\x24\xc3\xc5\x22\x62\x7c\x26\xf3\x31\x7c\x0a\xa3\xdb\x04\x9c\x59\xb4\xc6\xc0\x37\x7d\x21\xa1\x1b\xce\x6c\x4b\xd4\x8d\xc2\x1b\x14\x27\x64\x66\xd4\xe9\x36\x03\x27\xf8\xcf\xf1\x90\x24\x4f\x38\x42\x6e\x3f\x04\xee\x87\xb5\x9b\x8e\x2e\x2d\x6a\x2c\xfe\xf7\x68\xa8\x31\x70\x3b\xa0\xb6\x76\x3f\x04\x1c\x35\x1e\xf3\xd6\x61\xc7\x37\xcf\x55\x27\x00\x43\xb2\x5e\xad\xa2\x18\xf3\x1d\x7c\xfd\xf0\x67\x0d\x1f\xc5\x1d\xdc\x3a\xea\x69\x5f\xdf\xe6\xc4\x95\x0e\x2c\xa6\x89\xf9\xa1\xf5\xc0\xe1\xf6\x0a\x9a\xca\xdc\x57\x88\xcf\x29\xc3\x8b\xb5\x63\xa1\x30\xbb\x23\x05\xd5\x0e\x2c\x19\x8a\x3a\x4e\xf2\xd3\x50\x29\x74\x65\x6e\xdc\x3e\xe6\x37\x0d\xe0\xdd\x47\x7f\x11\xcf\x4d\xe3\xd8\x34\x61\x81\xf1\xea\xf0\xd9\x33\x14\x36\x6e\xfd\x4f\xfe\x0a\x79\xbe\xd3\x88\xe2\xeb\x67\xe4\xee\xd9\x05\x9e\x77\xa4\x4a\x1e\xba\x41\x41\xb4\x42\x71\xc3\x8d\xe2\x28\x74\x02\x67\x96\x34\xdc\x68\xf9\x8c\x8c\x9e\x67\x6b\x3c\x37\x3b\x66\x36\x6e\xcc\x35\xf6\x03\x1f\xdf\x97\x85\xa5\xb3\xc4\x10\xae\x9f\x62\x18\xbe\xec\x42\xf3\xee\xc5\x09\x9b\x72\x39\xd6\x4a\x03\x65\x92\xaf\xe5\x9a\x9d\xe4\x96\xd0\xac\x77\x32\xfd\x36\xc9\xac\x7d\xd7\x6f\xc2\x3e\x2c\x1d\xbc\x68\xcc\x83\x28\x4a\x81\xc2\x33\x68\xde\xb5\x9b\xf5\xdf\x35\x0d\x2d\xda\xb0\x43\x1a\xa6\xd5\x9f\xe6\xab\xcb\x88\xd2\xde\x0c\xd6\x96\x57\x41\xa1\xf7\x7b\x09\xce\x27\x27\x5b\x91\x1e\x90\xbe\xcb\xb0\xb6\x9a\xcd\xed\x78\x97\x53\x5c\x24\x25\x83\x60\x7f\x0b\xe5\xec\x9f\xbd\x9d\x01\x56\xb3\x94\x05\xb4\x52\x57\xa8\x86\x06\xc3\x56\x86\xa0\x1e\x3b\x5a\xca\xfe\xba\x32\x07\x65\x16\xe8\x28\xff\x4e\x70\xad\xef\x04\xb7\x49\x35\x89\xc0\x25\x15\x7f\x2f\x84\x2f\xca\xa4\xc3\xfe\xb5\x0a\x42\xa2\x73\x01\x54\x2f\xb8\x9c\x5c\x27\x0c\x23\xb2\x0c\x82\xeb\x18\x39\x98\x66\x5b\x38\x21\x5c\xec\x33\xd9\xfd\x52\x65\x06\x85\xaf\x58\x16\xfe\x1c\x7f\x78\x4e\x08\xb0\xff\x7c\xae\x14\x5a\x36\x2d\xb4\x6c\xb5\xb4\xc3\x4a\x3b\x02\x82\x94\x25\x56\x91\xae\xa1\x9b\x9a\x11\x96\xa0\x45\x16\xb7\x06\x35\xbf\x1f\x52\xdb\x2b\x6d\x62\x81\xbc\xb8\xf5\x53\xed\xf3\xe1\x15\x7c\x54\xcc\x4b\x7e\x47\x67\x21\xaf\xaf\xfc\x79\xda\x83\xaa\xa2\x25\x06\x1d\xc7\x86\x8a\x11\x9b\x00\x40\xb8\x71\xd2\xf3\xf4\xc2\xb4\xf6\x69\xeb\x7a\x31\xc8\xc4\x91\xf9\xc0\x4c\x7b\x9a\x80\x87\x63\xc3\x37\xfc\xba\x01\xcd\x1c\x3e\x42\x77\x9e\xb8\x0b\xdd\x04\x2c\xd8\x2a\x93\x96\x90\x65\x18\x0b\x98\x41\xc6\x6a\x3a\xab\xb9\x8b\xba\xec\xb8\xa7\xb5\x6d\xdd\x68\x9d\x51\xfd\x9a\x71\xd3\xc3\xdb\x1b\x96\x51\x8c\x09\x47\x1e\x6a\x1a\xe4\x57\x54\x6c\x9a\xc4\x34\xb3\xb6\x26\x19\x21\x69\x8b\x0c\x21\xda\xea\x57\xa1\x5d\x4c\xd3\xad\xfc\xd2\x22\xc5\xb0\xb5\x05\x43\xfa\x6b\x2b\x78\xb6\x36\xe0\x49\x7f\x6d\x09\xdb\x81\x8c\x2d\x03\xb6\x0b\xe2\x96\x2d\x30\xcf\x51\x62\x97\x52\xd2\xde\x89\x12\xfa\xdb\x52\xe8\x69\x6f\xa5\x87\xfe\xb6\x24\xaa\x4e\x4a\xa8\x62\xd0\x77\x22\xb0\x93\x23\x30\xa5\xd8\xce\x51\xdc\xd2\x3a\x28\x1c\xaa\xa1\x64\x8a\xd2\xc1\xbe\x6f\x29\xc3\x5d\x8c\x18\xe1\xca\x8c\x79\x70\xd5\x09\xc1\xc7\x28\x76\x70\x14\x13\x17\xcf\x5d\xa8\x61\x57\x74\x47\x1c\xeb\x19\xf7\x61\x69\xd8\x08\x27\x7c\xdb\x3d\xc4\x28\xbe\x71\x02\x9d\xcb\x22\x52\x53\x09\x26\x69\x72\x2a\x41\x9b\xdf\x40\x3a\xf0\x44\x41\x6a\x82\x32\x81\x7d\x28\xae\x34\x79\x60\x82\x8e\x58\xe2\x98\x49\x9c\xc8\x6c\xdd\x27\x7f\x55\x97\x83\x27\xa4\x80\x0d\x57\x09\x6a\x7a\xb9\xcf\x9e\xcb\xb1\xd9\xcc\x9b\xfe\x40\xb3\x3d\x69\xa8\x4e\x7d\xc8\x02\x5d\x9c\x06\x01\x4b\x9a\x46\x56\xc8\xc1\x8a\xe7\x2b\xdb\x45\x35\xc0\x22\x59\x55\xb9\x81\xd4\x3d\xd1\x99\xec\x6e\x3f\xe7\x53\xab\x4b\x85\x5d\xcc\xab\x30\x7f\x14\x19\x85\x82\x7d\xc9\x92\x33\xa5\xc5\xbe\xca\x89\x54\x62\x95\x1c\x47\x02\x27\xc1\x32\x28\x69\x53\x9d\xb3\x2c\xf0\x5d\x24\x99\x75\xca\x42\x83\x34\xab\xe7\xe7\x5f\x5a\x95\x07\x85\x0c\x0a\x39\x55\x7e\x69\xe6\x4c\x35\x6e\xe6\x87\x09\x72\x62\x77\x51\x4b\xa2\x18\x23\x6f\xea\xcc\x02\x64\x10\xbd\x5e\x1a\xe0\x46\xcb\x95\xbc\x74\x5a\x20\xc7\x33\x80\x66\xe9\x74\xc1\x32\xe0\x89\xd4\x46\xaa\xb6\xf4\x3d\xd5\xa5\xa8\x91\x86\xb0\x4f\x5b\xd6\x9f\xd9\xa9\x23\x4e\x77\xdf\xa2\xe5\x4a\x35\x3b\x6c\xb5\x54\xa3\xdd\x98\xb4\xcf\x3a\xbc\x82\xc2\x4a\x89\x68\x67\xd6\xfd\x25\x8e\xd8\x3e\x47\x6d\xe9\x7b\xf5\x2b\x78\x45\x49\x28\x86\xfa\xc8\x1f\x27\x60\xe9\xab\x5a\xa3\x4c\x86\xe2\x8f\x62\xae\xa9\x9b\xd3\xb8\xdd\x48\x86\x5c\xfc\x70\x13\x19\x94\xee\x2b\xa2\x34\x45\x42\xb8\xa8\x71\xbc\x46\x06\xa8\x2d\xd2\x69\xbd\x0c\x2e\x45\xe8\x41\x70\x69\x8b\xa2\xbb\x20\x6c\x87\x23\x0a\x85\x8a\xe5\x34\xcc\x0d\x9c\x24\x79\xeb\x60\x77\xf1\x1a\x85\xcc\x5a\xd6\x68\x59\x9a\x52\x0f\xca\xb4\x41\x46\xe2\xe7\x2f\x52\x61\xec\x84\xd7\xc5\x52\xff\x3a\x8c\x62\xea\xa8\xa5\x08\x48\xd5\x35\xe5\x73\x3f\x4e\x70\x80\x30\xf1\x29\xbb\x94\x46\xc5\x59\xa1\xc9\xfa\x69\x33\xb9\x23\xcc\x4d\x03\x37\xcc\x14\xf7\xba\x5c\x83\x18\x41\x7a\x4b\x53\x6e\x0c\xf8\x60\x10\xff\xd5\x27\xb3\x83\xac\xb4\xd4\x56\x76\xb3\x04\xe0\x74\x08\x70\x52\xc8\x0c\x41\x6e\x29\x57\x8a\x9a\x2b\xb6\x75\xf7\x9e\xee\xe9\xd5\x3a\xe5\x48\x4a\x9b\xac\xd9\x69\x73\xb3\xa4\x39\x8d\x6d\x36\x88\x39\x88\x31\x5d\x04\xf0\xc8\x92\x98\x1a\xdd\x7a\xbd\xd0\x46\xf0\x7a\x73\x8f\x7f\x96\x21\xcc\xc8\x97\x05\xa3\xad\x07\x69\xc8\xa8\xfa\xcb\x2f\xbf\x54\x8b\x68\x68\x47\x2e\x50\x1b\x2c\xc4\x5a\xc0\x10\x34\xa3\x58\xc6\xba\x7a\x55\xd5\x63\xa3\x6e\x07\x94\x76\xcf\x89\x63\x1c\x2a\x25\xeb\x6b\x98\x5e\x4a\x2d\x03\x16\xa3\x65\x74\x83\x18\xb0\x3a\xd0\xf0\xff\x32\xba\x21\x2e\x48\xd5\xac\x6e\x47\x82\x8d\x36\x03\x3e\x6b\xa0\xe5\x71\xfb\x52\x44\x0e\x24\xad\xc8\x46\xa0\x82\x7e\x9e\xe9\xf2\xce\x2e\x13\xc0\xc3\x06\x44\xd5\x61\x92\x22\xb4\x3e\x75\x0e\xe9\xfb\x05\x28\x41\x21\x4e\xe8\x9b\x21\x4c\xb3\x92\x06\xd4\x46\x67\xa7\xef\xa1\x37\xe9\x0f\x87\x45\xbc\xf5\x3c\x78\xfe\x9b\x01\x07\xcd\x2f\x94\x8d\x3d\x30\xe1\x1f\x3b\xb6\x3b\x78\x61\x80\x65\xdb\xac\xa1\x03\x26\xfc\xdf\x72\x3d\x73\x25\xec\xdd\x02\xf6\xf4\xfd\x81\x28\x90\x76\x6d\x1a\x3b\xe2\xd0\x34\xa0\x65\x69\x24\xa4\x53\x39\xcb\x7e\x51\x2f\xc7\xd0\x93\x30\xf4\x0a\x18\x7a\xfe\x35\x7d\xf5\x66\x37\xac\xda\x1d\x03\x7e\x7b\xc1\x18\xd3\x04\x13\x0e\xca\xbb\xbd\x96\xba\xbd\x2e\x74\x4b\x73\x07\xe8\x76\x8c\xb4\xa1\xc5\xc3\xda\xc9\xca\x71\xd1\xae\x18\x59\x06\x74\xb6\xb1\x29\xab\xdc\xde\x85\xab\x69\xf5\x56\xcb\x00\xab\x65\xef\x0e\xbe\xd5\x36\xc0\xfa\xed\x60\xf7\x06\xcf\x2d\xc2\xcf\x07\xb4\xf8\xed\x05\x69\xd2\xb1\x0e\x76\xa7\xa2\x63\x37\x5b\x06\x74\xec\x07\x10\xde\xb1\x09\x25\x1d\xbb\xb5\x3b\x6b\x3b\x76\xbb\x49\x9a\x74\x9e\x3f\xa0\x49\xa7\x43\x07\x5a\xe7\xc5\x97\x0d\xfa\x1b\x48\x8a\x14\x14\xed\x43\x74\x8b\x62\xba\x15\xf3\x2d\x96\xe2\x21\x23\x7e\x25\xe1\xb3\x2a\x2a\x36\x71\x9c\xd6\xec\x75\x25\x69\xd4\x7f\x0d\x52\x44\xfd\xda\x79\xd6\x6c\x50\x8d\x8e\x01\xcf\xdb\x3b\x57\x3f\xb0\x0c\x38\xd8\x5d\x58\x96\x4d\x06\x83\x9d\x6f\xa0\x70\x26\x91\x38\x93\x14\x38\x43\x87\xf5\x57\x58\xc2\x03\x32\x08\x77\xb4\x84\x2d\x7b\x47\x8b\xd9\x6a\xed\x58\xf1\x79\x73\xb7\x8a\xbf\xbd\xd8\x5a\x33\x53\x7c\xeb\xc0\x26\x63\xa5\xb9\xd5\xb4\x70\xe0\x1d\x7b\x57\xc2\x3a\xf6\xae\x94\x75\xec\xd6\xc1\xae\x35\x3b\x2f\x76\x9d\x88\xec\x4e\x67\x83\x82\xac\x25\x05\x59\x17\x14\x84\xee\xe3\x7e\xf3\x50\xde\x3c\xe9\x2b\xe8\xdc\x4a\xe8\xdc\x16\xd0\x71\x82\xd5\xc2\x09\xd7\x4b\x14\xfb\xee\xb7\x0e\xe5\xcd\xf3\xe6\xd7\x12\x53\xde\xee\x21\xf6\xec\x4e\xe2\xc2\x5d\x81\x0b\x0b\x74\xe7\x78\xc8\xf5\x97\xce\xe3\xfa\x0a\x9b\x69\x7e\x21\xd1\x7c\xf2\x10\x9a\x9b\x12\xcd\xf3\xbf\xdc\xfc\xef\xe2\xe6\x83\xbc\x5a\x55\x9b\x17\xa8\xde\xce\xe0\x87\x32\x57\xcb\xd8\xaf\x61\xea\x63\x32\xb4\x9c\x99\xbb\x32\x4e\xce\x02\x50\x63\x1d\x6a\x88\xa6\x92\xa1\x9e\x44\x82\x63\x4a\x3c\x23\x0d\xdd\xf8\xe1\x98\x52\x55\x23\xc6\xab\x9f\x6e\xa1\x03\x0f\x75\x7c\x30\xe8\xbb\xd6\x3e\x4b\xe9\x65\x0c\xa8\x6b\xc2\x74\xf1\xa5\x75\x05\x2f\x59\x20\x96\x40\x61\x09\x10\xe2\xe6\x65\x17\xe2\x4b\xfb\x4a\x2f\x5b\x29\x22\x55\xbe\x68\x94\xae\xb5\x41\x29\xc8\xd4\x48\x04\x04\x74\x61\xaf\x34\x0a\x5e\xa4\x56\xaa\x95\x05\x4c\xb9\xaa\xa5\xb5\xe9\xde\x5f\x39\xc7\x50\xe8\x19\x59\xa8\x48\x1b\x4a\xdb\x09\x81\x94\x71\xff\xe9\x82\x69\xa5\x8b\xe4\xda\x43\x11\x2b\xc5\x2c\x4b\x23\x67\xe9\x83\x22\xc9\x97\xbe\x1b\x8f\xee\x70\xec\xa4\x59\x3b\x06\xed\x9e\x95\xc5\x28\x59\x07\x18\x6e\x9c\x60\xad\x4d\x20\x4c\xd6\xb3\x77\x3e\x5e\x1c\x65\x2f\x09\xd2\x4d\x96\x64\xf6\x2d\x49\xc3\xc9\x4c\xb7\xfb\xf1\x57\xea\x30\xfc\x95\x3a\x2c\x9b\x87\xf4\xe6\xaf\xd4\xe1\x6d\xa9\xc3\xe9\x15\x95\x82\x48\x27\xe4\xe1\x79\xc7\x5d\xd0\x6d\x28\x84\x97\x08\x3b\x74\x12\xa9\x7d\xfe\x62\x7c\xa6\xa0\x3f\x7c\x58\xb2\x4d\xda\xea\xa7\x9b\x6a\xe5\x4b\x5d\x6e\x74\x4e\x43\x78\x0f\x6c\x99\x9a\x0f\x6a\xb3\x51\x9c\xed\x1f\xf0\xf3\x72\x0a\xfb\x07\xbc\x22\x74\xe1\x73\x36\x53\xa5\xef\x44\x74\xe1\xf3\x17\x23\x2d\x77\x9d\x15\x5e\xc7\xf2\xc6\xc2\x17\x79\xa6\xd0\x04\x1d\x29\x25\x97\xb4\xef\x2b\xe8\x82\xe8\xad\x68\xcf\x33\x92\xb3\xda\x4a\x65\x2e\xc6\x1c\x99\x2c\x2d\xb4\x46\xee\x0b\xdb\x7a\xd9\xdc\xd0\xaf\xe7\xe7\x57\xf2\x8c\x94\xeb\xa7\x50\xde\xf1\x61\x88\xee\xf0\x09\xa9\x59\x74\x3e\xe4\x2a\x13\x1c\xd7\x76\xf0\x97\x44\x13\xe2\xe9\xe3\x7c\x03\xcd\xe4\x5c\x46\x32\x76\xe2\xef\x45\xf0\x7c\x1d\x04\x63\x82\xde\x28\x3c\xfb\x2e\xb4\x97\x70\xf4\x01\xe4\x2f\xfd\x70\x9d\xfc\x20\xfa\x35\xc4\xe5\x37\x31\xcb\xe9\xda\x42\xc7\xbf\xd7\x28\xa1\xc8\xfe\xcc\xa2\xfc\x3a\x6a\x75\xe4\x72\xd3\x51\xf3\xbd\x72\x5a\x3f\xa8\xbd\x67\x5e\x04\xef\xb7\x21\xec\xcf\xa5\xef\x5d\x11\xff\xd7\xd4\x3f\xb1\xae\x34\x70\x78\x0d\x4f\xca\xd3\x12\x8d\xd9\xfc\x6c\x94\x01\x2b\x79\x60\x5f\xe9\xd0\xa5\x89\xdd\x3b\xf4\x41\x73\x55\xa4\x1b\xd8\x87\xa0\x20\xe9\x0c\xe7\x2e\x07\xac\x15\x39\x5d\x58\x90\xb9\xcb\x80\x20\xbf\x96\xd8\x4d\xd0\x3a\x61\x6f\x11\x38\x7c\x67\x33\xc7\x69\x9f\x90\xe9\xf6\x21\x5a\x53\x22\x44\x49\x8b\x44\x26\xcf\x0e\x44\xee\x8a\x63\xb4\xfa\x66\x14\xed\x1c\x8a\x05\xc7\xe8\x1b\x06\xdf\xcc\x09\x9c\xd0\x45\x71\x2d\xc1\x71\x3e\xed\x2c\x59\x2f\x35\x09\x47\x33\xd7\x00\xe4\xe6\x72\x1a\xc1\x32\xc0\xe2\x2b\xf3\xb4\xcc\x36\x8a\xaf\x95\xf3\x6d\x7b\xe2\xe1\xcf\xdc\x3a\x51\x6d\x14\xd6\x90\x64\xe5\x14\xf0\x62\x91\x3f\x73\x73\xab\x7e\xf4\x30\xbb\xe8\xf6\xa9\xdb\xe9\xd2\x15\x00\x21\xeb\x15\x34\xf5\x03\x86\xd1\x4c\x7e\xf3\x4c\xe6\xa0\x68\x85\x6e\x59\xf3\x2d\xd2\xc8\x4b\xa5\xac\x99\x7e\xea\x4c\x09\x99\xb9\xdb\x90\xcf\xa7\x66\xed\xd6\xc1\x46\x7a\xa3\x98\xf7\x6e\x6a\xde\xd1\x56\x31\x68\x6e\xe4\x8b\x6e\xf4\x97\x62\xb0\x1d\x71\xd8\xb6\x0b\x5e\x58\x8f\x57\x24\xa0\x8d\xd4\xa1\x65\x96\x40\x37\x30\x77\x72\x01\xd2\xf1\x89\xfe\x4d\x0d\x53\x89\x55\xd9\xa0\x1c\xfe\x1c\xe4\x39\x01\x5e\x49\x00\x9c\x98\x74\x47\xd5\x37\x45\x3c\x8e\x96\xb4\x27\xba\x6c\x56\x1a\x2a\x5d\xfb\xe1\xf5\x29\xd2\x6c\xf8\x67\x55\xa2\x95\x2e\xa5\x43\x43\x50\xe8\x07\xdb\x0c\x4b\xe0\x24\x94\x2e\xa9\xa8\x34\xb7\x88\xdb\x02\x01\x55\x4a\x10\xaa\xa5\x62\xc8\xdb\x8f\x6b\x14\xaa\x09\x44\x74\x49\x50\x6e\x0c\xb4\x41\x9f\x6b\x94\x4f\xce\x94\xa8\xa9\xd7\x94\x1c\x2a\x69\x45\xc3\x13\x92\x66\xc9\xc6\x8c\x24\x99\x49\xfe\xbc\x2c\xdd\x42\x89\x76\x16\x74\xd1\x10\xab\x17\x6d\xba\x97\x58\xaa\xc9\x41\x27\x4d\xa0\x97\xf3\xbd\x2c\x59\x88\x1e\xcc\x5a\xb5\xec\x56\xfb\xb7\xe7\x2f\x3a\x07\x55\x83\xd0\x66\x19\x54\x11\x4a\x1c\x48\xde\x52\xc8\xb8\xbc\xd2\x03\x28\x14\xc0\x34\x31\xfb\x54\xf2\xa2\x3f\x95\xb9\xf2\x9f\xce\xa0\xee\x82\x84\xf0\x3d\xd3\xf4\x3c\xb7\x5e\xb2\x79\x90\xee\xcf\xcc\x4a\x32\x99\xfe\xff\x63\x0e\x9f\xcf\xb5\xcf\x66\x46\x9a\x61\x97\x7a\x08\x62\xb4\x51\xf5\xdf\x27\xba\x42\xff\x1f\x94\x60\xb7\x8d\xc6\xd9\x03\xa6\x00\x89\x4a\xdd\x90\xa8\x3e\xad\x42\xa3\x01\xee\x6e\x33\x6d\x49\xcc\xbf\x14\x81\x54\xf4\xbf\xfe\x10\xd1\x93\x45\xfc\x23\x09\xbe\x8c\x9d\x90\xe5\x00\xfa\xfc\x14\x14\x2a\x59\x70\xe6\x18\xc5\x50\x15\x6f\x2f\x72\x71\x13\x49\x27\x25\xa8\xe8\x18\xac\x8c\x97\xfd\x9f\x6b\xbc\xfc\x4f\x63\xbf\xf9\x23\xd8\xcf\x22\x2f\xff\x45\x5c\xfb\x5f\x3f\x82\x6b\x69\x9c\xe7\xbf\x88\x71\x7f\x6e\x66\xdc\x4c\x7a\x67\xad\x14\xd7\x82\x87\x5b\x96\x71\xfc\xd3\x50\xfd\xb7\x2d\x54\x23\x52\x8b\xac\x74\x99\xb7\xba\x1b\xf9\x38\x1a\x84\xde\x4f\x4f\xfa\xe5\xcf\x63\xde\x4b\xfd\x1c\xde\x2c\x75\x69\x74\x2e\x44\xc1\xbb\xd9\xe6\x07\xd6\x7e\x1e\xc2\xe1\x3b\x38\xc9\x22\x02\x65\xc0\xe7\x92\x8c\x15\x35\x53\x24\x31\xe0\x49\xbe\xed\xd7\xf9\x85\x4a\x78\xcf\x4d\x2e\x9f\xb8\xc9\x55\x09\xe1\x34\x3e\xa1\xf7\x4a\xad\x3a\x95\x52\x9d\x67\x53\x15\x02\x6b\x05\x64\xaf\x1a\x68\xb9\xc2\xf7\x7c\xc0\x6d\x57\xfc\xfa\x7f\x8d\xfc\xd3\x28\x38\xa1\x5d\xc9\xb7\x29\x91\xa0\x78\xd9\xcc\x59\x6d\xa6\x2e\x67\x83\x38\xa7\x0f\x61\xaf\xb6\x07\xf4\x24\xfd\xf0\x5a\xf3\xfe\xc9\x26\x54\x77\xd6\x9d\x68\x55\x73\x9d\xd5\xb6\x31\xdc\xf8\x79\x64\xb8\xcd\x78\xc9\xb1\x29\xb7\x5f\x4f\xf3\x57\xfa\x3c\x73\x65\xab\xbe\x3e\xdd\x44\x6b\xe9\xcb\x4e\xb0\x69\x9e\xf9\xf9\x58\xa4\x8d\x97\x3c\x38\x5e\x58\x01\x35\x3b\xe0\x89\x9b\x14\x23\xc6\xa5\xca\x5d\xcf\x2b\xb7\x04\x49\xcf\xae\xaf\x63\x4f\x2e\xfd\xac\xbc\xb9\x26\x18\xe6\xcf\x73\x6e\x86\x1c\x59\x4c\x70\x4c\x94\x6a\xf7\x18\x62\x21\xa4\x5b\xd0\x98\x4d\xc1\x46\x39\xf6\xa6\xc6\x66\x45\x90\x54\x39\x40\x02\x05\xf3\xac\x23\x72\x47\x49\xa5\xd9\x10\xe2\x7a\x1f\xd4\xf3\x05\x64\x78\x13\x7a\x48\xcf\x26\x70\xec\x18\x9f\xf4\xb2\x0c\x58\x82\x63\x1a\x0c\x2e\x87\xc6\xec\x6a\x14\x78\xa2\x1e\x85\x49\x79\x95\xab\xa3\x76\xa9\xa2\x13\x17\x3a\x51\xf5\x39\x11\x08\xe7\xf6\xae\x92\xb4\xa5\xc0\xa0\x54\xc5\x33\x9d\x29\x6c\x0c\x3f\x06\x75\x45\xf9\x14\xde\xc8\xfe\x26\xfa\xe7\x19\x9e\x3f\x88\x33\x1b\x95\xe8\x6b\xc5\xae\x6c\xda\xe8\x39\xf7\x93\x70\x46\x61\xcd\x2a\x8e\x5c\x94\x24\x79\x7e\x18\xc0\xce\x5c\xa0\x3b\x14\x15\xed\x80\xcd\xa8\x4d\xf8\x2a\x8f\xfd\x4f\x73\x10\x21\x1b\x92\x7c\x03\xa4\x0b\x35\x56\x27\x4b\xe8\x4b\xdb\xa4\x99\x83\x38\xae\xc3\x3e\x2f\xdf\x2f\x80\xca\xb6\x33\x14\xd0\x1b\x6c\x40\x49\x05\x6e\x14\xbb\xf9\x8e\x0b\xb8\xd3\x13\x2b\x54\x66\xf3\x27\xd4\x18\x4a\xef\x48\x3f\x5c\xb4\x96\x22\xa0\xf4\xc6\x34\xa5\xfd\x98\x73\x96\xdc\x99\x1f\x5d\x4a\x9d\xa3\x7b\x9c\x3f\xa7\x89\x1f\x44\x03\x69\xc2\x21\xf1\xf9\x32\xc4\x35\x07\x08\x08\xce\xbd\xcc\xf3\x48\xeb\x1c\x98\xe6\xe5\xa5\x98\x13\x09\x8a\x59\xab\x72\x67\x82\x9f\x71\x4c\x8f\x78\x98\xdd\x63\x54\x35\x52\xec\xf5\x3e\x83\xbb\xc8\x6a\x64\x7b\xd6\x69\xea\x6c\xba\x79\x9d\x76\x6d\xa6\xf8\x98\xa4\xfc\x71\xa0\x6f\x05\x24\x01\x49\x2f\x75\x1b\xd0\xa5\xae\xd8\x4e\x98\x08\x22\xb3\xab\xdd\x02\xe6\x45\x25\x82\xab\xab\x42\x2d\xfa\x66\xb8\x92\x00\x90\xf6\x57\xde\x9d\x69\x72\x91\xba\x0b\x27\xae\x1a\x94\x0e\x25\xbd\x7f\xa1\x71\x06\x53\x23\xc2\x36\x6e\xd3\xdb\xab\xda\xc6\xa6\x5a\xe6\x95\xc3\x32\xad\xcd\x19\x2a\xb2\x33\xa5\x9a\x96\x82\xfa\x2a\x79\x46\xd2\x8e\xa2\xf8\x63\xf9\xff\x2b\xc7\x8f\xa5\x43\xbd\x09\xc8\x74\x25\xad\x4b\xde\xf1\xe7\xb4\x2a\x5f\xb7\xee\xf8\xba\x4c\xba\xac\x27\x4d\x2f\xad\xab\x07\xbf\x2a\x53\x00\xa4\x88\x9c\x43\xe5\x17\xb6\x6e\xe1\xbe\xed\x5d\x16\x91\x54\x2b\xb3\x54\x19\xa0\x96\x01\xeb\x70\xe5\xb8\x9f\x6a\xc5\x40\x43\x61\x9a\xe2\xd0\x44\xc2\xa8\x38\x75\x48\xf3\x8d\x22\x39\xbd\x7e\xf3\x57\x2b\x41\x93\x22\xab\xa4\xb3\x66\x1b\xf2\x9b\xb2\x6c\x55\xd4\x0e\xf9\x44\xca\x4f\x4d\xa2\x5f\xbf\xcc\x61\x4b\x6b\xea\xd0\x2d\xfb\x7a\x26\xd5\x92\x90\x6e\xa9\xd3\x7f\xb9\xec\xfe\x79\xb4\xa6\x11\xc6\xcf\xa5\x24\xd7\xd3\x2c\x5e\x5a\xf7\xd2\xca\xbd\x59\x92\x3e\x68\x69\x5e\x39\x49\x4f\x86\xa2\xb2\xa2\xf5\x0c\x68\x15\x65\x05\xea\x59\xac\xa9\x2e\x89\x2e\xc5\x95\x48\xab\x93\xde\xa9\x10\x9c\xb9\x2e\x65\x4d\xd9\x77\x43\x59\xa7\xd7\xe8\x8e\xf8\x14\xa2\x5b\x56\xc1\x32\x2c\x7a\xdc\x6a\xf5\xcf\x2a\x73\x31\x58\xbd\x28\x06\xbe\xcf\x48\xef\x25\x3e\x12\xfb\xc8\xdf\x4e\xb0\x64\xc9\x96\x66\x31\x6c\x66\xbc\x00\x57\xff\x52\xe4\x73\x5e\x00\xc0\xcd\x33\xef\x5e\x30\xaa\x90\x00\x94\x02\xa0\xaf\x52\x86\x1e\x58\x84\x1e\x9d\xd4\x4a\x25\xa7\xb6\xdc\x9c\x0e\xfa\x10\x71\xe6\x87\xad\xee\x60\x25\x71\x3e\x2f\xfb\xa6\xab\x13\x5f\x2b\xaf\x87\xc4\xd4\x57\xaa\x56\x85\xae\xd2\xf3\x6c\x49\x55\x16\x03\x64\x3a\x52\xd5\x1d\xc7\x56\xb2\x15\xcc\x4f\xac\x5d\x2f\xd3\x12\x9a\xfb\x41\x8c\xb3\x92\x7a\x42\x7a\x28\xfa\x41\xd2\x29\x34\x65\xc9\x17\xdf\x2d\x24\xc3\x58\x41\x7e\x1b\x0d\x70\xb7\xdb\x5e\x1d\x9c\x90\x26\x71\x49\x29\x11\x3a\x0a\x48\xa5\x52\xe4\x15\x2c\x88\xb4\x2e\xc3\xf5\xb2\xe8\x31\x3c\x16\x15\xb0\x65\x53\x5f\x17\xdd\x61\xa1\xb1\x9c\xa6\xd0\x19\xae\x5a\x78\xa9\x87\xe2\xb2\x0a\x2e\x29\x25\x16\x35\xef\xf4\xb2\x79\x45\xaf\xb9\xe2\xe9\x41\x0a\x15\xae\x16\x0c\xe7\x13\x02\x43\x9f\x89\x98\xf5\x59\xe3\x63\x90\xd4\x35\xc0\xaa\xd7\xa5\x0e\xb5\x2c\x94\x9a\x72\x1c\x0b\x4d\x72\x6b\x5c\x3e\x56\x63\x84\xe9\xd0\x93\x8c\x6a\xf6\xd1\x3c\xd5\xa4\x6e\xfc\xd2\x32\x01\x49\x2f\x89\x2f\x4b\xff\xb3\xb7\xcd\x40\x3f\x5c\xf9\xfb\x67\x31\xba\x61\xbb\x5d\x72\xc5\xec\xb0\xa8\xa2\x11\xa7\x69\x4a\xba\xb9\xcc\xc7\xb5\xba\x7c\xb4\x55\x98\x26\x24\xb2\x55\xcc\x13\x56\x53\x7c\x8f\x8d\xa1\xf8\x9f\x2e\x84\xc5\x23\xa8\xa9\x80\xba\xf0\xf9\xb2\x79\x95\x77\x6d\x35\xc6\xcc\x28\xcc\x74\x5f\x0a\x4a\x44\x15\x5a\x75\x98\x18\xe5\x19\x44\x76\x34\xb4\x68\x48\x67\x1b\xbd\xed\x03\xba\x1e\x12\x7c\xd3\x5a\x7e\x42\x7b\xa8\x94\x68\xd8\x54\xd4\x83\x32\x24\xeb\x06\x84\xb2\x79\x26\x75\x98\x33\xcb\x3e\x72\x2e\xaf\x86\x59\x51\xb2\x9e\x65\x9c\x63\x45\xe2\xec\xf3\xae\x7c\x12\x3a\x7b\xe4\xb2\x49\x4c\xbc\x4a\xc6\x0a\xb3\xe3\x2a\xf3\xc7\xcb\x36\x98\x1d\x56\xf2\x01\xd9\x83\x59\xb6\x0a\x52\x1a\x64\xdf\xa8\x14\x13\x2f\x2b\x67\xaf\xb1\x8a\x72\xe6\x4b\xb0\x1e\xf8\x13\x59\x0d\xf9\x13\xfe\x89\xc9\x6e\x3a\x24\x58\x79\xf6\x89\x4c\xfa\x6d\x4c\xd6\x2d\xfb\xfc\x65\x97\x7f\x07\x93\x73\x8b\x9e\x45\xdf\x65\x27\xa6\x70\x52\xe9\xc9\xf9\x5d\x76\xf2\x82\xe0\x96\xf8\xc6\x65\x8c\x56\x95\x4a\x96\x5f\xbe\x70\xe2\x1e\xe6\xbe\x62\x5d\x4c\x7c\x3e\xbc\xec\x82\x90\x05\x8b\x47\xe8\x5e\x50\x14\xa2\x49\x4f\xe3\xe5\x10\x74\xaf\xd1\x4a\x2f\x33\x52\xc9\xfb\x73\x78\x8d\xf0\x88\x7e\x62\xbc\xb6\xe7\xac\x71\xe4\x06\x51\x82\xf6\xa8\xb5\x0b\xfd\x20\xeb\xb0\xe7\x79\xc5\x6a\x62\xe0\x4a\x5a\x94\x3e\x3c\x27\xeb\x1e\xa2\x4f\x7b\xff\xdc\xfb\xe7\xde\x9e\x01\x7b\xd5\x2a\xf9\xfd\xd7\xbf\xc8\x6f\xad\x4e\x7e\x3f\x7f\x21\xbf\x97\x57\x7b\x5f\xa4\xd6\x67\xe8\x36\xf0\x43\xa9\x7d\xa1\x6e\xc6\xb8\x28\x1c\xaf\x43\x54\x8b\x0d\xb8\x49\xd9\x46\x26\xec\x12\xa2\x34\xec\x53\xd7\x17\xc4\x31\xf0\xf9\x01\x8e\x39\x4a\x24\x7b\xe2\xcf\x21\x66\xaf\x6a\x50\xb1\xa9\x15\x2f\xfd\x2b\x03\x6c\x4d\x56\x00\x5f\x36\xae\xe3\x53\x3f\x24\xfa\x7c\xd3\x38\x5a\xcf\x0f\xc9\x4d\xed\xa6\xd1\x5f\xc7\x49\x14\x37\xde\x4b\xc1\x35\xde\x13\xef\x84\xb7\x33\x20\xad\xfb\xf7\x7d\xb6\x2b\xfa\x30\x2c\xc8\xdf\xcd\xe1\x91\xe3\x7e\xa2\x47\xc6\xd4\xe8\x04\x5b\xf4\x09\x6e\x0e\x59\x2f\x63\xff\x7a\x81\xcb\x2a\x69\x8e\x7b\x93\x57\xd2\x9c\x80\x0c\x61\x7a\x54\x25\xfd\xec\xda\x30\x79\x17\xc5\xf4\x25\xcd\x5a\x39\x7d\x26\x9f\x20\x37\xd6\xd8\xcc\x01\x02\x61\xd7\x93\xea\x4a\x5e\x9b\xdf\x2e\x6c\xdd\x57\xe9\xbe\x52\xd8\x12\xaf\xba\xd2\xd8\xe7\x70\xea\xe2\xb3\x7c\x3b\xb1\x6f\xbf\x94\x78\xd3\xa4\xa7\xf0\x56\xcd\x2a\x2c\x50\x8c\xc0\xa7\x6f\x2f\x7b\x28\x46\x73\x14\xf2\x6f\xcf\xaf\x22\x7a\x10\x2f\x79\x90\x82\x3c\x8d\x5c\x7e\x98\xaf\x9f\xd0\xa1\xba\x74\xc4\x77\xb4\x96\x8e\x57\x74\xfe\x4c\x13\x6e\x17\x28\xe4\xdf\xf1\xc0\x7e\x78\x0d\xd7\xf4\x2d\x69\xfa\x01\x77\x1c\x41\xb0\x76\x74\x8d\x86\x98\x7e\xa8\x95\x56\x99\x21\x8e\x58\x4c\x50\xf3\x60\x86\x5c\x67\x9d\x30\x1c\x53\x33\xc0\x3e\x82\x91\x80\x03\x61\x14\xa6\xa8\xb3\x8e\x8a\xaa\x4d\x45\x31\x64\x81\x0f\x53\x26\xce\xd8\x38\x96\xca\x07\xc9\x29\x9a\x3f\x70\x8c\xe4\xaf\x53\x83\x9c\x92\xb4\x8a\x11\x43\x91\x9b\xc3\xda\xe3\x18\xb8\x1d\xf5\x52\xa9\x4a\x4c\x2c\x74\x37\x0c\x43\xb9\x7e\x88\xee\xf0\xd6\x06\xfb\x96\xdc\xe4\x96\x98\xf9\xd7\x08\x9f\x22\xc7\xf3\xc3\xeb\x77\x0b\x1f\x23\x66\x9c\x84\xde\xeb\x8d\xb3\x32\x51\xa8\xe6\x39\xc5\x5a\x19\xb7\x72\x83\xd2\x91\x4b\x18\x9c\xd2\xb0\xb9\x79\xb9\x7d\x55\x45\x57\x6a\x63\x59\xb5\xa9\x33\x2b\xad\xb2\x41\x57\xf7\xfe\x19\xee\x11\xdf\xee\x56\x93\xd7\xb1\x8b\x66\x16\xce\x03\xd9\xa6\xa0\xb2\x5f\x49\xd7\xb1\x05\x8d\xcd\xa6\x95\x1f\x39\x1d\x3f\x40\xa7\xe1\x31\xe6\x54\x71\x44\x4b\xc9\x60\x78\xf8\x64\x71\x73\x78\x8c\x02\x84\x0b\x8a\xb2\x95\xf9\xff\x2f\x00\x00\xff\xff\x9d\xff\x6b\xbc\x96\x88\x00\x00") func runtimePluginsAutocloseAutocloseLuaBytes() ([]byte, error) { return bindataRead( diff --git a/cmd/micro/view.go b/cmd/micro/view.go index 18b6d468..8a009b65 100644 --- a/cmd/micro/view.go +++ b/cmd/micro/view.go @@ -169,7 +169,7 @@ func (v *View) paste(clip string) { } clip = strings.Replace(clip, "\n", "\n"+leadingWS, -1) v.Buf.Insert(v.Cursor.Loc, clip) - v.Cursor.Loc = v.Cursor.Loc.Move(Count(clip), v.Buf) + // v.Cursor.Loc = v.Cursor.Loc.Move(Count(clip), v.Buf) v.freshClip = false messenger.Message("Pasted clipboard") } @@ -522,7 +522,6 @@ func (v *View) HandleEvent(event tcell.Event) { v.Cursor.ResetSelection() } v.Buf.Insert(v.Cursor.Loc, string(e.Rune())) - v.Cursor.Right() for pl := range loadedPlugins { _, err := Call(pl+".onRune", string(e.Rune()), v) diff --git a/runtime/plugins/autoclose/autoclose.lua b/runtime/plugins/autoclose/autoclose.lua index 56a7c63c..e6aa115a 100644 --- a/runtime/plugins/autoclose/autoclose.lua +++ b/runtime/plugins/autoclose/autoclose.lua @@ -1085,6 +1085,7 @@ function onRune(r, v) -- when converting go structs to lua -- It needs to be dereferenced because the function expects a non pointer struct v.Buf:Insert(-v.Cursor.Loc, charAt(autoclosePairs[i], 2)) + v:CursorLeft(false) break end end @@ -1107,6 +1108,7 @@ function preInsertNewline(v) v:InsertNewline(false) v:InsertTab(false) v.Buf:Insert(-v.Cursor.Loc, "\n" .. ws) + v:CursorLeft(false) return false end end