diff --git a/conf/app.ini b/conf/app.ini index 6e9d68833..1e66a758a 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -181,6 +181,8 @@ ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false ENABLE_CAPTCHA = true [webhook] +; Types are enabled for users to use, can be "gogs", "slack", "discord" +TYPES = gogs, slack, discord ; Hook task queue length, increase if webhook shooting starts hanging QUEUE_LENGTH = 1000 ; Deliver timeout in seconds diff --git a/gogs.go b/gogs.go index 272773755..775038109 100644 --- a/gogs.go +++ b/gogs.go @@ -16,7 +16,7 @@ import ( "github.com/gogits/gogs/modules/setting" ) -const APP_VER = "0.9.165.0220 / 0.10 RC" +const APP_VER = "0.9.165.0221 / 0.10 RC" func init() { setting.AppVer = APP_VER diff --git a/models/webhook.go b/models/webhook.go index 639168570..58c1b88d2 100644 --- a/models/webhook.go +++ b/models/webhook.go @@ -118,7 +118,7 @@ func (w *Webhook) AfterSet(colName string, _ xorm.Cell) { case "events": w.HookEvent = &HookEvent{} if err = json.Unmarshal([]byte(w.Events), w.HookEvent); err != nil { - log.Error(3, "Unmarshal[%d]: %v", w.ID, err) + log.Error(3, "Unmarshal [%d]: %v", w.ID, err) } case "created_unix": w.Created = time.Unix(w.CreatedUnix, 0).Local() @@ -130,7 +130,7 @@ func (w *Webhook) AfterSet(colName string, _ xorm.Cell) { func (w *Webhook) GetSlackHook() *SlackMeta { s := &SlackMeta{} if err := json.Unmarshal([]byte(w.Meta), s); err != nil { - log.Error(4, "webhook.GetSlackHook(%d): %v", w.ID, err) + log.Error(2, "GetSlackHook [%d]: %v", w.ID, err) } return s } @@ -293,8 +293,9 @@ const ( ) var hookTaskTypes = map[string]HookTaskType{ - "gogs": GOGS, - "slack": SLACK, + "gogs": GOGS, + "slack": SLACK, + "discord": DISCORD, } // ToHookTaskType returns HookTaskType by given name. @@ -308,6 +309,8 @@ func (t HookTaskType) Name() string { return "gogs" case SLACK: return "slack" + case DISCORD: + return "discord" } return "" } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index fede40ae1..e6cea8cb9 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -292,7 +292,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7b\x6f\x8f\xdc\x48\x7a\xdf\xfb\xfa\x14\xb5\x73\xb9\x48\x0a\xd8\xdd\x33\x23\xcd\xec\xac\xe6\xfa\xb0\x54\x37\xbb\x87\x56\xff\x5b\x92\x2d\xad\x56\x18\x50\x35\x64\x75\xb3\x6e\x48\x16\x97\x55\x9c\x51\x2f\x02\xe3\x16\x79\x91\x3f\x48\x90\x17\x49\x6c\x04\x30\x82\x1c\x82\xc4\x80\x13\x27\x67\x24\x01\xee\x9c\x73\xf2\x62\xe3\xf7\xd2\x77\x70\xd6\x71\x90\xc0\x5f\x21\x78\x9e\x22\xbb\xd9\xd2\x48\x5e\x03\xc9\x2e\xa0\x26\x8b\x55\x4f\x55\x3d\x7f\x7f\xcf\x53\x35\x3f\xa2\x9f\x7c\xf2\x09\x9d\x39\xcf\x1c\x8f\xe2\x3f\xd3\xf9\xd0\x1d\xbd\xa0\xc1\x85\xeb\xd3\x91\x3b\x71\xe0\x3b\x31\xbd\x16\x13\xc7\xf6\x1d\x3a\xb5\x9f\x3a\x74\x70\x61\xcf\xc6\x8e\x4f\xe7\x33\x3a\x98\x7b\x9e\xe3\x2f\xe6\xb3\xa1\x3b\x1b\xd3\xc1\xd2\x0f\xe6\x53\x3a\x98\xcf\x46\xee\xf8\x5d\x0a\xee\x88\xbe\x98\x2f\xa9\xed\x39\x74\x61\x0f\x9e\xda\x63\x18\xb1\xf0\xe6\xcf\xdc\xa1\xe3\x59\x7b\x13\xcc\x9f\x03\xe5\xc5\x0b\x3a\x1f\x51\x37\x40\x1a\xe4\x9c\xda\x45\x41\x73\x96\x71\xaa\x13\xa6\xa9\x4a\xe4\xad\xa2\x32\xa7\xfc\x86\x97\x1b\x5a\xb0\x35\xa7\x5a\xe8\x94\x13\x7b\xb1\x08\x67\xf6\xd4\xa1\x7d\x3a\x96\x6b\x45\xce\x69\x90\x70\x33\x52\xae\xa8\x4e\x38\x55\x1b\xa5\x79\x46\x2b\xc5\x4b\x43\xac\xac\x72\x65\x3a\x7b\xcb\x59\xb8\xf4\x1d\x8f\xf6\xe9\x5a\x68\x72\x4e\x1d\xa1\x13\x5e\xd2\x83\x98\xdf\x1c\x58\xf4\xa0\x28\x65\x7c\x40\x65\x49\x0f\x34\x57\xfa\x00\xfb\x4f\xe7\x43\x98\x2c\xe6\x37\x84\xbc\x54\xbc\xbc\xe1\xe5\x25\x59\x78\xf3\x60\x3e\x98\x4f\x68\x9f\x26\x5a\x17\x64\x38\x9f\xda\xee\x8c\xf6\x69\x2a\x23\x96\x26\x52\x69\xe2\xcd\xe7\x41\xb8\xf4\xa0\xcb\x8f\xef\x37\xfd\x1f\xa8\xc7\xbd\xde\x8f\xef\x9b\xee\x0f\xd4\xe3\x1f\xdf\xbf\x08\x82\x45\xb8\x98\x7b\xc1\x03\xd5\x23\xf8\x62\x0f\x87\xb0\xc0\xc3\x2e\xfe\x4f\xb6\x1d\x68\x9f\x3e\x3c\x3c\x3c\x24\xe7\x74\xc1\xcb\x4c\x28\x25\x64\x4e\x57\xb2\xa4\x55\x2e\x5e\x53\x25\xa3\x6b\xae\xc9\x72\xe6\x7e\x19\xfa\xf3\xc1\x53\x27\x08\x17\x8e\x37\x75\x7d\xdf\x9d\xc3\xc2\x4e\x4f\x4f\xc9\x39\x9d\xc0\xf2\xe8\xfd\xe1\xf4\xab\x07\x14\xd6\x06\xc3\x81\x33\xf4\x56\x96\xd7\xbc\x54\xf4\xbe\xaa\xa2\x84\x32\x45\x7d\xff\x82\x56\x45\xcc\x34\x7f\x40\x59\x14\x71\xa5\x44\xbe\xa6\xb7\xfc\x8a\x02\x0f\x44\xc4\xbb\xe4\x9c\xba\x39\xcd\xa4\xd2\x34\x62\x8a\x2b\xba\x91\x15\x8d\x25\xcd\xa5\xa6\x39\xe7\x31\xd5\x92\x46\x09\xcb\x41\x74\x09\xa7\x31\x5f\xb1\x2a\xd5\xf4\x86\xa5\x15\x0e\xb6\x53\xcd\x4b\x2a\x34\x95\x79\xba\xa1\x62\x05\xe3\x4b\x9c\xd7\x70\x99\xe6\x32\xe6\x54\x28\x24\x88\x82\x05\x21\x33\x45\x81\x23\xf8\xb1\x4b\x26\xf3\x81\x3d\x09\x3f\xc6\xea\x2d\x4b\xdf\xe7\xf6\x39\x1d\x0a\xc5\xae\x52\x8e\x93\xae\x38\xd3\x55\xc9\xe9\x6d\xc2\x73\x9c\x92\xdd\x30\x91\xc2\x67\x32\x74\x7d\xfb\xc9\xc4\x09\xa1\x5b\x9f\xae\x58\xaa\x38\x39\xa7\xcf\x13\x8e\xca\x53\x29\x4e\xaf\x2a\x91\x6a\x91\xb7\x57\x2f\x61\x03\xba\x4b\xfc\xc0\xf6\x02\x18\x1a\xfa\x8e\xf7\x0c\x75\xaf\xa1\x30\x94\x19\x13\x79\xad\xf6\x92\x5e\x71\xca\x5f\x17\x52\xf1\x98\xd6\xa4\xa2\x54\xe6\x1c\x04\x45\x60\xfc\x56\xc9\x76\x0a\x04\xca\x20\x4b\x4d\xf3\x2a\xbb\x02\x75\xff\xab\x89\xd4\x9a\x74\x7c\x4c\xce\xe9\x8c\x6b\x90\x3b\x15\xb9\xe6\xe5\x8a\x45\x77\xee\x23\x15\x4a\xf3\x1c\x8c\x11\xc7\x4f\x5c\x3f\x70\x66\xe1\xc5\xdc\x0f\x5a\x4a\xba\xbf\x8c\x1f\x4c\xa5\x5e\xcc\x8f\xef\x37\x2b\xc3\x1d\x79\x52\x6a\x5a\x30\x9d\x80\x45\x03\x8d\x58\x94\x3c\xd2\xb2\xdc\x58\x5b\x2d\x12\x8a\xde\xfb\xed\x5e\x57\xa9\xe4\x9e\x45\xaf\x2a\x8d\xca\x97\xb0\x1b\x64\x24\x48\xe4\x5e\x2f\x91\x19\xef\xad\x85\x36\xbd\xba\x38\x2f\x6a\xca\xc2\x0e\x2e\x68\x9f\x9c\xd3\x41\x22\xa5\x32\xda\x19\x89\x22\x01\xfd\xd7\x92\xaa\xaa\x28\x60\x33\x60\x1b\xc8\x3f\x99\xe7\x3c\xd2\x42\xe6\x8a\xec\xc4\x18\x0e\xdc\xc5\x85\xe3\xf9\xb4\x4f\x19\x57\x47\xc7\x67\x9d\x48\x97\x16\x3e\x7f\x76\xbc\x7d\x3e\x3e\x39\xdd\xb5\x1f\x9f\x75\xd6\x51\xf6\xb9\x2c\x78\xae\x54\xd2\x8d\x64\x66\x51\x56\x46\x2b\x59\x95\xc7\x27\xa7\xdb\xe7\xa3\xe3\x33\x54\xcd\x7a\xcf\x68\x46\x25\x67\x9a\x53\xcd\xb3\x42\x96\xac\xdc\xd0\x95\x48\xb9\x32\xaa\x0a\x9e\x8a\x16\xd5\x55\x2a\xa2\x6b\x7a\xcd\x37\xb4\x42\x4b\x55\x2a\xe9\x5c\xf3\xcd\x9a\xe7\x16\x39\x6f\xb3\xad\x76\x8f\x3b\x5a\x5b\xee\x1a\x16\x3d\x75\x5e\x84\x81\xe3\xb7\xd8\xb4\x00\x51\x00\x63\x76\x24\xf7\xe4\xb0\x6b\xbf\x47\x59\x1e\xd3\x94\x83\x03\xe7\x69\x4a\x57\x22\x8f\xa9\xac\x34\xbd\x4d\x44\x94\x50\xd0\x43\xd8\x0d\x4b\xd3\xed\x5c\x63\x50\x03\x9c\xa9\x45\x1f\x5d\x4b\x2c\x22\xd8\xf4\x6d\x6d\x66\xe8\x4d\x78\x74\x4d\x33\x91\x8b\xac\xca\x70\xaf\x4a\x7c\xc3\xe9\xad\xd0\x09\x8d\x64\x59\x72\x55\xc8\x3c\x86\xdd\xeb\x4d\xc1\xc9\xd4\x9d\xb9\xd3\xe5\x14\x77\xe4\xbb\x5f\x39\xe1\xe0\xc2\x19\x3c\x6d\xdb\x5f\x6d\xfe\x83\xe1\x0c\x02\x4d\x0e\x16\x53\xc7\x80\x4c\xc6\x9c\xcc\x47\xa3\x89\x3b\x73\x9a\x10\x60\x86\x35\xce\xc0\x9b\x2f\x03\xc7\x0b\x27\xf3\x71\x8b\xe2\x98\xe7\xbc\x84\x55\x2b\xcd\x0b\xf5\x98\x9c\xd3\xbf\x41\xbb\xbd\x35\x78\xd8\x88\x97\x9a\x76\x22\xd6\xd7\x65\xc5\x69\x27\xae\x4a\x06\x3a\xd5\x3f\xfb\xf4\xf4\x30\x39\xcc\x0e\x15\xed\x40\xdc\xe8\x67\x1b\xf8\xe9\xf2\xd7\x2c\x2b\x52\x0e\x5a\x42\xce\xc9\x39\x9d\x97\x74\x55\xca\x8c\x32\xda\x2d\x56\xaf\x51\x01\xd0\xd0\x4b\xcd\x63\xf3\x05\xd4\xf8\xb9\xc8\x63\x88\x9c\x30\x99\x58\x19\x06\x2a\x2d\x4b\x4e\xef\xc7\x92\x9c\xa3\x5f\x5b\xc9\x72\xcd\x35\xf0\xd3\x8c\xc7\x81\x45\x29\x6e\xa0\xf3\x35\xdf\x3c\x30\xcb\x36\x6a\x9a\xd2\xe2\x3a\x52\x47\xc7\xb4\x23\x72\xa4\x8a\xb3\x77\x40\xa6\xe6\x8d\x67\xb4\x93\xcb\x6b\xbe\x51\x3f\x6c\xd4\x35\xdf\x34\x83\xe0\x83\x82\x87\x98\x2b\x32\x70\xbc\x20\x44\x50\xd1\xa7\x51\xa5\xb4\xcc\x7a\x10\x59\x55\xaf\x99\x86\x80\x18\xef\xea\x50\x53\x24\xe7\x74\x59\x14\xe0\x6a\xf8\x0d\x4f\x11\x0c\xf0\xac\x48\x61\x53\xa0\x94\x4a\x33\x2d\x22\xc3\x37\xf0\x2d\xfb\x46\x81\x2c\x00\x35\xbf\x4d\x78\xc9\x4d\x48\x14\x8a\xf2\xd7\x3c\xaa\x34\x8f\xc1\x89\x07\xee\xe0\x1d\xf7\x31\xac\xc7\xe3\x40\xf0\x16\x80\x61\x62\xa6\x19\x82\x94\xa1\x1d\xd8\x8d\x66\x63\x23\x62\x9c\x14\x64\x02\x81\xdb\xac\x72\xfc\x95\xbb\x68\x1c\x0e\x71\x66\xa8\x58\xd8\xb6\x53\xa9\x09\x33\x2a\x8d\x18\x68\x85\x51\x25\xef\xa4\x72\xbd\xe6\x31\x62\x1c\x65\xd1\x88\xe5\xe0\xf7\x0f\xc0\xe3\x19\xf8\xc2\x5f\x17\xa9\x2c\xf9\x01\x99\xd8\x08\xde\xc2\x85\x3d\x06\xc6\x41\x0f\x42\x5e\x96\xbc\x90\x4a\x80\xcd\x5f\xee\xf9\x5b\x20\x0f\xea\x02\xf3\x6d\xfb\x08\xae\xee\x29\xdc\xc2\x9e\xd9\x1f\xfc\x76\xef\x27\x30\x3f\x44\xaf\x9f\xa2\x8a\x77\xda\x43\x0e\x10\x00\x21\x9f\x00\xa0\xa9\xa8\x14\x85\x46\xbb\x6c\x42\x42\xbd\x6d\x65\x51\x25\x33\xae\x45\xc6\x15\x8d\x64\x95\xc6\xb8\x17\x95\x1c\x10\x7f\xe0\xb9\x8b\x20\x0c\x5e\x2c\x60\xed\x57\x4c\x25\x2d\xae\xdb\x33\xdf\x05\x7c\x51\x2a\x6e\x7c\x35\xcb\x69\x95\x97\x3c\x92\xeb\x5c\x7c\xc3\xe3\xe6\x1b\x81\x8e\xe1\xe0\xc2\xf6\x7c\xc7\xac\x67\x24\xcb\x88\xd7\xc8\x32\xe7\xb7\xbb\x9d\x6e\xea\x00\x5a\x1b\x03\x19\xcd\xbd\x81\x13\x2e\x3c\xf7\x99\x1d\x38\x6d\x2b\x4f\xe5\x15\x4b\x69\xc6\x5e\xa3\x23\x42\xef\x8c\x32\x15\x19\xc0\x99\x55\x9b\x62\x61\x10\x42\x69\xd1\xce\x11\xcd\x38\xcb\x01\xcf\x98\x9e\x64\x6a\x7f\x19\x0e\x3c\xc7\x0e\xdc\xf9\x2c\x9c\xb8\x53\x17\x82\x61\xe7\x88\x9c\xd3\xa9\x28\x4b\x90\xc5\x26\x8f\xe8\xd7\x15\xaf\x38\x4d\x79\xbe\xd6\x89\x45\x45\x0e\xd3\x29\x0e\x80\x29\xdb\xf5\x42\x97\xaf\x19\x18\x14\x40\x2e\x91\xaf\xc9\xd4\xf5\xbc\xb9\x17\x7e\xb1\x74\x96\x4e\x38\x71\x66\x63\x54\xc5\xa3\x1a\x42\x32\x1d\x25\x26\x76\x7c\x98\x7e\x51\xa5\x29\x2d\xf9\xd7\x15\x86\x98\xed\x88\x3b\xe6\x5a\x2c\x27\x93\xd0\x73\xbe\x58\x42\xe0\xf8\xc0\x8c\x25\x5f\xf1\xb2\xe4\x31\x9d\x88\x88\xe7\x00\x18\xb5\xa4\x45\x0a\xb0\x83\x19\x27\xa4\x65\xd1\x80\x78\xc0\x0b\x80\x50\x00\x1a\x65\x95\xd2\x34\xc3\xe9\xd1\x7c\x11\x2f\x81\x63\x91\xf9\xaa\x97\x1a\x62\xa0\xf5\xb5\x57\x68\x37\x93\x85\xe7\x8c\x1c\xcf\x73\x86\xe1\xc4\x1d\x38\x33\xdf\x81\x80\x6d\x17\x2c\x4a\x78\xb3\x0e\x7a\xdc\x3d\xb4\x80\xf7\xf5\x7b\x2b\x30\xb0\x2b\x91\x0a\x8d\x6a\x81\x18\x89\x45\xda\x44\x9b\xb6\xa6\xd3\xab\x8d\x81\xa4\x45\x29\xb5\x8c\x64\xba\x0d\x11\x88\x36\xc7\x28\xd5\x46\x75\x9c\xfc\x5d\xc2\x99\x58\x63\xc4\x68\xe9\xcc\xd5\xc6\xe4\x11\xc6\x51\xd5\x6e\xc1\x40\x5d\x70\x28\xe1\xd4\x1d\x7b\xa8\x34\x2d\xc2\x03\x99\x47\x55\x59\xf2\x3c\xda\x80\x75\x56\xca\x00\xf0\x92\xeb\x52\xf0\x1b\x4e\x23\x99\x65\x42\x2b\x2a\xf2\x95\x2c\x33\xd4\xd7\x2e\x0d\x12\xa1\xe8\x0d\x2b\x05\x2e\x2a\xe6\x2b\x91\x03\x2d\x10\x40\xa3\xdc\x35\xa4\x03\xb1\x30\x75\xad\x4c\x46\x55\x3b\x9c\xb2\xca\x1b\xd1\x21\x36\x07\x1b\xee\xd2\xa5\xaa\x58\x9a\x6e\x2c\x68\x27\xe7\x06\xef\xd3\x98\x17\x1c\xb0\xc0\x8a\x26\xf2\x96\x66\x2c\xdf\xd0\xc1\x62\xa9\xe8\xfd\x48\x96\x5c\x3d\xd8\xc2\xb7\x2e\x75\x8d\x02\x98\x61\x80\x57\x4c\xac\xfa\x86\x97\x10\xc0\x30\xdd\x89\xc1\x9c\xc6\xf3\xb1\x4f\x6f\x45\x9a\x52\x56\x69\x09\x3b\x02\x5c\xb1\xa1\x31\xd7\x3c\x32\x8b\xda\xad\x1d\xe7\xc2\xfc\xa2\x86\x3f\x30\x17\x19\xcc\xa7\x53\x37\xf0\xc3\x91\x13\x0c\x2e\xc2\xc1\x7c\x36\x58\x7a\x9e\x33\x1b\xbc\x00\x64\xbb\xe7\x26\xbb\x3c\x86\x5f\xf0\x96\x13\xa1\xd0\xc6\xeb\x08\x0c\xa8\x16\xa0\xe1\x36\x6f\x05\x07\x86\x40\x34\x15\x39\xa7\xb7\x25\x2b\x80\xe9\xb8\x9e\x81\x8c\x79\x6d\xd9\x86\x1e\xa4\x41\x3e\x2f\x18\x2a\x40\x8b\x16\xea\x18\x43\x99\xb1\x2e\x0d\xe4\x8e\x56\x83\xfc\x84\x4e\x20\x9a\x6e\xc7\x58\xf4\x67\x15\xe2\x40\xdd\x8c\x23\x08\x5d\x9e\x7b\xf6\x22\x74\xbe\x0c\x9c\x19\xe4\x81\xa0\xfc\x5d\xfd\x5a\x5b\xdd\x2c\xb6\xba\x19\x2b\xaf\x63\x79\x9b\xc3\x9b\xf9\xb9\x8e\x01\x2c\x3e\x63\xa9\x88\xcd\xfe\x00\x06\xd5\x5b\xc3\x3d\x31\x5a\x94\xfc\x46\xf0\x5b\x6a\x2f\x5c\xca\x94\x92\x91\x60\x80\x40\x70\xc5\x3a\xe1\x99\x45\x9b\x0c\x92\x15\xa2\x77\x73\xd4\x6b\x66\xd9\xdb\x2b\x4a\x17\x2d\x07\xd7\xaa\xba\xe0\x1e\x90\xae\x66\x57\xc0\x2e\xe0\x0f\xce\x4e\x6f\x65\x7e\xcf\x14\x04\xc0\x25\x01\x1b\xf7\x39\x4f\x63\xc9\x15\x74\x41\x0f\x01\x06\xff\xcc\x75\x9e\xa3\xc9\x00\x5a\x40\xf0\x06\xfb\x6e\xd6\xb1\x2f\xd7\xaa\x48\x25\x8b\x2f\x77\x96\xd9\x32\x43\x9c\xc7\x74\x50\xdd\xda\x0c\x87\xb4\x4f\x01\xc0\xb5\x60\x71\x83\xa4\x45\xba\xa9\xb1\x56\x3d\x86\xde\x8f\xdb\x08\x61\xcd\xb5\xa2\x51\xca\x59\xce\x63\xd8\xb9\x01\x19\x4d\x89\x03\x1d\xea\x03\x12\x38\xd3\x45\x1b\x35\xf4\x74\x56\xf4\x6a\x7a\x10\xba\x60\x49\x10\x44\x6b\xa1\xb0\x92\x53\x96\xa6\xf2\xd6\x58\xfb\x55\x33\x37\x8f\x2d\xca\xbb\xeb\x2e\x15\x19\x5b\xf3\xde\xcf\x0a\xbe\xfe\xdb\xe6\xb1\xc8\xd7\x5d\x3a\xe1\x20\x4c\x9e\x15\x7a\x53\xc7\x24\x24\x42\xc1\x2c\x57\xcd\x14\xc4\x9e\x4c\xe6\xcf\x9d\x21\xc6\x5f\x1f\x23\xe7\xb4\x76\x0a\x08\xbb\xe5\x8a\x72\xd6\xf8\x64\x91\xd3\xe9\x13\x62\x18\x6e\x7f\x89\x70\x9b\xf6\xe9\xc3\xd6\x98\x9d\x31\x1a\x15\xc6\xc0\x88\x8b\xc5\x38\x08\x43\x41\x4c\x27\x84\xbc\x6c\x44\xd5\x12\x4b\xc2\xca\xd8\x58\xc1\x55\xc9\xd9\xf5\x4e\xfc\x8d\x7b\xbc\xb0\x3d\xf0\xf1\x33\x27\x7c\xe2\x39\x76\x1b\xe5\x37\x06\x6b\xc2\x03\x24\xc2\x1d\x3f\x4a\x78\x76\x17\x0f\x99\x82\x49\xae\xeb\xd4\xaa\xe4\xe0\x6a\x20\xdc\x4d\x1b\xe5\x39\x47\xa8\x51\x83\x73\xba\x16\xda\xca\xd8\x3a\xe7\x9a\x98\xea\x58\xb8\xf4\x26\xa1\x3f\xb8\x70\xa6\x35\xc7\x7e\x88\xb7\x00\x4f\x8a\x33\xf1\xb8\x07\x7a\x6f\xd6\xd1\x9a\xf2\x07\xb9\x08\x43\xa2\xf1\x0f\x3d\xd9\xb2\x10\xa6\xb6\xda\x7f\x87\x9f\x40\xa1\xed\xbb\x88\x0f\x79\x07\x42\x5e\x02\xe6\xbe\x34\x4e\xa2\x32\x78\xd4\xc6\xea\x50\x67\x20\x73\x5d\xca\xb4\x63\x03\x2b\x3b\xf3\x52\xac\x45\x4e\x13\xce\xd0\x59\xb7\x70\x23\x56\x73\x24\xf8\x11\xc5\x73\x4d\xec\xc1\xc0\xf1\x7d\x70\xbe\x81\x37\x9f\x84\xa8\x73\xe1\xdc\x73\xc7\x58\xe9\x20\x06\xf0\x81\xdc\xb7\x22\x4a\xd7\xb2\x14\x3a\xc9\x14\xe2\x7a\x9d\x70\x51\xee\xe5\x84\x06\xc9\xd0\xfb\x95\xe2\x80\xb9\xb4\xa4\x71\x13\xce\x51\xaf\x1f\x90\x97\x90\x7e\xd7\x43\xc2\x6b\xbe\x09\x41\x9f\xd5\x25\x71\x86\xc7\x27\x27\x47\x9f\xd1\x3e\x3d\x3e\x39\x25\xce\x60\xe8\xdb\x94\xd6\x6f\x1e\x3e\xe3\xdb\xe1\xa3\x33\x32\xdc\xbe\x1e\x1d\x1e\x3f\x22\xe4\x25\x18\xeb\x15\x53\xfc\xb2\x55\x55\xcc\x36\xea\xeb\x14\xeb\x8a\x52\xe9\x75\xc9\x95\x01\xe7\xea\xeb\x54\x68\xfe\xf0\xc0\xc2\xa8\x07\xb1\xb4\x2e\x31\xc0\x5a\x03\x31\x7c\x62\x84\x3b\xdd\xf8\x5f\x4c\x5a\xa0\xe2\x49\x03\x84\x91\x2c\xa9\x2b\x30\x47\xc7\x9f\x62\x0d\xe6\xe8\xf1\xc3\x87\x87\xa7\xa4\x2e\x8d\x02\x1c\x27\x75\xa5\xb3\x94\x52\x93\x85\xed\xfb\xcf\x87\x0d\xfc\xdd\x5b\x51\x0e\xb1\x9a\x37\x85\x50\xc3\x2a\x58\x34\x00\x3f\x51\xd6\x09\xc5\x0d\x2f\xc5\x6a\xd3\x59\x55\x69\x7a\x40\x7c\x7f\xb2\x2d\x8b\x9a\xfe\x0d\xd9\x66\x6b\x28\x9a\x03\x2d\xe2\xab\x03\x0b\xcb\x31\xec\x4a\xc9\xb4\xd2\xbb\x2c\x2b\xc7\xcd\xa3\xd7\x03\xfd\xac\x8b\x8a\xa4\xed\xfa\x60\x13\xdd\xf8\x8a\x90\x97\x2c\xce\x04\x7a\x83\x06\x98\x95\x7c\x5d\xa5\xac\xa4\xf7\x21\x19\xc2\xaf\x0f\x4c\x32\xd4\xaa\x96\xc8\x72\xcd\x72\xf1\x0d\x33\x95\x9b\x6d\xda\xee\x8c\x97\x13\xdb\x0b\xe7\xde\x78\x8b\xbd\xb7\xce\x82\xbc\x54\x3c\xaa\x4a\xa1\x37\x97\xc4\x9d\xf9\x81\x3d\x99\x00\xee\x6a\x7b\x93\x4f\x3e\x31\x05\x72\x53\x47\x0f\xe6\xf4\xa9\xe3\x2c\xe8\x8b\xf9\xd2\xa3\xc8\x6f\x48\xfb\xa8\x6f\x8f\x9c\x4f\x3e\x21\xbe\x33\xf0\x9c\x20\x7c\xea\x00\xa0\xf8\xe4\x47\x9f\x8f\x86\xce\x73\xcf\x79\xee\xfd\xcd\xbf\x75\x1f\xb2\xc1\x4a\x4b\x48\xe4\x04\x38\x9a\x8c\xa3\x77\x8c\xd9\x46\x91\xc9\x7c\xec\xce\x42\xcf\x99\x3a\xd3\x27\x8e\x17\x0e\xed\x17\x60\x94\x9f\x92\xc1\x7c\xfe\xd4\x75\xb0\x80\xdd\x12\x73\xc8\x6e\x39\x24\x50\xcd\xe7\xed\xb8\x76\x1f\x44\xf5\xb1\x00\x49\xd5\xdd\x7c\x67\xb0\xf4\xda\x49\x8d\x07\x71\x48\x41\xf2\x23\x5f\x6f\x00\x53\x25\x3c\xd7\x4d\xb6\x6a\xec\x78\x5b\x66\xc7\xda\x3a\xbc\x10\xcf\x79\xe6\x78\x3e\x24\x49\xf3\x2f\x5f\x84\xf6\x32\xb8\x70\x66\x81\x3b\x30\x29\x4d\xad\x80\x5f\x76\x9e\x3b\x4f\xe0\x53\x07\x1a\xea\x2a\xba\x88\xf8\x25\xb1\x07\x81\xfb\xcc\x09\x07\xf3\xa1\x13\x4e\xe0\x69\xea\xce\x96\x01\xc6\x81\xa3\xb3\x43\xe2\x39\xbe\x03\xf9\x36\xa8\xee\x07\x3b\x9d\xd3\x25\xae\xa6\xa9\x38\xcb\x7c\x25\xca\x8c\xf2\x4e\xc6\x44\x8a\x0e\xaa\xe4\x6b\xa1\xb4\x29\xb7\x10\xcf\x19\xbb\x7e\xe0\x78\xa1\x33\xb5\xdd\x49\x88\xa7\x19\xde\x74\xaf\x28\xcb\x8d\x93\x32\x21\xd1\x0c\xe6\x25\x6a\x34\x6a\x5a\xa3\x5f\x2c\x8a\x64\x95\x9b\xf2\x75\x5b\xbd\x5c\x3f\x78\x0f\x9d\xe3\x12\x31\x8f\x51\x62\x8d\x75\x26\x2d\x29\xe2\x1d\x96\x6f\x74\x22\xf2\x75\x97\x40\xfa\xe4\x7a\x4e\xe8\xbb\xe3\x99\x3b\x0b\x01\xc5\xb4\x28\x4c\x61\x37\xb9\xac\xab\x3a\xad\xc0\x37\x9b\x07\xee\xe8\x45\x08\xbb\x69\x77\x07\x1c\x12\x73\xcd\x44\xfa\x18\x8f\x28\xd4\xe3\x5e\x6f\x2d\x74\x52\x5d\x75\x23\x99\x81\x6d\x09\xad\xd0\xc4\x7a\x42\xa9\x8a\xab\xde\xd1\xe9\x49\x43\xf3\x63\x52\xdd\x4e\xf2\xa1\xbe\xf3\x0f\x31\xa1\x0e\xe5\x11\x2b\x74\x94\x30\xc0\x80\x22\x36\xea\xf5\x9e\x94\x6a\xda\x03\x7b\x11\x0c\x2e\xec\x06\x73\x91\x97\xb7\xfc\x2a\x91\xf2\x1a\x5c\xc1\x85\x94\xd7\x98\x93\x7c\x24\x81\xad\xbb\x43\xa0\x95\x77\xa5\xad\x77\x67\xaa\x43\x9e\x8a\x1b\x5e\x62\x3a\x03\x20\x5b\xe4\x54\xf1\x48\xe6\xb1\x22\x43\x07\x34\xd0\x0b\x03\x77\xea\xcc\x97\x01\xe2\x95\x73\x8a\x21\x8f\x8a\x1c\x9d\x07\x6f\x15\xdf\x60\x2b\xfe\x53\x77\x11\x06\x13\x3f\x7c\xe6\x78\xee\xe8\x45\x8b\x1f\xb3\x2d\x22\x4a\x84\x42\xc4\xd9\x4a\xce\x10\x19\x02\xbc\x2a\xd8\x1a\xdc\xe2\xd8\x9d\x8d\xc3\xd9\x72\x8a\xcb\x44\x8c\x24\x52\x5e\x5e\xb6\x60\x69\x43\xf6\x49\xb5\x5a\x61\x19\x0c\xc3\x20\x00\x9f\x84\xe5\x39\x4f\x2d\x7a\xcd\x79\x41\x05\xfa\x5b\x81\xb1\xd8\x1c\xba\xd0\x18\x21\xf6\x75\x2e\x6f\xe9\x2d\xe0\x12\xfc\xd8\x25\xbe\x33\x1b\x86\x4f\x96\xa3\x91\xe3\x01\x8f\x0c\x83\x9a\xa4\x3c\x16\xaa\x48\xd9\xc6\x1c\x33\xa0\xa9\x99\xf3\x39\x7f\xf9\xe4\xb7\x9c\x81\xa9\xea\x37\x67\x75\x58\xd5\x47\x05\x36\xa5\x1f\x72\x4e\xc7\x19\x6a\xa6\xca\x74\xd1\x5d\xc3\x33\x68\xe5\xe3\x93\xb3\x4f\xc9\x39\xfd\xe2\x8b\xfa\xc3\xd7\x5f\x63\xeb\xa3\x53\x60\xf2\x4c\x6a\x6e\x35\x29\x00\xd6\x2d\x79\x1e\xd7\x38\xe8\xe0\xd1\xe9\xc9\x81\x45\xfd\x69\xb0\xa8\x73\x42\x40\xc2\x8a\xc7\x90\x8d\x82\xdc\xf1\x10\x26\x98\xf8\x54\xe6\x66\xec\xc9\xd9\xa7\xc0\x80\x92\x03\x06\x02\xe4\x14\x23\x20\xf5\x46\x03\x7a\xfa\xe8\xf0\xb3\x6d\x1a\xfa\x4e\xad\x6a\x47\x48\xe8\x3a\xf9\x4c\x6f\xd9\x46\x6d\xe7\xab\xc3\x72\x2b\x54\x5d\x38\x93\x39\x95\x05\x37\x9a\x6d\x42\x5f\x22\x95\x46\x5f\x0a\xd8\x33\x16\x20\x2f\x9e\xeb\xee\xae\x70\x00\x63\xf0\x84\xc2\x60\xd6\x6d\x7f\x30\x94\x7d\x82\x7b\xd8\x0a\xeb\xc0\x26\xc3\xed\x12\xe8\x87\xe7\x34\x26\x10\xa0\x6b\x43\xc7\x66\x62\xb9\x39\xf6\x68\xd5\x89\x65\x7b\xc7\x5d\x3a\xcf\xd3\x0d\x86\x6e\x9d\x00\x65\x59\x52\xc5\xd3\x55\x07\xfc\x17\x8f\xdb\x03\x95\x51\xf1\x46\xbd\x8d\xb7\xa3\x51\x2a\x78\xae\xdb\xfd\x00\x8f\x84\x03\xc7\x0b\xdc\x11\xb8\x92\x5d\xec\xb9\xa3\xf4\x6b\xb4\xfb\x63\xb5\xdf\xba\xc7\xae\xf8\x8b\xfa\x65\x4a\xe4\x71\x5c\x72\xa5\x2c\x94\xe6\xc9\xc3\xe3\xe3\xba\xd0\x51\x57\x2d\x10\x00\xb3\x9c\x72\xd4\xda\x6d\x67\x59\xe2\xf6\x5f\x1d\x80\x7a\x1f\xd0\x9f\xe0\xe7\xcf\x5b\x65\xf8\x9f\xbe\xa2\xc6\x3a\xc9\xc8\x9b\x4f\xeb\x7c\x08\x16\xb1\x0b\x87\x18\x24\x0a\xa6\xd4\xad\x2c\xe3\x1a\x7f\xb5\xa1\x17\x30\x46\xf3\xd7\xba\x97\xe8\x2c\xc5\x1c\x39\xd5\xbc\xcc\x99\x16\x37\xbc\x26\x8e\x06\x2b\x73\x0d\xd8\xb8\x49\x6d\x82\x29\x00\xe3\x00\xc2\x3e\xc4\xcb\x16\x5c\x89\x58\x94\xec\x43\x4e\x9e\xc9\x72\x63\xe0\x5b\x2c\xd4\x01\xee\x0b\x5a\xb1\xe7\xc1\x7e\x05\xb7\xee\x4c\xec\xa1\xbd\x08\x30\x54\x9b\x96\x06\xcd\xd5\xdf\x6b\x88\x38\x1e\x98\x22\xd8\x0d\x4b\x5b\x2e\x71\x8f\xe2\xe9\x21\x71\x67\x81\xe3\x3d\xb3\x21\x16\x9d\x1e\x36\x84\xcc\x5a\x0c\x28\x6c\xad\x65\x77\xb2\x86\x1a\xde\xc8\x82\x9c\x53\x1c\xf0\x98\xe6\xe6\x80\xb2\xaf\xa3\xc2\x82\x8f\xfd\xc7\xa7\x0f\x3f\xfd\xcc\x6a\x38\xdc\xcf\x58\xc4\x4a\x99\x5b\xf1\x55\xff\xd0\x2a\xa4\x4c\x11\xc9\xf7\x8f\x0e\x0f\x2d\x11\xa7\x3c\xac\x3d\x78\xdf\xe0\x84\x66\xe6\xc7\xf4\xd5\x0e\x35\x1f\x1d\x1d\x1f\x1d\xbd\x6a\xcc\x16\xb0\x09\x1e\xac\xdf\xcd\x53\x48\xae\x6a\x96\x36\xec\xbd\x8b\x9f\xcd\xbd\x87\x36\x43\x17\xa5\xbc\x11\x80\xa1\x10\xa0\xac\xa9\x2c\x0c\x2e\x3d\xaf\xbb\x3c\x46\xd3\x34\x45\x96\x7c\xd3\xf4\xda\x70\x0d\x29\xa7\x48\xf9\x63\x5a\xaf\x6c\x77\x84\x51\xa7\xf8\xaf\x10\x2c\xd7\x5f\xd5\xab\xff\x6f\xdc\x83\xac\xe3\x31\x5d\xcb\x8e\xfa\x3a\xed\xc4\x25\x84\xc8\x1e\x36\xd2\x58\xe5\xcd\x82\x95\x86\x7c\xb9\x59\x19\xa4\x1e\x8f\x9b\xf9\x3e\x6f\xd6\x18\x6a\x70\x8c\xaf\xb6\x6c\x0a\xeb\x2b\x25\x35\xec\x6f\x76\x82\x89\xaf\xd9\x72\x24\xe5\xb5\x30\x85\xdf\x06\xbf\xd6\xe8\x56\x84\xa9\xb8\xe6\xa1\x81\x33\xe4\x1c\xdc\x36\x44\x34\xf0\x5b\x0d\xbf\x20\x0d\x05\x00\x54\xab\x71\xdb\x5d\x1a\xf7\xf3\x01\x40\x5c\xc3\x15\xc5\x75\x3d\xff\xde\x58\x04\x24\xb5\x81\x02\x4a\x35\x54\x76\xd5\xa1\x66\xe9\xe3\x01\xe2\x88\xad\xe9\xec\x11\x39\x3b\x7d\x74\x78\x48\xc6\x83\xb0\xb1\x1a\x04\x16\xb4\x5f\x7f\xd8\x51\x49\xc5\xca\x94\x57\xef\x18\xee\x3b\x78\xc7\x23\x9c\xb8\x23\x67\x7f\x3c\x79\x59\x88\x48\x57\x25\x7a\x88\xed\x29\xae\x29\x51\xa9\x6d\xf9\x05\x72\xea\x1b\xa6\x59\xa9\x88\xfd\xcc\x0e\x6c\x2f\x5c\x2e\x26\x73\x7b\xb8\x57\x86\x6a\x7a\x9c\xd3\x41\x22\x72\xae\x78\x9d\x6e\x61\xf6\x6a\x8e\xd1\x0f\xe2\x4a\xaa\xa4\x92\x07\xa6\x4c\xcb\x9a\x82\x8b\x19\x4a\x95\xac\xca\x88\x5b\x14\xe4\x65\x20\xe9\xe3\x5e\x2f\xca\xbb\xeb\xd2\x74\x40\x58\x6a\x1e\x7b\x64\xec\xd5\x4b\xf1\xe7\x4b\x6f\x80\x69\x4c\xdd\x0d\xcf\x93\xb0\x6a\x9d\x56\x7c\x1b\xeb\x57\xb2\x8c\xb6\x25\x30\x3c\x60\x15\x39\x95\xab\x15\x56\x8c\x32\xbc\x2a\xd2\xc4\xd6\x86\x74\x4b\xd2\x23\x1e\xe3\xa9\x6d\xc3\x08\x9a\x4a\x79\x5d\x15\xb0\x45\x45\x87\x33\xbf\xae\x21\x44\x12\xa0\x40\xdd\x65\x57\xfb\x24\xe7\x06\x84\x60\xc0\x50\x16\x55\x9c\x6f\x11\xf7\xed\xed\x6d\x37\x15\x57\xcd\x16\x65\xb9\xfe\x01\xeb\xc7\x65\xbd\xbb\x01\x60\xe9\xb8\xa6\x03\xb2\x8f\x85\xba\x62\x29\x20\x8e\x5a\x09\x47\xce\xd0\xf1\xec\xc0\x19\x86\xdb\xfd\xd5\xa0\x99\x69\xcd\xa2\x24\xe3\xb9\xbe\x6c\x5d\x5b\xd9\xb5\x2a\x84\x21\x1c\xd5\x3d\xee\x36\x07\x6c\x98\x4a\xbf\x02\x12\xaf\xea\x29\xde\x29\x7d\xe2\x99\xdb\x8e\xc8\x3b\x03\x8d\xd6\xec\x3e\xbf\xda\x4b\xed\x5b\x1f\xc8\x39\x9d\xe7\xb8\xbd\x4c\xb6\xab\x99\x9b\x82\xab\x8f\x14\x31\xdf\xad\x4e\xde\xdd\x09\xcb\x8f\xef\x97\x2b\xf7\xd7\xfa\xf0\x78\xfa\x84\xb4\xaa\x96\x8f\xea\x61\x1f\xae\x58\xee\x8f\x3f\x3a\x7c\xaf\x82\x09\xa6\x0a\xcc\xf6\x0b\x1e\x89\x95\xe0\xe6\x84\xb9\x8e\xf0\xc0\xb8\x55\x95\xa6\x1b\x2a\x2b\x5d\x54\xa0\x77\x31\xe0\xa8\x7d\xaa\xde\x68\x70\x74\x74\xfc\xb0\x21\xc2\xd2\x06\x84\xf2\xb8\x29\x9f\x83\xd8\xec\x99\xef\x0e\x2c\xba\xcc\xc5\xeb\x21\x03\x84\xec\x55\x57\x9b\xfa\x69\x34\x38\x3b\x3e\x6e\x7e\xbf\x32\x0f\x27\x87\x56\x43\x7a\xfb\x60\x3e\x3d\x7c\xf8\xf0\xb3\xed\xc3\x8c\xe5\xd2\xa2\x4f\x85\x8e\x12\x9e\x5b\xd4\xd7\x2c\x2b\xea\x9f\xa9\x48\x53\xb1\x7d\x8e\x4a\x89\x71\x1d\x5f\x61\x54\x1d\xf3\x51\x98\xed\x7c\x86\x5d\x41\x2e\xd5\x62\x43\x63\x27\x90\x98\xca\x94\xe5\x6b\x30\x8f\x5e\x71\xbd\xee\x01\xf7\x7a\x3f\x2a\xae\xd7\x9d\x48\xe6\x4a\x33\xd0\x92\xd1\xdc\x9b\xda\x18\xa2\x9b\x5b\x16\x90\x4d\x68\xc8\xea\x14\x88\x08\x4f\xc4\x4b\x45\x5e\xa6\x72\x7d\x49\xde\xb9\xe7\x53\x9f\x8f\x03\x35\x99\xf2\x1a\x88\xd4\xc1\xbc\x1d\xc0\x9b\x0e\x0d\x86\x95\x59\xc6\xd0\x67\x36\x05\xd8\xac\x4a\xb5\x28\x9a\x83\x91\x5a\x3d\x9b\x61\x16\xea\xc9\x01\xa9\x4b\x63\x75\xeb\xff\xcb\x8c\xec\x8e\x64\xac\x01\x29\x41\xc9\x22\x2c\xdb\xb9\xf9\x4a\xc2\xef\x73\x56\xe6\xf0\xeb\x94\xa5\x2c\xe1\x61\xc4\x34\x4b\xdf\xd9\xb0\x19\x45\x26\xce\x33\x07\x10\x1b\xbe\x92\x06\xb5\x6d\xd9\x65\xfc\x4f\x9e\x6e\x90\xbb\xdd\xba\x1d\xf4\x3b\x6d\x1d\x24\xe0\x21\x69\xc2\x4b\xa1\x1b\x7a\x5b\x4a\xc8\x97\x77\xc9\x40\xe3\x0f\xa0\x51\xfb\x4b\xe3\x9e\x54\x73\xd8\xc7\x63\x90\x38\x2d\xa5\x06\xb1\xdc\x57\xb7\xa0\xa9\x68\xaa\x12\x1c\x08\xe4\x7c\x35\xc2\x7a\x40\x26\xf3\x71\xe8\xcd\x03\x93\x72\x6c\xc3\xf3\x1a\xbc\x0f\x12\x89\x99\x48\x37\x64\x68\xbb\x93\x17\xef\xf5\xdb\xba\x0f\x95\x88\x15\x82\x73\xc8\x27\x53\x73\x08\xb5\xc7\xcb\xe3\xb3\xfa\x28\xe5\x88\xfe\xe4\x27\xf4\xf8\xcc\xa2\xc7\x27\xa7\x2d\xc7\x12\xfa\x17\xee\x08\xaf\xde\x9d\xd5\x74\xd1\xb7\xef\x9c\x4c\x8b\x30\x0e\x9a\xb8\x33\x53\xe4\x3a\xc4\xff\x40\xd6\xaf\x0b\x51\xa2\xb7\xd8\x34\x3a\x6f\xd0\xe0\xfd\x98\xa7\x5c\x73\xca\x56\x9a\x97\x34\x63\xaf\xb1\xcb\x03\x24\xb3\x2d\x1f\x6e\x6b\xb4\x29\x8b\xae\xdf\x93\x06\xb6\xfe\x20\x71\x3c\xaf\x8b\x2a\x4b\x6f\x42\xcc\xa5\x4b\x48\x44\x4a\xd9\x3e\xae\x29\xab\x3c\x07\x19\x40\x73\x7d\x70\x5c\xf0\x52\xc8\xd8\x1c\xd2\xde\x71\x9a\xe6\x55\x79\xbb\x37\xa6\xc9\x78\x42\x66\x4a\x36\x5d\xbc\x8b\x6b\x07\x21\x26\xe0\xbb\x0c\xe8\x9c\x2e\xf1\x92\x6a\x7d\x17\x42\x99\x95\x74\xcd\xcd\xd5\xb0\x6e\xbc\x24\xfe\xe0\xc2\x19\x2e\x31\x84\x7d\x6e\xce\xdb\x8e\x0e\x33\x82\x55\xcf\xed\x71\x5f\xc2\x59\xaa\x13\x73\xc9\xac\x26\x53\xf2\x42\x86\xa6\x3d\xc4\xf6\xbb\x28\x1d\x3f\x4a\xc8\xae\x1e\x74\x7a\x08\x11\xcd\x2e\xd7\x95\x09\xad\xe0\xec\xd1\x8f\xe4\x31\xbd\xb7\x16\x9a\xae\x54\x74\x7d\xaf\xf1\x1c\x9d\x4e\x95\x97\x10\x96\x90\x6b\x9d\x8e\x66\x6b\x05\xde\x07\x7c\x23\x7a\x50\x99\x6f\x7d\xa4\xd0\x1d\x15\x65\x08\x93\x62\x19\x29\x6c\x00\x62\xbd\xa3\xee\xa7\xdd\x13\x62\x7b\x63\xdf\x98\xdc\x00\xaf\xc9\xb5\x0e\x32\xf1\xee\x93\xd2\x22\x6a\xd8\x83\x7b\x09\x71\x77\xf0\x4d\x5d\xbe\xcb\x5d\x14\xca\xdd\x5b\x85\x09\x52\xce\xf2\xaa\x68\x4f\xc1\xca\x28\x11\x37\x5c\xb5\x19\x57\xb7\x85\x91\xe9\xfe\xde\x24\x46\x84\x77\xcf\x72\x4e\x03\x40\xcd\xcd\x2d\xb9\xdd\xed\x3f\xb1\x6a\xe6\x6a\x1d\x9f\xd5\xa7\xaa\x64\x3e\x81\x74\x22\xb8\xb0\xc1\x3f\xe2\x62\x5f\xae\x85\x6e\x1d\x1c\x28\x9a\x88\x75\x92\x8a\x75\x82\xb6\xcc\x62\x44\xbf\x79\x4c\x4b\x9e\xc9\x1b\x73\x69\x28\x5f\xf3\xdd\x71\xc1\xd0\x1d\x8d\xc2\x0b\x77\x7c\x31\x71\xc7\x17\xc1\x5e\x3d\xb6\x0d\x10\xc0\x94\xd5\x16\xbb\x00\xe5\xb6\x39\x03\x96\x8b\xc5\x6a\x85\x15\x5f\x34\xca\xb1\x1b\x18\xd2\x6d\x23\x7f\x8f\x6a\x94\xb0\x92\x45\x1a\x70\x36\x92\x4c\xdb\xe7\x60\x1f\xa7\x89\x17\x9e\xec\x41\x60\x6e\xa8\x9e\xdc\x41\xdc\x60\x1a\x95\xc8\xdb\xfc\x23\xb4\x1a\x50\x63\x82\xcd\x47\xd4\x7a\x1d\xb5\x94\x9a\xad\xd7\x90\xc8\x83\x90\x3a\x1d\xf0\xd8\x7f\x1d\x9d\x5e\x47\xb5\x46\x8f\x07\xe1\x4e\xa9\xe7\xdb\x0a\xda\x1d\x65\x59\x90\x72\xb7\x6e\xbf\x24\xe6\x7a\x8c\x83\xc6\x78\x58\x5f\x83\x32\x97\xe7\xc9\x60\x32\x9f\x39\xf5\xf3\x62\x39\x99\xd4\x8f\xe3\x81\x29\x57\x90\x97\xc6\x63\x5c\xb6\xee\x99\xb5\x6b\x1e\x89\xac\x4a\x45\xaf\xb8\xbe\xe5\xbc\x2e\xcf\x1a\x77\x31\x74\x46\xf6\x72\x12\x84\xad\xea\xc7\x19\x20\xef\x42\x5c\xbe\xc7\x78\xa1\x79\xa6\x0c\xf2\x37\x37\x56\x0d\xd8\x67\xa6\xd2\x0b\xdc\x37\x7f\x74\xe1\x3b\xa1\x1b\x38\x53\x23\x3f\x42\x5e\x56\x48\x6b\x57\x34\xde\xbb\x83\xb4\x3d\xc9\x06\x81\x1a\xed\x90\x39\xde\x10\x4d\x81\xe5\x48\xda\xf9\x72\x31\x99\x7b\x4e\xb8\x57\x4c\x3e\x3e\xdc\x23\x6a\xce\x02\x3e\x44\x0e\xc9\xb8\xbe\xbf\x7c\x87\xc8\xd1\x3e\x91\xed\xc5\xb8\xfa\xce\xd1\x3e\x11\x16\x69\x71\x23\xf4\x86\xae\x38\x8f\xc9\xc8\x71\x86\x78\x65\xc0\x5c\xc6\xa9\x09\x9e\x6c\x4f\x98\xe5\x8a\x1e\xe8\x84\x67\xbc\x13\xc9\x54\x96\x07\x34\xe3\x9a\x51\xcd\xd6\x96\xb9\xe3\x74\xb5\xa1\x76\x1e\x97\x52\xc4\xf4\xa7\x7d\x7a\x82\x77\xd1\x6d\xd0\x68\x3c\x5e\xa0\x38\x08\x73\x4e\x7a\x90\xcb\xbc\x3e\xcd\x6c\x4e\x39\x8d\x14\xcc\xb5\xf1\xd6\x9f\x28\x28\xbd\x49\xb7\x87\x28\x80\x61\x77\x47\x28\x31\xbf\xe1\xa9\x2c\x78\xa9\xba\x6b\x29\xd7\xa6\x32\xd8\xbb\xe5\x57\x3d\x13\x72\x54\xef\xf8\xf0\xe8\x51\xef\xe8\xa8\xe7\x1b\xb4\xde\x59\xc9\xb2\xd3\xda\x40\x47\xe4\x9d\x41\x52\xca\x8c\x77\x1e\x7e\x86\x1f\xeb\xe5\x93\xe0\xc2\x99\x3a\xe1\x60\x3e\x99\x7b\xe1\xd4\x09\xec\x30\xb0\xc7\xb4\x4f\x5f\xfd\x68\xb5\x3a\x79\xf8\xe8\xe1\xab\x36\x1a\x11\x39\xbd\xda\x68\xae\x76\x86\x6c\x52\xc7\x5d\x55\xfe\x7e\xbb\x4e\x30\x7d\x52\x63\x01\xd7\x5f\x4c\x6c\x53\x4a\x6d\xb2\x9d\xb3\x87\x67\x67\xa7\x87\x67\xa8\x60\xdd\xed\x41\xeb\x4e\x98\xf5\xb1\xea\x47\x14\x62\xe9\x3b\xde\xbe\x3e\x9c\x1c\xbe\xaf\xa9\x1f\x25\xe1\x39\x8b\xf9\x47\x49\xe4\x52\x8b\xe8\xaf\x50\xcc\xd9\x3c\x70\x07\xef\xaa\xf7\xc9\x1e\x99\xf6\x99\xf0\x47\x69\xcd\xbd\xf1\x7b\xeb\x41\x0e\x01\x3b\xee\xb0\xc3\xbf\xe6\xee\x8e\x20\x49\x14\x47\x67\xf9\x25\x99\xd8\x33\xf0\x71\x94\xe7\x9d\xa5\x6f\x7d\x93\x74\x06\x33\xf8\xf7\xe2\x29\xfc\x1b\x3c\xb7\x62\xde\x19\x3a\xd6\xaa\xec\x8c\x3c\x2b\x4f\x3b\xb3\x89\x95\xde\x74\x26\xcf\xac\xb2\xea\x78\x4b\xeb\x67\xac\xf3\x5b\x0b\x8b\xab\x8e\xe3\x5b\x85\xee\x3c\xf1\xac\x22\xed\x2c\x26\xd6\xd5\xba\xf3\x64\x6c\x09\xdd\x71\x03\x6b\x25\x3a\x23\xd7\xd2\x65\x27\xf0\xac\x48\x75\x06\x5f\x59\xaa\xec\xf8\x0b\x4b\xdd\x74\x7c\xc7\xba\x96\x9d\xa7\x9e\xb5\x4e\x81\x42\x75\xdd\x59\xda\x78\x87\x00\x56\xe4\xe4\xeb\x54\xa8\xc4\xfa\xf3\x7f\xff\xf3\x3f\xfb\x93\x7f\xf2\x67\xbf\xfa\xc3\xef\x7f\xe7\xef\x5a\x7f\xfe\xeb\x6f\xff\xe2\xdf\xfe\x53\xf3\xf2\x97\xbf\xf9\x7b\x7f\xf1\x6f\xfe\xf9\xf7\xbf\xfa\x0f\x7f\xf9\x9b\xbf\xff\xee\x87\xff\xf1\x8f\x7f\xf9\xfd\xaf\xff\x2b\x7c\x18\xf2\x4a\xab\x28\xb1\x46\x25\xcb\xbf\xfb\x7d\x26\x94\x35\xe3\x31\x2f\x53\x96\xc7\xca\x9a\x30\x7d\x23\xf8\x9f\xfe\xa2\xb2\xde\xfc\xcb\xb7\x7f\xe7\xed\xb7\x6f\xbf\x7d\xf3\xc7\x6f\x7e\xf5\xe6\xd7\xd6\xf7\xbf\xfb\xaf\xbf\xff\xbd\x7f\xf7\x3f\xff\xe0\x5f\x58\x8e\x2a\xd8\x77\x7f\x24\x53\x6b\x21\x4b\x5d\xad\xab\xef\xfe\x40\xd1\x58\xd2\x27\x25\x53\x02\x1a\x53\x75\x2d\xac\x37\x7f\xf4\xf6\x1f\xbc\xf9\x2f\x6f\xfe\xe3\x9b\x5f\xbe\xfd\xb9\xa1\x61\xb9\x9a\xa5\x02\xd2\x58\xbf\x92\x19\x4b\x99\xc8\x79\x6e\x05\xdf\xfd\xa6\xbc\xfe\xee\xf7\xb9\xf5\xdf\xff\x11\xff\xd3\x5f\x68\x91\x33\xeb\xcd\x2f\xde\xfe\xfc\xcd\x7f\xab\x07\xf9\x37\x3c\x57\xd7\xcc\xfa\x3f\xff\xec\xf7\xfe\xd7\x7f\xfe\xc3\xff\xfd\x3b\xff\xc9\x1a\xb3\x94\xaf\xa5\xf5\xe6\x5f\xbd\xf9\xe3\xb7\x3f\x7f\xf3\xcb\xb7\xbf\xfb\xe6\x4f\xde\x7e\xfb\xf6\x1f\x9a\x65\x12\x93\x29\xc6\x18\x0f\xc1\xfe\x21\x08\x15\x22\xba\xe6\xa5\x91\x6f\x17\x1a\x21\xb9\xbd\x24\x28\x60\x14\x34\x41\x29\xd3\x3e\xfd\x26\x21\x28\x6a\x7c\xec\x04\xcf\x09\xfe\xbb\x7d\x43\xd1\xe3\xdf\x9e\x11\x94\x3f\xc0\x8f\x92\xa0\x12\xd0\x3e\xcd\x53\x82\x9a\x40\xfb\x34\xbd\x21\xa8\x0e\xb4\x4f\xcb\x8a\xa0\x4e\xd0\x3e\xfd\x19\x23\xa8\x18\x30\xa7\x22\xa8\x1d\xb4\x4f\xf1\x97\xa0\x96\xc0\x5b\x4a\x50\x55\x68\x9f\x5e\xad\x09\xea\x0b\xed\x53\xa1\x09\x2a\x0d\x4c\x28\x08\x6a\x0e\x82\x42\x82\xea\x03\xb9\x2d\xfc\x12\x54\x23\xda\xa7\xaa\x24\xa8\x4b\xf0\x78\x43\x50\xa1\x68\x9f\x5e\x4b\x82\x5a\x45\xfb\x74\x9d\x12\x54\x2d\xda\xa7\xd5\x35\xc1\x4c\xa6\xb9\x9b\x94\xb1\xa2\xc0\xbf\xd8\x90\x2d\x68\x16\xa5\x0c\x8f\x01\x10\x4f\x74\xb5\xcc\xd2\xbe\xc8\x05\x79\xb9\xed\xd1\xad\x87\x5d\x12\xf2\x52\x42\x02\x7c\x49\xfc\x8b\xf9\xf3\x70\x34\x9f\x07\x8e\x17\x3e\xf1\xcc\xb5\xf7\x16\x5e\xf3\x13\x79\x4b\x6f\x78\x59\x97\x84\xdf\xad\x4b\x60\xaa\x01\x60\x66\x2c\x9b\xdb\x9a\x2b\x29\x35\x2f\xf7\xe8\x3e\x73\xbc\xfa\xcf\xe9\x9a\x34\x12\xa8\x62\x7d\xb7\xfd\xf7\x06\xe6\xcf\x06\xea\xda\xf3\x07\x48\x05\xce\x74\x31\xb1\x03\x27\xc4\x52\x6b\x5d\xb6\x45\xaa\xff\x37\x00\x00\xff\xff\x96\x09\x27\x55\xb9\x39\x00\x00") +var _confAppIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xb4\x7b\xdd\x8f\x1b\x49\x92\xdf\x7b\xfe\x15\x31\xbd\x5e\x4b\x32\x8a\xec\x0f\xa9\x7b\x7a\xd4\xcb\xc5\x50\x64\x35\x9b\x27\x7e\x4d\x55\x51\x1a\x8d\xd0\x28\x65\x57\x25\x59\xb9\x5d\xac\xac\xa9\xcc\xea\x16\x07\xc6\x61\x17\x7e\xf0\x07\x6c\xf8\xc1\xf6\x1d\x0c\x1c\x0c\x2f\x0c\xfb\x80\xb3\xcf\xde\x83\x6d\x60\x77\xbd\x67\x3f\x8c\xef\x5d\xfa\x1f\xce\x73\x3e\xc3\xc6\xfd\x0b\x46\x44\x56\x91\x45\xa9\xa5\x9b\x05\xec\x19\x40\x24\xab\x32\x23\x33\xe3\xf3\x17\x11\xd9\x3f\x80\x4f\x3e\xf9\x04\x26\xee\x33\xd7\x03\xfa\x67\x3c\xed\x0f\xcf\x5f\x40\x70\x31\xf4\xe1\x7c\x38\x72\xf1\x3d\xb3\xa3\x66\x23\xb7\xeb\xbb\x30\xee\x3e\x75\xa1\x77\xd1\x9d\x0c\x5c\x1f\xa6\x13\xe8\x4d\x3d\xcf\xf5\x67\xd3\x49\x7f\x38\x19\x40\x6f\xee\x07\xd3\x31\xf4\xa6\x93\xf3\xe1\xe0\x5d\x0a\xc3\x73\x78\x31\x9d\x43\xd7\x73\x61\xd6\xed\x3d\xed\x0e\x70\xc6\xcc\x9b\x3e\x1b\xf6\x5d\xcf\xd9\x59\x60\xfa\x1c\x29\xcf\x5e\xc0\xf4\x1c\x86\x01\xd1\x60\x67\xd0\xcd\x73\xc8\xf8\x4a\x80\x49\xb8\x01\x9d\xa8\x5b\x0d\x2a\x03\x71\x23\x8a\x35\xe4\x7c\x29\xc0\x48\x93\x0a\xd6\x9d\xcd\xc2\x49\x77\xec\x42\x07\x06\x6a\xa9\xd9\x19\x04\x89\xb0\x33\xd5\x02\x4c\x22\x40\xaf\xb5\x11\x2b\x28\xb5\x28\x2c\xb1\xa2\xcc\xb4\x1d\xec\xcd\x27\xe1\xdc\x77\x3d\xe8\xc0\x52\x1a\x76\x06\xae\x34\x89\x28\x60\x2f\x16\x37\x7b\x0e\xec\xe5\x85\x8a\xf7\x40\x15\xb0\x67\x84\x36\x7b\x34\x7e\x3c\xed\xe3\x62\xb1\xb8\x61\xec\xa5\x16\xc5\x8d\x28\x2e\xd9\xcc\x9b\x06\xd3\xde\x74\x04\x1d\x48\x8c\xc9\x59\x7f\x3a\xee\x0e\x27\xd0\x81\x54\x45\x3c\x4d\x94\x36\xcc\x9b\x4e\x83\x70\xee\xe1\x90\x1f\xde\xaf\xc7\x3f\xd0\x8f\xf7\xf7\x7f\x78\xdf\x0e\x7f\xa0\x1f\xff\xf0\xfe\x45\x10\xcc\xc2\xd9\xd4\x0b\x1e\xe8\x7d\x46\x3f\xba\xfd\x3e\x6e\xf0\xa0\x4d\xff\xb3\xcd\x00\xe8\xc0\xc3\x83\x83\x03\x76\x06\x33\x51\xac\xa4\xd6\x52\x65\xb0\x50\x05\x94\x99\x7c\x0d\x5a\x45\xd7\xc2\xb0\xf9\x64\xf8\x65\xe8\x4f\x7b\x4f\xdd\x20\x9c\xb9\xde\x78\xe8\xfb\xc3\x29\x6e\xec\xe4\xe4\x84\x9d\xc1\x08\xb7\x07\xf7\xfb\xe3\xaf\x1e\x00\xee\x0d\xa7\x23\x67\xe0\x56\x15\xd7\xa2\xd0\x70\x5f\x97\x51\x02\x5c\x83\xef\x5f\x40\x99\xc7\xdc\x88\x07\xc0\xa3\x48\x68\x2d\xb3\x25\xdc\x8a\x2b\x40\x1e\xc8\x48\xb4\xd9\x19\x0c\x33\x58\x29\x6d\x20\xe2\x5a\x68\x58\xab\x12\x62\x05\x99\x32\x90\x09\x11\x83\x51\x10\x25\x3c\x43\xd1\x25\x02\x62\xb1\xe0\x65\x6a\xe0\x86\xa7\x25\x4d\xee\xa6\x46\x14\x20\x0d\xa8\x2c\x5d\x83\x5c\xe0\xfc\x82\xd6\xb5\x5c\x86\x4c\xc5\x02\xa4\x26\x82\x24\x58\x14\x32\xd7\x80\x1c\xa1\x97\x6d\x36\x9a\xf6\xba\xa3\xf0\x63\xac\xde\xb0\xf4\x7d\x6e\x9f\x41\x5f\x6a\x7e\x95\x0a\x5a\x74\x21\xb8\x29\x0b\x01\xb7\x89\xc8\x68\x49\x7e\xc3\x65\x8a\xaf\x59\x7f\xe8\x77\x9f\x8c\xdc\x10\x87\x75\x60\xc1\x53\x2d\xd8\x19\x3c\x4f\x04\x29\x4f\xa9\x05\x5c\x95\x32\x35\x32\x6b\xee\x5e\xe1\x01\x4c\x9b\xf9\x41\xd7\x0b\x70\x6a\xe8\xbb\xde\x33\xd2\xbd\x9a\x42\x5f\xad\xb8\xcc\x2a\xb5\x57\x70\x25\x40\xbc\xce\x95\x16\x31\x54\xa4\xa2\x54\x65\x02\x05\xc5\x70\xfe\x46\xc9\xb6\x0a\x84\xca\xa0\x0a\x03\x59\xb9\xba\x42\x75\xff\xeb\x89\x54\x9a\x74\x74\xc4\xce\x60\x22\x0c\xca\x1d\x64\x66\x44\xb1\xe0\xd1\x9d\xe7\x48\xa5\x36\x22\x43\x63\xa4\xf9\xa3\xa1\x1f\xb8\x93\xf0\x62\xea\x07\x0d\x25\xdd\xdd\xc6\xf7\xa6\x52\x6d\xe6\x87\xf7\xeb\x9d\xd1\x89\x3c\xa5\x0c\xe4\xdc\x24\x68\xd1\x48\x23\x96\x85\x88\x8c\x2a\xd6\xce\x46\x8b\xa4\x86\x7b\xbf\xbb\xdf\xd6\x3a\xb9\xe7\xc0\x55\x69\x48\xf9\x12\x7e\x43\x8c\x44\x89\xdc\xdb\x4f\xd4\x4a\xec\x2f\xa5\xb1\xa3\xda\xb4\x2e\x69\xca\xac\x1b\x5c\x40\x87\x9d\x41\x2f\x51\x4a\x5b\xed\x8c\x64\x9e\xa0\xfe\x1b\x05\xba\xcc\x73\x3c\x0c\xda\x06\xf1\x4f\x65\x99\x88\x8c\x54\x99\x66\x5b\x31\x86\xbd\xe1\xec\xc2\xf5\x7c\xe8\x00\x17\xfa\xf0\xe8\xb4\x15\x99\xc2\xa1\xef\x9f\x1d\x6d\xbe\x1f\x1d\x9f\x6c\x9f\x1f\x9d\xb6\x96\xd1\xea\x73\x95\x8b\x4c\xeb\xa4\x1d\xa9\x95\x03\xbc\x88\x16\xaa\x2c\x8e\x8e\x4f\x36\xdf\x0f\x8f\x4e\x49\x35\xab\x33\x93\x19\x15\x82\x1b\x01\x46\xac\x72\x55\xf0\x62\x0d\x0b\x99\x0a\x6d\x55\x15\x3d\x15\xe4\xe5\x55\x2a\xa3\x6b\xb8\x16\x6b\x28\xc9\x52\xb5\x4e\x5a\xd7\x62\xbd\x14\x99\xc3\xce\x9a\x6c\xab\xdc\xe3\x96\xd6\x86\xbb\x96\x45\x4f\xdd\x17\x61\xe0\xfa\x0d\x36\xcd\x50\x14\xc8\x98\x2d\xc9\x1d\x39\x6c\x9f\xdf\x03\x9e\xc5\x90\x0a\x74\xe0\x22\x4d\x61\x21\xb3\x18\x54\x69\xe0\x36\x91\x51\x02\xa8\x87\x78\x1a\x9e\xa6\x9b\xb5\x06\xa8\x06\xb4\x52\x83\x3e\xb9\x96\x58\x46\x78\xe8\xdb\xca\xcc\xc8\x9b\x88\xe8\x1a\x56\x32\x93\xab\x72\x45\x67\xd5\xf2\x1b\x01\xb7\xd2\x24\x10\xa9\xa2\x10\x3a\x57\x59\x8c\xa7\x37\xeb\x5c\xb0\xf1\x70\x32\x1c\xcf\xc7\x74\x22\x7f\xf8\x95\x1b\xf6\x2e\xdc\xde\xd3\xa6\xfd\x55\xe6\xdf\xeb\x4f\x30\xd0\x64\x68\x31\x55\x0c\x58\xa9\x58\xb0\xe9\xf9\xf9\x68\x38\x71\xeb\x10\x60\xa7\xd5\xce\xc0\x9b\xce\x03\xd7\x0b\x47\xd3\x41\x83\xe2\x40\x64\xa2\xc0\x5d\x6b\x23\x72\xfd\x98\x9d\xc1\xdf\x80\xf6\xfe\x12\x3d\x6c\x24\x0a\x03\xad\x88\x77\x4c\x51\x0a\x68\xc5\x65\xc1\x51\xa7\x3a\xa7\x9f\x9e\x1c\x24\x07\xab\x03\x0d\x2d\x8c\x1b\x9d\xd5\x1a\x3f\xda\xe2\x35\x5f\xe5\xa9\x40\x2d\x61\x67\xec\x0c\xa6\x05\x2c\x0a\xb5\x02\x0e\xed\x7c\xf1\x9a\x14\x80\x0c\xbd\x30\x22\xb6\x6f\x50\x8d\x9f\xcb\x2c\xc6\xc8\x89\x8b\xc9\x85\x65\xa0\x36\xaa\x10\x70\x3f\x56\xec\x8c\xfc\xda\x42\x15\x4b\x61\x90\x9f\x76\x3e\x4d\xcc\x0b\x79\x83\x83\xaf\xc5\xfa\x81\xdd\xb6\x55\xd3\x14\xf2\xeb\x48\x1f\x1e\x41\x4b\x66\x44\x95\x56\x6f\xa1\x4c\xed\x2f\xb1\x82\x56\xa6\xae\xc5\x5a\x7f\xbf\x59\xd7\x62\x5d\x4f\xc2\x17\x1a\xbf\xc4\x42\xb3\x9e\xeb\x05\x21\x81\x8a\x0e\x44\xa5\x36\x6a\xb5\x8f\x91\x55\xef\xd7\xcb\x30\x14\xe3\x5d\x03\x2a\x8a\xec\x0c\xe6\x79\x8e\xae\x46\xdc\x88\x94\xc0\x80\x58\xe5\x29\x1e\x0a\x95\x52\x1b\x6e\x64\x64\xf9\x86\xbe\x65\xd7\x28\x88\x05\xa8\xe6\xb7\x89\x28\x84\x0d\x89\x52\x83\x78\x2d\xa2\xd2\x88\x18\x9d\x78\x30\xec\xbd\xe3\x3e\xfa\xd5\x7c\x9a\x88\xde\x02\x31\x4c\xcc\x0d\x27\x90\xd2\xef\x06\xdd\x5a\xb3\xe9\x21\x61\x9c\x14\x65\x82\x81\xdb\xee\x72\xf0\xd5\x70\x56\x3b\x1c\xe6\x4e\x48\xb1\xe8\xd9\x56\xa5\x46\xdc\xaa\x34\x61\xa0\x05\x45\x95\xac\x95\xaa\xe5\x52\xc4\x84\x71\xb4\x03\x11\xcf\xd0\xef\xef\xa1\xc7\xb3\xf0\x45\xbc\xce\x53\x55\x88\x3d\x36\xea\x12\x78\x0b\x67\xdd\x01\x32\x0e\x47\x30\xf6\xb2\x10\xb9\xd2\x12\x6d\xfe\x72\xc7\xdf\x22\x79\x54\x17\x5c\x6f\x33\x46\x0a\x7d\x4f\xd3\x11\x76\xcc\x7e\xef\x77\xf7\x7f\x84\xeb\x63\xf4\xfa\x31\xa9\x78\xab\x39\x65\x8f\x00\x10\xf1\x09\x01\x9a\x8e\x0a\x99\x1b\xb2\xcb\x3a\x24\x54\xc7\xd6\x0e\x68\xb5\x12\x46\xae\x84\x86\x48\x95\x69\x4c\x67\xd1\xc9\x1e\xf3\x7b\xde\x70\x16\x84\xc1\x8b\x19\xee\xfd\x8a\xeb\xa4\xc1\xf5\xee\xc4\x1f\x22\xbe\x28\xb4\xb0\xbe\x9a\x67\x50\x66\x85\x88\xd4\x32\x93\xdf\x88\xb8\x7e\xc7\x70\x60\xd8\xbb\xe8\x7a\xbe\x6b\xf7\x73\xae\x8a\x48\x54\xc8\x32\x13\xb7\xdb\x93\xae\xab\x00\x5a\x19\x03\x3b\x9f\x7a\x3d\x37\x9c\x79\xc3\x67\xdd\xc0\x6d\x5a\x79\xaa\xae\x78\x0a\x2b\xfe\x9a\x1c\x11\x79\x67\x92\xa9\x5c\x21\x9c\x59\x34\x29\xe6\x16\x21\x14\x0e\xb4\x0e\x61\x25\x78\x86\x78\xc6\x8e\x64\xe3\xee\x97\x61\xcf\x73\xbb\xc1\x70\x3a\x09\x47\xc3\xf1\x10\x83\x61\xeb\x90\x9d\xc1\x58\x16\x05\xca\x62\x9d\x45\xf0\x75\x29\x4a\x01\xa9\xc8\x96\x26\x71\x40\x66\xb8\x9c\x16\x08\x98\x56\xdb\x51\xe4\xf2\x0d\x47\x83\x42\xc8\x25\xb3\x25\x1b\x0f\x3d\x6f\xea\x85\x5f\xcc\xdd\xb9\x1b\x8e\xdc\xc9\x80\x54\xf1\xb0\x82\x90\xdc\x44\x89\x8d\x1d\x1f\xa6\x9f\x97\x69\x0a\x85\xf8\xba\xa4\x10\xb3\x99\x71\xc7\x5a\xb3\xf9\x68\x14\x7a\xee\x17\x73\x0c\x1c\x1f\x58\xb1\x10\x0b\x51\x14\x22\x86\x91\x8c\x44\x86\x80\xd1\x28\xc8\x53\x84\x1d\xdc\x3a\x21\xa3\xf2\x1a\xc4\x23\x5e\x40\x84\x82\xd0\x68\x55\x6a\x03\x2b\x5a\x9e\xcc\x97\xf0\x12\x3a\x16\x95\x2d\xf6\x53\x4b\x0c\xb5\xbe\xf2\x0a\xcd\xc7\x6c\xe6\xb9\xe7\xae\xe7\xb9\xfd\x70\x34\xec\xb9\x13\xdf\xc5\x80\xdd\xcd\x79\x94\x88\x7a\x1f\x70\xd4\x3e\x70\x90\xf7\xd5\xef\x46\x60\xe0\x57\x32\x95\x86\xd4\x82\x30\x12\x8f\x8c\x8d\x36\x4d\x4d\x87\xab\xb5\x85\xa4\x79\xa1\x8c\x8a\x54\xba\x09\x11\x84\x36\x07\x24\xd5\x5a\x75\xdc\xec\x5d\xc2\x2b\xb9\xa4\x88\xd1\xd0\x99\xab\xb5\xcd\x23\xac\xa3\xaa\xdc\x82\x85\xba\xe8\x50\xc2\xf1\x70\xe0\x91\xd2\x34\x08\xf7\x54\x16\x95\x45\x21\xb2\x68\x8d\xd6\x59\x6a\x0b\xc0\x0b\x61\x0a\x29\x6e\x04\x44\x6a\xb5\x92\x46\x83\xcc\x16\xaa\x58\x91\xbe\xb6\x21\x48\xa4\x86\x1b\x5e\x48\xda\x54\x2c\x16\x32\x43\x5a\x28\x80\x5a\xb9\x2b\x48\x87\x62\xe1\xfa\x5a\xdb\x8c\xaa\x72\x38\x45\x99\xd5\xa2\x23\x6c\x8e\x36\xdc\x86\xb9\x2e\x79\x9a\xae\x1d\x7c\xce\xce\x2c\xde\x87\x58\xe4\x02\xb1\xc0\x02\x12\x75\x0b\x2b\x9e\xad\xa1\x37\x9b\x6b\xb8\x1f\xa9\x42\xe8\x07\x1b\xf8\xd6\x86\xa1\x55\x00\x3b\x0d\xf1\x8a\x8d\x55\xdf\x88\x02\x03\x18\xa5\x3b\x31\x9a\xd3\x60\x3a\xf0\xe1\x56\xa6\x29\xf0\xd2\x28\x3c\x11\xe2\x8a\x35\xc4\xc2\x88\xc8\x6e\x6a\xbb\x77\x5a\x8b\xf2\x8b\x0a\xfe\xe0\x5a\xac\x37\x1d\x8f\x87\x81\x1f\x9e\xbb\x41\xef\x22\xec\x4d\x27\xbd\xb9\xe7\xb9\x93\xde\x0b\x44\xb6\x3b\x6e\xb2\x2d\x62\xfc\x44\x6f\x39\x92\x9a\x6c\xbc\x8a\xc0\x88\x6a\x11\x1a\x6e\xf2\x56\x74\x60\x04\x44\x53\x99\x09\xb8\x2d\x78\x8e\x4c\xa7\xfd\xf4\x54\x2c\x2a\xcb\xb6\xf4\x30\x0d\xf2\x45\xce\x49\x01\x1a\xb4\x48\xc7\x38\xc9\x8c\xb7\x21\x50\x5b\x5a\x35\xf2\x93\x26\xc1\x68\xba\x99\xe3\xc0\x4f\x4a\xc2\x81\xa6\x9e\xc7\x08\xba\x3c\xf7\xba\xb3\xd0\xfd\x32\x70\x27\x98\x07\xa2\xf2\xb7\xcd\x6b\xe3\xb4\x57\xb1\xd3\x5e\xf1\xe2\x3a\x56\xb7\x19\xfe\xb2\x1f\xd7\x31\x82\xc5\x67\x3c\x95\xb1\x3d\x1f\xc2\xa0\xea\x68\x74\x26\x0e\x79\x21\x6e\xa4\xb8\x85\xee\x6c\x08\x5c\x6b\x15\x49\x8e\x08\x84\x76\x6c\x12\xb1\x72\xa0\xce\x20\x79\x2e\xf7\x6f\x0e\xf7\xeb\x55\x76\xce\x4a\xd2\x25\xcb\xa1\xbd\xea\x36\xba\x07\xa2\x6b\xf8\x15\xb2\x0b\xf9\x43\xab\xc3\xad\xca\xee\xd9\x82\x00\xba\x24\x64\xe3\x2e\xe7\x21\x56\x42\xe3\x10\xf2\x10\x68\xf0\xcf\x86\xee\x73\x32\x19\x44\x0b\x04\xde\xf0\xdc\xf5\x3e\x76\xe5\x5a\xe6\xa9\xe2\xf1\xe5\xd6\x32\x1b\x66\x48\xeb\xd8\x01\xba\x5d\x99\x61\x1f\x3a\x80\x00\xae\x01\x8b\x6b\x24\x2d\xd3\x75\x85\xb5\xaa\x39\x70\x3f\x6e\x22\x84\xa5\x30\x1a\xa2\x54\xf0\x4c\xc4\x78\x72\x0b\x32\xea\x12\x07\x39\xd4\x07\x2c\x70\xc7\xb3\x26\x6a\xd8\x37\xab\x7c\xbf\xa2\x87\xa1\x0b\xb7\x84\x41\xb4\x12\x0a\x2f\x04\xf0\x34\x55\xb7\xd6\xda\xaf\xea\xb5\x45\xec\x80\x68\x2f\xdb\x20\x57\x7c\x29\xf6\x7f\x92\x8b\xe5\xdf\xb6\x5f\xf3\x6c\xd9\x86\x91\x40\x61\x8a\x55\x6e\xd6\x55\x4c\x22\x22\x80\x66\xb9\xa8\x97\x60\xdd\xd1\x68\xfa\xdc\xed\x53\xfc\xf5\x29\x72\x8e\x2b\xa7\x40\xb0\x5b\x2d\x40\xf0\xda\x27\xcb\x0c\xc6\x4f\x98\x65\x78\xf7\x4b\x82\xdb\xd0\x81\x87\x8d\x39\x5b\x63\xb4\x2a\x4c\x81\x91\x36\x4b\x71\x10\xa7\xa2\x98\x8e\x19\x7b\x59\x8b\xaa\x21\x96\x84\x17\xb1\xb5\x82\xab\x42\xf0\xeb\xad\xf8\x6b\xf7\x78\xd1\xf5\xd0\xc7\x4f\xdc\xf0\x89\xe7\x76\x9b\x28\xbf\x36\x58\x1b\x1e\x30\x11\x6e\xf9\x51\x22\x56\x77\xf1\x90\x6b\x5c\xe4\xba\x4a\xad\x0a\x81\xae\x06\xc3\xdd\xb8\x56\x9e\x33\x82\x1a\x15\x38\x87\xa5\x34\xce\x8a\x2f\x33\x61\x98\xad\x8e\x85\x73\x6f\x14\xfa\xbd\x0b\x77\x5c\x71\xec\xfb\x78\x0b\xf4\xa4\xb4\x92\x88\xf7\x51\xef\xed\x3e\x1a\x4b\x7e\x2f\x17\x61\x49\xd4\xfe\x61\x5f\x35\x2c\x84\xeb\x8d\xf6\xdf\xe1\x27\x48\x68\xbb\x2e\xe2\x43\xde\x81\xb1\x97\x88\xb9\x2f\xad\x93\x28\x2d\x1e\xed\x52\x75\xa8\xd5\x53\x99\x29\x54\xda\xea\x22\x2b\x5b\xd3\x42\x2e\x65\x06\x89\xe0\xe4\xac\x1b\xb8\x91\xaa\x39\x0a\xfd\x88\x16\x99\x61\xdd\x5e\xcf\xf5\x7d\x74\xbe\x81\x37\x1d\x85\xa4\x73\xe1\xd4\x1b\x0e\xa8\xd2\xc1\x2c\xe0\x43\xb9\x6f\x44\x94\x2e\x55\x21\x4d\xb2\xd2\x84\xeb\x4d\x22\x64\xb1\x93\x13\x5a\x24\x03\xf7\x4b\x2d\x10\x73\x19\x05\x71\x1d\xce\x49\xaf\x1f\xb0\x97\x98\x7e\x57\x53\xc2\x6b\xb1\x0e\x51\x9f\xf5\x25\x73\xfb\x47\xc7\xc7\x87\x9f\x41\x07\x8e\x8e\x4f\x98\xdb\xeb\xfb\x5d\x80\xea\x97\x47\xdf\xe9\xd7\xc1\xa3\x53\xd6\xdf\xfc\x3c\x3c\x38\x7a\xc4\xd8\x4b\x34\xd6\x2b\xae\xc5\x65\xa3\xaa\xb8\x5a\xeb\xaf\x53\xaa\x2b\x2a\x6d\x96\x85\xd0\x16\x9c\xeb\xaf\x53\x69\xc4\xc3\x3d\x87\xa2\x1e\xc6\xd2\xaa\xc4\x80\x7b\x0d\x64\xff\x89\x15\xee\x78\xed\x7f\x31\x6a\x80\x8a\x27\x35\x10\x26\xb2\xac\xaa\xc0\x1c\x1e\x7d\x4a\x35\x98\xc3\xc7\x0f\x1f\x1e\x9c\xb0\xaa\x34\x8a\x70\x9c\x55\x95\xce\x42\x29\xc3\x66\x5d\xdf\x7f\xde\xaf\xe1\xef\xce\x8e\x32\x8c\xd5\xa2\x2e\x84\x5a\x56\xe1\xa6\x11\xf8\xc9\xa2\x4a\x28\x6e\x44\x21\x17\xeb\xd6\xa2\x4c\xd3\x3d\xe6\xfb\xa3\x4d\x59\xd4\x8e\xaf\xc9\xd6\x47\x23\xd1\xec\x19\x19\x5f\xed\x39\x54\x8e\xe1\x57\x5a\xa5\xa5\xd9\x66\x59\x19\x1d\x9e\xbc\x1e\xea\x67\x55\x54\x64\x4d\xd7\x87\x87\x68\xc7\x57\x8c\xbd\xe4\xf1\x4a\x92\x37\xa8\x81\x59\x21\x96\x65\xca\x0b\xb8\x8f\xc9\x10\xbd\x7d\x60\x93\xa1\x46\xb5\x44\x15\x4b\x9e\xc9\x6f\xb8\xad\xdc\x6c\xd2\x76\x77\x30\x1f\x75\xbd\x70\xea\x0d\x36\xd8\x7b\xe3\x2c\xd8\x4b\x2d\xa2\xb2\x90\x66\x7d\xc9\x86\x13\x3f\xe8\x8e\x46\x88\xbb\x9a\xde\xe4\x93\x4f\x6c\x81\xdc\xd6\xd1\x83\x29\x3c\x75\xdd\x19\xbc\x98\xce\x3d\x20\x7e\x63\xda\x07\x7e\xf7\xdc\xfd\xe4\x13\xe6\xbb\x3d\xcf\x0d\xc2\xa7\x2e\x02\x8a\x4f\x7e\xf0\xf9\x79\xdf\x7d\xee\xb9\xcf\xbd\xbf\xf9\xb7\xee\x63\x36\x58\x1a\x85\x89\x9c\x44\x47\xb3\x12\xe4\x1d\x63\xbe\xd6\x6c\x34\x1d\x0c\x27\xa1\xe7\x8e\xdd\xf1\x13\xd7\x0b\xfb\xdd\x17\x68\x94\x9f\xb2\xde\x74\xfa\x74\xe8\x52\x01\xbb\x21\xe6\x90\xdf\x0a\x4c\xa0\xea\xd7\x9b\x79\xcd\x31\x84\xea\x63\x89\x92\xaa\x86\xf9\x6e\x6f\xee\x35\x93\x1a\x0f\xe3\x90\xc6\xe4\x47\xbd\x5e\x23\xa6\x4a\x44\x66\xea\x6c\xd5\xda\xf1\xa6\xcc\x4e\xb5\x75\xfc\xc1\x3c\xf7\x99\xeb\xf9\x98\x24\x4d\xbf\x7c\x11\x76\xe7\xc1\x85\x3b\x09\x86\x3d\x9b\xd2\x54\x0a\xf8\x65\xeb\xb9\xfb\x04\x5f\xb5\xf0\x41\x55\x45\x97\x91\xb8\x64\xdd\x5e\x30\x7c\xe6\x86\xbd\x69\xdf\x0d\x47\xf8\x6d\x3c\x9c\xcc\x03\x8a\x03\x87\xa7\x07\xcc\x73\x7d\x17\xf3\x6d\x54\xdd\x0f\x0e\x3a\x83\x39\xed\xa6\xae\x38\xab\x6c\x21\x8b\x15\x88\xd6\x8a\xcb\x94\x1c\x54\x21\x96\x52\x1b\x5b\x6e\x61\x9e\x3b\x18\xfa\x81\xeb\x85\xee\xb8\x3b\x1c\x85\xd4\xcd\xf0\xc6\x3b\x45\x59\x61\x9d\x94\x0d\x89\x76\xb2\x28\x48\xa3\x49\xd3\x6a\xfd\xe2\x51\xa4\xca\xcc\x96\xaf\x9b\xea\x35\xf4\x83\xf7\xd0\x39\x6d\x91\xf2\x18\x2d\x97\x54\x67\x32\x0a\x08\xef\xf0\x6c\x6d\x12\x99\x2d\xdb\x0c\xd3\xa7\xa1\xe7\x86\xfe\x70\x30\x19\x4e\x42\x44\x31\x0d\x0a\x63\x3c\x4d\xa6\xaa\xaa\x4e\x23\xf0\x4d\xa6\xc1\xf0\xfc\x45\x88\xa7\x69\x0e\x47\x1c\x12\x0b\xc3\x65\xfa\x98\x5a\x14\xfa\xf1\xfe\xfe\x52\x9a\xa4\xbc\x6a\x47\x6a\x85\xb6\x25\x8d\x26\x13\xdb\x97\x5a\x97\x42\xef\x1f\x9e\x1c\xd7\x34\x3f\x26\xd5\xcd\x22\x1f\x1a\x3b\xfd\x10\x13\xaa\x50\x1e\xf1\xdc\x44\x09\x47\x0c\x28\x63\xab\x5e\xef\x49\xa9\xa2\xdd\xeb\xce\x82\xde\x45\xb7\xc6\x5c\xec\xe5\xad\xb8\x4a\x94\xba\x46\x57\x10\x10\x0a\xc2\xe0\x2d\x88\x6e\x6c\x7b\x21\xb5\x13\x28\xb5\xd8\x16\x46\xf0\x98\xe8\xd2\x74\xca\xa3\x6b\xfc\x12\x4b\x1d\xa9\x22\xde\x63\x15\xb6\x21\x2b\x71\x80\xde\x3b\x50\xbd\x65\x67\x70\xa1\xd4\x35\x25\x3e\x1f\xc9\x92\xab\x3d\x61\x34\x57\x77\xe5\xc6\x77\xa7\xc3\x7d\x91\xca\x1b\x51\x50\xce\x84\x48\x5e\x66\xa0\x45\xa4\xb2\x58\xb3\xbe\x8b\x6a\xee\x85\xc1\x70\xec\x4e\xe7\x01\x81\xa2\x33\xa0\xb8\x0a\x32\x23\x0f\x25\x1a\x15\x3e\xe4\x97\xff\x74\x38\x0b\x83\x91\x1f\x3e\x73\xbd\xe1\xf9\x8b\x06\xd3\x27\x1b\xd8\x95\x48\x4d\xb0\xb6\x91\x01\x12\xfc\x44\x0c\x97\xf3\x25\xfa\xde\xc1\x70\x32\x08\x27\xf3\x31\x6d\x93\x80\x98\x4c\x45\x71\xd9\xc0\xbe\x35\xd9\x27\xe5\x62\x41\xb5\x36\x8a\xb5\x88\xae\x12\x9e\x65\x22\x75\xe0\x5a\x88\x1c\x24\x39\x75\x49\x01\xdf\x76\x76\x20\x26\x1c\x7f\x9d\xa9\x5b\xb8\x45\xf0\x43\x2f\xdb\xcc\x77\x27\xfd\xf0\xc9\xfc\xfc\xdc\xf5\x90\x47\x96\x41\x75\xe6\x1f\x4b\x9d\xa7\x7c\x6d\x7b\x19\x64\xcf\xb6\x09\xe8\xcf\x9f\xfc\x8e\xdb\xb3\xad\x83\xba\x21\x48\xad\x03\xb2\x12\x5b\x5f\x62\x67\x30\x58\x91\xfa\xeb\x95\xc9\xdb\x4b\xfc\x8e\xaa\xff\xf8\xf8\xf4\x53\x76\x06\x5f\x7c\x51\xbd\xf8\xfa\x6b\x7a\xfa\xe8\x04\x99\x3c\x51\x46\x38\x75\x9e\x41\xc5\x51\x91\xc5\x15\xd8\xda\x7b\x74\x72\xbc\xe7\x80\x3f\x0e\x66\x55\xe2\x89\x70\x5b\x8b\x18\x53\x5e\x94\x3b\x75\x7a\x82\x91\x0f\x2a\xb3\x73\x8f\x4f\x3f\x45\x06\x14\x02\x81\x16\xc2\xb3\x98\x50\xaf\x77\xde\x83\x93\x47\x07\x9f\x6d\x72\xdd\x77\x0a\x62\x5b\x42\xd2\x54\x19\x6e\x7a\xcb\xd7\x7a\xb3\x5e\x15\xfb\x1b\xf1\xf0\xc2\x1d\x4d\x41\xe5\xc2\x9a\x8f\x8d\xaf\x89\xd2\x86\x1c\x36\xda\x48\x2c\x51\x5e\x22\x33\xed\x6d\x75\x02\xe7\x50\x1b\xc4\x02\xe3\xcd\x78\xb4\xa3\x5d\x82\x3b\x00\x8e\x8a\xcd\x36\x8d\x6e\x33\x1c\x47\xcd\x20\x1b\x6d\xc8\x7f\x92\xf7\xb4\x80\xc1\xf6\x56\x1a\xc5\x68\xd5\x3c\x71\x1b\xa6\x59\xba\x26\x7c\x60\x12\xa4\xac\x0a\xd0\x22\x5d\xb4\xd0\x49\x8a\xb8\x39\x51\x5b\x15\xaf\xd5\xdb\xba\x54\x88\x52\x29\x32\xd3\x1c\x87\xa0\x27\xec\xb9\x5e\x30\x3c\x47\x7f\xb5\x0d\x70\x77\xd4\x97\xad\x76\x7f\xac\xc0\x5c\x8d\xd8\x56\x98\x49\xbf\x6c\x1d\x3e\x8e\x0b\xa1\xb5\x43\xd2\x3c\x7e\x78\x74\x54\x55\x53\x2a\x97\x43\x28\x9b\x67\x20\x48\x6b\x37\x83\x55\x41\xc7\x7f\xb5\x87\xea\xbd\x07\x3f\xa2\xd7\x9f\x37\x6a\xfd\x3f\x7e\x05\xd6\x3a\xd9\xb9\x37\x1d\x57\x49\x17\x6e\x62\x1b\x73\x29\x12\xe5\x5c\xeb\x5b\xf4\x51\x36\xc6\x36\xf1\x1d\x32\xc6\x88\xd7\x66\x3f\x31\xab\x94\x12\xf1\xd4\x88\x22\xe3\x46\xde\x88\x8a\x38\x19\xac\xca\x0c\x02\xf0\x3a\x7f\x0a\xc6\x88\xbe\x03\xc4\x16\x18\x94\x1b\x98\x28\xe2\x51\xb2\x8b\x6b\xc5\x4a\x15\x6b\x8b\x11\x63\x89\x9e\x55\xd9\xa7\x34\x72\x6f\xb7\x4c\x5c\x0d\x66\xdd\x7e\x77\x16\x10\x1e\xb0\x4f\x6a\xc8\x58\xbd\xaf\x70\xe8\xa0\x67\x2b\x6d\x37\x3c\x6d\xb8\xc4\x1d\x8a\x27\x07\x6c\x38\x09\x5c\xef\x59\x17\x03\xde\xc9\x41\x4d\xc8\xee\xc5\x22\xcf\xc6\x5e\xb6\xed\x3b\xd2\xf0\x5a\x16\xec\x0c\x68\xc2\x63\xc8\x6c\x17\xb4\x63\xa2\xdc\xc1\x97\x9d\xc7\x27\x0f\x3f\xfd\xcc\xa9\x39\xdc\x59\xf1\x88\x17\x2a\x73\xe2\xab\xce\x81\x93\x2b\x95\x52\xba\xd0\x39\x3c\x38\x70\x64\x9c\x8a\xb0\xf2\xe0\x1d\x0b\x46\xea\x95\x1f\xc3\xab\x2d\x34\x3f\x3c\x3c\x3a\x3c\x7c\x55\x9b\x2d\x02\x20\xea\xde\xdf\xcd\x53\xcc\xe0\x2a\x96\xd6\xec\xbd\x8b\x9f\xf5\xe5\x8a\x26\x43\x67\x85\xba\x91\x08\xd4\x08\x05\x2d\x41\xe5\x16\xfc\x9e\x55\x43\x1e\x93\x69\xda\x4a\x4e\xb6\xae\x47\xad\x85\xc1\xbc\x56\xa6\xe2\x31\x54\x3b\xdb\xf6\x49\xaa\x3a\xc2\x2b\x42\xe4\xd5\x5b\xfd\xea\xff\x1b\xf7\x30\xb5\x79\x0c\x4b\xd5\xd2\x5f\xa7\xad\xb8\xc0\x10\xb9\x4f\x0f\x21\xd6\x59\xbd\x61\x6d\x30\x29\xaf\x77\x86\xf9\xcd\xe3\x7a\xbd\xcf\xeb\x3d\x86\x06\x1d\xe3\xab\x0d\x9b\xc2\xea\xde\x4a\x95\x5b\xd4\x27\xa1\xec\xda\x1e\x39\x52\xea\x5a\xda\xea\x72\x0d\x92\x2b\x08\x2d\xc3\x54\x5e\x8b\xd0\x62\x26\x76\x86\x6e\x1b\x23\x1a\xfa\xad\x9a\x5f\x98\xeb\x22\xca\xaa\xd4\xb8\xe9\x2e\xad\xfb\xf9\x00\xea\xae\x30\x91\x16\xa6\x5a\x7f\x67\x2e\xa1\x9e\xca\x40\x11\x0a\x5b\x2a\xdb\x12\x54\xbd\xf5\x41\x8f\x70\xc4\xc6\x74\x76\x88\x9c\x9e\x3c\x3a\x38\x60\x83\x5e\x58\x5b\x0d\x01\x0b\xe8\x54\x2f\xb6\x54\x52\xb9\xb0\x35\xdc\x3b\xa6\xfb\x2e\x5d\x24\x09\x47\xc3\x73\x77\x77\x3e\x7b\x99\xcb\xc8\x94\x05\x79\x88\x4d\xab\xd8\xd6\xc1\xf4\xa6\xc6\x83\x89\xfb\x0d\x37\xbc\xd0\xac\xfb\xac\x1b\x74\xbd\x70\x3e\x1b\x4d\xbb\xfd\x9d\x5a\x57\x3d\xe2\x0c\x7a\x89\xcc\x84\x16\x15\x9c\xa3\x14\xd9\xf6\xea\xf7\xe2\x52\xe9\xa4\x54\x7b\xb6\x16\xcc\xeb\xaa\x8e\x9d\x0a\x5a\x95\x45\x24\x1c\x40\x79\x59\xdc\xfb\x78\x7f\x3f\xca\xda\xcb\xc2\x0e\x20\xec\x6b\xbf\xee\xb3\x81\x57\x6d\xc5\x9f\xce\xbd\x1e\xe5\x4a\xd5\x30\x6a\x5a\x51\x69\x3c\x2d\xc5\x26\xd6\x2f\x54\x11\x6d\xea\x6c\xd4\xc5\x95\x19\xa8\xc5\x82\xca\x52\x2b\xba\x8f\x52\xc7\xd6\x9a\x74\x43\xd2\xe7\x22\xa6\xd6\x70\xcd\x08\x48\x95\xba\x2e\x73\x3c\xa2\x86\xfe\xc4\xaf\x0a\x15\x91\x42\x28\x50\x0d\xd9\x16\x58\xd9\x99\x05\x21\x14\x30\x10\xa9\x0a\xb1\x81\xf5\xb7\xb7\xb7\xed\x54\x5e\xd5\x47\x54\xc5\xf2\x7b\xec\x9f\xb6\xf5\xee\x01\x90\xa5\x83\x8a\x0e\xca\x3e\x96\xfa\x8a\xa7\x88\x38\x2a\x25\x3c\x77\xfb\xae\xd7\x0d\xdc\x7e\xb8\x39\x5f\x85\xcc\xb9\x31\x3c\x4a\x56\x22\x33\x97\x8d\xbb\x31\xdb\xa7\x3b\x50\xbd\x5d\x77\xf1\x08\xaa\xbf\x42\x12\xaf\xaa\x25\xde\xa9\xaf\x52\x63\x6f\x4b\xe4\x9d\x89\x56\x6b\xb6\xaf\x5f\xed\xd4\x0f\x1a\x2f\xd8\x19\x4c\x33\x3a\xde\x4a\x35\x4b\xa6\x98\x43\x7c\xa4\x52\xfa\x6e\x09\xf4\xee\x41\x54\xe3\x7c\xbf\x26\xba\xbb\xd7\x87\x47\xe3\x27\xac\x51\x1a\x7d\x54\x4d\xfb\x70\x59\x74\x77\xfe\xe1\xc1\x7b\x65\x52\x34\x55\x64\xb6\x9f\x8b\x48\x2e\xa4\xb0\x6d\xec\x2a\xc2\x23\xe3\x16\x65\x9a\xae\x41\x95\x26\x2f\x51\xef\x62\xc4\x51\xbb\x54\xbd\xf3\xde\xe1\xe1\xd1\xc3\x9a\x08\x4f\x6b\x10\x2a\xe2\xba\x46\x8f\x62\xeb\x4e\xfc\x61\xcf\x81\x79\x26\x5f\xf7\x39\x22\x64\xaf\xbc\x5a\x57\xdf\xce\x7b\xa7\x47\x47\xf5\xe7\x57\xf6\xcb\xf1\x81\x53\x93\xde\x7c\xb1\xaf\x1e\x3e\x7c\xf8\xd9\xe6\xcb\x84\x67\xca\x81\xa7\xd2\x44\x89\xc8\x1c\xf0\x0d\x5f\xe5\xd5\xc7\x58\xa6\xa9\xdc\x7c\x8f\x0a\x45\x71\x9d\x7e\xe2\xac\x2a\xe6\x93\x30\x9b\xf9\x0c\xbf\xc2\x5c\xaa\xc1\x86\xda\x4e\x30\xfb\x55\x29\xcf\x96\x68\x1e\xfb\xf9\xf5\x72\x1f\xb9\xb7\xff\x83\xfc\x7a\xd9\x8a\x54\xa6\x0d\x47\x2d\x39\x9f\x7a\xe3\x2e\x85\xe8\xfa\x2a\x07\x66\x13\x06\xb3\x3a\x8d\x22\xa2\xb6\x7b\xa1\xd9\xcb\x54\x2d\x2f\xd9\x3b\x97\x89\xaa\x5c\x13\xa9\xa9\x54\x54\x40\xa4\x0a\xe6\xcd\x00\x5e\x0f\xa8\x31\xac\x5a\xad\x38\xf9\xcc\xba\xca\xbb\x2a\x53\x23\xf3\xba\xfb\x52\xa9\x67\x3d\xcd\x21\x3d\xd9\x63\x55\xfd\xad\x7a\xfa\xff\x32\x23\xbb\x23\x19\xab\x41\x4a\x50\xf0\x88\x6a\x83\xc3\x6c\xa1\xf0\xf3\x39\x2f\x32\xfc\x74\x8b\x42\x15\xf8\xe5\x9c\x1b\x9e\xbe\x73\x60\x3b\x8b\x8d\xdc\x67\x2e\x22\x36\xfa\xc9\x6a\xd4\xb6\x61\x97\xf5\x3f\x59\xba\x26\xee\xb6\xab\xe7\xa8\xdf\x69\xa3\x5b\x41\x9d\xd8\x44\x14\xd2\xd4\xf4\x36\x94\x88\x2f\xef\x92\xc1\x87\xdf\x83\x46\xe5\x2f\xad\x7b\xd2\x75\x47\x51\xc4\x28\x71\x28\x94\x41\xb1\xdc\xd7\xb7\xa8\xa9\x64\xaa\x0a\x1d\x08\xe6\x7c\x15\xc2\x7a\xc0\x46\xd3\x41\xe8\x4d\x03\x9b\x72\x6c\xc2\xf3\x12\xbd\x0f\x11\x89\xb9\x4c\xd7\xac\xdf\x1d\x8e\x5e\xbc\x37\x6e\xe3\x3e\x74\x22\x17\x04\xce\x31\x9f\x4c\x6d\xa7\x6b\x87\x97\x47\xa7\x55\xbf\xe6\x10\x7e\xf4\x23\x38\x3a\x75\xe0\xe8\xf8\xa4\xe1\x58\x42\xff\x62\x78\x4e\xf7\xfb\x4e\x2b\xba\xe4\xdb\xb7\x4e\xa6\x41\x98\x26\x8d\x86\x13\x5b\x49\x3b\xa0\xff\x50\xd6\xaf\x73\x59\x90\xb7\x58\xd7\x3a\x6f\xd1\xe0\xfd\x58\xa4\xc2\x08\xe0\x0b\x23\x0a\x58\xf1\xd7\x34\xe4\x01\x91\xd9\xd4\x28\x37\x85\x60\xaa\xb4\xbc\x2b\x0d\x7a\xfa\xbd\xc4\xf1\xbc\x2a\xaa\xcc\xbd\x11\xb3\x37\x3b\x31\x11\x29\x54\xb3\x27\x54\x94\x59\x86\x32\xc0\xc7\x55\x77\x3a\x17\x85\x54\xb1\xed\x04\xdf\xd1\xb2\xf3\xca\xac\x39\x9a\xd2\x64\x6a\xc3\xd9\x92\x4d\x9b\x2e\xfc\x76\x83\x90\x12\xf0\x6d\x06\x74\x06\x73\xba\x09\x5b\x5d\xb8\xd0\x76\x27\x6d\x7b\x3d\x36\xac\x1e\x5e\x32\xbf\x77\xe1\xf6\xe7\x14\xc2\x3e\xb7\x4d\xbd\xc3\x83\x15\xa3\xd2\xea\xa6\xa7\x98\x08\x9e\x9a\xc4\xde\x64\xab\xc8\x14\x22\x57\xa1\x7d\x1e\xd2\xf3\xbb\x28\x1d\x3d\x4a\xd8\xb6\x1e\x74\x72\x80\x11\xad\x5b\x2c\x4b\x1b\x5a\xd1\xd9\x93\x1f\xc9\x62\xb8\xb7\x94\x06\x16\x3a\xba\xbe\x57\x7b\x8e\x56\xab\xcc\x0a\x0c\x4b\xc4\xb5\x56\xcb\xf0\xa5\x46\xef\x83\xbe\x91\x3c\xa8\xca\x36\x3e\x52\x9a\x96\x8e\x56\x04\x93\x62\x15\x69\x7a\x80\xc4\xf6\x0f\xdb\x9f\xb6\x8f\x59\xd7\x1b\xf8\xd6\xe4\x7a\x74\x17\xaf\xd1\x2d\xa5\x0b\x56\xda\xc8\xa8\x66\x0f\x9d\x25\xa4\xd3\xe1\x3b\x7d\xf9\x2e\x77\x49\x28\x77\x1f\x15\x17\x48\x05\xcf\xca\xbc\xb9\x04\x2f\xa2\x44\xde\x08\xdd\x64\x5c\xf5\x2c\x8c\xec\xf0\xf7\x16\xb1\x22\xbc\x7b\x95\x33\x08\x10\x35\xd7\x57\xf1\xb6\x57\x0c\xe5\xa2\x5e\xab\xd1\xa3\xab\x5a\xb7\x6c\x3a\xc2\x74\x22\xb8\xe8\xa2\x7f\xa4\xcd\xbe\x5c\x4a\xd3\xe8\x4e\x68\x48\xe4\x32\x49\xe5\x32\x21\x5b\xe6\x31\xa1\xdf\x2c\x86\x42\xac\xd4\x8d\xbd\x99\x94\x2d\xc5\xb6\x27\xd1\x1f\x9e\x9f\x87\x17\xc3\xc1\xc5\x68\x38\xb8\x08\x76\x8a\xbe\x4d\x80\x80\xa6\xac\x37\xd8\x05\x29\x37\xcd\x19\xb1\x5c\x2c\x17\x0b\x2a\x2b\x93\x51\x0e\x86\x81\x25\xdd\x34\xf2\xf7\xa8\x46\x09\x2f\x78\x64\x10\x67\x13\xc9\xb4\xd9\x6c\xfb\x38\x4d\xba\x55\xd5\xed\x05\xf6\x1a\xec\xf1\x1d\xc4\x2d\xa6\xd1\x89\xba\xcd\x3e\x42\xab\x06\x35\x36\xd8\x7c\x44\xad\x97\x51\x43\xa9\xf9\x72\x89\x89\x3c\x0a\xa9\xd5\x42\x8f\xfd\xdb\xe8\xf4\x32\xaa\x34\x7a\xd0\x0b\xb7\x4a\x3d\xdd\x54\xd0\xee\x28\xcb\xa2\x94\xdb\xd5\xf3\x4b\x66\xef\xe0\xb8\x64\x8c\x07\xd5\x5d\x2b\x7b\x43\x9f\xf5\x46\xd3\x89\x5b\x7d\x9f\xcd\x47\xa3\xea\xeb\xa0\x67\xcb\x15\xec\xa5\xf5\x18\x97\x8d\xcb\x6c\xcd\x9a\x47\xa2\xca\x42\xc3\x95\x30\xb7\x42\x54\xe5\x59\xeb\x2e\xfa\xee\x79\x77\x3e\x0a\xc2\x46\xf5\xe3\x14\x91\x77\x2e\x2f\xdf\x63\xbc\x34\x62\xa5\x2d\xf2\xb7\xd7\x62\x2d\xd8\xe7\xb6\xd2\x8b\xdc\xb7\x7f\xd9\xe1\xbb\xe1\x30\x70\xc7\x56\x7e\x8c\xbd\x2c\x89\xd6\xb6\x68\xbc\x73\xd1\x69\xd3\x2e\x47\x81\x5a\xed\x50\x19\x5d\x43\x4d\x91\xe5\x44\xda\xfd\x72\x36\x9a\x7a\x6e\xb8\x53\x4c\x3e\x3a\xd8\x21\x6a\x1b\x0e\x1f\x22\x47\x64\x86\xbe\x3f\x7f\x87\xc8\xe1\x2e\x91\xcd\xed\xbb\xea\x62\xd3\x2e\x11\x1e\x19\x79\x23\xcd\x1a\x16\x42\xc4\xec\xdc\x75\xfb\x74\x2f\xc1\xde\xf8\xa9\x08\x1e\x6f\xda\xd8\x6a\x01\x7b\x26\x11\x2b\xd1\x8a\x54\xaa\x8a\x3d\x58\x09\xc3\xc1\xf0\xa5\x63\x2f\x52\x5d\xad\xa1\x9b\xc5\x85\x92\x31\xfc\xb8\x03\xc7\x74\xe1\xbd\x8b\x1a\x4d\x3d\x0c\xa0\x49\x94\x73\xc2\x5e\xa6\xb2\xaa\x65\x5a\xb7\x52\xad\x14\xec\xdd\xf4\xc6\xdf\x41\x68\xb3\x4e\x37\x9d\x1a\xc4\xb0\xdb\x3e\x4d\x2c\x6e\x44\xaa\x72\x51\xe8\xf6\x52\xa9\xa5\xad\x0c\xee\xdf\x8a\xab\x7d\x1b\x72\xf4\xfe\xd1\xc1\xe1\xa3\xfd\xc3\xc3\x7d\xdf\xa2\xf5\xd6\x42\x15\xad\xc6\x01\x5a\x32\x6b\xf5\x92\x42\xad\x44\xeb\xe1\x67\xf4\xb2\xda\x3e\x0b\x2e\xdc\xb1\x1b\xf6\xa6\xa3\xa9\x17\x8e\xdd\xa0\x1b\x06\xdd\x01\x74\xe0\xd5\x0f\x16\x8b\xe3\x87\x8f\x1e\xbe\x6a\xa2\x11\x99\xc1\xd5\xda\x08\xbd\x35\x64\x9b\x3a\x6e\xab\xf2\xf7\x9b\x75\x82\xf1\x93\x0a\x0b\x0c\xfd\xd9\xa8\x6b\x4b\xa9\x75\xb6\x73\xfa\xf0\xf4\xf4\xe4\xe0\x94\x14\xac\xbd\xe9\xe6\x6e\x85\x59\xb5\x6d\x3e\xa2\x10\x73\xdf\xf5\x76\xf5\xe1\xf8\xe0\x7d\x4d\xfd\x28\x09\xcf\x9d\x4d\x3f\x4a\x22\x53\x46\x46\x7f\x8d\x62\x4e\xa6\xc1\xb0\xf7\xae\x7a\x1f\xef\x90\x69\x36\x9e\x3f\x4a\x6b\xea\x0d\xde\xdb\x0f\x71\x08\xd9\x71\x87\x1d\xfe\x96\xa7\x3b\xc4\x24\x51\x1e\x9e\x66\x97\x6c\xd4\x9d\xa0\x8f\x03\x91\xb5\xe6\xbe\xf3\x4d\xd2\xea\x4d\xf0\xdf\x8b\xa7\xf8\x6f\xf0\xdc\x89\x45\xab\xef\x3a\x8b\xa2\x75\xee\x39\x59\xda\x9a\x8c\x9c\xf4\xa6\x35\x7a\xe6\x14\x65\xcb\x9b\x3b\x3f\xe1\xad\xdf\x99\x39\x42\xb7\x5c\xdf\xc9\x4d\xeb\x89\xe7\xe4\x69\x6b\x36\x72\xae\x96\xad\x27\x03\x47\x9a\xd6\x30\x70\x16\xb2\x75\x3e\x74\x4c\xd1\x0a\x3c\x27\xd2\xad\xde\x57\x8e\x2e\x5a\xfe\xcc\xd1\x37\x2d\xdf\x75\xae\x55\xeb\xa9\xe7\x2c\x53\xa4\x50\x5e\xb7\xe6\x5d\xba\xa8\x80\x3b\x72\xb3\x65\x2a\x75\xe2\xfc\xc5\xbf\xff\xe9\x9f\xff\xe9\x3f\xf9\xf3\x5f\xfe\xf1\x77\xbf\xf7\x77\x9d\xbf\xf8\xd5\xcf\xfe\xf2\xdf\xfe\x53\xfb\xe3\xaf\x7e\xf3\xf7\xfe\xf2\xdf\xfc\xf3\xef\x7e\xf9\x1f\xfe\xea\x37\x7f\xff\xdd\x17\xff\xe3\x1f\xff\xe2\xbb\x5f\xfd\x57\x7c\xd1\x17\xa5\xd1\x51\xe2\x9c\x17\x3c\xfb\xf6\x0f\xb9\xd4\xce\x44\xc4\xa2\x48\x79\x16\x6b\x67\xc4\xcd\x8d\x14\x7f\xf6\xf3\xd2\x79\xf3\x2f\xdf\xfe\x9d\xb7\x3f\x7b\xfb\xb3\x37\xbf\x7e\xf3\xcb\x37\xbf\x72\xbe\xfb\xfd\x7f\xfd\xdd\x1f\xfc\xbb\xff\xf9\x47\xff\xc2\x71\x75\xce\xbf\xfd\x13\x95\x3a\x33\x55\x98\x72\x59\x7e\xfb\x47\x1a\x62\x05\x4f\x0a\xae\x25\x3e\x4c\xf5\xb5\x74\xde\xfc\xc9\xdb\x7f\xf0\xe6\xbf\xbc\xf9\x8f\x6f\x7e\xf1\xf6\xa7\x96\x86\x33\x34\x3c\x95\x98\xc6\xfa\xa5\x5a\xf1\x94\xcb\x4c\x64\x4e\xf0\xed\x6f\x8a\xeb\x6f\xff\x50\x38\xff\xfd\x1f\x89\x3f\xfb\xb9\x91\x19\x77\xde\xfc\xfc\xed\x4f\xdf\xfc\xb7\x6a\x92\x7f\x23\x32\x7d\xcd\x9d\xff\xf3\xcf\xfe\xe0\x7f\xfd\xe7\x3f\xfe\xdf\xbf\xf7\x9f\x9c\x01\x4f\xc5\x52\x39\x6f\xfe\xd5\x9b\x5f\xbf\xfd\xe9\x9b\x5f\xbc\xfd\xfd\x37\x7f\xfa\xf6\x67\x6f\xff\xe1\x9b\x5f\xbf\xf9\x05\xb3\x79\xa2\x6d\x6f\xa2\xf5\x63\x08\xca\x65\x74\x2d\x0a\x2b\xdd\x36\x3e\xc4\xd4\xf6\x92\x91\x78\x49\xcc\x8c\x64\x0c\x1d\xf8\x26\x61\x24\x68\xfa\xda\x0a\x9e\x33\xfa\x77\xf3\x8b\x04\x4f\x7f\xde\xc6\x48\xfa\x08\x3e\x0a\x46\x2a\x00\x1d\xc8\x52\x46\x7a\x00\x1d\x48\x6f\x18\x29\x03\x74\xa0\x28\x19\x69\x04\x74\xe0\x27\x9c\x91\x5a\xe0\x9a\x9a\x91\x6e\x40\x07\xe8\x93\x91\x8e\xe0\xaf\x94\x91\xa2\x40\x07\xae\x96\x8c\xb4\x05\x3a\x20\x0d\x23\x95\xc1\x05\x25\x23\xbd\x21\x48\xc8\x48\x79\x30\xb3\xc5\x4f\x46\x4a\x04\x1d\xd0\x05\x23\x4d\xc2\xaf\x37\x8c\xd4\x09\x3a\x70\xad\x18\xe9\x14\x74\x60\x99\x32\x52\x2c\xe8\x40\x79\xcd\x28\x8f\xa9\xaf\x3f\xad\x78\x9e\xd3\x1f\x85\xa8\x06\x30\x8b\x52\x4e\x4d\x00\x42\x13\x6d\xa3\x56\x69\x47\x66\x92\xbd\xdc\x8c\x68\x57\xd3\x2e\x19\x7b\xa9\x30\xfd\xbd\x64\xfe\xc5\xf4\x79\x78\x3e\x9d\x06\xae\x17\x3e\xf1\xec\xcd\xfa\x06\x5a\xf3\x13\x75\x0b\x37\xa2\xa8\x0a\xc2\xef\x56\x25\x28\xd1\x40\x28\x33\x50\xf5\x85\xd0\x85\x52\x46\x14\x3b\x74\x9f\xb9\x5e\xf5\x17\x7b\x75\x12\x89\x54\xa9\xba\xdb\xfc\x93\x06\xfb\x97\x09\x55\xe5\xf9\x03\xa4\x02\x77\x3c\x1b\x75\x03\x37\xa4\x42\x6b\x55\xb4\x25\xaa\xff\x37\x00\x00\xff\xff\x7e\x13\x80\xc0\x1c\x3a\x00\x00") func confAppIniBytes() ([]byte, error) { return bindataRead( @@ -307,7 +307,7 @@ func confAppIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/app.ini", size: 14777, mode: os.FileMode(420), modTime: time.Unix(1487479541, 0)} + info := bindataFileInfo{name: "conf/app.ini", size: 14876, mode: os.FileMode(420), modTime: time.Unix(1487726358, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4327,7 +4327,7 @@ func confLocaleLocale_bgBgIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 88845, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_bg-BG.ini", size: 88845, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4347,7 +4347,7 @@ func confLocaleLocale_csCzIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_cs-CZ.ini", size: 62719, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_cs-CZ.ini", size: 62719, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4367,7 +4367,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 62951, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_de-DE.ini", size: 62951, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4387,7 +4387,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 59014, mode: os.FileMode(420), modTime: time.Unix(1487565563, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 59014, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4407,7 +4407,7 @@ func confLocaleLocale_esEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 64166, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_es-ES.ini", size: 64166, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4427,7 +4427,7 @@ func confLocaleLocale_fiFiIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fi-FI.ini", size: 60936, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fi-FI.ini", size: 60936, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4447,7 +4447,7 @@ func confLocaleLocale_frFrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 64265, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_fr-FR.ini", size: 64265, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4467,7 +4467,7 @@ func confLocaleLocale_glEsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_gl-ES.ini", size: 62838, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_gl-ES.ini", size: 62838, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4487,7 +4487,7 @@ func confLocaleLocale_itItIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 61201, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_it-IT.ini", size: 61201, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4507,7 +4507,7 @@ func confLocaleLocale_jaJpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 68039, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ja-JP.ini", size: 68039, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4527,7 +4527,7 @@ func confLocaleLocale_koKrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ko-KR.ini", size: 63957, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ko-KR.ini", size: 63957, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4547,7 +4547,7 @@ func confLocaleLocale_lvLvIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 63932, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_lv-LV.ini", size: 63932, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4567,7 +4567,7 @@ func confLocaleLocale_nlNlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 60009, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_nl-NL.ini", size: 60009, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4587,7 +4587,7 @@ func confLocaleLocale_plPlIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 61535, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pl-PL.ini", size: 61535, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4607,7 +4607,7 @@ func confLocaleLocale_ptBrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 62001, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_pt-BR.ini", size: 62001, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4627,7 +4627,7 @@ func confLocaleLocale_ruRuIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 89168, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_ru-RU.ini", size: 89168, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4647,7 +4647,7 @@ func confLocaleLocale_srSpIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_sr-SP.ini", size: 81427, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_sr-SP.ini", size: 81427, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4667,7 +4667,7 @@ func confLocaleLocale_svSeIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_sv-SE.ini", size: 59975, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_sv-SE.ini", size: 59975, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4687,7 +4687,7 @@ func confLocaleLocale_trTrIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_tr-TR.ini", size: 61421, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_tr-TR.ini", size: 61421, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4707,7 +4707,7 @@ func confLocaleLocale_ukUaIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_uk-UA.ini", size: 88009, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_uk-UA.ini", size: 88009, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4727,7 +4727,7 @@ func confLocaleLocale_zhCnIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 56339, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-CN.ini", size: 56339, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4747,7 +4747,7 @@ func confLocaleLocale_zhHkIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 56437, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-HK.ini", size: 56437, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } @@ -4767,7 +4767,7 @@ func confLocaleLocale_zhTwIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 55952, mode: os.FileMode(420), modTime: time.Unix(1487697391, 0)} + info := bindataFileInfo{name: "conf/locale/locale_zh-TW.ini", size: 55952, mode: os.FileMode(420), modTime: time.Unix(1487697535, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/modules/setting/setting.go b/modules/setting/setting.go index f0960aef5..7652e0eb4 100644 --- a/modules/setting/setting.go +++ b/modules/setting/setting.go @@ -107,15 +107,6 @@ var ( UsePostgreSQL bool UseMSSQL bool - // Webhook settings - Webhook struct { - QueueLength int - DeliverTimeout int - SkipTLSVerify bool - Types []string - PagingNum int - } - // Repository settings Repository struct { AnsiCharset string @@ -146,6 +137,15 @@ var ( RepoRootPath string ScriptType string + // Webhook settings + Webhook struct { + Types []string + QueueLength int + DeliverTimeout int + SkipTLSVerify bool + PagingNum int + } + // Markdown sttings Markdown struct { EnableHardLineBreak bool @@ -579,6 +579,8 @@ func NewContext() { if err = Cfg.Section("http").MapTo(&HTTP); err != nil { log.Fatal(2, "Fail to map HTTP settings: %v", err) + } else if err = Cfg.Section("webhook").MapTo(&Webhook); err != nil { + log.Fatal(2, "Fail to map Webhook settings: %v", err) } else if err = Cfg.Section("markdown").MapTo(&Markdown); err != nil { log.Fatal(2, "Fail to map Markdown settings: %v", err) } else if err = Cfg.Section("admin").MapTo(&Admin); err != nil { @@ -822,15 +824,6 @@ func newNotifyMailService() { log.Info("Notify Mail Service Enabled") } -func newWebhookService() { - sec := Cfg.Section("webhook") - Webhook.QueueLength = sec.Key("QUEUE_LENGTH").MustInt(1000) - Webhook.DeliverTimeout = sec.Key("DELIVER_TIMEOUT").MustInt(5) - Webhook.SkipTLSVerify = sec.Key("SKIP_TLS_VERIFY").MustBool() - Webhook.Types = []string{"gogs", "slack", "discord"} - Webhook.PagingNum = sec.Key("PAGING_NUM").MustInt(10) -} - func NewService() { newService() } @@ -843,5 +836,4 @@ func NewServices() { newMailService() newRegisterMailService() newNotifyMailService() - newWebhookService() } diff --git a/routers/org/setting.go b/routers/org/setting.go index 1cd9fc160..4949c3a0c 100644 --- a/routers/org/setting.go +++ b/routers/org/setting.go @@ -18,9 +18,9 @@ import ( ) const ( - SETTINGS_OPTIONS base.TplName = "org/settings/options" - SETTINGS_DELETE base.TplName = "org/settings/delete" - SETTINGS_HOOKS base.TplName = "org/settings/hooks" + SETTINGS_OPTIONS base.TplName = "org/settings/options" + SETTINGS_DELETE base.TplName = "org/settings/delete" + SETTINGS_WEBHOOKS base.TplName = "org/settings/webhooks" ) func Settings(ctx *context.Context) { @@ -140,6 +140,7 @@ func Webhooks(ctx *context.Context) { ctx.Data["PageIsSettingsHooks"] = true ctx.Data["BaseLink"] = ctx.Org.OrgLink ctx.Data["Description"] = ctx.Tr("org.settings.hooks_desc") + ctx.Data["Types"] = setting.Webhook.Types ws, err := models.GetWebhooksByOrgID(ctx.Org.Organization.ID) if err != nil { @@ -148,7 +149,7 @@ func Webhooks(ctx *context.Context) { } ctx.Data["Webhooks"] = ws - ctx.HTML(200, SETTINGS_HOOKS) + ctx.HTML(200, SETTINGS_WEBHOOKS) } func DeleteWebhook(ctx *context.Context) { diff --git a/routers/repo/webhook.go b/routers/repo/webhook.go index 542fa6354..07b9432b2 100644 --- a/routers/repo/webhook.go +++ b/routers/repo/webhook.go @@ -23,9 +23,9 @@ import ( ) const ( - HOOKS base.TplName = "repo/settings/hooks" - HOOK_NEW base.TplName = "repo/settings/hook_new" - ORG_HOOK_NEW base.TplName = "org/settings/hook_new" + WEBHOOKS base.TplName = "repo/settings/webhooks" + WEBHOOK_NEW base.TplName = "repo/settings/webhook_new" + ORG_WEBHOOK_NEW base.TplName = "org/settings/webhook_new" ) func Webhooks(ctx *context.Context) { @@ -33,6 +33,7 @@ func Webhooks(ctx *context.Context) { ctx.Data["PageIsSettingsHooks"] = true ctx.Data["BaseLink"] = ctx.Repo.RepoLink ctx.Data["Description"] = ctx.Tr("repo.settings.hooks_desc", "https://github.com/gogits/go-gogs-client/wiki/Repositories-Webhooks") + ctx.Data["Types"] = setting.Webhook.Types ws, err := models.GetWebhooksByRepoID(ctx.Repo.Repository.ID) if err != nil { @@ -41,7 +42,7 @@ func Webhooks(ctx *context.Context) { } ctx.Data["Webhooks"] = ws - ctx.HTML(200, HOOKS) + ctx.HTML(200, WEBHOOKS) } type OrgRepoCtx struct { @@ -57,7 +58,7 @@ func getOrgRepoCtx(ctx *context.Context) (*OrgRepoCtx, error) { return &OrgRepoCtx{ RepoID: ctx.Repo.Repository.ID, Link: ctx.Repo.RepoLink, - NewTemplate: HOOK_NEW, + NewTemplate: WEBHOOK_NEW, }, nil } @@ -65,7 +66,7 @@ func getOrgRepoCtx(ctx *context.Context) (*OrgRepoCtx, error) { return &OrgRepoCtx{ OrgID: ctx.Org.Organization.ID, Link: ctx.Org.OrgLink, - NewTemplate: ORG_HOOK_NEW, + NewTemplate: ORG_WEBHOOK_NEW, }, nil } diff --git a/templates/.VERSION b/templates/.VERSION index e59573ffe..f3c32f846 100644 --- a/templates/.VERSION +++ b/templates/.VERSION @@ -1 +1 @@ -0.9.165.0220 / 0.10 RC \ No newline at end of file +0.9.165.0221 / 0.10 RC \ No newline at end of file diff --git a/templates/org/settings/hook_new.tmpl b/templates/org/settings/webhook_new.tmpl similarity index 80% rename from templates/org/settings/hook_new.tmpl rename to templates/org/settings/webhook_new.tmpl index 076df3fc8..fddfb87e6 100644 --- a/templates/org/settings/hook_new.tmpl +++ b/templates/org/settings/webhook_new.tmpl @@ -17,12 +17,12 @@