aboutsummaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
authorᴜɴᴋɴᴡᴏɴ <u@gogs.io>2020-02-22 09:05:26 +0800
committerGitHub <noreply@github.com>2020-02-22 09:05:26 +0800
commit648d9e253c1924b832248f26fee42b2fb64dc3bc (patch)
tree51649fad974cd7284a47d30e412c90e7ab72cd2c /internal
parent5b14cc6f0b7b661beb2640a94bd15660cdb48587 (diff)
conf: overhaul server settings (#5928)
* conf: rename package * Requires Go 1.12 * Fix lint * Fix lint * Overhaul * db: fix tests * Save my work * Fix tests * Server.UnixSocketPermission * Server.LocalRootURL * SSH settings * Server.OfflineMode * Save my work * App.Version * Remove [server] STATIC_ROOT_PATH * Server.LandingURL
Diffstat (limited to 'internal')
-rw-r--r--internal/assets/conf/conf_gen.go16
-rw-r--r--internal/assets/templates/templates_gen.go8
-rw-r--r--internal/auth/auth.go8
-rw-r--r--internal/cmd/admin.go21
-rw-r--r--internal/cmd/backup.go28
-rw-r--r--internal/cmd/hook.go12
-rw-r--r--internal/cmd/import.go13
-rw-r--r--internal/cmd/restore.go40
-rw-r--r--internal/cmd/serv.go40
-rw-r--r--internal/cmd/web.go172
-rw-r--r--internal/conf/computed.go116
-rw-r--r--internal/conf/conf.go (renamed from internal/setting/setting.go)801
-rw-r--r--internal/conf/static.go107
-rw-r--r--internal/conf/static_minwinsvc.go (renamed from internal/setting/computed_minwinsvc.go)4
-rw-r--r--internal/conf/utils.go27
-rw-r--r--internal/context/api.go12
-rw-r--r--internal/context/auth.go24
-rw-r--r--internal/context/context.go26
-rw-r--r--internal/context/notice.go6
-rw-r--r--internal/context/org.go4
-rw-r--r--internal/context/repo.go6
-rw-r--r--internal/cron/cron.go26
-rw-r--r--internal/db/action.go22
-rw-r--r--internal/db/attachment.go4
-rw-r--r--internal/db/git_diff.go4
-rw-r--r--internal/db/issue.go6
-rw-r--r--internal/db/issue_mail.go4
-rw-r--r--internal/db/login_source.go6
-rw-r--r--internal/db/migrations/v15.go18
-rw-r--r--internal/db/migrations/v16.go4
-rw-r--r--internal/db/migrations/v18.go10
-rw-r--r--internal/db/milestone.go6
-rw-r--r--internal/db/mirror.go6
-rw-r--r--internal/db/models.go20
-rw-r--r--internal/db/pull.go13
-rw-r--r--internal/db/repo.go65
-rw-r--r--internal/db/repo_editor.go8
-rw-r--r--internal/db/ssh_key.go34
-rw-r--r--internal/db/ssh_key_test.go4
-rw-r--r--internal/db/two_factor.go6
-rw-r--r--internal/db/user.go50
-rw-r--r--internal/db/webhook.go14
-rw-r--r--internal/db/webhook_discord.go12
-rw-r--r--internal/db/webhook_slack.go12
-rw-r--r--internal/db/wiki.go4
-rw-r--r--internal/mailer/mail.go22
-rw-r--r--internal/mailer/mailer.go18
-rw-r--r--internal/markup/markdown.go22
-rw-r--r--internal/markup/markdown_test.go8
-rw-r--r--internal/markup/markup.go8
-rw-r--r--internal/markup/markup_test.go4
-rw-r--r--internal/markup/sanitizer.go4
-rw-r--r--internal/route/admin/admin.go65
-rw-r--r--internal/route/admin/auths.go10
-rw-r--r--internal/route/admin/notice.go8
-rw-r--r--internal/route/admin/orgs.go4
-rw-r--r--internal/route/admin/repos.go10
-rw-r--r--internal/route/admin/users.go24
-rw-r--r--internal/route/api/v1/admin/user.go4
-rw-r--r--internal/route/api/v1/convert/utils.go6
-rw-r--r--internal/route/api/v1/repo/commits.go6
-rw-r--r--internal/route/api/v1/repo/issue.go4
-rw-r--r--internal/route/api/v1/repo/key.go4
-rw-r--r--internal/route/api/v1/repo/repo.go4
-rw-r--r--internal/route/api/v1/user/email.go4
-rw-r--r--internal/route/api/v1/user/key.go4
-rw-r--r--internal/route/dev/template.go12
-rw-r--r--internal/route/home.go16
-rw-r--r--internal/route/install.go119
-rw-r--r--internal/route/org/members.go4
-rw-r--r--internal/route/org/org.go4
-rw-r--r--internal/route/org/setting.go8
-rw-r--r--internal/route/repo/commit.go22
-rw-r--r--internal/route/repo/download.go4
-rw-r--r--internal/route/repo/editor.go26
-rw-r--r--internal/route/repo/http.go12
-rw-r--r--internal/route/repo/issue.go36
-rw-r--r--internal/route/repo/pull.go24
-rw-r--r--internal/route/repo/release.go18
-rw-r--r--internal/route/repo/repo.go14
-rw-r--r--internal/route/repo/setting.go16
-rw-r--r--internal/route/repo/view.go8
-rw-r--r--internal/route/repo/webhook.go6
-rw-r--r--internal/route/user/auth.go70
-rw-r--r--internal/route/user/home.go20
-rw-r--r--internal/route/user/profile.go6
-rw-r--r--internal/route/user/setting.go28
-rw-r--r--internal/setting/computed.go12
-rw-r--r--internal/ssh/ssh.go10
-rw-r--r--internal/template/highlight/highlight.go4
-rw-r--r--internal/template/template.go20
-rw-r--r--internal/tool/tool.go22
92 files changed, 1379 insertions, 1254 deletions
diff --git a/internal/assets/conf/conf_gen.go b/internal/assets/conf/conf_gen.go
index 7c41238f..2175c755 100644
--- a/internal/assets/conf/conf_gen.go
+++ b/internal/assets/conf/conf_gen.go
@@ -1,6 +1,6 @@
// Code generated by go-bindata. DO NOT EDIT.
// sources:
-// ../../../conf/app.ini (16.969kB)
+// ../../../conf/app.ini (17.682kB)
// ../../../conf/auth.d/github.conf.example (181B)
// ../../../conf/auth.d/ldap_bind_dn.conf.example (719B)
// ../../../conf/auth.d/ldap_simple_auth.conf.example (761B)
@@ -213,7 +213,7 @@
// ../../../conf/locale/locale_cs-CZ.ini (70.566kB)
// ../../../conf/locale/locale_de-DE.ini (71.043kB)
// ../../../conf/locale/locale_en-GB.ini (63.539kB)
-// ../../../conf/locale/locale_en-US.ini (66.204kB)
+// ../../../conf/locale/locale_en-US.ini (66.202kB)
// ../../../conf/locale/locale_es-ES.ini (71.938kB)
// ../../../conf/locale/locale_fa-IR.ini (90.359kB)
// ../../../conf/locale/locale_fi-FI.ini (68.026kB)
@@ -309,7 +309,7 @@ func (fi bindataFileInfo) Sys() interface{} {
return nil
}
-var _confAppIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x7b\x5b\x8f\xe4\x48\x76\xde\x7b\xfc\x8a\x98\x5a\x8f\xa7\x7b\xc1\xcc\xba\x75\xd5\xf4\x74\x6d\x0a\xc3\xca\x64\x65\x51\x9d\xb7\x21\x99\x7d\x99\x46\x81\x1d\x45\x46\x26\x63\x92\x64\x70\x18\xc1\xaa\xce\x81\x21\xcc\x40\x0f\xb2\x0d\xeb\xc9\xb6\x04\x03\x82\x01\xc1\xb0\x05\xc8\x96\xbd\x82\x6d\x60\xb5\x5e\xc1\x0f\x23\xbd\x77\xff\x07\x61\x57\x32\x6c\xe8\x2f\x18\xe7\x04\x99\xc9\xec\xae\xee\x9d\x35\xec\x27\x77\x03\x95\x4c\x32\x78\x22\xe2\x5c\xbf\x73\x4e\xe4\x8f\xe8\x47\x1f\x7d\x44\x27\xce\x13\xc7\xa3\xf8\x67\x3c\x1d\xb8\x17\xcf\x69\x70\xe9\xfa\xf4\xc2\x1d\x39\xf0\x9c\x98\x51\xb3\x91\x63\xfb\x0e\x1d\xdb\x8f\x1d\xda\xbf\xb4\x27\x43\xc7\xa7\xd3\x09\xed\x4f\x3d\xcf\xf1\x67\xd3\xc9\xc0\x9d\x0c\x69\x7f\xee\x07\xd3\x31\xed\x4f\x27\x17\xee\xf0\x6d\x0a\xee\x05\x7d\x3e\x9d\x53\xdb\x73\xe8\xcc\xee\x3f\xb6\x87\xf0\xc6\xcc\x9b\x3e\x71\x07\x8e\x67\xed\x4c\x30\x7d\x0a\x94\x67\xcf\xe9\xf4\x82\xba\x01\xd2\x20\x67\xd4\x2e\x0a\x9a\xb3\x8c\x53\x9d\x30\x4d\x55\x22\x6f\x15\x95\x39\xe5\x37\xbc\x5c\xd3\x82\x2d\x39\xd5\x42\xa7\x9c\xd8\xb3\x59\x38\xb1\xc7\x0e\xed\xd1\xa1\x5c\x2a\x72\x46\x83\x84\x9b\x37\xe5\x82\xea\x84\x53\xb5\x56\x9a\x67\xb4\x52\xbc\x34\xc4\xca\x2a\x57\x66\xb0\x37\x9f\x84\x73\xdf\xf1\x68\x8f\x2e\x85\x26\x67\xd4\x11\x3a\xe1\x25\xdd\x8b\xf9\xcd\x9e\x45\xf7\x8a\x52\xc6\x7b\x54\x96\x74\x4f\x73\xa5\xf7\x70\xfc\x78\x3a\x80\xc9\x62\x7e\x43\xc8\x0b\xc5\xcb\x1b\x5e\x5e\x91\x99\x37\x0d\xa6\xfd\xe9\x88\xf6\x68\xa2\x75\x41\x06\xd3\xb1\xed\x4e\x68\x8f\xa6\x32\x62\x69\x22\x95\x26\xde\x74\x1a\x84\x73\x0f\x86\x7c\x7c\xaf\x19\x7f\x5f\x3d\xda\xdf\xff\xf8\x9e\x19\x7e\x5f\x3d\xfa\xf8\xde\x65\x10\xcc\xc2\xd9\xd4\x0b\xee\xab\x7d\x82\x5f\xec\xc1\x00\x16\x78\xd0\xc5\xff\x64\x33\x80\xf6\xe8\xf1\xc1\xc1\x01\x39\xa3\x33\x5e\x66\x42\x29\x21\x73\xba\x90\x25\xad\x72\xf1\x8a\x2a\x19\xad\xb8\x26\xf3\x89\xfb\x2c\xf4\xa7\xfd\xc7\x4e\x10\xce\x1c\x6f\xec\xfa\xbe\x3b\x85\x85\x9d\x9e\x9e\x92\x33\x3a\x82\xe5\xd1\x7b\x83\xf1\x97\xf7\x29\xac\x0d\x5e\x07\xce\xd0\x5b\x59\xae\x78\xa9\xe8\x3d\x55\x45\x09\x65\x8a\xfa\xfe\x25\xad\x8a\x98\x69\x7e\x9f\xb2\x28\xe2\x4a\x89\x7c\x49\x6f\xf9\x35\x05\x1e\x88\x88\x77\xc9\x19\x75\x73\x9a\x49\xa5\x69\xc4\x14\x57\x74\x2d\x2b\x1a\x4b\x9a\x4b\x4d\x73\xce\x63\xaa\x25\x8d\x12\x96\x83\xe8\x12\x4e\x63\xbe\x60\x55\xaa\xe9\x0d\x4b\x2b\x7c\xd9\x4e\x35\x2f\xa9\xd0\x54\xe6\xe9\x9a\x8a\x05\xbc\x5f\xe2\xbc\x86\xcb\x34\x97\x31\xa7\x42\x21\x41\x14\x2c\x08\x99\x29\x0a\x1c\xc1\x87\x5d\x32\x9a\xf6\xed\x51\xf8\x21\x56\x6f\x58\xfa\x2e\xb7\xcf\xe8\x40\x28\x76\x9d\x72\x9c\x74\xc1\x99\xae\x4a\x4e\x6f\x13\x9e\xe3\x94\xec\x86\x89\x14\x1e\x93\x81\xeb\xdb\xe7\x23\x27\x84\x61\x3d\xba\x60\xa9\xe2\xe4\x8c\x3e\x4d\x38\x2a\x4f\xa5\x38\xbd\xae\x44\xaa\x45\xde\x5e\xbd\x84\x0d\xe8\x2e\xf1\x03\xdb\x0b\xe0\xd5\xd0\x77\xbc\x27\xa8\x7b\x0d\x85\x81\xcc\x98\xc8\x6b\xb5\x97\xf4\x9a\x53\xfe\xaa\x90\x8a\xc7\xb4\x26\x15\xa5\x32\xe7\x20\x28\x02\xef\x6f\x94\x6c\xab\x40\xa0\x0c\xb2\xd4\x34\xaf\xb2\x6b\x50\xf7\x5f\x4f\xa4\xd6\xa4\xa3\x23\x72\x46\x27\x5c\x83\xdc\xa9\xc8\x35\x2f\x17\x2c\xba\x73\x1f\xa9\x50\x9a\xe7\x60\x8c\xf8\xfe\xc8\xf5\x03\x67\x12\x5e\x4e\xfd\xa0\xa5\xa4\xbb\xcb\xf8\xc1\x54\xea\xc5\x7c\x7c\xaf\x59\x19\xee\xc8\x93\x52\xd3\x82\xe9\x04\x2c\x1a\x68\xc4\xa2\xe4\x91\x96\xe5\xda\xda\x68\x91\x50\xf4\x93\xdf\xd9\xef\x2a\x95\x7c\x62\xd1\xeb\x4a\xa3\xf2\x25\xec\x06\x19\x09\x12\xf9\x64\x3f\x91\x19\xdf\x5f\x0a\x6d\x46\x75\x71\x5e\xd4\x94\x99\x1d\x5c\xd2\x1e\xaa\x6f\x2c\x22\xa6\x51\xe6\x28\x4a\x2d\x69\xc9\x6f\x4b\xa1\x39\x65\x95\x4e\x64\x29\xbe\xe1\x71\xb8\xe2\x6b\x45\xc1\x29\x69\x56\x6a\x8b\x8a\x65\x2e\x4b\x1e\x1b\x45\xb9\x5b\xf8\xc4\x73\x9e\x7a\x6e\xe0\x84\xf6\x3c\xb8\x9c\x7a\xee\x97\xce\x20\x7c\xec\x3c\xf7\x43\x3b\x08\x51\x1f\x5a\x4a\xd0\x4f\xa4\x54\xc6\x44\x22\x51\x24\x60\x84\x5a\x52\x55\x15\x05\x70\x14\x0c\x14\x85\x28\xf3\x9c\x47\x5a\xc8\x5c\x91\xad\x2e\x85\x7d\x77\x76\xe9\x78\x3e\xed\x51\xc6\xd5\xe1\xd1\xc3\x4e\xa4\x4b\x0b\xaf\x3f\x3b\xda\x5c\x1f\x9d\x9c\x6e\xef\x1f\x3d\xec\x2c\xa3\xec\x73\x59\xf0\x5c\xa9\xa4\x1b\xc9\xcc\xa2\xac\x8c\x16\xb2\x2a\x8f\x4e\x4e\x37\xd7\x87\x47\x0f\xd1\x3e\x6a\xc6\xa3\x2d\x97\x1c\x78\xa5\x79\x56\xc8\x92\x95\x6b\xba\x10\x29\x57\x86\x0d\xe0\x2e\x69\x51\x5d\xa7\x22\x5a\xd1\x15\x5f\xd3\x0a\xdd\x85\x52\x49\x67\xc5\xd7\x4b\x9e\x5b\xe4\xac\x2d\xbb\xda\x47\x6f\x69\x6d\x44\x6c\xe4\xf4\xd8\x79\x1e\x06\x8e\xdf\x92\xd5\x0c\xf4\x01\x18\xb3\x25\xb9\xa3\x0c\xdb\xfb\x9f\x50\x96\xc7\x34\xe5\x10\x45\x78\x9a\xd2\x85\xc8\x63\x2a\x2b\x4d\x6f\x13\x11\x25\x14\x8c\x01\x76\xc3\xd2\x74\x33\xd7\x10\x74\x11\x67\x6a\xd1\x7f\x8f\x82\x44\x09\x8f\x56\x34\x13\xb9\xc8\xaa\x0c\xf7\xaa\xc4\x37\x9c\xde\x0a\x9d\xd0\x48\x96\x25\x57\x85\xcc\x63\xd8\xbd\x5e\x17\x9c\x8c\xdd\x89\x3b\x9e\x8f\x71\x47\xbe\xfb\xa5\x13\xf6\x2f\x9d\xfe\xe3\xb6\x13\xa8\x7d\x50\x7f\x30\x81\x68\x97\x83\xd9\xd6\x81\x28\x93\x31\x27\xd3\x8b\x8b\x91\x3b\x71\x9a\x38\x64\x5e\x6b\x3c\x92\x37\x9d\x07\x8e\x17\x8e\xa6\xc3\x16\xc5\x21\xcf\x79\x09\xab\x56\x9a\x17\xea\x11\x39\xa3\xff\x80\x76\xf7\x97\xe0\xe6\x23\x5e\x6a\xda\x89\x58\x4f\x97\x15\xa7\x9d\xb8\x2a\x19\xe8\x54\xef\xe1\xa7\xa7\x07\xc9\x41\x76\xa0\x68\x07\x82\x57\x2f\x5b\xc3\x47\x97\xbf\x62\x59\x91\x72\xd0\x12\x72\x46\xce\xe8\xb4\xa4\x8b\x52\x66\x94\xd1\x6e\xb1\x78\x85\x0a\x80\xde\xa6\xd4\x3c\x36\x4f\x40\x8d\x9f\x8a\x3c\x86\xf0\x0d\x93\x89\x85\x61\xa0\xd2\xb2\xe4\xf4\x5e\x2c\xc9\x19\x3a\xd7\x85\x2c\x97\x5c\x03\x3f\xcd\xfb\xf8\x62\x51\x8a\x1b\x18\xbc\xe2\xeb\xfb\x66\xd9\x46\x4d\x53\x5a\xac\x22\x75\x78\x44\x3b\x22\x47\xaa\x38\x7b\x07\x64\x6a\xbe\xf1\x8c\x76\x72\x09\x76\xfa\xc3\xde\x5a\xf1\x75\xf3\x12\x3c\x50\x70\x11\x73\x45\xfa\x8e\x17\x84\x88\x6c\x7a\x34\xaa\x94\x96\xd9\x3e\x84\x77\xb5\xdf\x4c\x43\x40\x8c\x77\x0d\xa8\x29\x62\x58\x4b\xe5\x2d\x8f\x69\x30\xf2\xe9\x0d\x2f\x31\x4a\x63\xcc\x53\x8f\xa8\xef\x8f\x8e\x0f\x2c\x78\x74\x58\x7f\x1c\x9a\x8f\x23\x12\x8c\xfc\x70\xec\x4e\xc2\x27\x8e\x57\x47\x6c\x1c\x05\xd0\xc8\xc9\x51\x41\xb4\xa4\xa9\x64\x31\x65\x4a\x71\xad\xe8\x3d\xd1\xe5\x5d\xba\x17\xc9\x7c\x01\xd0\x05\x4c\x29\x65\x9a\x2b\xc4\x31\x68\x89\x7b\xf7\x8d\x4c\x62\xa1\xc0\xc7\x2b\xcd\x59\x0c\x2e\x95\x67\xd7\x3c\x8e\x79\x4c\xaf\x45\x1e\x33\xcd\x20\x8c\xda\x83\xd0\xf6\x7d\x27\xf0\xc3\x0b\x6f\x3a\x0e\x07\xae\xdf\xd6\x51\x80\x58\xf1\xd6\x17\x00\xa8\x8a\x64\xae\x99\xc8\x55\x7b\x66\x34\xbc\x66\xf2\x2e\x3d\x5f\x37\x16\x6a\x41\x98\x17\x0a\x85\x0c\x11\x07\xac\xa3\x6d\xf1\x81\x1d\xb8\xfd\xb7\x9c\xf3\xa0\x36\x6e\x0c\x04\xe0\x06\x01\x21\xc2\x72\x11\x02\x0e\xec\xc0\x6e\x4c\x16\x6f\x22\x82\x4c\x41\xd9\x80\xe1\x29\xbf\xe1\x29\x1d\x7e\xe9\xce\x1a\x4f\x4a\x9c\x09\x5a\x0c\xde\xdb\xee\x6c\xc4\x8c\xad\x22\xc2\x5c\x60\xcc\xce\x3b\xa9\x5c\x2e\x79\x8c\x08\x52\x59\x34\x62\x39\x44\xd5\x3d\x88\x27\x06\x1c\xf2\x57\x45\x2a\x4b\xbe\x47\x46\x36\x42\xe3\x70\x66\x0f\x41\x23\x60\x04\x21\x2f\x4a\x5e\x48\x25\x60\x6b\x57\x3b\xd1\x0c\xc8\x83\x1d\xc0\x7c\x9b\x31\x82\xab\x4f\x14\x6e\x61\xc7\x9f\xed\xfd\x0e\x1a\x6c\xa7\x3d\x6e\x0f\x31\x25\x32\x07\x04\xa2\xa2\x52\x14\x1a\xbd\x4c\x13\x65\xeb\xbd\x2a\x8b\x2a\x99\x71\x2d\x32\xae\x68\x24\xab\x34\xc6\x0d\xa8\x64\x8f\xf8\x7d\xcf\x9d\x05\x61\xf0\x7c\x06\x0b\xbe\x66\x2a\x69\xb1\xda\x9e\xf8\x2e\x40\xb6\x52\x71\x13\x79\x58\x4e\xab\xbc\xe4\x91\x5c\xe6\x10\x09\x9b\x67\x04\x06\x86\xfd\x4b\xdb\xf3\x1d\xb3\x9e\x0b\x59\x46\xbc\x06\xeb\x39\xbf\xdd\x6e\x6f\x5d\x63\x92\xda\xb4\xc9\xc5\xd4\xeb\x3b\xe1\xcc\x73\x9f\xd8\x81\xd3\xf6\x59\xa9\xbc\x66\x29\xcd\xd8\x2b\x74\xab\x18\x6b\x50\x90\x22\x03\x84\xb8\x68\x53\x2c\x0c\xe8\x2a\x2d\xda\x39\xa4\x19\x67\x39\x40\x44\x33\x92\x8c\xed\x67\x61\xdf\x73\xec\xc0\x9d\x4e\xc2\x91\x3b\x76\x21\xd4\x76\x0e\xc9\x19\x1d\x8b\xb2\x04\x01\xac\xf3\x88\x7e\x5d\xf1\x8a\xd3\x94\xe7\x4b\x9d\x58\x54\xe4\x30\x9d\xe2\x80\x41\xb3\xed\x28\x0c\x60\x10\xf2\x15\x05\x14\x2b\xf2\x25\x19\xbb\x9e\x37\xf5\xc2\x2f\xe6\xce\xdc\x09\x47\xce\x64\x88\xfa\x77\x58\xa3\x72\xa6\xa3\xc4\x44\xc2\xf7\xd3\x2f\xaa\x34\xa5\x25\xff\xba\xc2\x80\xb9\x79\xe3\x8e\xb9\x66\xf3\xd1\x28\xf4\x9c\x2f\xe6\x10\x06\xdf\x33\x63\xc9\x17\xbc\x04\x2c\x32\x12\x11\xcf\x01\x83\x6b\x49\x8b\x14\x90\x1c\x33\x2e\x55\xcb\xa2\xc9\x8b\x00\x82\x01\xe8\x03\xb4\x99\x55\x4a\xd3\x0c\xa7\x47\x27\x8e\x10\x14\xdc\xa4\xcc\x17\xfb\xa9\x21\x06\xaa\x5e\xfb\xb8\xf6\x6d\x32\xf3\x9c\x0b\xc7\xf3\x9c\x41\x38\x72\xfb\xce\xc4\x77\x00\x7e\xd8\x05\x8b\x12\xde\xac\x83\x1e\x75\x0f\x2c\xe0\x7d\xfd\xbd\x15\xe6\xd8\xb5\x48\x85\x46\xb5\x40\xd8\xc9\x22\x6d\x62\x67\x5b\xd3\xe9\xf5\xda\xa0\xfc\xa2\x94\x5a\x46\x32\xdd\x04\x3c\x04\xf0\x43\xb7\x0d\xa0\x6a\xf7\xd8\x22\x9c\x89\x25\xc6\xbf\x96\xce\x5c\xaf\x4d\x6a\x86\x96\xd8\xf8\x02\x93\x3d\x80\x17\x09\xc7\xee\xd0\x43\xa5\x69\x23\x33\x99\x47\x55\x59\xf2\x3c\x5a\x83\x49\x56\xca\xe4\x34\x25\xd7\xa5\xe0\x37\x9c\x46\x32\xcb\x84\x56\x54\xe4\x0b\x59\x66\xa8\xaf\x5d\x1a\x24\x42\xd1\x1b\x56\x0a\x5c\x54\xcc\x17\x22\x07\x5a\x20\x80\x46\xb9\x6b\x94\x0c\x62\x61\x6a\xa5\x6a\x7f\x6a\xbc\x4c\x59\xe5\x8d\xe8\x30\xdd\x01\x1b\xee\xd2\xb9\xaa\x58\x9a\xae\x2d\xb8\x4f\xce\x4c\x38\xa1\x31\x2f\x78\x8e\x0e\x3d\x91\xb7\x34\x63\xf9\x9a\xf6\x67\x73\x45\xef\x45\xb2\xe4\xea\xfe\x06\x11\x77\xa9\x6b\x14\xc0\xbc\x06\xe8\xcb\x44\xde\x6f\x78\x09\xe1\x18\x33\xc8\x18\xcc\xc9\x64\x82\x22\x4d\x01\xfd\x4a\xd8\x11\xa0\x24\xf0\xe2\x9a\x47\x66\x51\xdb\xb5\xe3\x5c\x98\xb2\xd5\x60\x0e\xe6\x22\xfd\xe9\x78\xec\x42\x14\x71\x82\xfe\x65\xd8\x9f\x4e\xfa\x73\xcf\x73\x26\xfd\xe7\x90\x2c\x6c\x85\x55\x72\x98\x11\x01\x0e\x3a\x9a\x92\xdd\xa2\x22\x36\x92\xf1\xec\xa7\x18\x66\x43\xcf\x99\x0c\x1c\x6f\x17\xfc\xb4\x3d\x6c\x97\xc7\xf0\x09\x8e\x76\x24\x14\x7a\x8a\x1a\x95\x40\xba\x01\x70\x79\x53\x50\x00\x37\x88\x19\x42\x2a\x72\x4e\x6f\x4b\x56\x80\xe8\x70\x57\x7d\x19\xf3\xda\x3f\x18\x7a\x90\x9f\xfa\xbc\x60\xa8\x46\x2d\x5a\xa8\xa9\x0c\x25\xcf\xba\x34\x90\x5b\x5a\x0d\x1a\x16\x3a\x01\x84\xb1\x79\xc7\xa2\x5f\x55\x88\x8d\x75\xf3\x1e\x41\x38\xf7\xd4\xb3\x67\xa1\xf3\x2c\x70\x26\x10\xee\xc1\x84\xba\xfa\x95\xb6\xba\x59\x6c\x75\x33\x56\xae\x62\x79\x9b\xc3\x37\xf3\xb1\x8a\x01\x40\x3f\x61\xa9\x88\xcd\xfe\x80\x73\xf5\xd6\x70\x4f\x8c\x16\x25\xbf\x11\xfc\x96\xda\x33\x17\x20\x82\x8c\x04\x03\x54\x86\x2b\xd6\x09\xcf\x2c\xda\xa4\xf6\xac\x10\xfb\x37\x87\xfb\xcd\x2c\x3b\x7b\x35\x48\x05\xcc\x05\xd7\xaa\xba\xe0\x64\x90\xae\x66\xd7\xc0\x2e\xe0\x8f\x91\xdb\xad\xcc\x3f\x31\x95\x1a\x70\x6c\xc0\xc6\x5d\xce\xd3\x58\x72\x05\x43\xd0\xcf\x80\xdb\x78\xe2\x3a\x4f\x51\xbc\x28\x5a\x90\x29\xec\xbb\x59\xc7\xae\x5c\xab\x02\xc0\xce\x55\x5b\x65\x36\xc6\x8c\xf3\x98\x01\xaa\x5b\xab\xcc\x80\xf6\x28\x80\xda\x56\xaa\xd0\x64\x17\x22\x5d\xd7\xf8\xb3\x7e\x87\xde\x8b\xdb\xe0\x62\x09\x70\x2a\x4a\x39\xcb\x01\x13\xad\x8d\x19\x88\xa6\xf6\x84\x6e\xf9\x3e\x09\x9c\xf1\xac\x0d\x38\xf6\x75\x56\xec\xd7\xf4\x20\x00\xc2\x92\x20\x14\xd7\x42\x61\x25\xa7\xac\x46\x82\x26\x02\x9a\xb1\x3c\xb6\x28\xef\x2e\xbb\x54\x64\x6c\xc9\xf7\xbf\x2a\xf8\xf2\x1f\x99\xcb\x22\x5f\x76\xe9\x88\x83\x30\x79\x56\xe8\x75\x1d\xd9\x90\x08\x05\xe3\x5e\x34\x53\x10\x7b\x34\x9a\x3e\x75\x06\x18\xc5\x7d\x8c\xbf\xe3\xda\xb5\x60\x2a\x02\x10\x8f\x35\x9e\x5d\xe4\x74\x7c\x4e\x0c\xc3\xed\x67\x98\x82\xd0\x1e\x3d\x6e\xbd\xb3\x35\x69\xa3\xc2\x18\x5e\x71\xb1\x18\x4d\xe1\x55\x10\xd3\x09\x56\xe9\xb4\x66\x51\x92\xf1\x5c\x83\x13\x81\xb0\xa5\x8c\xfd\xf2\x14\x22\x9c\x02\x11\xe2\x55\x97\x6d\x46\x5e\xb5\x6a\x25\xdb\xbb\x0a\x59\xc4\x51\xb6\x71\xb7\x81\x20\x18\xc0\x5e\x82\x1c\x5f\xbe\x47\xae\x08\x4b\xb6\x54\xde\x7a\x13\x25\xd3\x7a\xfc\x92\xb4\x45\xd6\x7a\x00\xc9\x4c\x8e\x21\x2e\x93\x6d\x51\x81\x04\x3f\x20\xa1\xb7\x59\x4f\x7f\xbc\xff\x63\xc3\xca\x77\x59\xbf\xbb\xb4\xe3\xa3\xf1\x39\x69\x4b\xe0\xa8\x7e\xef\xfd\xec\xdf\x25\x70\x78\xb0\x23\x0e\x48\x0d\x5e\x34\xa6\xd3\x32\x93\x84\x95\xb1\xf1\x4a\xd7\x25\x67\xab\xad\x39\x36\xae\xf5\xd2\xf6\x20\x72\x4f\x9c\xf0\xdc\x73\xec\x36\xca\x6f\x1c\xa8\x09\xfa\x74\xee\x8d\x3a\x7e\x94\xf0\xec\x2e\x9d\x66\x0a\x26\x59\xd5\xe9\xbf\x71\xe7\x00\x62\xc6\x8d\x31\x9f\xa1\xa4\xea\x04\x92\x2e\x85\xb6\x32\xb6\xcc\xb9\x26\xa6\x8c\x1c\xce\xbd\x51\xe8\xf7\x2f\x9d\x71\xad\xc1\x3f\xc4\x7b\x5f\x37\x81\x83\xc7\xfb\xe0\x87\xcc\x3a\x5a\x53\xfe\x20\x97\x5d\xc7\x9e\xda\x5f\xef\xcb\x96\xc7\x62\x6a\xe3\x8d\xee\xf0\xdb\x68\x44\xbb\x2e\xfb\x7d\xde\x9a\x90\x17\x2a\x63\xa5\x5e\x17\x2c\xd7\xea\xaa\xa5\xcb\x86\xd9\x17\x9e\xdd\x0f\x6a\x22\xa8\xdd\x03\xdb\xbf\x74\x36\xdf\x46\x76\xe0\x3c\x0b\x77\xef\xd9\x93\xe1\xc8\x19\x84\x5f\xcc\xa7\xc1\xf6\x26\x79\x01\xe9\xe7\x95\x89\x0d\x95\x89\xa5\x36\x56\x6b\x3b\x7d\x99\xeb\x52\xa6\x1d\xcc\x47\x3b\xd3\x52\x2c\x45\x4e\x13\xce\x30\xd2\xb7\x32\x0d\xac\xae\x4a\x08\x1f\x8a\xe7\x9a\xd8\xfd\xbe\xe3\xfb\x10\xb9\x03\x6f\x3a\x0a\x51\xdf\xc3\xa9\xe7\x0e\xdd\x09\xed\x11\x93\x2c\x80\x76\x6d\x14\x21\x5d\xca\x52\xe8\x24\x53\x98\xfd\xe9\x84\x8b\x72\xa7\x3a\x62\x50\x30\xbd\x57\x29\x0e\x78\x5d\x4b\xc8\x47\x0d\x62\x43\x73\xbb\x4f\x5e\x28\x95\x74\xeb\x57\xc2\x15\x5f\x87\x60\x4a\xc0\xb4\xc1\xd1\xc9\xc9\xe1\x67\xb4\x47\x8f\x4e\x4e\x89\xd3\x1f\xf8\x36\xa5\xf5\x37\x0f\xaf\xf1\xdb\xc1\x83\x87\x64\xb0\xf9\x7a\x78\x70\xf4\x80\x90\x17\x60\xef\xd7\x4c\xf1\xab\x56\x91\x3f\x5b\xab\xaf\x53\x4c\x8f\xa5\xd2\xcb\x12\x12\x56\xc8\xe6\xd4\xd7\xa9\xd0\xfc\x78\xcf\x42\xc4\x04\x38\xac\x2e\xb6\xc1\x5a\x03\x31\x38\x37\x2a\x34\x5e\xfb\x5f\x8c\x5a\x80\xf4\xbc\x49\xa2\x90\x2c\xa9\x0b\xa2\x87\x47\x9f\x62\x49\xf4\xf0\xd1\xf1\xf1\xc1\x29\xa9\x3b\x15\x90\xca\x91\xba\xf1\x50\x4a\xa9\xc9\xcc\xf6\xfd\xa7\x83\x26\x75\xda\x59\x51\x0e\x38\x8f\x37\x7d\x09\xc3\x2a\x58\x34\x24\x0d\xa2\xac\x33\xd0\x1b\x5e\x8a\xc5\xba\xb3\xa8\xd2\x74\x8f\xf8\xfe\x68\xd3\xa5\x30\xe3\x1b\xb2\xcd\xd6\x4c\x62\xae\x45\x7c\xbd\x67\x61\xc9\x92\x5d\x2b\x99\x56\x9a\x9b\x00\x88\x36\x0c\x9b\xc7\x58\x07\x56\x50\xd7\xf8\x77\xbc\x27\x6c\xa2\x1b\x5f\x13\xf2\x82\xc5\x99\x40\x9f\xd3\x80\xfa\x92\x2f\xab\x94\x95\xf4\x1e\x64\xcf\xf8\xf4\xbe\xc9\x9e\x5b\x75\x43\x59\x2e\x59\x2e\xbe\x61\xa6\x86\xb9\x29\x60\x39\xc3\xf9\xc8\xf6\xc2\xa9\x37\xdc\xe4\x6d\x2d\xa0\xa7\x78\x54\x95\x42\xaf\xaf\x88\x3b\xf1\x03\x7b\x34\x02\xcc\xde\xf6\x59\x1f\x7d\x64\xfa\x55\xa6\xad\x15\x4c\xe9\x63\xc7\x99\xd1\xe7\xd3\xb9\x47\x91\xdf\x03\x3b\xb0\xa9\x6f\x5f\x38\x1f\x7d\x44\x7c\xa7\xef\x39\x41\xf8\xd8\x01\x30\xfa\xd1\x8f\x3e\xbf\x18\x38\x4f\x3d\xe7\xa9\xf7\x0f\x7f\x7c\x0f\x42\x5b\xa5\x25\x64\xfe\x02\xdc\x59\xc6\xd1\x29\xc7\x6c\xad\xc8\x68\x3a\x74\x27\xa1\xe7\x8c\x9d\xf1\xb9\xe3\x85\x03\xfb\x39\x98\xdf\xa7\xa4\x3f\x9d\x3e\x76\x1d\xec\x27\xb5\xc4\x1c\xb2\x5b\x0e\xc9\x77\xf3\x78\xf3\x5e\x7b\x0c\x66\x84\xb1\x00\x49\xd5\xc3\x7c\xa7\x3f\xf7\xda\x09\xb1\x07\xe8\x43\x41\xe2\x2c\x5f\xad\xb1\x1a\xcd\x73\xdd\x94\x37\x8c\x19\x6f\xba\x5e\xd8\xea\x82\x2f\xc4\x73\x9e\x38\x9e\x0f\x09\xf6\xf4\xd9\x73\xac\x3e\x3b\x93\xc0\xed\x9b\x74\xb8\x56\xc0\x67\x9d\xa7\xce\x39\x3c\xea\xc0\x8d\x9d\xfa\x12\x24\x06\x91\x94\x2b\xc1\x4d\x7e\x56\x57\x3f\x91\xbe\x61\x8d\xd2\x4c\x57\x6a\x9b\x40\x01\x6b\xfc\xc0\x0e\xe6\xe0\x32\x60\x27\x9b\x2d\xdc\xf1\xac\xe1\x01\x92\x0a\x6b\x52\xa6\xa9\x26\x22\x7e\x45\xc0\x27\x3e\x71\xc2\xfe\x74\xe0\x84\x23\xb8\x1a\xbb\x93\xb9\xf1\x76\x87\x0f\x0f\x88\xe7\xf8\x4e\x10\x1a\xd3\x79\xef\xa0\x33\x3a\x47\x6e\x34\x0d\x28\x99\x2f\x44\x99\x51\xde\xc9\x98\x48\x6b\xac\xb2\x14\x4a\x9b\xc2\x27\xf1\x9c\xa1\xeb\x07\x8e\x17\x3a\x63\xdb\x1d\x85\xd8\xdc\xf4\xc6\x3b\x3d\x1a\x6e\x7c\xa4\x01\x62\xe6\x65\x40\x32\x79\x4c\x51\xd3\x1b\xfd\x66\x51\x24\xab\xdc\x74\xb3\xda\xea\xed\xfa\xc1\x3b\x99\x25\x2e\x11\x73\x70\x25\x96\x58\xf1\xd5\x92\x22\xca\x66\xf9\x5a\x27\x22\x5f\x76\x09\xa4\xfe\xae\xe7\x84\xbe\x3b\x9c\xb8\x93\x10\xb0\x73\x8b\xc2\x18\x76\x93\xcb\xba\xbe\xda\x0a\xef\x93\x69\xe0\x5e\x3c\x0f\x61\x37\xed\xe1\x00\x72\x62\xae\x99\x48\x1f\x61\xc7\x52\x3d\xda\xdf\x5f\x0a\x9d\x54\xd7\xdd\x48\x66\x60\xdb\x42\x2b\x34\xf1\x7d\xa1\x54\xc5\xd5\xfe\xe1\xe9\xc9\x26\x1b\xfb\x80\x56\x6d\x26\x79\xdf\xd8\xe9\xfb\x98\x50\xab\x5d\xc4\x0a\x1d\x25\x0c\x32\x0f\x11\x1b\xf5\x7e\x47\x4a\x35\xed\xbe\x3d\x0b\xfa\x97\xf6\x36\xf8\xdd\xf2\xeb\x44\xca\x15\xb8\xa2\x00\xb1\x77\x0b\x53\x9a\xd6\x68\xe3\x84\x2a\xc5\xb7\x95\x3c\xd8\x26\xb8\x54\x95\xb2\x68\x05\x17\xb1\x50\x91\x2c\x63\x73\x99\x2f\x35\x4b\x57\x7b\xa4\x81\x78\x30\xda\xa2\x38\xd6\xa2\xf5\x48\xb8\x30\xe3\xc8\x19\xbd\x94\x72\x85\xa9\xfc\x07\xea\x3e\xf5\x4a\x01\xc9\xc8\xbb\xaa\x3d\x77\x17\x78\x06\x3c\x15\x37\xbc\xc4\x2a\x00\x64\x95\x60\x80\x3c\x92\x79\xac\xc8\xc0\x01\xe5\xf7\xc2\xc0\x1d\x3b\xd3\x39\x86\x9e\x93\xa6\xfa\x4c\x45\x8e\x8e\x93\xb7\x4a\xf0\xc0\x46\xff\xb1\x3b\x0b\x83\x91\x1f\x3e\x71\x3c\xf7\xe2\x79\x4b\x16\x93\x0d\x08\x4d\x84\xc2\x1c\xab\x55\xd4\xc0\x5c\x08\x50\x6d\xc1\x96\x10\x12\x86\xee\x64\x18\x4e\xe6\xe3\x2d\x0a\x15\x29\x2f\xdf\x05\x39\x67\xf4\xbc\x5a\x2c\xc0\x75\x18\x08\x00\xd0\x32\x61\x79\xce\x53\x8b\xae\x38\x2f\xa8\xc0\x58\x63\x4a\xc3\xa6\xff\x4b\x63\x4c\x2a\x57\xb9\xbc\xa5\xb7\x80\xfc\xf0\x61\x97\xf8\xce\x64\x10\x9e\xcf\x2f\x2e\x1c\x0f\x98\x64\x38\x54\x57\xc0\xc4\x2b\x00\x2f\x05\xa0\x3a\x34\x79\xac\x9d\x54\xd7\x5f\x41\x04\x07\x20\x4c\xfc\xf9\xf9\x6f\x3b\xfd\x20\x9c\x79\xce\x85\xfb\x8c\xf6\xe8\xcb\x17\x1f\xdf\x6b\xce\x11\xdc\x57\x57\xf4\x65\x63\x50\x75\xf7\xee\x8c\x0e\x33\xb4\x14\x95\xe9\xa2\xbb\x84\x6b\xb0\x92\x47\x27\x0f\x3f\x25\x67\xf4\x8b\x2f\xea\x07\x5f\x7f\x8d\x77\x1f\x9c\x02\xe3\x27\x52\x73\xab\x49\x84\xb1\xa3\xc1\xf3\xb8\x46\x9f\x7b\x0f\x4e\x4f\xf6\x2c\xea\x8f\x83\x99\x6f\xea\x2b\xd7\xe8\x54\xe3\x2e\x9d\x63\x9f\x0c\x7b\x82\xc1\xc8\xa7\x32\x37\xef\x9e\x3c\xfc\x14\x98\x52\x72\x40\x9e\x66\x67\x90\x17\x78\x17\x7d\x7a\xfa\xe0\xe0\xb3\x4d\x49\xe7\xad\xba\xef\x96\x90\xd0\x75\x21\x27\xbd\x65\x6b\xb5\x99\xaf\x86\x29\xad\xd0\x7d\xe9\x8c\xa6\x54\x16\xdc\x58\x9a\x81\x02\x89\x54\x1a\x63\x0b\x98\x53\x2c\x40\x86\x3c\xd7\xdd\x6d\x11\x0e\xde\x01\x22\x7d\x93\x29\x6c\xc6\x83\xc9\xed\x12\xdc\x81\x9a\xd8\x8d\x30\xd5\xa2\x2e\x81\x71\xd8\x46\x36\x41\x01\x5d\x2d\x3a\x5a\x83\x6d\x4c\x43\xb4\xd5\x41\x92\xed\x1d\x77\xe9\x34\x4f\xd7\x08\x65\x74\x22\x4c\x0e\xaa\x78\xba\xe8\x80\x3f\xe5\x71\xfb\x45\x65\xd4\xbe\x51\x79\xe3\x7d\x69\x94\x0a\x48\x62\x5b\xe3\x00\x9f\x85\x7d\xc7\x0b\xdc\x0b\x70\x6d\xdb\x40\x76\x47\x53\xc8\x68\xfc\x87\xba\x42\xf5\x88\x6d\x5b\x08\xf5\xcb\x34\xcf\xe2\xb8\xe4\x4a\x59\x28\xcd\x93\xe3\xa3\xa3\xba\x68\x58\x7b\x27\x4c\x3b\x58\x4e\x39\x06\xac\xcd\x60\x59\xe2\xf6\x5f\xee\x4d\x58\xc6\xf7\xe8\x4f\xf0\xf1\xe7\xad\x06\xdd\x6f\xbd\xa4\xc6\x62\xc9\x85\x37\x1d\xd7\x55\x01\x58\xc4\x16\x1e\x60\xd0\x2a\x98\x52\xb7\xb2\x8c\x6b\x3c\xda\x86\xa2\xc0\x18\xcd\x5f\xe9\xfd\x22\x65\x02\xb3\x21\x43\x11\x2d\x57\xe6\x1a\xf2\x03\xe0\xd2\x6c\x64\xbb\x93\x30\x70\x9e\xb5\xcb\xb0\xee\x82\x2a\x6e\x9a\x29\x89\xce\x52\xb3\x7e\x85\x25\xcb\x9c\xb2\x54\xc9\x3a\x6d\xa7\x8c\x22\x79\x98\x88\xb2\x54\xf3\x32\x67\x5a\x98\xc6\x3d\xec\x70\xec\x8e\x1d\x9a\x71\xa5\xd8\x92\x5b\xed\x56\xb8\x4c\xb1\x64\x08\x5c\x31\xd2\x33\x19\x47\xc6\x56\x9c\xaa\x82\x65\x90\xd1\x69\x70\xf7\x09\x2b\x0a\xc1\xcb\x2e\xb1\x07\x83\xd6\x5a\x43\x7b\x14\xb4\xa0\x65\xc4\xa2\x64\x37\x3d\xe0\x99\x2c\xd7\x06\x6a\xc7\x02\x02\x84\x34\x77\x71\xe4\xde\x6e\x7b\xa6\x1e\x4c\xec\x81\x3d\x0b\x10\x56\x99\x3b\x0d\xf2\xae\x9f\xd7\x70\x7e\xd8\x37\xc5\xee\x1b\x96\xb6\x7c\xf8\x0e\xc5\xd3\x03\xe2\x4e\x02\xc7\x7b\x62\x43\xdc\x3e\x3d\x68\x08\x99\xb5\x18\x00\xdf\x5a\xcb\xf6\x3c\x00\x5a\x5f\xa3\x27\xe4\x8c\xe2\x0b\x8f\x68\x6e\xce\x76\xf4\x74\x54\x58\xf0\xb0\xf7\xe8\xf4\xf8\xd3\xcf\xac\x46\xfa\xbd\x8c\x45\xac\x94\xb9\x15\x5f\xf7\x0e\xac\x42\xca\x14\xb3\xae\xde\xe1\xc1\x81\x25\xe2\x94\x87\x75\xc8\xe9\x19\x4c\xd5\xcc\xfc\x88\xbe\xdc\x66\x38\x87\x87\x47\x87\x87\x2f\x1b\x97\x02\x38\x0e\xcf\x24\xdd\xcd\x53\x48\xb7\x6b\x96\x36\xec\xbd\x8b\x9f\xcd\x91\xb1\x36\x43\x67\xa5\xbc\x11\x20\x7b\x04\x73\x4b\x2a\x0b\x93\x43\x9c\xd5\x43\x1e\xa1\xdb\x30\x65\xd0\x7c\xdd\x8c\x5a\x73\x4d\xce\x30\xcb\x7f\x44\xeb\x95\x99\xe2\x02\xa4\x3c\x75\x89\xc7\xd4\x8b\xea\xa7\xea\xe5\xff\x33\xee\x41\x86\xf8\x88\x2e\x65\x47\x7d\x9d\x76\xe2\x12\x62\xfa\x3e\xde\xa4\xb1\xca\x9b\x05\x2b\x5d\x8a\x7c\xd9\xac\x0c\xd2\xc4\x47\xcd\x7c\x9f\x37\x6b\x0c\x35\x38\xed\x97\x1b\x36\x85\xf5\x69\xbc\x3a\x45\x6b\x76\x82\xa5\x10\xb3\xe5\x1a\xce\x63\x76\xb0\x8b\xc2\x45\x98\x8a\x15\x0f\x97\xe6\x14\x9d\x6b\xe2\x2f\x78\xd4\x86\x5b\x22\x37\x50\xb1\x56\xe2\xb6\x23\x37\x8e\xf1\x3d\xa9\x4b\x0d\xec\xb6\xc9\xc4\xce\xbb\x08\xdd\x6a\x40\x07\x78\x7e\x93\x36\xd4\x55\xbe\x66\xe1\xc3\x3e\xc2\x9e\x8d\xe1\xec\x10\x39\x3e\x3d\x38\x20\xc3\x7e\xd8\x98\x0c\xc2\x20\xda\x33\xf7\xb7\x34\x52\xb1\x30\x2d\x94\x9d\x97\x1f\x9e\x3e\x38\x38\x20\xbe\x83\x47\xe3\xc2\x91\x7b\xe1\x34\xaf\x9b\x27\x67\xb4\xbf\x65\x1a\x86\x96\xbe\xef\x5d\x10\xf8\xf3\x56\x22\x13\x46\xaa\x5c\x10\xf2\xa2\x10\x91\xae\x4a\xf4\x26\x9b\x73\x2a\xa6\xe0\xac\x36\xd5\x3c\x1e\x53\x76\xc3\x34\x2b\x15\xb1\x9f\xd8\x81\xed\x85\xf3\x19\xf6\xdd\x77\x2a\x94\xf5\x88\xb7\xe9\xb4\x8a\xdf\xef\x50\xf3\x9c\xd9\xd4\x77\x83\xa9\xf7\x3c\x7c\x3f\x61\x20\xd0\xd9\x52\xef\x27\x22\xe7\x8a\xd7\xf8\x18\x6b\x1e\xe6\x18\xd2\x5e\x5c\x49\x95\x54\x72\xcf\x34\x86\x58\x53\x0c\x34\xaf\x52\x25\xab\x32\xe2\x16\x05\xcd\x31\x89\xc4\xa3\xfd\xfd\x28\xef\x2e\x4b\x33\x00\x93\x09\x73\xb9\x4f\x86\x5e\xbd\x1e\x7f\x3a\xf7\xfa\x98\xfc\xd6\xc3\xb0\x83\x8d\x7d\xb2\xb4\xe2\x1b\x44\xb4\x90\x65\xb4\x29\x97\xe3\x01\x15\x91\x53\xb9\x58\x60\x35\x33\xc3\xf3\x7e\x0d\x02\x69\x48\xb7\xb4\xee\x82\xc7\x78\xea\xa5\x61\x0c\x4d\xa5\x5c\x55\x05\x6c\x51\xd1\xc1\xc4\xaf\x2b\x4f\x91\x04\xc0\x54\x0f\xd9\xf6\x49\xc8\x99\x81\x6a\x4d\xd4\x52\x9c\x6f\xf2\xa4\xdb\xdb\xdb\x6e\x2a\xae\x9b\x2d\xca\x72\xf9\x03\xd6\x8f\xcb\x7a\x7b\x03\xc0\xd2\x61\x4d\x07\x34\x31\x16\xea\x9a\xa5\x80\xcb\x6a\x83\xb8\x70\x06\x8e\x67\x07\xce\x20\x7c\x6b\x7f\x1f\xa8\xbd\x9b\x7c\x8d\xbc\xf8\xff\xa4\xe2\x7e\xe7\xa0\x1f\x54\x82\x7f\xb0\x5b\x81\x7f\xf0\x1b\x16\xe0\x4f\xde\x6e\x87\xbc\x00\xcf\x02\xbc\xf6\x0b\x1e\x89\x85\xe0\xe6\x80\x4b\x8d\x99\x80\x6d\x8b\x2a\x4d\xd7\x54\x56\xba\xa8\x40\x31\x63\x80\xa3\xbb\x44\xbd\x8b\xfe\xe1\xe1\xd1\x71\x43\x84\xa5\x0d\xdc\xe1\x71\xd3\x8b\x03\xa9\xd9\x13\xdf\xed\x5b\x74\x9e\x8b\x57\x03\x06\x89\x86\x57\x5d\xaf\xeb\xab\x8b\xfe\xc3\xa3\xa3\xe6\xf3\x4b\x73\x71\x72\x60\x35\xa4\x37\x17\xe6\xd1\xf1\xf1\xf1\x67\x9b\x8b\x09\xcb\xa5\x45\x1f\x0b\x1d\x25\x3c\xb7\xa8\xaf\x59\x56\xd4\x1f\x63\x91\xa6\x62\x73\x1d\x95\x12\x21\x08\x7e\x85\xb7\x6a\x78\x82\xa2\x6c\xa7\x8a\xec\x1a\xf2\xd4\x16\x1b\x1a\x43\x7a\xb4\xbf\xbf\x94\x29\xcb\x97\x60\x3f\xfb\xc5\x6a\xb9\x0f\xdc\xdb\xff\x51\xb1\x5a\x76\x22\x99\x2b\xcd\x40\x47\x2e\xa6\xde\xd8\x0e\x4c\xa1\xd9\x1c\x63\x4b\xb7\xca\x2e\x17\x14\x4f\xe6\x94\x8a\xbc\x48\xe5\xf2\x8a\xec\x1e\x18\xea\xd7\xd9\x3d\x50\x93\x29\xaf\x31\x53\x8d\x3b\xda\x58\xa3\x19\xd0\xa4\x02\x32\xcb\x98\xa9\x7e\xd5\xdd\x83\xac\x4a\xb5\x28\x9a\x2e\x6b\xad\x9c\xcd\x6b\x16\xaa\xc9\x1e\xa9\x2b\xae\xf5\xdd\xff\x9b\xc9\xee\x1d\x79\x6e\x83\xa7\x82\x92\x45\x58\x0d\x76\xf3\x85\x84\xcf\xa7\xac\xcc\xe1\xd3\x29\x4b\x59\xc2\xc5\x05\xd3\x2c\x7d\x6b\xc3\xe6\x2d\x32\x72\x9e\x38\x00\x2e\xf1\x2b\x69\x00\xe6\x86\x5d\xc6\x41\xe5\xe9\x1a\xb9\xdb\xad\xef\x5f\x61\x38\xcc\xd0\xed\xa0\x68\x25\x15\x79\xc2\x4b\x3c\x3e\x5f\x53\xdc\xd0\x42\xce\xbc\x4d\x08\x6e\xfe\x20\x2a\xb5\x53\x35\x1e\x4a\x35\x67\x10\x78\x0c\x52\xa7\xa5\xd4\x20\x9a\x7b\xea\x16\xb4\x15\xad\x55\x82\x0b\x81\x7c\xa3\x06\x84\xf7\xc9\x68\x3a\x0c\xbd\x69\x60\xb2\xb7\x0d\x9e\x58\xe2\xb4\x40\x24\x66\x22\x5d\x93\x81\xed\x8e\x9e\xbf\x33\x6e\xe3\x40\x54\x22\x16\x98\xf2\x40\x6a\x9e\x9a\xae\xf6\x0e\x3f\x8f\x1e\xd6\xbd\xd9\x43\xfa\x93\x9f\xd0\xa3\x87\x16\x3d\x3a\x39\x6d\xf9\x96\xd0\xbf\x74\x2f\xf0\x90\xf5\xc3\x9a\x2e\x06\x80\xad\x9f\x69\x11\xc6\x97\x46\xee\xa4\xee\xe9\xe1\x3f\x90\xf7\xab\x42\x94\xe8\x31\xd6\x8d\xde\x1b\xf0\x7a\x2f\xe6\x29\xd7\x9c\xb2\x85\xc6\x64\xe8\x15\x0e\xb9\x8f\x64\x36\x95\xe9\x4d\xf9\x1f\xeb\x5b\x6f\xcb\x03\xef\xfe\x40\x81\x3c\xad\xcb\x56\x73\x6f\x44\xf0\x80\x3d\x31\x34\xea\x32\xd8\xff\x31\x15\x53\x02\x45\x7c\x15\x0b\x55\xa4\x6c\x6d\xce\xab\xd7\x65\x32\xd2\x2a\xaa\xb7\x4b\x35\xf5\xec\xaf\x64\x99\xb5\x5a\x9e\xc8\x18\xd4\x0f\xac\xe8\xbe\x25\x57\xcf\x28\x8e\x69\xe6\xc7\x6c\x5d\x0f\x08\x51\x0b\xde\x19\x26\xf3\xa8\x26\x88\xba\xc0\x5f\x45\x5c\x01\x80\x78\x45\x77\x83\x87\x31\xcb\xa6\x85\x8e\x62\xd2\xd2\x18\xba\xf1\x51\x26\x98\xb4\xe5\x72\x0c\x49\x67\x29\xdb\xcd\xda\xb2\xca\x73\x50\x60\xb8\x5d\x1f\x06\x2a\x78\x29\x64\x6c\x0e\xde\xdc\x71\xb6\xc1\xab\xf2\xf6\x68\x2c\xd7\xe0\x79\x05\x53\x4f\xec\xe2\x4f\x56\xde\x39\x65\x0e\xfc\xc6\xdf\x72\xd4\xe7\xdb\x94\x59\x49\xd7\xfc\xc0\x23\xac\x6f\x5e\x11\xbf\x7f\xe9\x0c\xe6\x58\xc7\xf8\xdc\x30\xec\xf0\x20\x23\xd8\x8d\xd8\xe0\xcf\x84\xb3\x54\x27\xe6\x18\x74\x4d\x06\xc0\x65\x68\xee\x87\x78\xff\x2e\x4a\x47\x0f\x12\xb2\x2d\x56\x9e\x1e\x00\x20\xb0\xcb\x65\x65\xa0\x09\x44\x4b\x74\xc4\x79\x4c\x3f\x59\x0a\x4d\x17\x2a\x5a\x7d\xd2\xb8\xde\x4e\xa7\xca\x4b\x88\xea\xc8\xb5\x4e\x47\xb3\xa5\x02\xf7\x0d\xc1\x05\x43\x90\xcc\x37\x41\x46\xe8\x8e\x8a\x32\x04\xa2\xb1\x8c\x14\xde\x00\x62\xfb\x87\xdd\x4f\xbb\x27\xc4\xf6\x86\xbe\xf1\x58\x7d\x3c\xc8\xdd\x42\xd6\x0a\x34\x48\x69\x11\x35\xec\xc1\xbd\x84\xb8\x3b\x78\xa6\xae\xde\xe6\x2e\x0a\xe5\xee\xad\xc2\x04\x29\x67\x79\x55\xb4\xa7\x60\x65\x94\x88\x1b\xae\xda\x8c\xab\xef\x85\x91\x19\xfe\xce\x24\x46\x84\x77\xcf\x72\x46\x03\xc8\x91\x9a\x73\xdc\xdb\xf3\xe9\x62\xd1\xcc\xd5\x6a\x9e\xd7\x67\x5c\xc8\x74\x04\xa9\x63\x70\x69\x43\x80\xc1\xc5\xbe\x58\x0a\xdd\x6a\xe8\x29\x9a\x88\x65\x92\x8a\x65\x82\x8e\x90\xe1\x69\x61\x10\x4d\xc9\x33\x79\x63\x0e\x82\xe6\x4b\xbe\x6d\xe3\x0d\xdc\x8b\x8b\xf0\xd2\x1d\x5e\x8e\xdc\xe1\x65\xb0\xd3\xa7\x68\x03\x2c\xf0\x83\x6a\x03\xfd\x80\x72\xdb\x17\x82\x03\x88\xc5\x62\x81\x9d\x10\xb4\x9c\xa1\x1b\x18\xd2\x6d\x0f\xf9\x0e\xd5\x28\x61\x25\x8b\xb0\xf4\x83\x24\xd3\x76\x7f\xfa\xc3\x34\xf1\x10\xab\xdd\x0f\xcc\x6f\x28\x4e\xee\x20\x6e\x30\xa1\x4a\xe4\x6d\xfe\x01\x5a\xdb\x53\x19\x07\x1f\x56\xeb\x65\xd4\x52\x6a\xb6\x5c\x96\x90\xa9\xde\x80\x4e\x43\xb8\xfb\x4d\x74\x7a\x19\xd5\x1a\x3d\xec\x87\x5b\xa5\x9e\x6e\x2a\xb9\x77\xf4\x0c\x40\xca\xdd\xfa\xfe\x15\x31\x47\x1e\x1d\x34\xc6\x83\xfa\x68\xab\xf9\x8d\x19\xe9\x8f\xa6\x13\xa7\xbe\x9e\xcd\x47\xa3\xfa\x72\xd8\x37\xa5\x29\xf2\xc2\x78\x8c\xab\xd6\xd9\xe1\x76\x7d\x2b\x91\x55\xa9\xe8\x35\xd7\xb7\x9c\xd7\xad\x03\xe3\x2e\x06\xce\x85\x3d\x1f\x05\x61\xab\xd2\xf5\x90\x90\x17\xac\x10\x57\xef\x30\x5e\x68\x9e\xd5\xa7\x11\xcd\x6f\x2a\x4c\x3a\xc5\x4c\x17\x02\xb8\x6f\x7e\x9b\xe8\x3b\xa1\x1b\x38\x63\x23\x3f\x42\x5e\x54\x48\x6b\xdb\xd0\xd8\x39\x57\xba\x39\xc7\x02\x02\x35\xda\x21\x73\xfc\x0d\x43\x0a\x2c\x47\xd2\xce\xb3\xd9\x68\xea\x39\xe1\x4e\xa3\xe3\xe8\x60\x87\xa8\xc9\xb9\xde\x47\x0e\xc9\xb8\xbe\x3f\x7f\x8b\xc8\xe1\x2e\x91\xcd\x61\xe7\xfa\x1c\xe9\x2e\x11\x16\x69\x71\x23\xf4\x9a\x2e\x38\x8f\xc9\x85\xe3\x0c\xf0\x00\x97\x39\x60\x59\x13\x3c\xd9\x1c\xfc\x90\x0b\xba\xa7\x13\x9e\xf1\x4e\x24\x53\x59\xee\xd1\x8c\x6b\x46\x35\x5b\x5a\xe6\xdc\xea\xf5\x9a\xda\x79\x5c\x4a\x11\xd3\xdf\xea\xd1\x13\xfc\xc9\x96\x0d\x1a\x8d\x6d\x37\x8a\x2f\x61\x56\x4f\xf7\x72\x99\xd7\xa7\x0c\x9a\xd3\x07\x46\x0a\xe6\xd7\x55\xad\x5f\xf2\x29\xbd\x4e\x37\xcd\x45\x48\x02\xb6\xad\xc5\x98\xdf\xf0\x54\x16\xbc\x54\xdd\xa5\x94\x4b\x53\xa1\xde\xbf\xe5\xd7\xfb\x26\xe4\xa8\xfd\xa3\x83\xc3\x07\xfb\x87\x87\xfb\xbe\x49\x77\x3a\x0b\x59\x76\x5a\x1b\xe8\x88\xbc\xd3\x4f\x4a\x99\xf1\xce\xf1\x67\xf8\xb0\x5e\x3e\x09\x2e\x9d\xb1\x13\xf6\xa7\xa3\xa9\x17\x8e\x9d\xc0\x0e\x03\x7b\x48\x7b\xf4\xe5\x8f\x16\x8b\x93\xe3\x07\xc7\x2f\xdb\x50\x4e\xe4\xf4\x7a\xad\xb9\xda\x1a\xb2\x49\xce\xb7\x98\xe3\x5e\xbb\x2e\x34\x3e\xaf\x81\x94\xeb\xcf\x46\xb6\x29\xe9\x37\x01\xff\xe1\xf1\xc3\x87\xa7\x07\x0f\x51\xc1\xba\x9b\x03\x10\x5b\x61\xd6\x9d\xc6\x0f\x28\x04\x60\x9a\x5d\x7d\x38\x39\x78\x57\x53\x3f\x48\xc2\x73\x66\xd3\x0f\x92\xc8\xa5\x16\xd1\xaf\x51\xcc\xc9\x34\x70\xfb\x6f\xab\xf7\xc9\x0e\x99\xf6\x59\x8d\x0f\xd2\x9a\x7a\xc3\x77\xd6\x83\x1c\x02\x76\xdc\x61\x87\xbf\xe1\xee\x0e\x77\x97\x95\xf3\x5b\x85\xe6\xf0\x6b\x36\xe8\x3c\xf5\x43\x34\x98\x0f\x99\x70\x63\x75\x1f\xa2\xd4\x9c\x66\xde\xa1\x73\x0c\x5b\x2c\x40\x35\x75\xc2\xab\x9d\xc3\x5d\xed\xda\xe6\xb9\xed\xbb\x7d\x6c\x96\x6f\xc2\xe1\xf6\x56\xeb\xd4\x48\xfb\x2e\xf6\x62\xa6\xde\x00\x71\xb6\x38\x7c\x98\x5f\x91\x91\x3d\x01\xdf\x4e\x79\xde\x99\xfb\xd6\x37\x49\xa7\x3f\x81\xbf\x97\x8f\xe1\x6f\xf0\xd4\x8a\x79\x67\xe0\x58\x8b\xb2\x73\xe1\x59\x79\xda\x99\x8c\xac\xf4\xa6\x33\x7a\x62\x95\x55\xc7\x9b\x5b\x5f\xb1\xce\x6f\xcf\x2c\xae\x3a\x8e\x6f\x15\xba\x73\xee\x59\x45\xda\x99\x8d\xac\xeb\x65\xe7\x7c\x68\x09\xdd\x71\x03\x6b\x21\x3a\x17\xae\xa5\xcb\x4e\xe0\x59\x91\xea\xf4\xbf\xb4\x54\xd9\xf1\x67\x96\xba\xe9\xf8\x8e\xb5\x92\x9d\xc7\x9e\xb5\x4c\x81\x42\xb5\xea\xcc\x6d\x8b\xe7\x9d\xe1\xb9\x95\x54\x9d\xcb\xb9\xa5\x56\x1d\xff\xb1\x25\xe2\x8e\x3b\xb0\x16\xac\xe3\x7a\xd6\x8d\xe8\x3c\x99\xc0\x5c\xb3\x00\x4f\x3f\xc1\xda\x9d\x7c\x99\x0a\x95\x58\xbf\xfa\x8f\xdf\xfe\xcd\x5f\xfe\xf3\xbf\xf9\xd9\x9f\xfd\xf2\x0f\x7e\xcf\xfa\xd5\x5f\x7c\xf7\x77\xff\xfe\x5f\x98\x2f\x7f\xff\x8b\x7f\xfc\x77\xff\xee\x5f\xfd\xf2\x67\xff\xe9\xef\x7f\xf1\x4f\xde\x7e\xf0\xb7\xbf\xf7\xf3\x5f\x7d\xf7\x6f\xe0\xc1\x80\x57\x5a\x45\x89\xb5\x28\x59\xfe\xfd\x9f\x30\xa1\xac\x09\x8f\x79\x99\xb2\x3c\x56\x56\xca\xf4\x8d\xe0\x7f\xfd\xc7\x95\xf5\xe6\xdb\x37\xbf\xfb\xe6\xbb\x37\xdf\xbd\xfe\xf9\xeb\x9f\xbd\xfe\x0b\xeb\x97\x7f\xf8\x6f\x7f\xf9\x47\xff\xe1\x6f\xff\xf4\x5f\x5b\x5c\x15\xec\xfb\x3f\x97\xa9\x05\x0e\xa7\x5a\x56\xdf\xff\xa9\xa2\xb1\xa4\xe7\x25\x53\x02\x6e\xa6\x6a\x25\xac\xd7\x7f\xfe\xe6\x9f\xbe\xfe\x6f\xaf\xff\xf3\xeb\x9f\xbe\xf9\xd6\xd0\xb0\x84\x66\xa9\x60\xb9\xb4\x54\x25\x33\x61\x05\xdf\xff\xa2\x5c\x7d\xff\x27\xdc\xfa\xab\xdf\xe7\x7f\xfd\xc7\x5a\xe4\xcc\x7a\xf3\xdd\x9b\x6f\x5f\xff\xf7\x7a\xb8\xba\xe1\xb9\x5a\x31\xeb\x7f\xfd\xcb\x3f\xfa\x1f\xff\xf5\xcf\xfe\xe7\x1f\xfc\x17\x6b\xc9\x52\xbe\x94\xd6\x9b\xdf\x7d\xfd\xf3\x37\xdf\xbe\xfe\xe9\x9b\x3f\x7c\xfd\x97\x6f\xbe\x7b\xf3\xcf\x5e\xff\xfc\xf5\x4f\xad\x9a\x37\xf4\xde\x3c\xc7\x03\x8d\x8f\x45\xbe\x8c\x65\x76\xdf\x1a\xb3\xe5\x9a\x95\x96\x9f\xca\x1b\x9e\xff\xd5\xef\xc3\x34\x6e\x1e\xcb\x9c\x2b\xc1\x72\x6b\xc6\x4b\xfc\x7c\x22\x38\xb6\x5e\x15\xb7\x66\x9b\x5d\x11\x93\x5f\x99\x23\x10\xe0\x6e\x21\xe6\x17\x22\x5a\xf1\xd2\xa8\x55\x17\x6e\xa6\x2c\x5f\x5e\x11\xd4\x2b\xd4\x2f\x82\xca\x45\x7b\xf4\x9b\x84\xa0\x86\xe1\x65\x27\x78\x4a\xf0\xef\xe6\x1b\x6a\x1c\xfe\x22\x9e\xa0\xda\x81\x7a\x97\x04\x75\x8f\xf6\x68\x9e\x12\x54\x40\xda\xa3\xe9\x0d\x41\x2d\xa4\x3d\x5a\x56\x04\x55\x91\xf6\xe8\x57\x8c\xa0\x3e\xc2\x9c\x8a\xa0\x52\xd2\x1e\xc5\x4f\x82\xca\x09\xdf\x52\x82\x1a\x4a\x7b\xf4\x7a\x49\x50\x4d\x69\x8f\x0a\x4d\x50\x57\x61\x42\x41\x50\x61\xd1\xe6\x08\x6a\x2d\xed\x51\xfc\x24\xa8\xbd\xb4\x47\x55\x49\x50\x85\xe1\xf2\x86\xa0\x1e\xd3\x1e\x5d\x49\x82\xca\x4c\x7b\x74\x99\x12\xd4\x68\xda\xa3\xd5\x8a\xa0\x5a\x1b\x43\x1b\x9e\x13\x54\x6f\xda\xa3\x49\x45\x50\xc7\x81\xc8\x8a\xa0\xa2\xc3\x4a\x62\x82\xda\x8e\x96\x4d\x50\xe5\x69\x8f\xde\x08\x82\x7a\x8f\xdb\xc1\x1f\xee\x6d\x0e\x96\x66\xac\x28\xf0\x27\xa1\xb2\x85\xac\xa3\x94\x61\xc7\x0e\xe1\x60\x57\xcb\x2c\xed\x89\x5c\x90\x17\x9b\x11\xdd\xfa\xb5\x2b\x42\x5e\x48\x9d\x80\x47\xf5\x2f\xa7\x4f\xc3\x8b\xe9\x34\x70\xbc\xf0\xdc\x33\x3f\x3f\x6b\xc1\x6d\x3f\x91\xb7\xa6\x6d\x22\x17\xb4\xf9\x61\x1e\xe5\xaf\x78\x54\x35\x27\x39\x4c\x6d\x4e\x6a\x5e\xee\x10\x0b\x9c\xf1\x6c\x04\x79\x31\xb6\x0e\xea\x7e\x08\xfa\xb3\xff\x1d\x00\x00\xff\xff\xc1\xfa\xf6\xb9\x49\x42\x00\x00"
+var _confAppIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x7c\x5b\x8f\xe4\x48\x76\xde\x7b\xfc\x8a\x98\xda\x1d\x6f\xf7\x82\x99\x75\xeb\xaa\xe9\xe9\xda\x14\x86\x9d\xc9\xcc\xa2\x3a\x6f\x43\x32\xfb\x32\x85\x06\x3b\x8a\x8c\x4c\xc6\x14\xc9\xe0\x30\x82\x55\x9d\x03\x43\x98\x81\x1e\x64\x1b\xd6\x93\x6d\x09\x06\x04\x03\x82\x61\x0b\x90\x2d\x7b\x05\xdb\xc0\x6a\xbd\x82\x1f\x46\x7a\xef\xfe\x0f\xc2\xae\x64\xd8\xd0\x5f\x30\xce\x09\x32\x93\x59\x5d\xdd\x3b\x6b\xd8\x4f\x9a\x01\x2a\x99\x64\xf0\x44\xc4\xb9\x7e\xe7\x9c\xc8\xfe\x01\xfd\xe8\xa3\x8f\xe8\xd4\x79\xea\x78\x14\xff\x4c\x66\x03\x77\xf8\x82\x06\xe7\xae\x4f\x87\xee\xd8\x81\xe7\xc4\x8c\x9a\x8f\x1d\xdb\x77\xe8\xc4\x7e\xe2\xd0\xfe\xb9\x3d\x1d\x39\x3e\x9d\x4d\x69\x7f\xe6\x79\x8e\x3f\x9f\x4d\x07\xee\x74\x44\xfb\x0b\x3f\x98\x4d\x68\x7f\x36\x1d\xba\xa3\xdb\x14\xdc\x21\x7d\x31\x5b\x50\xdb\x73\xe8\xdc\xee\x3f\xb1\x47\xf0\xc6\xdc\x9b\x3d\x75\x07\x8e\x67\xed\x4c\x30\x7b\x06\x94\xe7\x2f\xe8\x6c\x48\xdd\x00\x69\x90\x33\x1a\x24\x9c\x5e\x96\x2c\x8f\x69\xce\x32\x4e\xe5\x92\xea\x84\x53\x56\x14\xa9\x88\x98\x16\x32\xef\x92\xc7\x9e\x3d\x1d\x84\x53\x7b\xe2\xd0\x1e\x1d\xc9\x95\xaa\x5f\x53\x6b\xa5\x79\x46\x2b\xc5\x4b\x7a\x93\x48\xaa\x12\x59\xa5\x31\xbd\xe4\xb4\xac\xf2\x5c\xe4\xab\xdb\xa4\x54\x97\xba\x9a\x26\x4c\xd1\x5c\x52\xbe\x5c\xf2\x48\x53\x99\xd3\x67\x22\x8f\xe5\x8d\xb2\xc8\x19\x95\x3a\xe1\xe5\x8d\x50\xdc\xa2\x42\x37\x04\x33\xa6\xa3\x04\x69\x5d\xb3\xb4\xc2\x35\xfe\x70\xe1\x3b\x1e\xe5\xf9\xb5\x28\x65\x9e\xf1\x5c\xd3\x6b\x56\x0a\x76\x99\xf2\x2e\xf1\x16\xd3\x10\x1f\xf7\xe8\x4a\xe8\x7a\xad\xcd\x8a\x32\x19\xdf\xb5\x49\x8b\x46\x2c\x87\x95\x73\x01\x2b\xa0\x7b\x31\xbf\xde\xb3\xe8\x5e\x51\xca\x78\x8f\xca\x92\xee\x69\xae\xf4\x9e\x21\x3e\x99\x0d\x80\x13\x31\xbf\x26\xe4\x42\xf1\xf2\x9a\x97\x2f\xeb\x69\x8a\xea\x32\x15\x51\x67\xc9\x22\x98\x6c\xe1\x8d\xe9\x52\x96\xef\x72\xd4\x79\x1e\x38\xde\xd4\x1e\x87\x30\xa2\x47\x3f\xbe\x37\xf7\x66\xc1\xac\x3f\x1b\xdf\x57\x8f\xf6\xf7\x3f\xbe\x37\x98\x4d\x6c\x77\x7a\x5f\x3d\xfa\xf8\xde\x79\x10\xcc\xc3\xf9\xcc\x0b\xee\xab\xfd\x3b\x27\x89\x65\xc6\x44\x6e\xa4\x77\xe7\x64\x86\x18\xed\xd1\x54\x46\x2c\x4d\xa4\x6a\x78\x52\x94\x52\xcb\x48\xa6\x54\x27\x4c\x53\xa1\x40\x92\x31\xd5\x92\xe2\x9e\x68\x2c\x4a\x10\x90\x2e\xd9\x72\x29\x22\xb8\xff\x0e\xe9\x33\xda\xaf\xca\x92\xe7\x3a\x5d\x53\x55\x15\x85\x2c\xb5\xa2\x7b\x89\xd6\x05\x30\x0f\x3e\x15\x5c\x2c\xa3\x95\xd8\xa3\xa0\x63\x7b\x55\x2e\x5e\xef\x75\x49\xb3\x5f\xda\xa3\x30\xaa\x5e\x10\x8b\xe3\x92\x2b\x05\x53\x5d\x72\x9a\x0a\xa5\x79\xce\x63\x7a\xb9\x7e\x77\x66\x64\x8b\x3d\x18\x80\x94\x0f\xba\xf8\x7f\xb3\x2b\x59\x6a\x9a\x57\xd9\x25\x2f\xbf\x37\x21\xe0\x2f\xed\xd1\xe3\x83\x03\xa0\x32\xe2\x39\x2f\x99\xe6\x54\x69\x5e\xa8\x47\xe4\x8c\xfe\x90\x76\xf7\x57\x72\xa5\x68\xc4\x4b\x4d\x3b\x11\xeb\xe9\xb2\xe2\xb4\x13\x57\x25\x92\xe9\x3d\xfc\xe4\xf4\x20\x39\xc8\x0e\x14\xed\x00\x83\x7b\xd9\x1a\x3e\xba\xfc\x35\xcb\x8a\x94\x77\x23\x99\x91\x33\x72\x46\x67\x25\x5d\x96\x32\xa3\x8c\x76\x8b\xe5\x6b\xba\x14\x29\xa7\xfc\x35\xac\x98\xc7\xe6\x09\xac\xaf\xb6\x07\x9c\x4c\x2c\x61\xa5\xb0\x14\x59\x72\x7a\x2f\x96\xe4\x8c\xe6\x52\x83\xa4\x57\x5c\xc3\x06\xcd\xfb\xf8\x62\x51\x8a\x6b\x18\x7c\xc5\xd7\xf7\xcd\xb2\x65\xc1\x73\xa5\x52\x5a\x5c\x45\xea\xf0\x88\x76\x44\x8e\x54\x71\xf6\x8e\xac\x74\xfd\x8d\x67\xb4\x93\xcb\x2b\xbe\x56\xdf\xef\xad\x2b\xbe\x6e\x5e\x82\x07\x0a\x2e\x62\xae\x48\xdf\xf1\x82\x10\x3d\x54\x8f\x46\x95\xd2\x32\xdb\x47\x25\xd8\x6f\xa6\x21\x4f\x9c\x17\x77\x0e\xa8\x29\xd6\x32\xcc\x44\x2e\xb2\x2a\xa3\x2c\x4d\xe5\x0d\x8f\x69\x30\xf6\xe9\x35\x2f\x95\xb1\xd4\x3b\x54\x2e\x18\xfb\x87\x07\xa0\x6a\x70\x71\xd8\x5c\x1c\xed\x59\x46\xeb\xe0\xcb\xf1\x5e\x97\x04\x63\x3f\x9c\xb8\xd3\xf0\xa9\xe3\xf9\xee\x0c\x6c\x02\x87\x91\x33\x3a\x04\x51\x14\xbc\xcc\x84\x82\x59\xe8\x4d\xc2\xf3\xda\x0e\x1a\x03\xb8\x16\x8c\x2e\x72\xf1\xba\xb1\x38\x25\xa3\x2b\xae\xbb\x64\x31\x75\x9f\x87\xfe\xac\xff\xc4\x09\xc2\xb9\xe3\x4d\x5c\xbf\xa6\x7d\x7a\x7a\x4a\xce\xe8\x18\xac\x8e\xde\x1b\x4c\xbe\xb8\xbf\x71\x08\x37\xb2\xbc\xe2\xa5\xa2\xf7\x78\x77\xd5\xa5\xbe\x7f\x4e\xab\x22\x66\x9a\xdf\xa7\x2c\x8a\xb8\x52\x60\xd7\x37\xfc\x12\x17\x20\x22\x0e\x86\xe6\xe6\x34\x93\x4a\xd3\x88\x29\xae\xe8\x5a\x56\x34\x96\xa8\x09\x39\x37\x46\x1b\x25\x2c\x5f\x71\xd4\x83\x98\x2f\x59\x95\x6a\xe3\x2e\xe1\x65\x3b\xd5\xbc\x04\x8f\x2a\xf3\x74\x4d\xc5\x12\xde\x2f\x71\x5e\xe3\xbe\x28\x88\x0f\x3c\x00\x10\x04\x0a\x0a\xbc\x09\x53\x14\xac\x03\x1f\x76\xc9\x78\xd6\xb7\xc7\xa1\x37\x9b\x05\xef\xf3\x5a\x1b\x9b\x7c\xd7\x71\x91\x33\xfa\x2c\xe1\xe8\x5a\xb5\xa4\xb1\x50\xe0\xaa\x71\x01\x66\xc3\x77\x78\x17\xca\x73\x2d\x4a\x9e\xae\xbb\x64\xe0\xfa\xf6\xe3\xb1\x13\xc2\xf8\x1e\x5d\xb2\x54\xf1\x5a\x51\xda\xce\xcf\x18\x3b\x98\x03\xb8\x31\x91\x23\xf9\x28\x95\x39\x07\xbe\x77\x89\xef\x9f\x87\x1b\x5f\xb8\xf5\xb1\xef\x75\x1b\x1f\xa6\x54\xbb\x8c\xa3\xa3\xe6\x7d\xa6\x13\x08\x2c\x30\xb4\x94\x52\xd7\xee\x53\x96\x6b\x6b\x23\x0f\xa1\xe8\xde\x0f\xcf\x67\x13\x67\xbf\xab\x54\xb2\x67\x08\x21\x47\xe7\x76\x70\x4e\x7b\x6d\x52\xe0\x86\x55\xd2\xb9\xe2\xeb\x15\xcf\x77\x49\x6c\xef\x1b\xa7\x9a\x72\x08\x95\x3c\x4d\xe9\x52\xe4\x31\x05\x03\xbd\x49\x44\x94\x50\x58\x30\x68\x06\x4b\x53\x33\xd7\x13\xe7\xc5\xc8\x99\xd6\xb3\xb5\xe8\x37\xdc\x6c\x96\x8c\x6f\x95\x1c\x7c\x89\xe6\x59\x21\x4b\x56\xae\xd1\x5b\x29\x63\x18\x10\x0c\x29\xab\x03\x11\x78\x03\x5a\xa1\xce\xb6\x56\x4c\xce\xda\x6b\xd6\x5b\xb8\xb0\x25\xb8\x99\x6e\xb3\xb8\x30\x70\xfc\x16\x33\x5a\x2a\xa3\x34\x2b\x61\xca\xcb\x4a\xa4\xba\x96\x88\xd1\xdd\x2e\xf1\x03\xdb\x0b\x40\x39\x42\xdf\xf1\x9e\x62\xe0\x6f\xeb\x48\xce\x35\xd8\x1b\x15\xb9\xe6\xe5\x92\x45\x26\x4c\xbe\x4b\x08\xa6\x31\xa1\x82\x42\x60\x00\x7a\x63\xd7\x0f\x9c\x69\x78\x3e\xf3\x83\x0f\xc6\x99\xdf\x94\x60\xad\x3c\x1f\xdf\x6b\x34\x69\xa3\x86\x30\x1e\xd4\x08\xcc\xa2\x80\xa8\x10\x89\x22\x01\x57\x01\x53\x44\x32\xcf\x79\x84\x48\x0a\x75\xf4\x2e\x5e\x6c\xb8\x10\xf6\xdd\xf9\xb9\xe3\xf9\xb4\x47\x19\x57\x87\x47\x0f\x3b\x91\x2e\x2d\xbc\xfe\xf4\x68\x73\x7d\x74\x72\xba\xbd\x7f\xf4\xb0\xb3\x8a\xb2\xcf\x8c\xfb\x4f\x20\x6a\x59\x94\x95\xd1\x52\x56\xe5\xd1\xc9\xe9\xe6\xfa\xf0\xe8\xe1\xae\x70\xa2\x84\x47\x57\x1b\xa7\xdd\xd2\x0a\x25\xbe\xe6\xf4\x46\xe8\x84\x46\xb2\x2c\xb9\x2a\x64\x1e\x23\x2e\x5c\x17\xbc\x4b\x26\xee\xd4\x9d\x2c\x26\x28\x78\xdf\xfd\xc2\x09\xfb\xe7\x4e\xff\x49\x4b\x7a\xad\x29\x4a\x7e\x53\x0a\xcd\xe9\xde\xef\xa0\xed\xec\xb3\x4a\x27\xb2\x14\x5f\xf3\x38\x84\xb0\xb5\x67\x62\x29\xd3\x46\x51\x2c\x2a\x56\xb9\x2c\x79\x6c\xd4\xb5\x52\xfc\x4e\x66\x79\xce\x33\xcf\x0d\x9c\xd0\x5e\x04\xe7\x33\xcf\xfd\xc2\x19\xc0\x5a\xfc\xd0\x0e\x42\xd4\xa9\xcd\x52\xee\x76\x5f\x46\xe7\xfb\x83\x29\x0a\x47\x69\xa6\x45\x54\x5b\x49\xc9\x57\xac\x8c\x53\xae\x54\x97\xcc\x86\xc3\xb1\x3b\x75\x1a\xd8\x78\xc7\xe6\x1a\x82\xa9\x5c\xad\x80\xa4\xc8\x69\x29\x2b\x0d\x4b\x6c\x5c\x9f\x37\x5b\x04\x8e\x17\x8e\x67\x23\xda\xa3\x00\x3e\x76\x29\xf0\x1c\x09\xb4\xdd\x67\xca\xaf\x79\x4a\x47\x5f\xb8\x73\x1a\xc9\xac\x00\x60\x65\xb0\xe7\x14\x09\xe2\x83\xd6\xfe\x36\x8e\xc7\xec\x45\x96\xb0\x90\x36\x3d\x55\xf0\x08\xd0\x08\x8d\x99\x66\x5d\x62\xcf\xe7\xe1\xc0\x0e\xec\xc6\x99\xc0\xdd\x3b\xd7\x04\x46\x20\x59\x4c\x99\x52\x5c\x2b\x7a\x4f\x74\x79\x97\xee\x45\x32\x5f\x42\x98\x06\x6f\x90\x32\xcd\x11\x27\x1a\xcd\xd9\xbb\x6f\xa0\x50\x2c\x14\x18\xad\xd2\x9c\xc5\x60\x12\x3c\xbb\xe4\x71\x0c\x30\x4e\xe4\x66\x0d\xe3\x99\x3d\x08\x6d\xdf\x77\x02\x3f\x1c\x7a\xb3\x49\x38\x70\xfd\x27\xed\x4d\x8d\x99\xd1\xb7\x82\xad\x8c\xd5\xe7\x32\xef\x00\x97\x79\x8c\x69\x8b\xda\xe0\xfe\xbd\x44\x66\xdc\x20\x7d\xfe\xba\x48\x65\xc9\xf7\xc8\xd8\xc6\x04\x2c\x9c\xdb\x23\x10\x1c\x8c\x68\xac\xb4\x4d\xb7\x09\xea\x2c\x97\xf9\x3a\x93\x95\xba\x45\x9a\xd1\x54\xe4\x57\xc0\x07\x46\xf9\x6b\xcd\xcb\x9c\xa5\x54\x09\x0d\x31\xb5\x9e\xc1\x04\x54\x0c\x93\x03\xbe\x14\x39\xdf\x20\x1f\x96\xae\x64\x29\x74\x92\x29\x74\xf5\x3a\xe1\xa2\xdc\x58\x1a\x98\x58\xca\xf3\x95\x4e\xe8\x3d\xd0\xf1\xce\x61\x5b\x9b\x18\x9a\xd9\xfd\x2e\xb9\x00\x63\xae\xdf\x01\x6b\x09\xc1\x2c\xd5\x4b\xe2\x0c\x8e\x4e\x4e\x0e\x3f\x85\x28\x76\x72\x4a\x9c\xfe\xc0\xb7\x29\xad\xbf\x79\x78\x8d\xdf\x0e\x1e\x3c\x24\x83\xcd\xd7\xc3\x83\xa3\x07\x84\x5c\x94\xbc\x90\x4a\x80\xf3\x86\xd4\xc7\x83\x80\xf7\x8e\xf6\x6c\xc6\x08\xae\x7e\xa4\x50\x43\x76\x03\xd9\xef\x20\xa8\xee\xb4\xc7\xed\x11\x88\x87\x9b\x50\xa8\xa2\x52\x14\x1a\x37\xd2\x38\xd5\x06\xf4\x59\x54\xc9\x8c\x6b\x91\x71\x45\xa3\x26\xf1\xdc\x53\xc9\x1e\xf1\xfb\x9e\x3b\x0f\xc2\xe0\xc5\x1c\xc4\x76\xc9\x54\x62\xf8\x8a\xf3\xda\x53\xdf\x05\xac\x54\x2a\xae\x6b\xb1\xd1\x2a\x2f\x79\x24\x57\x39\xb8\x93\xe6\x19\x81\x81\x61\xff\xdc\xf6\x7c\xc7\xac\x67\x28\xcb\x88\x53\x7e\xcd\xcb\x35\xcd\xf9\xcd\x76\x7b\xeb\x1a\x30\xd4\xf0\x9b\x0c\x67\x5e\xdf\x09\xe7\x9e\xfb\xd4\x0e\xda\x16\x3f\x4a\xe5\x25\x4b\x69\xc6\x5e\xa3\xf4\x30\xc0\xa2\xa5\x8a\x4c\xa0\xd3\x6f\x51\x2c\x78\x89\x6a\x64\x81\x50\x33\xce\x72\xcc\x99\x71\x24\x99\xd8\xcf\xc3\xbe\xe7\xd8\x81\x3b\x9b\x86\x63\x77\xe2\x82\xa3\xea\x1c\x92\x33\x3a\x11\x65\x09\x02\x58\xe7\x11\xfd\xaa\xe2\x15\xaf\xd5\xc3\xa2\x22\x87\xe9\x14\x07\xf0\x97\x6d\x47\x61\xd0\x06\x8f\xa9\x28\xc0\x47\x91\xaf\xc8\xc4\xf5\xbc\x99\x17\x7e\xbe\x70\x16\x4e\x38\x76\xa6\x23\x34\xef\x43\x93\x1a\xcd\x4d\x2a\x0e\xe1\xff\xfd\xf4\x8b\x2a\x4d\x69\xc9\xbf\xaa\x60\x58\xb1\x79\xe3\x8e\xb9\xe6\x8b\xf1\x38\xf4\x9c\xcf\x17\x10\xf6\xdf\x33\x63\xc9\x97\xbc\x04\x57\x3e\x16\x11\xcf\x01\xfc\x6a\x49\x8b\x14\xe2\x38\x33\x60\x55\xcb\xa2\x49\xe9\x21\x7c\x92\x33\x3a\x05\x3c\x98\x55\x4a\xd7\xb5\x03\x0c\x0e\x08\x12\x21\x95\x91\xf9\x72\x3f\x35\xc4\xc0\xe0\xeb\x3c\xa4\x7d\x9b\xcc\x3d\x67\xe8\x78\x9e\x33\x08\xc7\x6e\xdf\x99\xfa\x0e\x84\x51\xbb\x60\x51\xc2\x9b\x75\xd0\xa3\xee\x81\x05\xbc\xaf\xbf\x83\x8e\x35\x96\x77\x29\x52\xa1\x51\x2d\x10\x74\xb0\x48\x9b\x28\xd8\xd6\x74\xc8\x46\x11\x5e\x37\x69\xf8\xc6\xd7\x23\x72\x1e\xb9\x41\x4b\x75\x9c\xfc\x36\xe1\x4c\xac\x30\x47\x6d\xe9\xcc\xe5\xda\xa4\xf8\x68\x89\x8d\x9f\x37\xb0\x1d\x9c\x74\x38\x71\x47\x1e\x2a\x4d\x8b\x70\x5f\xe6\x26\x9f\x8a\xd6\xed\x0a\x40\xc9\x75\x29\xf8\x35\x87\xd0\x91\x09\xad\xa8\xc8\x97\xb2\xcc\x4c\xce\x4c\x83\x44\xa8\x4d\xc1\x05\x2c\x5a\xe4\x40\x0b\x04\xd0\x28\x77\x0d\x8c\x40\x2c\x4c\x5d\x29\x53\x62\xa8\x1d\x62\x59\xe5\x8d\xe8\x30\xcf\x00\x1b\xee\xd2\x85\xaa\x58\x9a\xae\x2d\xb8\x4f\xce\xea\x52\x4f\xcc\x0b\x9e\xa3\xf7\x4f\xe4\x0d\xcd\x58\xbe\xa6\xfd\xf9\x42\xd1\x7b\x91\x2c\xb9\xba\x8f\x79\x50\xc2\xae\x79\x97\xba\xcb\x56\x85\x48\x28\xaa\x4c\x76\xfc\x35\x2f\x21\x65\x96\x25\xad\xf2\x18\xcc\x69\x04\x69\xfc\x8d\x48\x53\xca\x2a\x2d\x61\x47\x00\x8f\xd7\x34\xe6\x1a\xab\x1d\x00\x18\x37\x6b\xc7\xb9\x30\x57\xaa\xc1\x2b\xcc\x45\xfa\xb3\xc9\xc4\x85\x90\xe3\x04\xfd\xf3\xb0\x3f\x9b\xf6\x17\x9e\xe7\x4c\xfb\x2f\x00\x23\x6e\x85\x55\x72\x98\xd1\x54\x9c\xc0\xd1\x94\xec\x06\x15\xb1\x91\x8c\x67\x3f\xc3\x54\x38\xf4\x9c\xe9\xc0\xf1\x76\xf1\x41\xdb\xc3\x76\x79\x0c\x9f\xe0\x68\xc7\x35\x3c\xac\x2b\x07\x9a\xe7\xca\xa0\x41\x60\x6f\x5d\x2e\x83\x35\x42\xc8\xe1\xf4\xa6\x64\x05\x88\x0e\x77\xd5\x97\x31\xaf\xfd\x83\xa1\x07\x89\xa1\xcf\x0b\x86\x6a\xd4\xa2\x85\x9a\xca\x50\xf2\xac\x4b\x03\xb9\xa5\xd5\xa4\x00\x42\x27\x90\x64\x6c\xde\xb1\xe8\x97\x60\x6b\x45\xa5\x9b\xf7\x08\x22\x9e\x67\x9e\x3d\x0f\x9d\xe7\x81\x33\x85\x8c\x18\x4c\xa8\xab\x5f\x6b\xab\x9b\xc5\x56\x37\x63\xe5\x55\x2c\x6f\x72\xf8\x66\x3e\xae\x62\x48\x1a\x9e\xb2\x54\xc4\x66\x7f\xc0\xb9\x7a\x6b\xb8\x27\x46\x8b\x92\x5f\x0b\x7e\x43\xed\xb9\x0b\x78\x42\x46\x82\x01\x46\xc6\x15\xeb\x84\x67\x16\x55\x55\x94\x40\xe2\xca\x0a\xb1\x7f\x7d\xb8\xdf\xcc\xb2\xb3\x57\xd4\x11\xb4\x3f\x5c\xab\xea\x82\x93\x41\xba\x9a\x5d\x02\xbb\x80\x3f\x46\x6e\x37\x32\xff\x11\x32\xf6\x06\x1c\x1b\xb0\x71\x97\xf3\x34\x96\x5c\xc1\x10\xf4\x33\xe0\x36\x9e\xba\xce\x33\x14\x2f\x8a\x16\x64\x0a\xfb\x6e\xd6\xb1\x2b\xd7\xaa\x00\x64\xf4\xb2\xad\x32\x1b\x63\xc6\x79\xcc\x00\xd5\x80\xb6\xc1\x16\xfb\xcd\xeb\x1c\xb1\xc9\xa6\x44\xba\xae\x6b\x44\xf5\x3b\xf4\x5e\x13\x69\x31\x2e\xaf\x00\x7b\x45\x29\x67\x75\x1d\x0c\xcd\x00\xb6\x8a\xe1\x0c\xdd\xf2\x7d\x12\x38\x93\x79\x1b\xcf\xed\xeb\xac\xd8\xaf\xe9\x35\x35\x12\x08\xc5\xb5\x50\x58\xb9\xc5\x29\x26\x02\x9a\xb1\x3c\xb6\x28\x16\x36\x44\xc6\x56\x7c\xff\xcb\x82\xaf\xfe\xb1\xb9\x2c\xf2\x55\x97\x8e\x39\x08\x93\x67\x85\x5e\xd7\x91\x0d\x89\x50\x30\xee\x65\x33\x05\xb1\xc7\xe3\xd9\x33\x67\x80\x51\xdc\xc7\xf8\x3b\xa9\x5d\x0b\x26\x15\x80\x07\x59\xe3\xd9\x45\x4e\x27\x8f\x89\x61\xb8\xfd\x1c\x73\x09\xda\xa3\xc7\xad\x77\xb6\x26\x6d\x54\x18\xc3\x2b\x2e\x16\xa3\x29\xbc\x0a\x62\x3a\x01\x04\x66\x6b\xcd\xa2\x04\x8b\xca\x8a\x6b\x08\x5b\x26\xfb\x2a\x79\x0a\x11\x4e\x81\x08\xf1\xaa\xcb\x36\x23\x5f\xb6\xa0\xef\xf6\xae\x42\x16\x19\x1c\x1c\x77\x1b\x08\x82\x01\xec\x15\xc8\xf1\xd5\x7b\xe4\x8a\xb0\x64\x4b\xe5\xd6\x9b\x28\x99\xd6\xe3\x57\xa4\x2d\xb2\xd6\x03\x72\x46\x67\x39\x86\xb8\x4c\xb6\x45\x05\x12\xfc\x80\x84\x6e\xb3\x9e\xfe\x78\xff\xc7\x86\x95\xef\xb2\x7e\x77\x69\xc7\x47\x93\xc7\xa4\x2d\x81\xa3\xfa\xbd\xf7\xb3\x7f\x97\xc0\xe1\xc1\x8e\x38\x0e\x0f\x08\xb9\x68\x4c\xa7\x65\x26\x09\x2b\x63\xe3\x95\x2e\x4b\xce\xae\xb6\xe6\xd8\xb8\xd6\x73\xdb\x83\xc8\x3d\x75\xc2\xc7\x9e\x63\xb7\x53\xca\xc6\x81\x9a\xa0\x0f\xd8\xbd\xe3\x47\x09\xcf\xee\xd2\x69\xa6\x10\xb9\xd7\x35\x0f\xe3\xce\x01\xc4\x4c\x1a\x63\x3e\x43\x49\xd5\x45\x5e\xba\x12\xda\xca\xd8\x2a\xe7\x9a\x98\x96\x0d\xc0\xfa\xd0\xef\x9f\x3b\x93\x5a\x83\xbf\x8f\xf7\xbe\x6c\x02\x07\x8f\xf7\xc1\x0f\x99\x75\xb4\xa6\xfc\x5e\x2e\xbb\x8e\x3d\xb5\xbf\xde\x97\x2d\x8f\xc5\xd4\xc6\x1b\xdd\xe1\xb7\xd1\x88\x76\x5d\xf6\xfb\xbc\x35\x21\x17\x2a\x63\xa5\x5e\x17\x2c\xd7\x90\x4e\x6c\x74\xd9\x30\x7b\xe8\xd9\xfd\xa0\x26\x82\xda\x3d\xb0\xfd\x73\x67\xf3\x6d\x6c\x07\xce\xf3\x70\xf7\x9e\x3d\x1d\x8d\x9d\x41\xf8\xf9\x62\x16\x6c\x6f\x92\x8b\x44\xeb\xe2\xa5\x89\x0d\x95\x89\xa5\x36\x56\x0d\x3b\x7d\x99\xeb\x52\xa6\x1d\x1b\x24\xd6\x99\x95\x62\x25\x72\x9a\x70\x86\x91\xbe\x95\x69\x60\x59\x53\x42\xf8\x50\x3c\xd7\xc4\xee\xf7\x1d\xdf\x87\xc8\x1d\x78\xb3\x71\x88\xfa\x1e\xce\x3c\x77\xe4\x4e\x69\x8f\x90\x0b\x30\xa4\x4b\xa6\x38\xaa\x5c\xdd\x10\xca\xd6\xea\xab\x14\x93\x54\xa9\xf4\xaa\xe4\xca\x24\x8b\xea\xab\x54\x68\x7e\xbc\x67\x21\x14\x01\x80\x53\x17\x69\x60\xbe\x40\x0c\x1e\x1b\xd9\x4c\xd6\xfe\xe7\xe3\x16\xd2\x7b\xdc\x64\x27\x48\x96\xd4\x05\xa6\xc3\xa3\x4f\xb0\xc4\x74\xf8\xe8\xf8\xf8\xe0\x94\xd4\x1d\x37\xc8\x91\x48\xdd\xd0\x2a\xa5\xd4\x64\x6e\xfb\xfe\xb3\x41\x93\x93\xec\xac\x28\x07\x00\xb5\xe9\x61\x19\x38\x0a\x8b\x06\x34\x2e\xca\x3a\xc1\xbd\xe6\xa5\x58\xae\x3b\xcb\x2a\x4d\xf7\x88\xef\x8f\x37\x0d\x2d\x33\xbe\x21\xdb\x6c\xcd\x94\xd0\xb5\x88\x2f\xf7\x2c\x2c\xa5\xb0\x4b\x25\xd3\x4a\xd7\xf5\x02\x34\x0e\xd8\x7c\x5d\xa2\x53\x4d\xd5\x7a\xc7\x2d\xc1\x26\xba\xf1\x25\x21\x17\x2c\xce\x04\x1a\x73\x83\x96\x4b\xbe\xaa\x52\x56\xd2\x7b\x90\x9c\xe3\xd3\xfb\x26\x83\x6e\x55\x21\x65\xb9\x62\xb9\xf8\xda\x74\x11\xb7\x45\x11\x67\xb4\x18\xdb\x5e\x38\xf3\x46\x9b\x84\xa8\x85\xa0\x14\x8f\xaa\x52\xe8\xf5\x4b\xe2\x4e\xfd\xc0\x1e\x8f\x01\x0c\xb7\x9d\xc1\x47\x1f\x99\xa6\xab\xe9\xcd\x06\x33\xfa\xc4\x71\xe6\xf4\xc5\x6c\xe1\x51\xe4\xf7\xc0\x0e\x6c\xea\xdb\x43\xe7\xa3\x8f\x88\xef\xf4\x3d\x27\x08\x9f\x38\x80\xf2\x3e\xfa\xc1\x67\xc3\x81\xf3\xcc\x73\x9e\x79\xff\xe8\xc7\xf7\x20\x66\x54\x5a\x76\x52\x09\xea\x57\xf2\x8c\xa3\xb7\x8b\xd9\x5a\x91\xf1\x6c\xe4\x4e\x43\xcf\x99\x38\x93\xc7\x8e\x17\x0e\xec\x17\xa0\xd7\x9f\x90\xfe\x6c\xf6\xc4\x75\xb0\x4f\xd9\x12\x73\xc8\x6e\x38\x64\xb5\xcd\xe3\xcd\x7b\xed\x31\x98\x6a\xc5\x02\x24\x55\x0f\xf3\x9d\xfe\xc2\x6b\x67\x9a\x1e\x84\x75\x85\x1d\xbe\xd7\x6b\x00\xba\x09\xcf\x75\x53\xc8\x31\xf6\xb1\x69\xf7\x62\xfb\x16\xbe\x10\xcf\x79\xea\x78\x3e\x64\xae\xb3\xe7\x2f\xb0\x28\xe6\x4c\x03\xb7\x6f\xf2\xcc\x5a\x01\x9f\x77\x9e\x39\x8f\xe1\x51\x07\x6e\x6c\x5d\x32\x76\x0d\x35\x8d\xa4\xbc\x12\xdc\x24\x3e\xb1\xe9\x5c\x21\x7d\xc3\x1a\xa5\x99\xae\xd4\x36\x33\x01\xd6\xf8\x81\x1d\x2c\xc0\x16\x61\x27\x9b\x2d\xdc\xf1\xac\xe1\x01\x92\x0a\x6b\x52\xa6\xff\x2a\x22\xfe\x92\x80\xb3\x79\xea\x84\xfd\xd9\xc0\x09\xc7\x70\x35\x71\xa7\x0b\xe3\x46\x0e\x1f\x1e\x10\xcf\xf1\x9d\x20\x34\xa6\xf3\xde\x41\x67\x74\x81\xdc\x68\x5a\x2a\x32\x5f\x8a\x32\xa3\xbc\x93\x31\x91\xd6\x20\x60\x25\x94\x36\x5d\x3f\xe2\x39\x23\xd7\x0f\x1c\x2f\x74\x26\xb6\x3b\x0e\xb1\x43\xef\x4d\x5a\x72\x18\x48\x6e\x9c\x8f\x41\x38\xe6\x65\x80\x08\x79\x4c\x51\xd3\x1b\xfd\x66\x51\x24\xab\xdc\xf4\x67\xda\xea\xed\xfa\xc1\x3b\x29\x1b\x2e\x11\x93\x5b\x25\x56\x39\xc2\x7b\x49\x11\xbe\xb2\x7c\xad\x13\x91\xaf\xba\x04\x72\x6a\xd7\x73\x42\xdf\x1d\x4d\xdd\x69\x08\xa0\xb4\x45\x61\x02\xbb\xc9\x65\xdd\x5c\x6c\xc5\xcd\xe9\x2c\x70\x87\x2f\x42\xd8\x4d\x7b\x38\xa0\x87\x98\x6b\x26\xd2\x47\xd8\xae\x55\x8f\xf6\xf7\x57\x42\x27\xd5\x65\x37\x92\x19\xd8\xb6\xd0\x0a\x4d\x7c\x5f\x28\x55\x71\xb5\x7f\x78\x7a\xb2\x49\x73\x3e\xa0\x55\x9b\x49\xde\x37\x76\xf6\x3e\x26\xd4\x6a\x17\xb1\x42\x47\x09\x03\x48\x2f\x62\xa3\xde\xef\x48\xa9\xa6\xdd\xb7\xe7\x41\xff\xdc\xde\x46\x95\x1b\x7e\x99\x48\x79\x85\xad\x7b\x04\xb5\x2d\xb0\x86\x54\x36\x4e\xa8\x52\x7c\x5b\x28\x84\x6d\x82\x4b\x55\x29\x8b\xae\xe0\x22\x16\x2a\x92\x65\x6c\x2e\xf3\x95\x66\xe9\xd5\x1e\x69\xb0\x13\x8c\xb6\x28\x8e\xb5\x68\x3d\x12\x2e\xcc\x38\x72\x46\xcf\xa5\xbc\xc2\x1c\xf9\x03\x05\x95\x7a\xa5\x00\x11\xe4\x5d\x65\x94\xbb\x2b\x27\x03\x9e\x0a\xec\x42\x88\x8c\x43\xba\x06\x06\xc8\x23\x99\xc7\x8a\x0c\x1c\x50\x7e\x2f\x0c\xdc\x89\x33\x5b\x60\xe8\x39\xc1\x36\x21\x68\xa9\xc8\xd1\x71\xf2\x56\xff\x19\xd8\xe8\x3f\x71\xe7\x61\x30\xf6\xc3\xa7\x8e\xe7\x0e\x5f\xb4\x64\x31\xdd\xa0\xbb\x44\x28\x4c\x5e\x5a\xd5\x02\x4c\x32\x00\x2e\x16\x6c\x05\x21\x61\xe4\x4e\x47\xe1\x74\x31\xd9\xc2\x3b\x91\xf2\xf2\x5d\xf4\x70\x46\x1f\x57\xcb\x25\xb8\x0e\x53\xe0\x04\xcc\x96\xb0\x3c\xe7\xa9\x45\xaf\x38\x2f\xa8\xc0\x58\x23\x30\xbe\x9b\x8e\x26\x8d\x31\x5b\xbb\xca\xe5\x0d\xbd\xc1\x23\x0d\xf0\xb0\x4b\x7c\x67\x3a\x08\x1f\x2f\x86\x43\xc7\x03\x26\x19\x0e\xd5\xa5\x25\xf1\x1a\x50\x41\x01\x70\x29\x6e\x9a\x90\xaa\xba\xfc\x12\x22\x38\x20\x4c\xe2\x2f\x1e\xff\xb6\xd3\x0f\xc2\xb9\xe7\x0c\xdd\xe7\xb4\x47\x5f\x5d\x7c\x7c\x6f\x7b\x22\xe6\xbe\x7a\x49\x5f\x35\x26\x65\x2a\x94\xe4\x8c\x8e\x32\xb4\x15\x95\xe9\xa2\xbb\x82\x6b\xb0\x93\x47\x27\x0f\x3f\x21\x67\xf4\xf3\xcf\xeb\x07\x5f\x7d\x85\x77\x1f\x9c\x02\xeb\xa7\x52\x73\xab\xc9\x31\xb1\xb5\xc4\xf3\xb8\x06\x76\x7b\x0f\x4e\x4f\xf6\x2c\xea\x4f\x82\xb9\x6f\x4a\x17\x97\xe8\x56\xe3\x2e\x5d\x60\x0b\x02\x9b\x15\xc1\xd8\xa7\x32\x37\xef\x9e\x3c\xfc\x04\xd8\x52\x72\x00\x75\x66\x6f\x00\xb9\xbd\x61\x9f\x9e\x3e\x38\xf8\x74\x53\x2d\xb9\x55\x52\xdd\x12\x12\xba\xae\x91\xa4\x37\x6c\xad\x36\xf3\xd5\x40\xa5\x15\xbc\xcf\x9d\xf1\x8c\xca\x82\x1b\x5b\x33\x60\x20\x91\x4a\x63\x74\x01\x83\x8a\x05\x48\x91\xe7\x7a\xdb\xcb\xc0\x77\x7a\x78\x78\x04\x41\xf8\x66\x3c\x18\xdd\x2e\xc1\x1d\x14\x87\x5d\x01\x53\x88\xe9\x12\x18\x87\x8d\x39\x13\x16\xd0\xd9\xa2\xab\x35\xe8\x06\xb7\xd7\x3e\x40\x21\xdb\x3b\xee\xd2\x59\x9e\xae\x11\xcc\xe8\x44\x98\xf4\x4e\xf1\x74\xd9\x01\x8f\xca\xe3\xf6\x8b\xca\x28\x7e\xa3\xf4\xc6\xff\xd2\x28\x15\x90\x1f\xb6\xc6\x01\x42\x0b\xfb\x8e\x17\xb8\x43\x70\x6e\xdb\x50\x76\xc7\x99\x08\xa3\xf3\x1f\x3a\x14\x51\x8f\xd8\x9e\x8a\x40\xfd\x32\x67\x47\xcc\x21\x19\x0b\xa5\x79\x72\x7c\x74\x54\xd7\xe3\x6a\xff\x84\x88\x9e\xe5\x94\x63\xc8\xda\x0c\xae\x0f\x06\xbd\xda\x9b\xb2\x8c\xef\xd1\x9f\xe0\xe3\xcf\x5a\xe7\x53\x7e\xeb\x15\x35\x36\x4b\x86\xde\x6c\x52\x27\xdc\xb0\x88\x2d\x40\xc0\xb0\x55\x30\xa5\x6e\x64\x19\xd7\x88\xb4\x0d\x46\x81\x31\x9a\xbf\xd6\xfb\x45\xca\x04\x26\x1a\x86\x22\xda\xae\xcc\x35\x40\x6f\xe0\xd2\x7c\x6c\xbb\xd3\x30\x70\x9e\xb7\x2b\x9c\xee\x92\x2a\x6e\xba\x2a\x89\xce\x52\xb3\x7e\x85\xd5\xc0\x9c\xb2\x54\xc9\x3a\x23\xa6\x8c\x22\x79\x98\x88\xb2\x14\xdb\x29\x5a\x5c\xf3\xc6\x78\x27\xee\xc4\xa1\x19\x57\x8a\xad\xb8\x85\xb0\xc4\x28\x37\x95\x29\x56\xe3\x80\x2b\x46\x7a\xa6\xa3\x92\xb1\x2b\x4e\x55\xc1\x32\x48\x96\x34\x38\xfc\x84\x15\x85\xe0\x65\x97\xd8\x83\x41\x6b\xad\xa1\x3d\x6e\x35\x04\x2f\x22\x16\x25\xbb\x09\x02\xcf\x64\xb9\x36\x60\x3b\x16\x10\x22\xa4\xb9\x8b\x23\xf7\x76\x3b\x1f\xf5\x60\x62\x0f\xec\x79\x80\xc0\xca\xdc\x69\xb0\x77\xfd\xbc\x06\xf4\xa3\xbe\xa9\x23\x5f\xb3\xb4\xe5\xc5\x77\x28\x9e\x1e\x10\x77\x1a\x38\xde\x53\x1b\x22\xf7\xe9\x41\x43\xc8\xac\xc5\x40\xf8\xd6\x5a\xb6\x9d\x64\xb4\xbe\x46\x4f\xc8\x19\xc5\x17\x1e\x35\x4d\xf3\x9e\x8e\x0a\x0b\x1e\xf6\x1e\x9d\x1e\x7f\xf2\xa9\xd5\x48\xbf\x97\xb1\x88\x95\x32\xb7\xe2\xcb\xde\x81\x55\x48\x99\x62\x53\xa9\x77\x78\x70\x60\x89\x38\xe5\x61\x1d\x74\x7a\x06\x55\x35\x33\x3f\xa2\xaf\xb6\x39\xce\xe1\xe1\xd1\xe1\xe1\xab\xc6\xa5\x00\x92\xc3\x0e\xe5\xdd\x3c\x85\x4c\xb6\x66\x69\xc3\xde\xbb\xf8\xd9\x9c\x7c\x6c\x33\x74\x5e\xca\x6b\x01\xb2\x47\x38\xb7\xa2\xb2\x30\x59\xc4\x59\x3d\xe4\x11\xba\x0d\x53\x61\xcc\xd7\xcd\xa8\x35\xd7\x90\xdf\x8b\x94\x3f\xa2\xf5\xca\x4c\xde\x0e\x49\x4f\x5d\x3d\x31\xa5\x98\xfa\xa9\x7a\xf5\xff\x8d\x7b\x90\x23\x3e\xa2\x2b\xd9\x51\x5f\xa5\x9d\xb8\x84\xa8\xbe\x8f\x37\x69\xac\xf2\x66\xc1\x4a\x97\x22\x5f\x35\x2b\x83\x44\xf1\x51\x33\xdf\x67\xcd\x1a\x43\x0d\x4e\xfb\xd5\x86\x4d\x61\x7d\xa8\xb4\x4e\xd2\x9a\x9d\x60\x95\xc1\x6c\xb9\x06\xf4\x98\x1f\xec\xe2\x70\x11\xa6\xe2\x8a\x87\x2b\x73\x1e\xd4\x35\x11\x18\x3c\x6a\xc3\x2d\x48\xc5\x01\x2c\xd6\x4a\xdc\x76\xe4\xc6\x31\xbe\x27\x79\xa9\xa1\xdd\x36\x9d\xd8\x79\x17\xc1\x5b\x0d\xe9\x00\xd1\x6f\x12\x87\xba\x80\xd6\x2c\x7c\xd4\x47\xe0\xb3\x31\x9c\x1d\x22\xc7\xa7\x07\x07\x64\xd4\x0f\x1b\x93\x41\x20\x44\x7b\xe6\xfe\x96\x46\x2a\x96\xa6\x3b\xb1\xf3\xf2\xc3\xd3\x07\x07\x07\xc4\x77\xf0\x98\x57\x38\x76\x87\x4e\xf3\xba\x79\x72\x46\xfb\x5b\xa6\x61\x68\xe9\xfb\xde\x90\xc0\x9f\x5b\xa9\x4c\x18\xa9\x72\x49\xc8\x45\x21\x22\x5d\x95\xe8\x4d\x9a\xba\x6e\x5d\xcb\x55\x9b\x42\x19\x8f\x29\xbb\x66\x9a\x95\x8a\xd8\x4f\xed\xc0\xf6\xc2\xc5\x1c\xfb\xdf\x3b\xc5\xbf\x7a\xc4\x6d\x3a\xad\xba\xf2\x3b\xd4\x3c\x67\x3e\xf3\xdd\x60\xe6\xbd\x08\xdf\x4f\x18\x08\x74\xb6\xd4\xfb\x89\xc8\xb9\xe2\x35\x42\xc6\xaa\x47\x22\xa5\xe2\x74\x2f\xae\xa4\x4a\x2a\xb9\x67\x7a\x2e\xac\xa9\xb3\x99\x57\xa9\x92\x55\x19\x71\x8b\x82\xe6\x98\x54\xe2\xd1\xfe\x7e\x94\x77\x57\xa5\x19\x80\xe9\x84\xb9\xdc\x27\x23\xaf\x5e\x8f\x3f\x5b\x78\x7d\x4c\x7f\xeb\x61\xd8\x1c\xc6\x16\x54\x5a\xf1\x0d\x22\x5a\xca\x32\xda\x54\xa2\xf1\x7c\xa6\xc8\xa9\x5c\x2e\xb1\x50\x98\xe1\x19\xb6\x06\x81\x34\xa4\x5b\x5a\x37\xe4\x31\x1e\xfa\x6c\x18\x43\x53\x29\xaf\xaa\x02\xb6\xa8\xe8\x60\xea\xd7\x9d\xf5\x48\x02\x60\xaa\x87\x6c\x5b\x10\xe4\xcc\x40\xb5\x26\x6a\x29\xce\x37\x99\xd2\xcd\xcd\x4d\x37\x15\x97\xcd\x16\x65\xb9\xfa\x1e\xeb\xc7\x65\xdd\xde\x00\xb0\x74\x54\xd3\x01\x4d\x8c\x85\xba\x64\x29\xe0\xb2\xda\x20\x86\xce\xc0\xf1\xec\xc0\x19\x84\xb7\xf6\xf7\x81\xb2\xb6\xc9\xd8\xc8\xc5\x3f\x90\x62\xf6\x9d\x83\xbe\x57\x75\xfb\xc1\x6e\x71\xfb\xc1\x6f\x58\xdb\x3e\xb9\xdd\x69\xb8\x00\xcf\x02\xbc\xf6\xcd\xc9\x1a\x6e\x8e\xc9\xd5\x98\x09\xd8\xb6\xac\xd2\x74\x4d\x65\xa5\x8b\x0a\x14\x33\x06\x38\xba\x4b\xd4\x1b\xf6\x0f\x0f\x8f\x8e\x1b\x22\x2c\x6d\xe0\x0e\x8f\x9b\x36\x17\x48\xcd\x9e\xfa\x6e\xdf\xc2\xd3\xab\x03\x06\x89\x86\x57\x5d\xae\xeb\xab\x61\xff\xe1\xd1\x51\xf3\xf9\x85\xb9\x38\x39\xb0\x1a\xd2\x9b\x0b\xf3\xe8\xf8\xf8\xf8\xd3\xcd\xc5\x94\xe5\xd2\xa2\x4f\x84\x8e\x12\x9e\x5b\xd4\xd7\x2c\x2b\xea\x8f\x89\x48\x53\xb1\xb9\x8e\x4a\x89\x10\x04\xbf\xc2\x5b\x35\x3c\x41\x51\xb6\x93\x45\x76\x09\x99\x6a\x8b\x0d\x8d\x21\x3d\xda\xdf\x5f\xc9\x94\xe5\x2b\xb0\x9f\xfd\xe2\x6a\xb5\x0f\xdc\xdb\xff\x41\x71\xb5\xea\x44\x32\x57\x9a\x81\x8e\x0c\x67\xde\xc4\x46\x34\xd1\x9c\xe2\x4e\xb7\xca\x2e\x97\x78\xc0\x8a\x97\x8a\x5c\xa4\x72\xf5\x92\xec\x9e\xbc\xec\xd7\xf9\x3d\x50\x93\x29\xaf\x31\x53\x8d\x3b\xda\x58\xa3\x19\xd0\xa4\x02\x32\xcb\x98\xa9\x7f\xd5\x85\xf9\xac\x4a\xb5\x28\x9a\x06\x66\xad\x9c\xcd\x6b\x16\xaa\xc9\x1e\xa9\x6b\xae\xf5\xdd\xff\x97\xe9\xee\x1d\x99\x6e\x83\xa7\x82\x92\x45\x58\x0f\x76\xf3\xa5\x84\xcf\x67\xac\xcc\xe1\xd3\x29\x4b\x59\xc2\xc5\x90\x69\x96\xde\xda\xb0\x79\x8b\x8c\x9d\xa7\x0e\x80\x4b\xfc\x4a\x1a\x80\xb9\x61\x97\x71\x50\x79\xba\x46\xee\x76\xeb\xfb\x2f\x31\x1c\x66\xe8\x76\x50\xb4\x92\x8a\x3c\xe1\x25\xfe\x30\xa3\xa6\xb8\xa1\x85\x9c\xb9\x4d\x08\x6e\x7e\x2f\x2a\xb5\x53\x35\x1e\x4a\x35\xed\x7d\x1e\x83\xd4\x69\x29\x35\x88\xe6\x9e\xba\x01\x6d\x45\x6b\x95\xe0\x42\x20\xdf\xa8\x01\xe1\x7d\x32\x9e\x8d\x42\x6f\x16\x98\xec\x6d\x83\x27\x56\x38\x2d\x10\x89\x99\x48\xd7\x64\x60\xbb\xe3\x17\xef\x8c\xdb\x38\x10\x95\x88\x25\xa6\x3c\x90\x9a\xa7\xa6\x61\xbc\xc3\xcf\xa3\x87\x75\xdb\xf3\x90\xfe\xe4\x27\xf4\xe8\xa1\x45\x8f\x4e\x4e\x5b\xbe\x25\xf4\xcf\xdd\x21\x9e\x2d\x7e\x58\xd3\xc5\x00\xb0\xf5\x33\x2d\xc2\xf8\xd2\xd8\x9d\xd6\xed\x32\xfc\x0f\xe4\xfd\xba\x10\x25\x7a\x8c\x75\xa3\xf7\x06\xbc\xde\x8b\x79\xca\x35\xa7\x6c\xa9\x31\x19\x7a\x8d\x43\xee\x23\x99\x4d\x6d\x7a\xd3\x00\xc0\x0a\xd7\x6d\x79\xe0\xdd\xef\x29\x90\x67\x75\xe1\x6a\xe1\x8d\x09\x9e\x71\x23\x86\x46\x5d\x08\xfb\xbf\xa6\x62\x8a\xa0\x88\xaf\x62\xa1\x8a\x94\xad\xcd\x39\xed\xba\x50\x46\x5a\x65\xf5\xdd\x62\x4d\x3d\xff\x6b\x59\x66\xad\x7e\x22\xb2\x06\x35\x04\xab\xba\xb7\x24\xeb\x19\xd5\x31\x9d\xf2\x98\xad\xeb\x01\x21\xea\xc1\x3b\xc3\x64\x1e\xd5\x04\x51\x1b\xf8\xeb\x88\x2b\x80\x10\xaf\xe9\x6e\xf8\x30\x86\xd9\xf4\xa7\x51\x50\x5a\x1a\x53\x37\x5e\xca\x84\x93\xb6\x64\x8e\x21\xed\x2c\x65\xbb\x13\xda\xfc\xac\x09\x6e\xd7\x27\x6d\x0a\x5e\x0a\x19\x9b\x53\x2d\x77\x1c\x1c\xf0\xaa\xbc\x3d\x1a\x0b\x36\x78\x18\xc0\xd4\x14\xcd\x2f\x9c\xee\x3a\x00\xbb\xc0\x5f\x28\xd4\x87\xc7\x94\x59\x49\xd7\xfc\x6c\x21\xac\x6f\xbe\x24\x7e\xff\xdc\x19\x2c\xb0\x92\xf1\x99\x61\xd8\xe1\x41\x46\xb0\x23\xb1\x41\xa0\x09\x67\xa9\x4e\xcc\xa1\xe1\x9a\x0c\xc0\xcb\xd0\xdc\x0f\xf1\xfe\x5d\x94\x8e\x1e\x24\x64\x5b\xb0\x3c\x3d\x00\x48\x60\x97\xab\xca\x80\x13\x73\x3e\x3a\xcb\xc0\x6b\xff\x68\x25\x34\x5d\xaa\xe8\xea\x47\x8d\xf3\xed\x74\xaa\xbc\x84\xb8\x8e\x5c\xeb\x74\x34\x5b\x29\x70\xe0\x10\x5e\x30\x08\xc9\x7c\x13\x66\x84\xee\xa8\x28\x43\x28\x1a\xcb\x48\xe1\x0d\x20\xb6\x7f\xd8\xfd\xa4\x7b\x42\x6c\x6f\xe4\x1b\x9f\xd5\xc7\x63\xcf\x2d\x6c\x8d\x47\x80\x95\x16\x51\xc3\x1e\xdc\x4b\x88\xbb\x83\x67\xea\xe5\x6d\xee\xa2\x50\xee\xde\x2a\x4c\x90\x72\x96\x57\x45\x7b\x0a\x56\x46\x89\xb8\xe6\xaa\xcd\xb8\xfa\x5e\x18\x99\xe1\xef\x4c\x62\x44\x78\xf7\x2c\x67\x34\x80\x2c\xa9\xf9\x21\xd3\xf6\x34\xb7\x58\x36\x73\xb5\x3a\xd3\xf5\x01\x12\x32\x1b\x43\xf2\x18\x9c\xdb\x10\x62\x70\xb1\x17\x2b\xa1\x5b\x4d\x3d\x45\x13\xb1\x4a\x52\xb1\x4a\xcc\x69\x76\x3c\xb7\x0b\xa2\x29\x79\x26\xaf\xcd\x29\xcb\x7c\xc5\xb7\xad\xbc\x81\x3b\x1c\x86\xe7\xee\xe8\x7c\xec\x8e\xce\x83\x9d\x5e\x45\x1b\x62\x81\x27\x54\x1b\xf0\x07\x94\xdb\xde\x10\x5c\x40\x2c\x96\x4b\xec\x86\xa0\xe5\x8c\xdc\xc0\x90\x6e\xfb\xc8\x77\xa8\x46\x09\x2b\x59\x84\xc5\x1f\x24\x99\xb6\x4f\xe0\x7e\x98\x26\x9e\x10\xb5\xfb\x81\x39\x68\x7f\x72\x07\x71\x83\x0a\x55\x22\x6f\xf2\x0f\xd0\xda\x1e\x79\x38\xf8\xb0\x5a\xaf\xa2\x96\x52\xb3\xd5\x0a\xcf\x75\x5f\x83\x4e\x43\xc0\xfb\x4d\x74\x7a\x15\xd5\x1a\x3d\xea\x87\x5b\xa5\x9e\x6d\x6a\xb9\x77\xf4\x0d\x40\xca\xdd\xfa\xfe\x4b\x62\xce\x13\x3a\x68\x8c\x07\xf5\xb9\x51\xf3\x2b\x3a\xd2\x1f\xcf\xa6\x4e\x7d\x3d\x5f\x8c\xc7\xf5\xe5\xa8\x6f\x8a\x53\xe4\xc2\x78\x8c\x97\xad\x83\xb9\xed\x0a\x57\x22\xab\x52\xd1\x4b\xae\x6f\x38\xaf\xdb\x07\xc6\x5d\x0c\x9c\xa1\xbd\x18\x07\x61\xab\xd6\xf5\x90\x90\x0b\x56\x88\x97\xef\x30\x5e\x68\x9e\xd5\x47\xfd\xcc\x4f\x0f\x4c\x42\xc5\x4c\x27\x02\xb8\x6f\x7e\x64\xeb\x3b\xa1\x1b\x38\x13\x23\x3f\x42\x2e\x2a\xa4\xb5\x6d\x6a\xec\x1c\xda\xdc\x1c\x12\x01\x81\x1a\xed\x90\x39\xfe\x56\x28\x05\x96\x23\x69\xe7\xf9\x7c\x3c\xf3\x9c\x70\xa7\xd9\x71\x74\xb0\x43\xd4\x64\x5d\xef\x23\x87\x64\x5c\xdf\x5f\xdc\x22\x72\xb8\x4b\x64\x73\x92\xb8\x3e\xa4\xb9\x4b\x84\x45\x5a\x5c\x0b\xbd\xa6\x4b\xce\x63\x32\x74\x9c\x01\x9e\x8e\x32\xa7\x17\x6b\x82\x27\x9b\x53\x15\x72\x49\xf7\x74\xc2\x33\xde\x89\x64\x2a\xcb\x3d\x9a\x71\xcd\xa8\x66\x2b\xcb\x1c\x0a\xbd\x5c\x53\x3b\x8f\x4b\x29\x62\xfa\x5b\x3d\x7a\x82\x3f\x83\xb1\x41\xa3\xb1\xf5\x46\xf1\x25\xcc\xeb\xe9\x5e\x2e\xf3\xfa\xa4\x41\x73\x02\xc1\x48\x01\x4b\x6c\xed\xdf\xa7\x29\xbd\x4e\x37\x0d\x46\x48\x03\xb6\xed\xc5\x98\x5f\xf3\x54\x16\xbc\x54\xdd\x95\x94\x2b\x53\xa3\xde\xbf\xe1\x97\xfb\x26\xe4\xa8\xfd\xa3\x83\xc3\x07\xfb\x87\x87\xfb\xbe\x49\x78\x3a\x4b\x59\x76\x5a\x1b\xe8\x88\xbc\xd3\x4f\x4a\x99\xf1\xce\xf1\xa7\xf8\xb0\x5e\x3e\x09\xce\x9d\x89\x13\xf6\x67\xe3\x99\x17\x4e\x9c\xc0\x0e\x03\x7b\x44\x7b\xf4\xd5\x0f\x96\xcb\x93\xe3\x07\xc7\xaf\xda\x60\x4e\xe4\xf4\x72\xad\xb9\xda\x1a\xb2\x49\xcf\xb7\xa8\xe3\x5e\xbb\x32\x34\x79\x5c\x43\x29\xd7\x9f\x8f\x6d\x53\xd4\x6f\x02\xfe\xc3\xe3\x87\x0f\x4f\x0f\x1e\xa2\x82\x75\x37\x87\x20\xb6\xc2\xac\xbb\x8d\x1f\x50\x08\x40\x35\xbb\xfa\x70\x72\xf0\xae\xa6\x7e\x90\x84\xe7\xcc\x67\x1f\x24\x91\x4b\x2d\xa2\x5f\xa3\x98\xd3\x59\xe0\xf6\x6f\xab\xf7\xc9\x0e\x99\xf6\x79\x8d\x0f\xd2\x9a\x79\xa3\x77\xd6\x83\x1c\x02\x76\xdc\x61\x87\xbf\xe1\xee\x0e\x77\x97\x95\xf3\x1b\x85\xe6\xf0\x6b\x36\xe8\x3c\xf3\x43\x34\x98\x0f\x99\x70\x63\x75\x1f\xa2\xd4\x1c\x15\xde\xa1\x73\x0c\x5b\x2c\x40\x35\x75\xc2\xab\x9d\x93\x53\xed\xea\xe6\x63\xdb\x77\xfb\xd8\x30\xdf\x84\xc3\xed\xad\xd6\xc9\x91\xf6\x5d\xec\xc6\xcc\xbc\x01\x22\x6d\x71\xf8\x30\x7f\x49\xc6\xf6\x14\x7c\x3b\xe5\x79\x67\xe1\x5b\x5f\x27\x9d\xfe\x14\xfe\x9e\x3f\x81\xbf\xc1\x33\x2b\xe6\x9d\x81\x63\x2d\xcb\xce\xd0\xb3\xf2\xb4\x33\x1d\x5b\xe9\x75\x67\xfc\xd4\x2a\xab\x8e\xb7\xb0\xbe\x64\x9d\xdf\x9e\x5b\x5c\x75\x1c\xdf\x2a\x74\xe7\xb1\x67\x15\x69\x67\x3e\xb6\x2e\x57\x9d\xc7\x23\x4b\xe8\x8e\x1b\x58\x4b\xd1\x19\xba\x96\x2e\x3b\x81\x67\x45\xaa\xd3\xff\xc2\x52\x65\xc7\x9f\x5b\xea\xba\xe3\x3b\xd6\x95\xec\x3c\xf1\xac\x55\x0a\x14\xaa\xab\xce\xc2\xb6\x78\xde\x19\x3d\xb6\x92\xaa\x73\xbe\xb0\xd4\x55\xc7\x7f\x62\x89\xb8\xe3\x0e\xac\x25\xeb\xb8\x9e\x75\x2d\x3a\x4f\xa7\x30\xd7\x3c\xc0\x13\x50\xb0\x76\x27\x5f\xa5\x42\x25\xd6\xaf\xfe\xd3\x37\x7f\xf3\x97\xff\xe2\x6f\x7e\xf6\x67\xbf\xfc\x83\xdf\xb3\x7e\xf5\x17\xdf\xfe\xdd\x7f\xf8\x97\xe6\xcb\xdf\xff\xe2\x9f\xfc\xdd\xbf\xff\xd7\xbf\xfc\xd9\x7f\xfe\xfb\x5f\xfc\xd3\xdb\x0f\xfe\xf6\xf7\x7e\xfe\xab\x6f\xff\x2d\x3c\x18\xf0\x4a\xab\x28\xb1\x96\x25\xcb\xbf\xfb\x13\x26\x94\x35\xe5\x31\x2f\x53\x96\xc7\xca\x4a\x99\xbe\x16\xfc\xaf\xff\xb8\xb2\xde\x7e\xf3\xf6\x77\xdf\x7e\xfb\xf6\xdb\x37\x3f\x7f\xf3\xb3\x37\x7f\x61\xfd\xf2\x0f\xff\xdd\x2f\xff\xe8\x3f\xfe\xed\x9f\xfe\x1b\x8b\xab\x82\x7d\xf7\xe7\x32\xb5\xc0\xe1\x54\xab\xea\xbb\x3f\x55\x34\x96\xf4\x71\xc9\x94\x80\x9b\xa9\xba\x12\xd6\x9b\x3f\x7f\xfb\xcf\xde\xfc\xf7\x37\xff\xe5\xcd\x4f\xdf\x7e\x63\x68\x58\x42\xb3\x54\xb0\x5c\x5a\xaa\x92\x99\xb0\x82\xef\x7e\x51\x5e\x7d\xf7\x27\xdc\xfa\xab\xdf\xe7\x7f\xfd\xc7\x5a\xe4\xcc\x7a\xfb\xed\xdb\x6f\xde\xfc\x8f\x7a\xb8\xba\xe6\xb9\xba\x62\xd6\xff\xfe\x57\x7f\xf4\x3f\xff\xdb\x9f\xfd\xaf\x3f\xf8\xaf\xd6\x8a\xa5\x7c\x25\xad\xb7\xbf\xfb\xe6\xe7\x6f\xbf\x79\xf3\xd3\xb7\x7f\xf8\xe6\x2f\xdf\x7e\xfb\xf6\x9f\xbf\xf9\xf9\x9b\x9f\x5a\x35\x6f\xe8\xbd\x45\x8e\xa7\x05\x9f\x88\x7c\x15\xcb\xec\xbe\x35\x61\xab\x35\x2b\x2d\x3f\x95\xd7\x3c\xff\xab\xdf\x87\x69\xdc\x3c\x96\x39\x57\x82\xe5\xd6\x9c\x97\xf8\xf9\x54\x70\x6c\xbe\x2a\x6e\xcd\x37\xbb\x22\x26\xc3\x32\xc7\x20\xc0\xdd\x42\xcc\x2f\x44\x74\xc5\x4b\xa3\x56\x5d\xb8\x99\xb2\x7c\xf5\x92\xa0\x5e\xa1\x7e\x11\x54\x2e\xda\xa3\x5f\x27\x04\x35\x0c\x2f\x3b\xc1\x33\x82\x7f\x37\xdf\x50\xe3\xf0\x1f\x50\x20\xa8\x76\xa0\xde\x25\x41\xdd\xa3\x3d\x9a\xa7\x04\x15\x90\xf6\x68\x7a\x4d\x50\x0b\x69\x8f\x96\x15\x41\x55\xa4\x3d\xfa\x25\x23\xa8\x8f\x30\xa7\x22\xa8\x94\xb4\x47\xf1\x93\xa0\x72\xc2\xb7\x94\xa0\x86\xd2\x1e\xbd\x5c\x11\x54\x53\xda\xa3\x42\x13\xd4\x55\x98\x50\x10\x54\x58\xb4\x39\x82\x5a\x4b\x7b\x14\x3f\x09\x6a\x2f\xed\x51\x55\x12\x54\x61\xb8\xbc\x26\xa8\xc7\xb4\x47\xaf\x24\x41\x65\xa6\x3d\xba\x4a\x09\x6a\x34\xed\xd1\xea\x8a\xa0\x5a\x1b\x43\x1b\x3d\x26\xa8\xde\xb4\x47\x93\x8a\xa0\x8e\x03\x91\x2b\x82\x8a\x0e\x2b\x89\x09\x6a\x3b\x5a\x36\x41\x95\xa7\x3d\x7a\x2d\x08\xea\x3d\x6e\x87\x60\x1e\xdf\x9c\xda\xcc\x58\x51\xe0\x2f\x27\x65\x0b\x59\x47\x29\xc3\x9e\x1d\xc2\xc1\xae\x96\x59\xda\x13\xb9\x20\x17\x9b\x11\xdd\xfa\xb5\x97\x84\x5c\xe0\x3f\xad\xf1\x92\xf8\xe7\xb3\x67\xe1\x70\x36\x0b\x1c\x2f\xc4\xcc\xd8\x9d\x8e\x5a\x70\xdb\x4f\xe4\x8d\x69\x9c\xc8\x25\x6d\x7e\x9c\x47\xf9\x6b\x1e\x55\xcd\x69\x0e\x53\x9d\x93\x9a\x97\x3b\xc4\x02\x67\x32\x1f\x43\x5e\x8c\xcd\x83\xba\x23\x82\xfe\xec\xff\x04\x00\x00\xff\xff\xc2\xdb\xf5\x64\x12\x45\x00\x00"
func confAppIniBytes() ([]byte, error) {
return bindataRead(
@@ -324,8 +324,8 @@ func confAppIni() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "conf/app.ini", size: 16969, mode: os.FileMode(0644), modTime: time.Unix(1582129260, 0)}
- a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0x21, 0x50, 0xe6, 0xae, 0x51, 0x62, 0x82, 0xa4, 0xb2, 0x2f, 0x2d, 0x1e, 0x7a, 0x64, 0xa9, 0x23, 0x99, 0xaa, 0x6b, 0x23, 0xce, 0x29, 0x9d, 0xee, 0xce, 0x16, 0xd6, 0x60, 0x1a, 0xd, 0xa1}}
+ info := bindataFileInfo{name: "conf/app.ini", size: 17682, mode: os.FileMode(0644), modTime: time.Unix(1582332495, 0)}
+ a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x1d, 0x71, 0x70, 0x9d, 0xe0, 0x66, 0xb0, 0xa7, 0xfc, 0xe, 0x83, 0xf, 0x4e, 0x91, 0x1f, 0xae, 0xed, 0x4a, 0x97, 0xfc, 0x7e, 0xc2, 0xda, 0x3b, 0xd2, 0xad, 0x1b, 0x64, 0x98, 0x91, 0xdd}}
return a, nil
}
@@ -4569,7 +4569,7 @@ func confLocaleLocale_enGbIni() (*asset, error) {
return a, nil
}
-var _confLocaleLocale_enUsIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xeb\x72\x1c\xb9\xb1\x30\xf8\xbf\x9e\x02\xa3\x13\x0c\xcd\x44\x50\xad\x98\xf1\x77\xbe\xdd\x98\x10\xe5\xe5\x50\xa3\xcb\x39\x94\xc4\x43\x4a\xf6\xe7\xd5\x2a\x6a\xd0\x55\xe8\x6e\x98\xd5\x40\xbb\x80\x62\xab\xc7\xe1\x37\xd8\x07\xd8\xe7\xdb\x27\xd9\x40\x5e\x70\xa9\xaa\x26\x25\xfb\xec\x1f\xb2\x0b\x48\x24\xee\x89\xcc\x44\x66\x42\xee\x76\x75\xab\x5c\x23\xce\xc4\xb9\xd8\x49\x6d\x3a\xe5\x9c\x70\xaa\x5b\x3d\xd9\x58\xe7\x55\x2b\x5e\x69\x2f\x9c\xea\xef\x74\xa3\xaa\x6a\x63\xb7\x4a\x9c\x89\xd7\x76\xab\xaa\x56\xba\xcd\xd2\xca\xbe\x15\x67\xe2\x05\xff\xae\xd4\x97\x5d\x67\xfb\x00\xf4\x2b\xfe\xaa\x36\xaa\xdb\x85\x32\xaa\xdb\x55\x4e\xaf\x4d\xad\x8d\x38\x13\x37\x7a\x6d\xc4\x1b\x83\x29\x76\xf0\x9c\xf4\x7e\xf0\x98\x36\xec\x38\xe9\xe3\xae\xea\xd5\x5a\x3b\xaf\x7a\x71\x26\xae\xe9\x67\xb5\x57\x4b\xa7\x7d\xa8\xe9\xcf\xf8\xab\xda\xc9\x75\xf8\xbc\x92\x6b\x55\x79\xb5\xdd\x75\x12\xb2\x3f\xd0\xcf\xaa\x93\x66\x3d\x20\xcc\x25\xfd\xac\x9a\x5e\x49\xaf\x6a\xa3\xf6\xe2\x4c\x5c\xc0\xc7\x62\xb1\xa8\x06\xa7\xfa\x7a\xd7\xdb\x95\xee\x54\x2d\x4d\x5b\x6f\xb1\x53\x1f\x9d\xea\x05\xa5\x0b\x69\x5a\x11\xd2\xa1\xc1\xaa\xad\xb5\xa9\xa5\xa3\x56\xab\x56\x68\x23\xa4\xab\x00\x95\x91\x5b\x2e\x1d\x7e\x56\x6a\x2b\x75\x17\xc6\x28\xfc\xaf\x76\xd2\xb9\xbd\x85\x81\xbc\xa2\x9f\x55\xaf\x6a\x7f\xd8\x29\xe8\xf0\x93\x0f\x87\x9d\xaa\x1a\xb9\xf3\xcd\x46\x86\x66\xe2\xaf\xaa\xea\xd5\xce\x3a\xed\x6d\x7f\x00\x38\xfe\xa8\x6c\xbf\x96\x46\xff\x2e\xbd\xb6\x61\xac\xdf\x67\x9f\xd5\x56\xf7\xbd\x0d\x03\xf9\x16\x7e\x54\x46\xed\xeb\x80\x47\x9c\x89\x77\x6a\x9f\x63\x09\x39\x5b\xbd\xee\x71\x14\x43\xe6\x5b\xf8\x0a\x58\x30\x8f\x30\x61\x56\xc4\xb6\xb2\xfd\x2d\xa5\xbe\x0c\x3f\x47\x28\x6d\xbf\xa6\xdc\xb2\x5d\xd2\xc8\xb5\xa2\xdc\xb7\xf0\x51\x00\xb8\x4a\xb6\x5b\x6d\xea\x9d\x34\x2a\x0c\xdd\x79\xf8\x12\x57\xe1\xab\x92\x4d\x63\x07\xe3\x6b\xa7\xbc\xd7\x66\x1d\xe6\xe0\x1c\x93\xc4\x0d\x25\x55\x59\x5e\x4c\x3b\xd8\x21\xce\xb2\x38\x13\x7f\xb1\x43\x2f\xae\xf0\x13\xf3\xb2\x42\x90\x19\x4b\x56\xb2\xf1\xfa\x4e\x7b\xad\xb0\x32\xfe\xa8\x76\x43\xd7\xd5\xbd\xfa\xdb\xa0\x9c\x0f\x59\x57\x43\xd7\x89\x6b\xfa\xae\xb4\x73\x03\x94\x78\x03\x3f\xaa\xaa\x91\xa6\x81\xee\x5c\xc0\x8f\xaa\xfa\xa4\x8d\xf3\xb2\xeb\x3e\x57\xf4\x23\x00\xe3\x2f\x1c\x27\xaf\x3d\x34\x96\x12\xc5\x8d\x57\x3b\x17\x06\x5a\xbc\xd4\xbd\xf3\x4f\xbc\xde\x2a\x71\x3d\x98\xaa\xb5\xcd\xad\xea\xeb\xb0\xfd\x60\xe3\xbc\x59\x89\x83\x1d\x1e\xf7\x4a\xf4\x83\x31\xda\xac\xc5\x2b\xbb\x76\x42\x1b\xa7\x5b\x25\x5e\x00\xf4\xa9\xd8\x75\x4a\x3a\x25\x7a\x25\x5b\xf1\x4c\x0a\x2f\xfb\xb5\xf2\x67\x8f\xea\x65\x27\xcd\xed\x23\xb1\xe9\xd5\xea\xec\xd1\x89\x7b\xf4\xfc\xd5\xa0\x5b\xd5\x69\xa3\xdc\xb3\xa7\xf2\xb9\x68\x64\xaf\x56\x43\xd7\x1d\xc4\x52\xad\xc2\x5e\x39\xd8\x41\x34\x1b\x69\xd6\x61\x9f\x1c\xfc\x26\x54\xa8\x8d\xf0\x1b\xed\x44\xd8\xa8\xdf\x55\x61\x94\xb4\x57\x75\xbb\x64\x12\x04\x0d\x82\xe4\x5e\x39\xf1\xf6\x70\xf3\x5f\x97\xa7\xe2\xca\x3a\xbf\xee\x15\xfc\xbe\xf9\xaf\x4b\xed\xd5\x1f\x4e\xc5\xdb\x9b\x9b\xff\xba\x14\xb6\x17\x1f\xf4\x8b\x5f\x16\x55\xbb\xac\x79\x5c\x5e\x48\x2f\x97\xa1\x0b\x71\xae\x42\x26\x6e\xa5\x98\x07\x1b\x2a\x10\x38\x20\x66\xce\xc3\x26\xa5\x0d\x3a\xbb\x1d\xdb\x65\x4d\x7b\x38\xe2\x78\x17\x36\x72\xbb\x4c\x03\x7c\x85\x43\x37\x38\x25\xde\xbc\x7b\xf7\xfe\xc5\x2f\x42\x99\xb5\x36\x4a\xec\xb5\xdf\x88\xc1\xaf\xfe\xf7\x7a\xad\x8c\xea\x65\x57\x37\x3a\x8c\x4d\xef\x94\x17\x2b\xdb\x63\x4f\x17\x95\x73\x5d\xbd\xb5\x6d\xa8\xe5\xe6\xe6\x52\xbc\xb5\x6d\xa0\x69\x7e\x03\x0d\xf1\x9b\xca\xfd\xad\x0b\xe3\x15\x2b\xfc\xb0\x51\x02\x96\x2e\x00\xd9\x15\x0f\x8f\x68\xa9\x8d\x0b\xf1\x6c\xd9\x3f\xcf\xda\x25\x97\xce\x76\x83\xa7\x12\xfb\x8d\x32\x30\x4f\xce\xcb\xde\x0b\xe9\x98\xd0\x2f\x2a\xd5\xf7\xb5\xda\xee\xfc\x21\xcc\x0e\xb5\x61\x8c\x1d\x91\x34\xd2\x18\xeb\xc5\x52\x09\x80\x5f\x54\xc6\xd6\xb8\x53\x03\xd9\x6c\xb5\x93\xcb\x4e\xd5\x48\xc0\x7b\xa6\x48\x7f\x09\x8b\x03\x0b\x12\x84\x28\x20\xc2\x88\x85\x43\x01\xa8\x73\x58\x39\xd2\x08\x40\x2a\x68\xab\xe7\x2d\x64\xba\x10\x67\x0d\x49\x43\x4c\x98\xb4\xb0\xe2\x69\xe0\x35\x73\xbe\xdb\x75\xba\xc1\xaa\x5f\x61\x5e\x5a\x3e\xe1\x88\xa4\xb9\xcf\xe1\x60\xfa\x39\x2f\x5b\x04\x83\x0f\x43\xda\x8b\x82\x06\x43\xf9\x8d\xea\x95\xd8\x0c\x6b\x3c\x38\x3a\x3b\xb4\xdf\x01\x05\xe7\xf1\x4d\x74\x52\x5c\x5b\xeb\x71\xce\x23\x40\xaa\xe2\xbc\xeb\xe0\x54\xee\xd5\xd6\xfa\x30\x70\x54\x2c\xd0\xa2\xbd\xee\xba\xd0\x53\x27\xef\x54\x2b\xbc\xc5\xfd\xd6\xea\x5e\x35\x01\xf1\xa2\xea\x07\x53\xd3\x62\xbf\x1e\x0c\x2e\x78\x4e\x2b\x57\x16\x40\x6d\x07\xe7\xc5\x46\xde\xa9\x30\xf0\x81\x35\xf0\x76\xb6\x9d\xd0\xa5\x7e\x30\xb0\x85\x17\x55\x6b\xb7\x12\x8e\xf9\x17\xf0\x83\xbe\x73\xfc\xda\x09\xb9\x5a\xa9\xc6\x3b\x71\x73\xf3\x5a\x34\x9d\x35\x4a\x7c\xbc\xbe\x74\x61\x1b\x6c\xea\x9d\xed\x81\x25\xb8\x79\x2d\xae\x6c\xef\x63\x5a\x36\xd0\x01\xc2\x0c\xdb\xa5\xea\xc5\x7e\xa3\x9b\x0d\x0e\x7b\x28\x11\x56\xb1\xea\x85\x76\x62\x70\xda\xac\x4f\x45\xa7\x42\x0f\xb4\xc7\x05\x10\xfa\xc0\xab\x2e\x80\xaf\x94\xf4\x43\xaf\xe0\xd0\xaf\x97\x83\xee\xbc\x36\x75\xa8\x90\xf0\x00\x59\x10\xbf\x60\x06\x94\xb8\x81\x8c\x23\xf0\xf5\xce\xee\x90\x79\x81\x5d\xb5\xcc\xca\x11\xc2\xb0\xe5\xc3\x04\xda\x9d\xc2\xf5\xee\xa8\x49\x61\xc1\x0d\xda\x6d\xc4\xaa\xb7\x5b\xe1\x0e\xce\xab\x2d\x14\x6c\xa5\xda\x5a\xb3\xa8\x36\xde\xef\x78\x6c\x5e\x7f\xf8\x70\x85\x83\x13\x53\xef\x1b\x1d\x99\xad\x5d\x58\x25\x5d\x60\xa3\x8c\x08\x68\xc3\x32\x1e\xfa\x6e\xb4\xc2\x3f\x5e\x5f\x72\xce\x91\x99\x0b\x4d\x78\x1a\xfe\xdc\xa4\x09\x84\x95\xe0\xec\x56\xed\x61\xbd\x6b\x23\x80\xd9\x59\x54\x9d\x5d\xd7\xbd\xb5\x9e\x97\xfb\xa5\x5d\xe3\x12\x2f\x32\x52\x4d\x2f\x78\xd1\x86\xc1\xd9\xf7\x81\xd5\xeb\xec\x1a\x08\x5e\x18\xaf\x45\xa5\x0c\x90\x96\xc6\x1a\x67\x3b\xc5\x94\xf3\x57\x48\x15\x17\x98\x8a\x44\x74\x06\x32\xce\xd2\x9b\x40\x59\x5a\x0d\x3d\xf6\x16\xe9\x69\x00\x38\x15\xb2\x73\x56\xec\x7a\x6d\x7c\xa8\x18\xe6\x88\x30\x2c\xaa\xca\xee\x42\x89\x8c\x86\xbc\xa7\x84\x44\x38\xa0\xdf\x31\x1f\x58\x3d\x58\x39\xba\xc9\x0e\x27\xb7\xf5\xbb\x9a\x4e\xa2\x9b\xb7\x1f\xae\xf0\x38\x82\x54\x58\x04\x67\xe2\x65\x6f\xb7\x29\x21\x8d\xcf\xdb\x80\x0f\x60\x64\xdb\xf6\xca\xb9\x53\x71\xfd\xf2\x42\xfc\xfb\x1f\x7e\xfa\x69\x21\xde\xf8\x40\xf6\x02\x25\xf8\x6b\xd8\xc1\x92\x66\x21\x81\xda\x5e\xf8\x8d\x12\x8f\x02\x19\x7b\x24\x9e\x41\xee\xff\xa1\xbe\xc8\xed\xae\x53\x8b\xc6\x6e\x9f\x87\x55\xba\x95\x7e\x51\x85\x1c\xd5\x33\xd1\xb8\x51\xa6\x55\x3d\x31\xae\x94\x95\x91\x5e\xca\xce\xd8\x58\xe4\xd6\xc3\xd8\xaf\x74\xbf\x4d\x13\xc4\x7c\x7c\x98\xa9\x90\xc3\x5c\xa0\xee\x6a\x63\xbd\x5e\x1d\x12\x28\xf4\xf4\x5d\x48\xa4\xa5\x59\xd1\x4e\xa3\xe3\x2a\x8e\x31\xee\x4b\x58\x81\xef\xfd\x46\xf5\x3c\xdc\x2e\x8d\xb7\x5d\xad\x02\xd3\x32\x5a\x2d\xef\x31\x15\x57\x4b\x0e\x12\x97\xc9\x0b\x22\x18\x17\x2f\xde\x09\x75\xa7\x4c\x58\xd8\xbb\xde\xb6\x43\x03\x2b\x87\x57\x4c\x27\x7a\xe5\xec\xd0\x37\x8a\x16\x6a\x24\xc8\xa1\x69\x81\xea\x37\xb2\xeb\x0e\x8b\x8a\x0f\xc6\x75\x2f\xef\xa4\x97\x7d\x56\xc5\x2b\x4e\xa2\xd6\x4f\x60\x27\x8d\x8a\x25\x42\xcf\x9b\xc1\xf9\x40\x3d\xa0\x15\x0e\x1b\x85\xd9\x4e\xc8\x5e\x89\x61\xd7\x59\xd9\xaa\x56\x2c\x0f\x40\xe3\x5d\x58\x0b\xad\x5a\xc9\xa1\xf3\x8b\x6a\xa5\xda\x40\x94\x54\x5b\x53\x5d\x9d\xb5\xb7\x50\x19\x0d\xd5\x4b\x06\x10\xe7\x84\xf4\x12\x20\x8e\x95\x8c\x8d\xa5\xf2\x11\x2c\x36\x8a\x6a\xf0\x16\x58\x94\x94\x6f\x77\xca\x50\x37\x98\x31\x11\x81\xef\x68\x85\x35\xa2\xd3\x4b\xea\x74\x1a\xcb\x11\x93\xc1\xa3\x73\x13\xa4\xd9\x3c\x6f\xb6\xc0\x64\x50\x61\xc1\xbb\x71\xd9\x53\x61\x4d\x77\x20\x66\x24\x6c\x31\x14\x20\x99\x2f\x71\x89\x2c\x45\x71\x8d\x29\x12\x49\x6d\x65\x7e\xac\xf6\x1a\xd9\x5e\x71\x27\x3b\xdd\x06\x8c\x8c\x20\x9c\x16\xf3\x6d\x59\x54\xc4\x2b\xd7\x24\x57\xd7\x77\x1a\xe4\xd8\xb8\xc5\x10\x25\xc9\xda\x61\x84\xff\x14\x00\x82\x80\xec\x66\xcb\xc6\xd6\xbc\x0f\x9d\x74\x51\x8e\xc5\x75\x12\xba\x0b\x35\x04\xfe\xdd\x9d\x8a\x3b\x0d\x6c\x00\x2d\x72\x18\x97\x65\xe0\x31\x3b\x15\xaa\x72\x4a\x01\x06\xa1\xcd\xd3\x61\x87\x65\x16\x24\xc4\x91\x5c\xc5\x7c\x7f\x60\x07\x5b\x6b\x1e\x7b\x61\x14\xb2\x2d\x3c\xaa\x23\xb6\x4f\xf4\x7a\xbd\xf1\xc2\xd8\xfd\x82\xb8\xdf\xde\x79\x1c\x1d\x90\x2d\x14\xb5\xd4\x43\x23\x78\xef\xc9\xc1\xdb\x40\x5f\x60\xeb\x89\x75\x2f\x0d\x2c\x3f\x46\xac\x5c\x6c\x57\x64\x08\x21\x6f\x22\x43\x22\xd0\x58\x98\x9f\xf0\x9f\x91\xfa\x11\xd1\xcb\xf3\x88\xda\x25\x18\x2c\xcd\x0a\x01\xac\x18\xa9\x2b\x09\x80\xf5\xda\x82\x00\xca\x02\x5f\xe0\xb0\x2a\xaf\x9c\xaf\xd7\xda\xd7\xab\x40\x82\x03\xe2\x97\xf8\x23\xb0\x7c\xca\x79\xf1\x78\xad\xfd\x63\xd1\xd8\xed\x56\x9a\xf6\x67\x71\x72\x47\xd2\xc3\x1f\x02\x75\x0d\x3b\x54\x77\x30\x46\x24\xd8\xf6\x0a\x85\x84\x3b\xd5\xbb\xb0\x7b\x5a\xab\x9c\x08\x5c\xb3\x1b\x76\xc0\x6f\x44\xc9\x8b\x04\xc4\xd6\xee\x4d\xa0\x23\x30\xe8\x76\xb5\xd2\x8d\x96\x9d\x58\x6a\x23\xfb\x43\xc4\x02\xa7\xd3\x89\x3b\x15\xef\xde\x7f\x00\xc0\xb5\x0d\xec\x50\xcb\x00\x8b\x4a\x1b\x58\xef\x41\xca\xa0\x35\x91\x8b\x58\x9c\xa4\xb1\x2d\x8d\xed\x03\x4b\x00\xbd\xe1\x82\x47\x18\xe8\xc0\x4f\xa0\x7c\xa2\x83\x88\x0b\xb0\x50\x2e\xf2\xba\x61\x18\xb6\xd2\x37\x1b\xe2\x84\x71\x11\xb9\xb0\x08\x43\x4b\x9b\xa1\xef\x95\xc1\xb5\xf5\xb3\x38\x71\xe2\xc9\x73\x71\x92\x1d\xd7\xf5\x56\xbb\xc0\x5c\x46\x4e\x95\xcf\x6e\x01\x09\x94\x5b\x9c\xcf\xa9\xb7\xf9\xf1\x0e\x05\xc3\x19\x2f\x56\x5a\x75\xed\xb8\xbd\x81\x91\xc7\xc3\x73\x3d\x37\xd7\x21\x5b\x60\xf6\x80\x44\xa1\x18\x9d\x62\xb7\xc5\xe5\xc5\x9b\x29\x1b\xde\xbc\x4a\x5e\x77\x6e\x40\x96\xff\x4c\xfc\x59\x75\x8d\xdd\xaa\xef\xc4\x9f\xd5\xe3\x5e\x89\x75\x07\xf3\x2e\x3d\x09\xf9\xd6\x29\x58\x95\xa7\x28\x29\xac\x06\x03\x07\x91\x97\xb7\x0a\xf4\x02\xa9\xe3\x73\x3c\xe0\xd1\xa9\xaa\x3e\x6d\xec\x56\x7d\xae\x06\x94\xb0\x6c\xd7\x46\x19\x1d\xb6\xa0\xed\x91\xa9\x89\x02\x7b\x82\x89\xbb\xcb\xed\xb5\x6f\x36\x75\xd4\x55\x86\xa1\xf4\xea\x0b\xcc\x18\x64\x25\xd5\x65\xd8\x9a\x21\xab\xda\x1e\x60\x55\x85\x8e\xbf\x3d\xa4\x45\xa5\x95\xab\xdc\xc6\xee\x41\x15\x18\x21\x6e\x36\x76\x0f\x4a\xc0\x42\x0e\x5b\x2c\x16\x55\x63\xbb\x4e\x2e\x6d\x98\x95\xbb\x04\x7f\x91\xa7\x96\xc8\xb7\x87\xda\xf6\x6b\xaa\xb6\x54\x7d\x6d\x0f\xa4\x6d\xa3\x5c\xd4\xb6\xb9\x0a\x68\x36\x29\x65\x81\xb4\x9f\xb8\x8a\x94\x4c\x0b\x6d\x6a\xd0\x61\x71\xcd\x6f\x0c\x4a\x48\x79\x3b\xab\xea\x13\x29\x6c\x3f\x57\x0c\x57\xb4\x09\xc9\x29\x0e\xba\x2b\xf4\x8a\x6e\xa4\x58\x74\x95\x53\xb2\x87\xed\x74\x03\x3f\xaa\xea\x93\x1c\xfc\xe6\x73\xa6\x62\xad\x79\xe5\xb1\xaa\x15\xd4\x80\x44\x66\x13\xaf\xb8\x51\xbb\xc0\x56\x6e\x1d\x2c\xd9\xae\x57\xb2\x3d\x90\x10\x1a\x17\xef\x1f\xf1\x54\xd3\x26\x1c\x06\xdf\x55\xce\x06\xfa\x53\x7f\x23\x8a\x5f\xb4\x69\xb1\x7c\xc9\x11\xa0\xee\x77\xbb\x83\x65\x62\xfb\xfe\x70\x5a\xaa\x27\x36\xd2\x89\xa5\x52\x86\xc5\xc8\x76\xc1\xca\x9f\xb0\xbc\x64\x83\x24\x04\xb4\xd3\xb0\x03\xb1\xa4\x9d\xb0\x2a\xa1\x85\x48\xf7\xa9\x16\x3c\x06\x1c\x73\xad\x81\x5d\xfb\xe6\x2a\xc2\xa0\xd7\xc4\x36\x9d\x89\xf3\xc1\x6f\x94\xf1\x2c\xd3\xdd\x40\x7a\x05\x6c\x28\xec\xbf\x46\x76\x55\xaf\xb6\x2a\x48\x8a\xf5\x16\xf5\xcd\xf8\x25\xde\xaa\x6a\x65\xfb\x35\xec\x56\xdc\x4e\x67\xe2\x25\x24\xa4\xfd\x15\x00\x94\xcf\x0f\x38\x82\xe0\x94\x3f\xb2\x36\xbf\x36\x76\x0f\x7a\xdf\x70\xf4\x8e\xa7\x71\xd8\xc1\x99\xce\x07\x26\x32\x64\x20\x0b\x38\x65\x7c\x9a\x8c\x73\x61\xd4\x5e\xe4\x50\x34\x64\x71\x46\x02\x7c\x20\x8c\xcf\x96\xcf\x4f\xdc\xb3\xa7\xcb\xe7\xf1\xc4\x6a\x36\xaa\xb9\xc5\x2d\xa0\xcd\xd2\x7e\x01\x25\x13\x71\x0d\x26\x90\x84\x93\x56\x6c\xec\xd0\x93\xa0\x17\x04\x21\xaf\x20\xb7\x98\xfb\x5d\x6f\x89\x63\x68\x60\x63\xc3\x1e\x4b\xeb\x1a\x54\xc1\x61\x65\xc3\xb1\xca\x4b\x7b\xd7\xdb\x8d\x5e\x6a\x1f\x08\x20\xe8\x45\x2e\xe1\xff\x15\x25\xab\x76\x04\x91\x31\x46\x7d\x24\xd7\xda\x89\x5d\x2c\x80\x27\x4b\x67\xd7\x6b\x54\xac\x3e\xb0\x3c\x02\xab\x08\x43\xd9\xe9\xad\xf6\x93\xd5\x1d\xe8\xb8\xa4\x5d\x42\xca\x6b\x9e\x26\xe8\x4e\x1a\xe8\x5e\x35\xca\xf8\xee\x10\xeb\xdb\x4b\xed\xc5\x1f\xc4\x56\x9b\xc1\x07\xc1\x7c\xa3\x8c\xf0\xfd\x41\xc8\xb5\x0c\xd5\x6e\xa4\xab\x07\x43\x33\xa6\x5a\x5e\xef\xaf\x35\xf0\x05\xa1\x5e\xde\x95\x19\x54\x29\xac\x8a\xef\xe3\x64\xfe\xb0\x20\x35\x36\x94\x0a\x67\x75\x68\x8f\x0e\x92\x95\x9c\x5b\x16\xb6\x8f\x1c\x25\x01\x0a\x09\x4b\xc8\x1a\x95\x16\x46\xa7\x9b\x5b\x18\xaf\xe5\xe0\xbd\x0d\x52\x73\x17\x16\x23\x8c\x58\x6c\xf1\x05\x40\x81\x4e\x03\xb0\x85\x3c\x5c\x4d\xe3\x31\xaa\xa0\x58\x80\xf0\xf3\x85\xbf\xef\xd5\x0f\xa9\x78\xdc\x3b\x50\x82\x50\x60\xe9\x6c\x5b\x5d\x43\x26\xde\x50\xf0\xe6\xe3\x53\xb5\x21\x9d\x71\x9c\xcb\xbe\x1c\x0b\xc8\x0f\x3b\x44\x7d\xd9\xe9\x3e\xc8\x4f\x3d\xf0\x53\x50\x7a\x31\xaa\x2b\x29\x18\xa6\x3d\xf6\x65\x8b\xd3\xc1\xeb\xad\xad\xdd\x06\x39\x21\x6e\x9e\xe8\x94\x59\xfb\x0d\xaa\x10\x03\x17\xee\x45\x18\x6f\x2f\xfe\x27\xe8\xbe\x65\xe3\x55\xef\x16\x95\xb1\xa6\x06\x72\x94\x6d\xa2\x77\xd6\x3c\x41\x12\xc5\x62\x15\x2b\x71\xe9\x46\x81\x2b\x0e\xeb\xad\xb7\xc3\x7a\x43\x7a\xc7\x0a\x77\x8f\xdf\xdb\x7a\x25\x1b\x0f\xb7\x53\x1f\xf6\xf6\x09\x7d\x94\xc4\x70\x02\x0c\x63\x40\x83\x39\xa2\x9b\x57\x94\x33\x2d\xa3\x4c\x20\xe3\xbd\x6a\xec\x9d\xea\x0f\x3c\x17\xbf\x86\x54\x21\x85\x4f\x95\x33\x88\x98\xc7\x13\xb3\x8b\x16\x5f\x53\xea\x71\x78\xae\x91\x21\xc5\xc5\x3d\xcd\xcc\x3a\x38\xd3\xc2\xdd\xd1\x4e\x26\x6e\xfb\x48\xa5\xf0\xcd\x14\x64\x70\xb8\xc6\xa8\xd4\xa2\xaa\x3e\x85\x45\xfd\xb9\xa2\x9d\xa2\xb2\xa9\x26\x2a\xc2\x39\xbc\xa3\x90\x6c\x46\x78\x16\x8f\xfe\xa4\x7a\xbd\x3a\x20\x50\x41\x23\x8e\x6d\x98\x72\xbd\xc6\x53\x37\xb1\xb6\xd7\x39\x6d\xa7\xe4\xd5\xd0\x9d\x8a\x3d\xf2\xbc\xa9\x4c\xd4\x4a\x11\x37\x2c\x02\xa5\x80\x3b\xef\xea\xd3\xd6\xb6\xb2\xfb\x5c\x1d\xe0\x6e\xef\x2f\xca\x55\x06\xee\x53\x6d\xb5\xb5\x2d\x16\x7a\x0b\x3f\xaa\xea\xd3\xca\xf6\xdb\xcf\x55\xe0\xa7\xde\x8d\xe4\xc8\xc0\x78\x51\x5a\x26\xc9\x40\xd6\xaf\xf9\x7d\x71\xec\xf3\xd5\x8c\xc8\x79\xad\xd2\xb5\x31\xfc\x8a\x9d\xbf\xb9\x79\xfd\x81\xf5\x64\x37\xaf\xc5\xad\x22\xdc\xaf\xbd\xdf\xb9\x8f\xa0\xfd\x45\x55\xee\xc7\xeb\xcb\xea\x4a\x1e\x82\x74\x87\xc9\xf4\x01\x19\x1f\x94\xdc\x52\x23\xc3\x4f\x44\x11\x36\x0b\x25\x86\x9f\xb6\xcf\xef\x3d\x2a\x10\x3a\x7e\x2d\x04\x5c\x24\x72\xd5\x3b\xb5\xff\xa5\x97\xa6\xe1\xc2\x81\x1b\x5c\x42\x02\x96\xbc\xb0\xdb\xad\xf6\x37\xc3\x76\x2b\x61\x63\xe0\xb7\x70\x98\x40\xd9\x6f\x95\x73\x78\xa9\x4f\xd9\x5b\x4c\xa0\xec\x8b\x8d\xd5\x4d\x96\xdb\xc0\x77\xf5\xa1\x57\x8a\x6a\x7d\xc9\x57\x68\x15\x48\x00\xc8\x9e\xe2\xaf\x2a\x6a\x49\x14\xdd\x75\xff\x36\xb9\x4e\xfa\xad\x92\xdd\x6e\x23\x41\xc6\xc8\xc0\x22\xd9\x0b\x99\x66\xd8\xaa\x5e\x37\xa0\x69\x93\x6e\xf3\xfd\x93\xfa\x87\x9c\x08\x16\x28\x5a\xeb\xbf\x05\x4d\xf8\x8d\x84\xf1\x28\x36\xd7\x3d\xdc\xb4\x53\xc0\x28\x02\xca\x53\x40\x68\x7b\x01\xe5\x4a\xcc\x4e\xff\xce\x63\x01\xa8\xc2\x77\xc4\x77\x12\x20\x40\xe0\x4c\x50\xb1\x3e\xe0\x4b\x82\xf0\xc9\xc7\xc0\x89\x2b\x51\x6f\xe5\x97\x87\x0a\x6e\xed\x4c\x39\x54\xb3\xa7\x42\xa4\x2c\x90\x78\xbc\x95\x64\x62\xf1\x5b\x35\xf4\xf7\x00\x7f\xbc\xbe\x5c\xfc\x56\x69\xd3\x74\x43\x7b\xb4\x21\x6e\x58\x3a\xdf\x07\xb6\xeb\xf1\x89\x7b\x1c\x50\x9a\x5b\x63\xf7\x26\xc2\x7f\xc4\x6f\x01\xdf\x3f\xb3\xe1\x46\xad\x0d\x29\x30\x92\x09\x87\x68\x75\x1b\xb8\x18\x50\x44\x2c\xd2\x79\x9a\x2b\x27\xe2\x2e\x07\xe5\x2e\xa9\x8f\x22\xa1\x0b\x22\x02\xe8\x69\xe4\x56\x2d\x92\xb1\x49\x1d\x98\xe1\x3a\x48\xe0\x26\x17\x99\x03\x13\xc0\x54\x1a\xd8\x65\x80\x58\xe0\x2d\xe3\xb4\xdc\x88\x0c\x1d\x2d\x6e\xfb\xf5\x4c\xe9\xf7\xd3\x1b\xd0\x23\xe5\xbd\x92\xdb\x19\x04\x91\xc0\x1c\x2d\x88\x73\x0f\x85\xe0\xd0\x19\x51\xc8\x69\xb9\x00\xb5\x48\xa3\x14\x07\x3c\x9f\x9b\x5c\xc1\x10\xc7\xb9\x54\x41\x15\x52\x56\xbd\xd5\x8e\x27\xeb\xc3\x06\xd4\x8d\x39\xeb\x10\x35\xd8\x9d\x6a\x02\x57\xcd\x4b\xce\x81\xcc\x1a\x52\xc0\x3e\x80\x95\x97\x8b\x0a\x8e\xea\x1e\xec\x89\x32\x1d\x17\x69\x1d\xe9\xbc\xdc\xca\x5b\x25\xdc\x10\x58\xb3\x8d\xf4\x24\xa5\x94\x93\x15\xb8\x64\x40\x85\x75\xc6\x96\x4f\xd0\xdb\xbd\x09\xc7\xdb\x43\xf8\x01\xec\x1b\x51\xe7\x4a\xd1\x29\x62\x42\x1e\x81\x8e\xa1\x8d\xfa\x3a\xf5\x45\xc3\x45\xd9\x2b\x7d\xa7\x48\x63\x17\x15\x95\x90\xb7\xa8\x3a\xe9\x7c\x1d\xd6\x23\x36\x17\xc4\x59\x7b\x17\x36\x6b\xa8\x2f\xe4\x8a\x3e\xac\x1a\x30\x80\x01\x0c\xa8\xa2\x33\xd4\xbf\xb0\x14\xe3\x14\x75\x9d\xdd\xab\xf6\x54\x84\x55\x64\xca\x1b\x7d\xa0\x08\xb2\xdb\xcb\x83\x23\x09\x86\xe9\x9a\x35\x34\x56\x8b\x2a\x29\xfc\xdc\xa6\x0e\x07\x6e\x64\xd2\xef\x02\x23\xc3\x2b\xc4\xae\xd2\xdd\x75\x80\x42\x3d\xdf\xcf\xe2\xc4\x55\x03\x5e\x16\x00\xf8\x21\x43\x03\x96\x32\x74\x12\xdd\x65\x4c\x11\xa1\x38\x0d\xa2\x8c\xd0\xfe\xb1\x0b\xeb\x6c\xd8\xa2\x08\xb4\xa4\xdb\x85\x28\xbb\xb5\x76\x58\x76\xea\x09\x4a\xc6\x9a\x57\x75\x54\x33\x8e\x78\xe0\xd8\xac\xbb\xaa\x72\x5e\x77\x5d\x18\x63\xb6\x1d\x2b\x24\x55\xc8\x85\xcd\x07\x03\xe1\x36\x7a\x27\x2c\xdc\xcc\xe5\x83\x94\x16\x6c\x26\x08\x7a\x2b\x5a\x05\x92\xb7\xed\x85\xef\xa5\x71\x2b\x05\x57\x95\x5b\x54\xf6\x2f\xa8\xea\x20\x57\xa2\xad\xd8\x91\x9a\x51\x89\x01\x55\xe7\xa7\x0e\xcc\x4e\x36\x91\x65\xd5\x68\x28\x00\xf7\x61\xd0\x06\x18\xd3\x84\xc9\x71\x1b\xc2\x02\x9b\x0c\x01\x5c\x8d\x17\x8b\x64\x76\x1c\x56\x85\x06\x0e\xeb\x87\xd5\xf4\x40\xbf\x2b\xb4\xc5\xaa\x91\x41\x2a\xf6\xc3\x07\xc8\x61\xd6\x69\xbc\x25\xaa\x4f\x61\x9d\x7f\xae\x50\x76\xaa\xe3\x7d\xe3\x05\xca\x52\xc8\x71\x43\x62\xf5\x57\xab\x4d\x0d\x97\x67\xff\x61\xb5\x81\x9b\xb6\xaa\xb0\x2f\x19\xa9\x07\xc9\x0a\xee\x00\x86\x2f\xcb\x4e\x37\x6c\x0a\x77\xa8\x56\x16\x76\x0f\x68\x0f\x5f\xf2\xef\xca\x79\x19\x08\x04\x59\x47\x84\x5f\x85\x3a\x12\x0b\xa1\xae\xfa\x25\xff\xa6\xd4\x98\x54\x0d\x26\xa6\x7c\xa4\x9f\x55\x15\xf8\xea\x05\x10\xf5\x20\x0a\xc0\x65\x6b\x46\xca\xc3\x49\x1d\xb6\x35\xe7\x2d\x32\xf8\x9d\xf4\x5e\xf5\x06\x2f\x46\x70\xcb\xe7\x45\x29\x3b\xa2\xc8\x28\x43\x18\x5b\x36\x11\xfc\x5c\x25\x43\x42\xb6\x21\x9c\xbb\x13\x8a\xc3\x8f\xd7\xa7\x15\xed\x69\x47\x6c\xf9\x7f\xaa\x83\xab\x9c\x6a\x86\x1e\x87\xf5\x86\x7e\xce\xab\x67\x49\x5f\x3c\xb2\x93\x4c\x36\x1c\xae\x34\xe9\x70\x15\xad\xb1\x33\xf1\x02\x7f\xb0\x82\xaa\xda\xc1\xf4\x65\xc6\x90\x34\x9f\xb1\x2b\x64\x0b\x9b\x2b\xa6\x4a\x2d\x8d\x76\x02\x91\x00\xa3\xc2\x77\x6f\x70\x2c\xaf\x6c\x2f\xa4\x39\xa4\x5b\x3c\xd5\xc1\xc1\x67\xb2\x3b\x7d\x77\x0a\xe5\x02\xd8\x5e\x2d\xf9\xa2\x37\x59\xc8\x6c\x65\xab\xc4\x9d\x96\x51\xb1\x95\xb1\x4b\xf1\x3c\x67\x65\x69\xa1\x43\x00\x31\x08\x15\xd9\xcc\x2d\xf1\x34\x7b\xcb\x1a\x05\xbf\x51\x1a\xef\x59\x0d\x70\x52\xab\xa1\xeb\xf8\x4c\x7c\x39\x74\x1d\xda\x7b\x4d\x6d\x8e\x43\x15\x74\xdf\x7c\x49\x3f\xab\x61\xd7\x06\xa1\x35\x8d\xe5\x47\x48\x88\x63\x59\xe6\x67\xc2\x28\x8c\x2a\x17\x8b\x2a\x4d\x04\x6f\x33\xe9\xb4\x3b\x2c\x78\x37\xcf\x58\x17\xd3\xc6\x6e\xc7\x20\x49\xeb\x07\x94\x8a\x3a\x0e\x13\x85\x06\x3d\x30\xb4\x7b\x79\x10\x1b\xbb\x17\x9d\x36\xb7\x8e\x66\x2a\x8c\x53\x2e\x98\x83\xa2\xd6\x6b\x33\x28\x12\x95\xc2\xcf\xa9\x2d\x2b\x19\x00\x90\x39\xc0\xf2\xc0\xda\x30\x34\x18\xa0\x0d\x20\x96\x07\x01\xd2\xe0\x71\xcb\x83\xb1\xc9\x01\x5b\x1c\xf0\x4d\x3a\x18\x3c\x24\xba\xf6\xd1\x29\x71\x81\x46\x10\xb4\xc7\x9a\x8d\xb5\x8e\x6e\x20\x12\xf5\x0b\x69\xa0\x0c\x24\xe2\x47\xd3\x92\xf0\xe0\xac\x9d\xb3\x31\x06\xec\x73\xda\x41\x35\xdd\x0f\x26\x68\xda\x50\x17\x74\x6f\x78\xce\x38\xd1\xd8\x82\xfb\x04\x34\xa6\xd6\x5b\x14\x58\x3f\xb2\x29\x06\x4c\x78\x94\x45\x20\x7b\x51\xb6\x67\xbc\x4a\xa8\x5e\xbe\xc2\x7b\x60\xb1\xf0\x52\xc8\x2f\xa2\x71\xfa\x23\x5d\xb2\x5d\xc1\xae\x71\x3f\x62\x7e\x18\xbc\x2c\xff\x1d\xd8\x11\x44\xbd\x4a\xd8\x63\xf5\x08\x84\x54\x11\x05\xe4\x2c\xc3\xcd\x75\x1d\x65\xb6\x47\xad\x9f\xec\x18\x2e\xb7\x97\xae\xe8\x38\xad\x71\x12\x9d\x24\xdc\x15\x15\x44\x29\xd3\x9f\xa7\xa6\x51\x6d\xff\x2a\x2d\x61\x7c\x8b\x0a\xc5\x14\x17\xa5\x93\x73\xa4\x98\xca\xb1\xd1\x7b\xcc\x27\xbb\xf7\x82\xb0\x2a\xb6\x24\xcb\x49\xef\xae\xd7\xa0\x13\x29\x49\xf0\x84\xe8\x16\x04\x16\x46\xc1\x82\x5d\x54\xa2\xab\x8b\x8a\x51\x85\x63\x0b\x7e\x71\x4a\xd4\xba\xdd\x28\x30\x0e\xa6\x64\xde\x01\x9c\x8b\x0b\x3f\xb6\xb1\x53\x44\x0e\xb1\xaf\x2f\x28\x61\x94\xcf\x9d\xc1\x6c\xe0\xce\xb5\x9b\xeb\x4d\x1f\xd8\x77\x15\x4f\x0c\x6d\xd0\x2c\x2d\x5a\x17\x14\x64\x49\xbc\x00\x3a\x25\xf6\x12\x2f\x81\x98\x4a\xfd\x71\x5c\x7b\x5a\x40\xbf\x96\xd7\x47\xd8\xb7\x72\xfb\x7c\x57\xc9\xb6\x85\xc5\x9d\xac\x34\x5a\x20\x1c\xa5\x0a\x32\x40\xe5\x10\x68\xc5\x11\x53\xeb\xe2\x72\xcb\xa1\x9e\xe9\xeb\x2f\xb4\x02\xfb\xf1\xdf\x70\x97\x55\x54\x95\xee\xb2\x62\x23\x47\x5b\x6b\xd2\xcb\xe9\x1e\x93\x6d\x0b\x9c\x10\xad\xe5\x8c\x9f\xa1\xd5\x1c\xd9\x9a\x50\x0b\x8a\x2f\x61\x78\xfe\x53\x1d\x80\xf9\xa1\x95\x00\x67\x92\x76\x42\x82\x61\x2a\x58\xb3\xa3\x2c\xe3\x26\xa2\x72\x39\xe7\xe7\x70\xe9\xe4\x14\xc1\x02\x63\x28\xcd\x21\x30\xfa\x60\xfe\x8b\x4c\xb4\xb7\x62\x2d\xa3\xbd\x4f\x3c\xd0\x4a\x56\x5c\xc3\x25\xdb\x46\xaf\x37\xdd\x41\xe8\xed\xce\xf6\x1e\x56\x12\x9b\x3a\x24\xe1\x35\x7c\xf5\xaa\xb1\x6b\xa3\x7f\x87\x81\xdd\xa2\xdd\x72\xbc\x3c\x79\xe6\x7c\x6f\xcd\xfa\xf9\x0b\x30\x6b\xba\x0d\x84\x67\x63\xf7\x7f\x7c\xf6\x94\xd2\xc5\x05\x4c\xa1\x1d\xbc\x78\xa5\xfd\xeb\x61\xf9\xd8\x89\xf5\xa0\x5b\x38\x6b\x9f\xc9\xcc\xd1\x82\x4c\xa1\xd0\xa8\x7c\x6f\xe2\xb0\x80\xdb\x85\xed\x85\xb3\xdd\x9d\x1a\x15\xb1\xdb\x2d\x4e\xef\xb2\x53\x5b\x84\x84\xf6\x83\xf5\x94\x32\x30\x72\xaa\xa7\xf1\xb9\xb9\x79\xbd\x88\x4b\x3c\xcd\x0f\x4d\x1b\x33\xa8\x85\x96\x85\x98\xc3\x00\xdc\x90\xce\x34\x9d\x40\xa0\x62\xe1\x52\xc0\x78\x4c\x4b\xc1\x3c\xba\xc0\xac\x4c\xf4\x3b\x20\xb5\x04\x14\x5c\x5c\x9c\x85\x76\x20\x03\x16\xd2\x9a\x89\x96\x96\x16\x56\xb6\x78\xc3\xa1\xc3\xe2\x34\x30\xee\xb1\x79\xb0\x5c\x47\xfb\x9b\x28\x1a\xf6\x9d\xe8\x19\x77\x20\xa3\x68\x34\x22\x89\xa6\x8d\x61\x0a\xaa\xa6\x90\xa6\x71\x2b\x72\x6a\x86\x76\xa2\x48\xd1\x70\x41\x2a\x07\xf4\xfa\x2b\xa9\xd9\xa4\xde\xd4\x71\xae\xee\x2b\x28\x1a\xf4\xe9\x1c\x86\xc3\x1a\x54\x9c\xd0\x44\x5d\x4a\xb4\xaa\x83\x0c\x63\xeb\x4c\xcc\x7b\x67\xe9\x0a\x58\x70\x22\xcc\x89\xf3\x81\x55\xc9\xb7\x72\x68\x04\x58\xe0\xa3\x05\x21\x68\x5e\xfe\x37\xd1\xca\x83\xab\xbc\xbd\x55\x66\xa6\x08\xa4\x1f\x2b\x54\x7d\xe5\xa5\x5e\x76\x6b\x15\x6a\x18\x1c\xca\x9a\x7e\x70\x3f\xe7\x79\xe8\x18\x57\x80\xdb\xd5\x2a\xa4\xad\x56\x55\x71\x6f\x46\x66\x72\x68\x53\x99\x67\xb1\x0f\x41\x34\x19\xcd\x33\xc1\x32\xa7\xb8\x2e\x73\x6c\xa3\x03\x06\xf2\xb2\xdc\xb3\x61\xd7\x12\x41\xca\x6e\xd4\x70\xe7\x06\xaa\x25\x9c\x5c\x29\xb1\xeb\x64\xa3\x16\xec\x3d\x03\xe6\xb2\x40\xdc\xc2\xe1\xcc\x37\x7b\x1a\xef\xc7\x3b\xeb\xd4\x98\xd8\x8d\x14\x93\x99\x9c\xb8\xc8\x9b\xbe\xf1\x7e\x87\x86\x1c\xb9\x81\x7f\x62\x19\xc8\x5c\x00\xd8\x1f\xd1\x59\xb3\x56\x7d\x34\xfa\x0c\x4d\xda\x75\x92\x4c\x46\x61\xf7\x86\xee\x46\x5e\x28\x5a\x29\xb0\x7d\x67\x0b\x45\xd2\x48\x7c\xfa\xf1\xb3\x3b\xf9\xf4\xd3\x67\xf7\xe8\xf9\x95\xea\x1d\x58\xd4\x9f\x63\x37\x3e\x84\xe5\x01\x23\x22\x1d\xdd\x72\xf7\xaa\x0d\x1d\x92\xdd\xa9\x50\x8b\xf5\x42\x3c\x0b\x43\xf0\xfc\xe4\xd3\x1f\x3e\xbb\x67\x4f\xe1\xf7\x62\x3a\x99\xc9\x24\x1f\xe7\xf6\xeb\xd6\x52\x23\x4d\xfd\xb7\x91\x9b\xd7\x03\xa3\x0a\x06\x7a\x61\xa2\xc2\xc1\x0b\x4c\x7d\xb9\x04\xf9\x56\xd6\xa9\xa6\x57\x1e\xe4\x78\xd4\x7f\xa2\x8c\x0b\xa9\x45\x89\x50\xd1\xf4\x26\xf7\xc3\x46\x19\x2a\xc7\xa9\x45\x29\xd2\x0f\xf2\xed\x69\x35\x73\xaf\x5b\x62\x4b\x8b\x69\xa4\x91\x8d\x46\x03\x91\x11\x89\x96\x1e\xdf\x55\xc5\xdd\x74\xd8\xc1\x5f\x85\x75\x56\x43\x5f\xa2\x37\xc4\xb3\x1a\xf5\xdd\xcc\x64\xf2\xa5\xcb\x74\x32\xe5\x51\xf5\xe5\x14\x4b\x22\xa0\xc7\x11\x80\x05\x85\x41\x99\x60\x4c\xac\x47\xe4\xf5\xd8\x3d\xbd\x8b\x6b\xef\xe8\xa2\x2b\x2f\xf2\xdd\x3d\xa8\x88\x74\x16\x77\xf0\x64\xe2\x1f\xe8\x67\xf4\xee\xf3\x2a\x70\x32\xb2\xd7\xdd\xe1\x5b\xc9\x82\xf8\x55\x36\x9b\x92\x26\x01\xe5\x61\x5b\x6f\x3a\x23\x1a\x75\x2a\x9e\x2d\x9f\xd3\xa4\xdd\x2a\xb5\x23\x96\x0c\x9b\x34\x22\x60\xcf\x9e\x2e\xcb\x6d\xd9\x2b\x74\xc8\xf3\x6a\x4a\x31\xaf\x63\xde\xbd\x03\x73\x04\x41\x5c\x1d\x19\x9a\x92\xc2\x1e\x59\x16\xc7\x31\x96\x3c\xc6\x08\x59\x3c\x75\xb9\xf4\xf8\xdc\x9d\x1e\x1f\xc9\x71\x95\x8e\x93\xaf\x22\x47\x5c\x78\xce\x4e\x2c\x6a\x0f\x3b\x75\xa7\x3a\x64\x3c\xda\x40\x4c\xc0\xd0\x62\x15\xe8\x44\x94\x6d\xfd\xb1\xd5\x7e\x0f\xf7\x31\xd3\x8c\xaf\xdd\x3e\xb1\xde\x72\x54\x58\x76\xc0\x85\x59\x23\x1f\x10\xe5\x87\xd9\x73\xc0\x55\x71\x82\x02\xdb\xca\x45\x5e\xf1\x2c\x87\xc9\x01\x40\xe4\x36\xe2\x6e\xc1\xc2\x49\xe9\x9f\x26\x0a\xb8\x7c\x72\x9a\x82\x75\xed\x6d\xdc\x29\x1b\x34\x70\x16\xe7\x57\x6f\xdc\xa2\x8a\x15\x32\x52\xd8\x25\xd8\x84\x3d\x6a\xfc\xc1\x0c\xba\xeb\x26\x5b\x8d\xf5\x67\x58\x9c\xb8\x5b\x68\x13\xf2\xb7\xb1\x53\x93\x0e\x61\x67\xca\x7c\x1c\x77\xe5\xb2\x15\x80\xb5\x41\x4b\xc6\x82\x5a\xec\xea\x77\xe2\x6d\xba\x85\x0b\x33\xbb\x3b\x04\xd1\x27\xfa\x56\x9c\xd2\x01\x2b\xf6\x20\xbc\x8c\x7c\x3a\xb4\x47\x8a\x2f\x02\xff\xda\x47\xe6\x99\x1b\x4c\xec\x73\x3e\x95\x39\x0f\x3d\x3b\x99\x89\xa3\x9e\x2d\x36\xc7\x56\xef\x18\x4f\xd9\xe7\x87\x98\x6c\xbb\x2a\xe9\xdb\xd1\x45\x9e\xf7\x2a\x5b\xde\x57\xb3\xd5\xc6\x6d\x8f\x55\x8f\x96\xb7\x40\x19\x10\x4d\x65\x81\x49\x42\xc5\x22\xae\x88\x8c\x5d\x90\x4e\xec\x55\xd7\xe5\xab\x03\xaf\x78\x5c\x5c\x24\x23\xb9\xa9\x90\x99\xdc\xa2\x82\x0b\x81\x85\x09\xb2\x2f\x7a\xd5\x44\x25\x15\xdd\x62\xc1\x00\x98\x43\x71\x4d\xe5\x16\x58\x0c\x2e\xbf\x22\x39\xba\xa4\xab\xb0\x2c\x44\x43\x06\x95\x39\xee\xa0\x33\x69\x79\xae\xe0\xd8\x67\xf7\x46\xe0\x0f\xa0\xe4\xd6\x11\x01\x02\x16\x55\xad\xe8\x66\x39\xab\xe4\x9e\x29\xc1\x2b\x10\x6c\x00\x37\x30\x4f\x1b\x35\x3d\x5d\x2f\x16\x40\x0f\xb4\x7c\x74\x93\x5e\xb6\xf6\x9e\xc6\xe5\x55\x14\x3a\x14\x24\x06\xd0\xd7\x0c\x2f\xc8\xa4\x23\x22\x48\x4b\x2e\xd9\xc6\xd1\x7a\x2f\x2c\x89\x09\x28\x53\xe5\xab\xc4\x9a\x33\xad\x4f\x77\x97\x8c\x6c\xa7\xfa\xad\x34\x60\xb9\x8b\xf7\x2c\xac\x9f\xb8\x38\x7f\xf7\xee\xfd\x87\xa4\x96\x08\xc4\xcf\xb4\xc0\x6b\xb1\xf7\xd2\xa4\x5d\xec\xc3\x14\x77\x6d\x09\x91\xbc\xa8\xa8\xc4\x31\xb8\x5c\xf6\xcb\x8c\x9c\xd7\x16\xb4\x36\x70\x5f\xcd\xd2\x6b\xd1\xfe\xf6\xe8\x0a\xf9\x14\x86\xf8\x73\xc5\x77\xff\xef\xc3\xff\x2a\x37\x9f\xc8\x2c\x5a\x80\xde\x26\xc3\x97\xe4\x5e\x2f\xd6\xd6\xb6\x13\x73\x0a\x10\x4b\x07\xf0\x20\x6b\xec\x76\x67\x81\xf3\x59\x09\xb0\x7a\x3d\x0d\xbb\xcb\xf6\x40\x25\x41\xa4\x31\xfa\x6f\x03\x28\xa4\xc0\x48\x75\x51\xdd\x69\xa7\x97\xba\x43\x11\xfa\x4f\xf1\x03\xd3\xc3\xaf\x91\x83\x75\x56\xb9\x76\xe2\x99\xdb\x49\x23\x9a\x4e\x3a\x77\xf6\x68\xd0\x22\xf0\xcd\x5e\x7d\xf1\x8f\x9e\x5f\xf5\x60\x1f\xf9\xec\x69\x80\x78\x3e\x41\x57\xaf\x6c\xdf\xe0\x6d\x6b\xb4\x04\x07\x62\x45\xe9\x61\x9b\x1a\xe0\x62\xb2\xad\x8a\x03\xff\x4f\xd4\xb9\xb2\xfd\x6d\xea\xc7\xf7\x74\xc1\x60\x57\x48\xb0\xef\x64\x37\x94\xb7\x4d\xa1\xf6\x50\xc6\xfd\x50\x81\xf7\x78\x2a\x0b\x4e\x02\x10\x37\x28\x64\x68\xb3\xfe\x23\x0c\x9a\xbf\x3f\x22\xc9\x6b\xd5\xed\x82\x78\xf8\x5d\x05\x2d\xa1\x5b\xf9\x71\x08\x1a\xc8\x63\xd7\xea\x90\x07\xfe\xd5\x90\x3a\x33\x1b\x59\xa0\x0a\xd9\xb1\x64\x96\xcd\x66\x20\xa7\xd0\x89\xfc\x26\xfb\x40\x06\x55\xf1\xd8\x72\x4d\xaf\xc1\x3d\x1c\xd3\x3b\x09\x17\xdc\x31\x06\x11\x24\xae\xb5\xd7\x6b\x63\xfb\x6c\x18\x6e\xc0\x64\x48\x2c\x62\x96\xe0\xa8\x46\xae\xea\x74\xa3\x8c\x03\x6a\x87\xbf\x38\x65\x52\x5c\x0a\x86\x85\xcb\xc7\x70\x60\xd0\x56\x08\x3f\xe8\x7b\xa6\x14\x01\x72\x95\x95\x1c\xbc\xad\xb5\xd1\x1e\x7c\x89\x74\x90\xba\x51\xf7\x59\xae\x57\x3c\xa1\xd8\xd8\x09\x9d\xa0\x91\xfa\x13\x1e\x72\x07\xa2\xe9\x21\x3f\xa0\x6c\x82\xc8\x15\x99\xec\x1c\x60\xfc\x20\x41\xa0\xa9\x28\x05\x30\xaa\x77\xfd\x60\xf0\xae\x7d\x30\xaa\x48\x4c\x82\x11\xf2\x01\xe6\x40\xa1\x32\x9e\xf8\x5e\x36\xb7\x81\xb8\xf4\x6a\xa5\x7a\x65\x1a\x70\x58\x90\x3e\x53\x64\xa0\x49\x85\x35\x74\x10\x84\x62\x8c\x5c\x07\x91\xf5\x0e\xfc\x66\xd0\xff\x4a\xbc\xe1\x94\xef\x37\x76\xe8\x7f\x60\x40\x56\x95\x47\x38\xba\xf0\x19\xe5\x73\x3b\x49\xa1\x40\x56\x87\xc2\xa8\x70\x28\xc8\x1e\xbd\xb3\x33\x1d\x87\x63\x1f\xd7\xe8\x4f\x48\xf8\x40\x75\xe7\x0e\xa6\x49\xca\xbb\x1b\xf8\xaa\xf6\xd2\x37\x1b\xb4\xc1\xf8\x33\xfd\x04\x13\x8c\xb5\xfc\x1d\x53\x6f\xe2\x07\x6c\x01\x47\x9b\xc2\xa5\x05\x4c\x2b\x37\x8b\xcb\x90\x12\x0b\x63\x96\xc3\x42\xbc\x95\x5f\xf4\x76\xd8\x8a\x7f\xff\xf1\xa7\xcc\x46\x93\x1c\x01\x16\x53\x9c\xe4\x21\x00\xb6\x10\xe4\x8f\x9a\x8a\x91\x49\x47\xaf\x64\xb3\x21\xb7\x15\xbb\xaa\x31\x22\x0c\xb0\x92\x1f\xa2\x51\x5a\x20\x69\x00\xa7\x5a\xb1\xa5\x36\x44\x40\x28\x1a\x5a\x7a\x52\x1a\x9b\x2c\xe6\x4d\x46\xc6\x36\x8f\xdf\x6e\x39\x32\xc6\x70\xbf\x01\x89\x51\xaa\xad\x83\xa8\xc4\x74\xaf\xb0\xa0\xae\x28\x00\x17\x47\x30\x8a\x11\xb8\x30\x84\x51\x9e\x7b\xfc\x08\x89\x7e\xd0\x25\x55\x07\x3f\xc8\x65\x37\xa8\x47\xcf\x71\x21\x31\x49\x67\xac\xb4\x45\xdf\x52\x0c\xb0\x6c\x8f\x12\xc4\x02\xe9\x76\x5a\xef\x17\x10\x05\x24\x2d\xf7\x19\xa8\xe2\xd4\x27\x71\x4b\x66\x8a\xc6\xa7\xaf\xde\x7c\x00\x3b\xdc\x7b\x8a\xd7\x78\x37\x53\xb3\x1b\xdb\x5f\x30\xae\x15\x04\xec\xc8\xae\x63\x39\x78\x99\xcc\x07\x63\x79\xc0\x20\x0c\x1c\x8c\x65\x27\xc3\xd2\xe4\xba\x02\x9f\xa1\x9d\x43\xa1\xc3\x68\x98\xcf\x82\x8f\x4e\xd8\xb1\x0d\x84\xac\x5c\x58\x8c\x2d\xb9\xbd\x36\xb2\x63\x9f\xd7\x37\x98\x48\x05\x43\x22\x5c\x3c\x95\x56\x5b\xec\xa2\x23\xf3\xd8\x3d\x8c\x36\x1a\xe8\xa5\xd5\x90\xdb\xe6\x11\x55\xa0\x33\x8e\xa2\xb4\xd9\x55\x85\xc7\x14\xa7\xd3\xa1\x15\xbe\xaa\x20\x01\xd6\x9d\x36\xb7\xc0\xdc\xed\x0e\x29\x21\xe3\x65\x2f\xec\x4e\xab\xf6\xbb\x2c\x8f\x95\x2b\x57\x30\xfb\xff\xef\xff\xfd\xff\x3c\xb9\x08\xed\xbe\xf0\x7d\xf7\xe4\x82\x25\xcb\x00\x8f\xe3\x88\x08\xc4\xfb\xff\xac\x06\xb3\x27\x7b\xd9\x8f\xf8\xab\xe2\x6f\xa0\x52\xd5\x60\x1c\x99\x60\xc0\x8f\x8a\xbe\x02\xb1\xaa\x28\xba\x5c\xa0\x52\x55\x65\xe2\x21\xfb\xce\x16\xe7\xec\xdf\x06\xdd\xdc\xd6\x78\xa1\x76\x26\xfe\x2b\x7c\x09\x88\x58\x46\xac\x46\x38\xb5\xe2\x11\x04\x8b\x76\x74\x8e\xe5\x5e\xab\x40\xb7\xc8\x95\x3e\x1d\x59\xb2\x64\x9d\x0e\x7c\x68\x30\x60\xa7\x8d\xaa\x76\x83\xdb\xa0\x0c\xc7\xb5\x5d\x0d\x6e\x03\xf1\x58\xbe\x60\xbc\x9f\x1c\x03\x4c\xcd\x04\xc7\x52\xf6\xaa\xde\x46\x2f\x87\xf1\xee\x8e\x0b\x87\x1c\xe9\xd2\x95\xdc\x41\xf9\x45\x55\xe1\x11\x8c\x6e\x0e\xae\x8a\xa7\x2a\x9d\xa6\xbe\x57\x80\xb4\x57\x2a\x40\x7a\xd5\xb3\x81\xa1\x34\x6d\xed\xe5\x1a\x4b\x06\xd6\x87\x8a\xda\x5e\x78\xb9\x26\x44\x80\xf9\x17\xfa\x59\x79\x09\xe6\x68\x1f\xe4\x7a\x1a\xea\x6e\x37\x74\xdd\x34\x20\x5e\x27\x97\x0a\x92\x2f\xe1\x47\xb5\x0d\x8d\xf4\xd6\x28\x3c\x3d\xf9\xa3\x6a\xc0\x79\xc3\x45\x37\x0e\x57\xad\x35\xb3\x08\x65\x1b\x28\x92\x01\xea\x0e\xf1\x27\x0c\x41\xdd\xcb\x7d\x48\x93\x7b\xfc\xdc\x68\x47\x81\x13\x5f\xe3\x2f\x4c\xc6\x7b\x1b\x00\x85\xcb\x9a\x08\x0f\x12\x08\xed\x91\x2b\xfe\x8d\x59\xde\x06\x9e\xae\x4f\xb3\xc3\xe6\x3c\xde\x5a\x81\x19\xc8\x54\xbb\x8d\xdd\x9b\xea\x4e\xb7\xca\xc2\x99\x41\xc1\x15\x30\x74\xe4\xb2\xb7\x7b\xc7\x4c\x67\x18\x6d\xfc\x0c\xd3\x6b\x1e\xa7\x40\x0c\xaf\x3f\xbc\xbd\xfc\x77\x01\x38\xc2\x3c\x2c\xaa\x38\x13\x0b\x7b\xa7\x7a\x8a\x00\xf2\x9e\x7e\xa6\x4c\x72\x57\xcd\x86\x0c\x4c\x35\x55\x1a\xb9\x08\xea\xbc\xec\x0a\xc8\x9b\x90\x30\x03\x88\xe1\x09\xcf\xbb\x6e\x26\x8f\x0c\x91\xea\xe5\x21\x9a\x52\xb5\x02\xae\x77\x02\x09\x86\x2b\x9e\x04\xcc\x26\x37\x63\xd6\x8f\x64\x88\x11\x07\x58\xa9\x36\x2c\xfd\x05\x04\x9b\x44\x0b\xbb\x77\x6a\x8f\xec\x2d\x65\xa1\xdd\x55\x1d\xed\xef\xc0\x7f\x29\x07\x08\xff\x38\xfb\xd7\x56\xfb\x22\x73\xd7\x2b\x58\x07\xd8\x2c\x87\x24\x0e\x46\x16\x1b\xe4\x18\x10\x45\x83\x1a\x90\x19\x6b\xea\x70\xa4\xd6\xbc\xe1\x2e\x50\x6e\x08\x99\xc2\x58\xf3\x04\xce\x5b\xc8\x2c\x1a\x01\xa4\x28\x6f\x89\xe7\x25\xc4\x60\xdb\xc1\xf9\x7a\xa9\x6a\x6b\x6a\x99\xc6\xe6\x2f\x6c\x37\xbc\x04\x57\x34\xc9\xfb\x33\x1c\x7c\xf2\x16\xbd\x17\x7a\x1b\x04\x55\xc1\xfd\xe0\x78\x70\x39\x72\x90\x7c\x30\x66\x23\xf4\x23\xc7\x0c\xb4\x76\xcc\xe0\x53\x7c\xc7\x00\xcb\x66\xf5\x39\x3e\x56\x9c\x65\xbd\xca\xf5\x76\x93\x7e\x05\xaa\x55\x43\x78\x2f\x52\xff\xe6\x0d\x00\x92\x86\xb1\xbf\x92\x8a\xe6\x9b\x7a\x87\x36\xab\xd0\xa4\x74\x94\x81\xc7\x57\x69\x16\x30\x7f\x4d\xce\x0b\x2d\x30\x7b\xe0\xe8\xcd\xcb\x8d\xbc\x20\x7a\xa8\x6c\xb1\x58\xe4\xf5\x45\x75\x02\x68\xed\x02\xb7\x9e\x0e\xf1\x53\x8c\xc7\x05\xdc\x9c\xf6\x78\x37\x0a\xa7\xe7\xd3\x45\x80\x65\xd5\x65\x5e\x60\x6d\x59\x2f\xb5\x54\x6b\x8d\x91\x3b\x41\xa8\x56\x14\x31\x24\x21\x59\xca\xe6\xd6\xed\x24\x04\x70\xc4\xf6\xc0\xf9\x6c\xfb\x6c\xbd\x36\xaa\xab\xc1\x18\x5b\x9c\x09\xfc\x8c\x99\x40\x59\xb3\x45\x4f\x1e\x73\xa3\x35\x2f\xdb\xb6\xf6\xdb\x1d\x5b\x39\x3d\x3e\x71\x4f\x9f\x71\xb7\x9f\x3f\xce\xa0\x12\xc0\xe3\xb4\x2d\x5b\x8c\x26\x4b\xb6\x95\x79\xde\xd8\x34\x39\xcf\xa3\xa6\xd1\x21\x18\x23\x16\xb7\xe0\xa3\xce\xa1\xd8\x84\xfa\xe2\x95\x69\x55\x2b\x32\x19\x23\x9b\x1b\x42\x82\x43\xdb\x1d\x6a\x6f\x71\x95\x26\x6a\x83\xfd\x65\x00\x1e\x76\x52\x95\x31\xdb\x8c\xe0\x4f\x42\x77\x1f\x81\x5b\x7a\x54\x9d\x41\x46\xaa\x2e\x31\x10\xa9\x06\x66\x1d\x58\xfd\x66\xa2\xc7\x63\xc2\xb3\x82\xd8\x6c\xe0\x00\x03\xed\x01\x7b\x01\x8c\xd0\x29\xc2\x29\xca\x1e\xfa\x8b\x9c\x0e\xb2\x57\x00\x58\x41\x13\x4b\x54\x7a\x53\xe6\x23\x31\xb2\xd4\x1d\x2f\x5e\x22\x6b\x4b\x85\x11\x36\x69\xc7\x80\x30\x33\x09\xa6\x49\x65\x99\x69\x40\x85\x74\x52\x5b\x23\xc9\xc6\xcd\x56\x6a\xab\x63\x34\xd8\x5c\x6f\xc2\x6b\x81\x97\x7f\xad\x5d\x2d\x23\x75\x34\x9e\x55\xa7\x24\x09\xef\x24\x19\x8e\x62\xf4\x18\x89\x27\xef\x88\x71\xbe\xaf\x22\xa0\x0f\x50\x87\x3b\x6c\xe9\x74\x8f\x61\x55\x59\x60\x93\x82\x33\xf9\x8e\x88\x86\x00\xbc\x7b\x35\x07\x63\x00\xeb\x69\xb5\x14\x84\x7a\x32\xaa\x50\x4d\x6a\x55\xaa\xa8\x90\x33\x73\xd6\xf0\xeb\xbb\x40\xd4\xb8\x36\xb6\x46\x45\x46\x76\x71\x50\x74\x87\x4d\x37\x98\x7c\x8f\x34\x1f\x51\xc7\x70\xac\x22\xb2\xa8\xad\xf7\x9b\xac\x5a\x26\xa9\x13\x5b\x30\xb6\xbf\x75\xda\x34\x2a\x85\x9a\x55\x2d\xd7\xbf\xb8\x5f\xa5\x97\x42\x10\x80\xdd\x07\xdd\x40\xed\xc3\x2c\xc0\xd1\x50\x54\x62\xfb\xb8\xad\x90\x1c\xf2\xfe\x59\x4b\x6d\xd2\xf6\xf2\x16\x7c\x91\xf0\x54\xf1\x9b\xec\x04\x29\x7b\x3a\x59\xca\xe7\x38\x8c\xa0\xe0\x4a\x53\xf6\xf5\x8b\xda\x58\xa6\xad\x81\xf4\x04\x5e\x10\x67\x27\x48\xae\x68\x4c\x93\x9d\x64\x21\x3b\xb5\x07\x02\x49\xda\x9a\x2c\xc2\x69\x3b\xa4\x28\x50\x98\xfe\x94\x8c\x6a\xd2\x64\x43\x53\xd1\x0b\x35\x48\x86\x23\x6c\x74\x2c\x4e\xb0\x11\x21\x7e\x08\x4d\x38\x07\xdc\xb0\x6c\x75\x4f\xa4\x18\x3f\x48\x58\x4d\xc4\x86\x5c\xd8\xa0\xf9\x91\x29\x73\xa3\xf6\x47\xfe\xcc\xb1\xad\xeb\x91\x5a\x73\x1c\xd0\x09\xdd\x97\x0c\x5e\x44\x50\xb1\xd0\xc0\x84\x3f\x71\xfc\x44\xe8\x99\xf1\x2f\xe1\x72\x21\x83\x73\x46\xa1\x8d\x68\x65\xa5\xfc\x95\x06\xc9\xf0\xa5\x36\x6d\x4c\x93\xa0\xc7\x89\x2e\xf1\x31\x3d\x49\x72\xe4\xb9\x1e\x73\xe8\x6c\x7c\x01\x5a\x52\x4a\xe3\x88\x56\xef\xc3\xff\x98\x6a\xd4\x9e\x14\xe5\x7b\xd5\xc7\x88\x4f\x18\xc4\x3e\x90\x7d\x90\xb9\xb2\xe4\xc5\x58\xce\xca\xb2\x02\xc9\x08\x89\x28\x44\x43\x7e\x9e\xdd\x74\x4a\xf6\x75\x2c\x7f\x11\x3e\x45\x37\xc1\x12\x05\xb7\x5c\x6e\x1b\x55\x93\xc3\xbc\xb3\xf3\x60\x58\x5d\x0e\x89\x35\x6e\xe7\x80\xed\x4e\x99\x02\xf6\xfd\x4e\x99\x5c\x6c\x2c\x10\x5b\xa7\xda\x11\x66\xb8\xc5\x99\x87\x97\x0e\xc2\x1f\xc2\x3d\x16\xfd\x9c\xb6\x33\x03\xc2\x66\xca\x19\x50\x63\x73\xb8\x77\x76\x02\x44\xfb\x36\xb2\x07\xe3\xd9\x4b\xf3\xa3\xf6\x93\x09\xc2\xcc\x1a\x2c\x6b\x62\xfc\x33\x00\x8a\xa7\x7e\x51\x4d\x44\x46\x95\x15\xf8\x10\x57\xbc\x65\x58\xc4\x1b\xd5\xb0\xbb\x64\xe0\x32\x5b\xb5\x02\xc7\x40\xa7\x40\xa7\x5a\x2e\x84\x71\x71\x6d\x56\x36\xa7\x71\x41\x8e\x95\xe6\x40\xa5\x40\x3f\x11\x8d\x19\x31\x0a\x0f\xe9\x50\x1e\xc5\x9e\x3e\xe2\xa0\x3c\x72\x69\xd1\x47\x93\x46\x0b\x1d\x39\x31\xaa\xf9\xb8\x61\x14\xc0\xe7\x48\xab\x66\x2e\x48\x60\x48\x9c\xf2\xc7\x8a\x0c\x8e\x1c\xac\x90\xb8\x3f\x08\xcf\x24\x36\x17\x42\x13\xb9\x03\x5a\x85\x38\xe2\x33\x15\x91\xda\x62\x08\x3e\x44\x0b\xeb\xdb\xcb\xa5\x38\x13\x27\x2d\x2c\xee\x38\x97\x61\xe9\xa6\x2c\x5c\xc9\x9c\x49\x7a\x1c\x9e\xe8\x62\x86\xf3\xbc\xc0\x2d\xe0\x4d\x0d\xae\xcb\x78\x6b\xd3\xcd\x94\xb8\x77\x83\x8f\x61\x8e\x62\x9e\x6c\x63\x2a\x79\xcf\x6e\x4b\x10\x6b\x6d\xd4\x71\xd4\x47\xca\x91\xe2\x1c\xd4\xe5\xd3\x9c\x85\xec\xba\x3a\xaa\xaa\xce\xbb\x4e\xe0\xc7\x2c\xa8\xa3\x77\x3e\xbc\x0d\xc2\x60\x6a\x6a\x4b\xf6\x3d\x73\x85\x70\xb5\xb6\xf5\xf2\x40\x65\x70\xdb\x41\xf4\xdd\x23\x45\xb6\xca\x04\xc9\x25\xb0\x73\x58\xe4\x6d\x4c\x98\x29\xe2\x28\xfe\xa4\xed\xfd\x4c\xce\x02\xd6\xa3\xa7\xa3\xc2\xcd\x82\x04\xa2\x01\x20\xef\xe1\xc7\x1c\x08\x9a\x7c\x47\xe9\xed\x9a\x82\x80\xb1\xb7\xd9\x6c\xc5\x4a\xba\x54\xe2\x52\xa1\xe7\xfd\xc3\xe5\xb6\xd6\xf9\x70\xcc\xa1\x85\xff\x5b\x0b\x81\x37\xe0\xf3\x9e\x7a\x52\x01\xac\x68\x52\x22\xec\x24\x56\x46\xe1\xef\xa4\x8b\xca\x8c\x8f\xc1\xee\x98\xcc\x87\xe5\xf3\x49\xe1\x7a\x25\x6f\xd5\x0c\x06\xd4\x66\x11\x34\x28\x8f\xec\x10\xb5\x46\x76\xc8\xce\x95\x2f\x38\x15\x5f\x7c\xb9\xc5\x63\x0c\xf1\xd1\x0e\x6f\x63\x56\xb9\xc3\xcd\xb0\xad\xa9\x8f\x0e\x29\x00\x7f\xc5\xe2\x3c\x02\xb5\x0c\x55\xfe\x16\xbf\x53\x77\xff\x2d\x70\xd8\x27\xd0\xd3\xdf\xb8\x18\x7b\x37\x22\x74\x16\xb5\xfb\x9c\x9c\x5e\xa2\xf7\x0b\x5b\x5f\xb4\x99\x72\x87\x8a\xfd\x31\x36\xd3\x66\xce\x1a\x78\x0a\xc0\xfd\x57\xa9\xa1\x2e\x48\x1a\x7c\x70\x7f\xcb\x2c\x6e\x54\x04\xa1\x49\x07\xe7\xbe\x1c\xbc\x57\x30\xaa\x0c\x77\x0d\x9f\xa3\xcc\xfb\x90\xf5\x45\x01\x3a\x36\xd3\x12\x23\xd0\xd1\x44\xd1\x30\x23\x4b\xf1\x4c\x0a\xdd\x92\x35\xfb\xa3\x38\xdc\xf0\xf5\x1c\x16\x4b\x31\xe8\x58\x5f\xc4\xc1\x9f\xdf\x88\x85\xb8\xdc\x5e\xad\x22\x1e\xba\xe4\x6e\x71\x76\xb0\xab\x18\xee\x82\x65\xa3\x6f\xab\x62\x67\xe9\x11\xa6\x2b\xf8\x91\x6a\xe6\x98\xa6\xc0\xef\x5e\x64\x9f\x71\x99\x17\x16\x39\x94\xc8\x91\xa7\x39\xc6\x12\xe9\x2d\x0a\x57\x26\x8a\xf2\xc9\xe2\xdf\x5f\x2d\x0b\x58\x8d\x35\x77\xaa\x77\xe4\xbe\x40\x18\x49\x81\xf9\x6b\xab\xd3\xf4\x8c\x74\x1d\x5c\x37\x1a\x91\xdd\xc8\x3b\x35\x3a\xc4\x99\xe5\x89\x2c\x54\x99\xdf\xd8\xce\x26\x16\x0b\xbe\xc6\x00\x68\x25\x75\xd2\xce\x72\x47\x69\x69\xd2\xce\x85\x30\xe7\xe5\xa9\x83\x90\x33\x9d\xc1\x8c\x91\xa6\xac\xcc\x8c\x11\xc7\xb0\x81\x10\x77\x8c\x0d\x88\xa7\x58\xc8\x73\x1d\x40\xa3\x99\xd6\x2c\xd8\xbc\xc7\x26\xf2\x18\xb9\xd9\xa5\x06\x21\x38\x79\x69\x6a\x53\x58\x62\x12\xee\xe3\x86\x74\xf3\x95\x27\xdd\x2d\xb6\xf5\x01\xbd\x6d\x46\x26\x77\xb2\xf7\xba\xd1\x3b\x19\x49\xe5\x55\x96\xc2\x90\xd2\x7b\xd9\x6c\xc2\xb6\xce\x99\xae\xdf\x50\xff\x40\x6a\x87\xb0\x1e\xd1\x96\x3d\x08\x5a\x5e\x2e\x7f\x9b\x29\x1d\xe3\x62\xe7\xa5\x63\x62\x40\xf1\x5b\x85\x77\x61\x99\xb8\x96\xdf\x89\x51\x66\x63\xb7\x3b\xd9\xab\x52\x1b\x1b\x52\xa2\x3a\x76\x16\x8e\x67\x89\x81\xfd\xde\x8a\x78\x91\x03\xef\x95\x85\x13\xac\xd4\x23\x82\xc2\x31\xaa\x40\x4a\xb4\x10\x86\xfb\x0c\xa2\x31\x8c\x2b\xa4\x1a\xce\x04\xfd\xa2\xfc\xe2\x12\x71\x7c\x79\xc8\x3d\xb7\x75\xaf\xdc\xd0\xc1\x8c\x80\x47\x19\x7e\xac\xec\x60\xda\x45\x04\x82\x47\xa3\x02\xb7\x95\xea\xca\x0e\x11\x7c\x52\x8a\xfc\x5b\x43\xee\x52\x35\x32\x30\xea\xd0\xe6\xd0\xd7\x8d\x92\x6d\xd6\xfb\x5e\xc1\xcb\x0d\x63\xfc\x5b\xd5\xaf\x63\x47\xbf\x06\x7f\x31\xa6\x1b\x0c\xc0\x8d\x1e\xb6\xdd\x41\xb4\x7a\x05\x54\xd7\x0b\x52\x37\x70\x75\x1b\xe9\xea\xfc\x71\xb0\xb0\x40\x62\x6d\xac\x44\x1a\x4d\xcc\x52\xf9\x3d\x44\xbb\x02\x67\x8a\x50\x2f\xaa\xca\xdc\xcf\x23\x8f\xa9\xa7\x50\xc7\xd3\xc0\xb9\xb4\x44\xb8\xff\x0d\x3e\x90\x7c\xd3\xcc\x8d\xc4\xcc\x99\x55\x07\xc4\x8f\xd7\xd0\x1e\xb6\x8c\xb7\x02\x46\x08\xb8\x9d\x96\x35\x1f\x78\x8c\xb0\xbb\xd5\x4f\xd1\xdd\x4a\x68\xe3\xed\x8c\x1b\x16\xe1\x07\x4c\xc4\xd4\x70\x35\x98\xf6\xaf\xa1\x17\x27\x9f\xfe\xc7\x67\xde\x12\x5e\x2e\xeb\xfc\x74\x40\x8b\xd5\xf8\x59\x40\x8d\x15\x3e\x29\xaf\xb8\x36\x67\x1d\x23\xe5\x13\x0f\xe1\x2d\x2e\x9e\x64\xc3\x85\x19\x64\xa1\x9e\xcf\xa4\xb7\x62\xa7\xfa\x40\x15\x69\x34\xa3\xcd\xee\xa2\x18\x1a\xe0\xf6\xfb\x54\x53\x58\x35\x31\xe7\xc3\x04\x6d\x24\x83\x04\x53\x52\x41\x44\xd1\x4a\x2f\xeb\x65\xcf\xe6\xf9\xd2\xcb\x68\x93\x39\x8f\x8b\x60\xdb\x21\x45\x63\x22\x5b\x2f\xb8\x0f\xcc\x88\x3b\xb7\x5d\xbb\x1a\x3c\xd2\x51\x15\xfc\x81\xdc\xcc\x3b\xdd\x78\x11\xd3\xb5\xa3\x70\x48\xf8\x70\xca\x1a\x9f\xa1\x89\xcf\xcd\xad\x7a\xe5\x36\xf0\x48\x44\x00\x58\xa9\xbd\xd8\x5a\x60\x68\x23\x45\x92\xa6\x06\x13\x44\xdc\xaf\xb9\x15\x51\xd1\x0d\x32\x29\xa2\x01\x29\x9e\x7e\xc8\x50\x81\xc5\xd6\xd7\x61\x43\x0f\x88\x39\x7c\x89\x22\x44\x25\x2e\xf7\xdb\x1d\xaf\x6b\xfc\x5e\x1c\xae\x87\xad\x34\x68\x5c\xac\x8d\xb0\x7d\xab\x7a\x8a\xb9\x0b\xce\xdd\x7e\x33\x87\x19\xf9\x52\x44\x4a\xec\x5c\x76\xc3\x84\x68\x31\x3d\x2e\xdb\x40\xe5\xf8\xb2\x37\x00\xe0\x84\x5d\x43\x3a\x5f\xec\x52\x7a\x22\xf7\x70\x69\x96\x19\xfd\x45\xfd\x69\x6e\x70\x93\x2d\xe2\x31\x99\x83\x05\x3d\x47\x6d\x60\x13\x0d\x86\x88\x02\x94\x8a\xca\xf6\xdf\x48\x2f\xf4\xd8\xc7\x8d\x43\x9b\x2b\x59\xbb\x97\xc3\x9f\x93\x51\x83\x5c\x55\x31\x95\xdf\xff\xdb\x49\xfb\x03\xbd\xac\x25\xb7\x6a\x6a\xb3\x1a\x12\x71\xd4\x72\xfe\x25\x1c\x24\xda\x41\x98\x6b\x78\xd0\xc1\xf6\x3c\x42\x0b\x26\xac\x24\x34\x65\x06\xab\xc0\x9f\xfd\x92\x1f\x79\x05\x0c\x44\x2f\x33\x6a\x9f\x11\x20\xba\x27\x4b\x77\x4b\xcc\xd8\x70\x27\x35\xee\x50\x0c\x17\x81\xa5\xd0\x39\x01\x9a\x6c\x1a\xb5\xa8\x32\xeb\x99\x8c\xb9\x48\xca\x9a\x2c\x7b\x46\xb3\x94\xe5\xce\x6b\x97\xc6\x00\x6d\x52\xa1\x9e\xb8\xa2\x6e\x5b\xb7\x83\xaa\x49\xf4\x7f\x67\x81\x94\x84\xaf\x71\x0b\x58\xe4\x1d\x63\x8e\xf2\x5f\xd9\xa1\xda\x0d\xcb\x70\xa6\x63\x74\x6a\x5c\xe8\x99\xc1\x90\xb7\xec\x49\x42\x77\xf3\xc4\x9d\x15\xe8\x47\x67\xe0\xec\xe0\x44\x1f\xcd\xf0\x3f\xcf\x98\x31\xe8\xce\x73\x53\x9f\x5f\x0c\x0a\xd4\xf8\xe2\x7b\xbe\x9c\xfe\xa1\xec\xa4\xc2\x18\x44\xe1\x7f\x9e\x11\x9f\x43\x21\x54\x35\xae\x43\xc2\x08\xc8\x29\x25\xbd\x95\x71\x1a\xad\x40\x1e\x1f\x0e\x87\xc3\x93\xed\xf6\x49\xdb\x3e\x9e\xe9\x75\xc6\x44\xc7\x6e\x8f\xac\x20\x48\x5b\x35\x3a\x47\x32\x4c\x99\x4c\x32\x3f\x76\x60\xd2\x92\xcf\xd3\x47\x50\xd0\x2e\x95\x07\xbf\xc3\x8c\x8c\xc0\x4e\x4a\xb3\xe7\xc2\x09\x69\x77\x9d\x4a\x5e\x67\x81\xe4\x61\x34\x89\xbc\x2f\x23\x79\x2e\xcb\x1a\x05\x5b\xbe\xb7\x81\xd1\xaa\x91\xf8\x6b\xbb\x4a\x8d\x19\x0d\x0a\xbe\xa5\x78\x74\x48\x32\x39\x2a\x0d\x6b\x94\xa5\x66\x00\xe7\x25\xa9\x54\xfb\x7f\xa7\x34\x35\x57\xfd\xdc\x32\x78\x40\x9e\xaa\xf6\xfa\x56\x8b\x33\xf1\x67\x7d\xab\xe1\xf7\x82\xc2\x63\x67\xe1\xb0\xbd\x85\xec\xef\x8a\x7c\xee\x6b\xc8\x01\x8b\xb8\x0d\x39\x01\x0b\x7c\x1e\x10\xbd\x0c\x87\xae\x15\x9d\xbe\x45\x7e\xc3\x36\x03\x28\x5a\x0e\x14\x0c\xed\xaf\x10\x99\xcc\xae\x15\x78\x81\x47\x19\x46\x7b\x5a\x54\x0b\xac\x90\xd6\x38\x04\x4b\xac\xe9\x25\x68\xda\xe4\x3e\xbe\x14\x15\xd2\x11\x3c\x7f\x2b\x1a\x12\x48\x6e\xa1\x74\x92\x5a\x12\x3c\xc6\xb6\xca\xb1\xbe\xa3\x97\xb4\x30\x9f\x4d\xd7\x4a\x4b\x95\xd0\x73\xb4\x5e\x0a\x02\x85\x12\x72\x69\x07\x32\xf0\x22\xd5\x68\x22\x10\xd4\x0f\x78\xf0\x87\x6a\xba\x09\xc2\x45\xaa\x03\xec\xfc\xa9\x02\xba\x5a\x39\x71\x70\x93\xce\x2a\x1e\x28\x77\xe2\x10\x1c\x56\x7a\x48\xa9\xe9\x0a\x85\x74\x09\x45\x7f\x52\xde\xb8\x3f\xe8\x67\x56\x80\xd0\xc1\x36\x0f\x65\xac\xd7\x8d\xaa\x7f\x64\x3e\x2a\xf7\x45\x43\x5b\x8d\xb5\x22\xd6\x3d\x88\xc1\x1c\x9f\x81\xd9\xa0\xb0\xdf\x55\xef\xe1\xd1\x88\x38\x43\xd3\x4b\x78\x58\x48\x80\xea\x01\x57\xc8\x88\xc3\xd1\x34\xbb\x6c\x10\x39\x4a\x1a\x87\x3a\x61\xf3\x44\x57\xcd\xbe\x13\xcd\x69\x0b\x9c\x2c\x17\x9f\x7b\xcc\xb2\xb2\xe7\x7e\x88\x47\xca\xbe\x8f\x80\x2d\xd0\x23\x8b\xa2\xa2\x1f\x03\x42\x4b\x05\x5a\x49\xc7\x80\xe0\xc1\x66\x74\xea\x39\x06\x32\x18\xbe\x23\x3b\x13\x1f\xf9\x77\x02\x9e\x33\xa6\x9d\x64\xd6\x4b\x94\xc3\x33\xbf\x28\xf4\xdd\x4e\x12\x71\xa0\xeb\x00\x95\x7b\x86\xd0\x24\xef\x06\xb7\x81\xc7\x41\xa3\x06\x98\x83\xba\x72\x45\x0f\x79\xff\x1c\x01\x4c\x1c\xbc\xe2\xb7\x0c\xd9\xf6\x09\x75\x85\x4e\xb7\x10\x6f\x02\x6e\x17\x03\xbb\xfb\x88\xf3\x41\xfb\x01\x81\x0d\x90\xad\x3a\x2d\xd8\x46\x8a\x9a\x66\xe0\x79\x48\x36\x5a\x49\xad\x18\x19\xb4\x8d\x33\x46\x16\xad\xf5\x60\xa2\xc9\x6f\xb2\x6e\x9d\xb6\x37\x7b\x78\x0d\x6f\x8a\xc0\x01\x5d\xfb\xf8\xb0\x9a\x35\xe4\xbe\x30\x69\xca\xb8\xc6\x44\xec\x5f\x94\xd5\xb0\x0c\x98\xb1\xc1\xf7\x06\x11\xfc\x2e\xd5\xb4\xeb\xad\x87\x3b\xb7\xdc\x46\xf8\x8a\x13\x67\x56\xcf\xb4\x40\xf4\x7d\xc2\x9c\x6c\xf5\xc0\x4b\x68\xb6\x6f\x70\xb1\xc0\xf3\xbd\xb2\x69\x74\xab\x8c\x97\x5d\x92\x46\x21\xc6\xe8\x46\x7b\x05\xd1\xc2\xb2\xf9\xc3\x57\x45\xd2\x16\xc0\xd0\x8f\x32\xb7\x29\x86\xc0\x8f\x6c\x2f\xbb\x58\x2c\xc6\xcb\xbc\xa6\xf6\xe2\x46\x26\xce\xfc\x2a\xa6\xdd\x03\x3e\x72\xe9\xc2\xca\x05\xe5\x0b\xa6\x1e\xb0\x43\x10\x6b\x7c\xd9\x66\x31\x19\xad\x91\x71\x22\x8f\x14\x4c\xda\x72\xb4\x19\x66\x8a\x44\x2e\x83\xc2\x4a\xa4\x31\x25\x4d\xe0\xae\x57\x77\xb0\x03\xc3\x88\xf3\xb8\xce\x34\x83\xb5\xf3\x23\xa9\x8e\x1f\x97\x2c\x64\x2c\x6d\x9c\x0f\x84\x08\xed\x80\x78\x06\xbf\x0e\x67\x0c\xa6\x80\x81\x5c\xa0\x9f\x38\x62\xf9\x83\xcd\x25\xe6\x68\xf3\x4b\x73\xc9\x7a\x9c\x18\xd0\x79\x49\x5d\xc6\x68\x0e\x14\x49\xc6\x58\xf3\x24\x2e\x49\x9e\x09\x60\x2c\x50\xc8\x2f\x91\xc6\x27\x66\x4a\xdb\xcb\x49\x9f\xe2\x6a\xac\xd3\x42\x0c\x54\x3b\x2e\xd2\xfd\xc6\x82\x76\x02\x88\x60\x59\xc7\xd7\x61\xcb\xed\x5e\x89\x57\xb6\x3d\xb9\xd5\x7b\x9b\x6d\x07\xbb\xca\xc7\x69\x32\x48\xf0\x98\x5b\x60\x25\x53\x09\x74\x11\x3b\xec\xa4\x8b\x0f\xf0\x8f\x14\x21\x1b\xd5\xdc\xde\xdb\xeb\xe2\xa9\xb8\x7f\xb6\xb3\x68\x68\x15\x71\x91\xb9\x15\x7c\xde\x57\x0c\xc7\x00\x5f\x0c\xc0\xfd\x85\x8f\x5e\x53\xe8\x6e\xb2\x97\xde\xfe\x0b\x2d\xe2\x1a\xa8\x45\xf0\x39\xa1\xbd\x5c\x7a\x42\x7b\xaf\x66\x28\x40\xbe\xc4\xbe\x96\xf2\x6e\xac\xbd\xc5\x07\x19\x97\xf0\x33\xe5\xac\xb5\xe7\xcc\x70\x50\xbc\x2e\x73\x97\xd2\xe9\xa6\xce\x58\x9b\x5f\x42\xc2\x0c\x83\x43\xbe\x63\x19\x24\xb9\xb0\x4e\x41\xdd\xc1\x34\xf4\x2a\x61\x18\x97\x83\x69\xc4\x3b\xbb\x9f\xa2\x0a\x60\xda\xd4\xac\xf3\x4b\x28\x43\x4e\x7c\x7e\xf2\x61\x9d\x20\xf2\xce\x92\x5e\x1a\xcb\x96\x22\x45\x64\x7e\xcf\x8f\x90\xde\xe8\x99\x83\x38\xeb\x11\xd9\x9e\x4f\x7b\x44\x5e\x28\xe1\x44\xfc\xba\x78\xc9\x73\x71\x92\xc7\xc6\xb3\x11\xbb\x6c\xef\x82\xc4\xda\xe6\x4d\x39\xa7\xb4\x99\xc6\x04\x66\x75\x44\x12\x41\x08\xc3\x57\xe1\xb3\xfe\x39\x85\x9e\xc9\x46\x76\x35\x89\x69\x41\xe6\xe6\x77\xe7\x43\x52\xd6\x88\xae\xb3\xfb\x9a\x82\x7d\xe7\x55\x9c\x43\xdc\x4c\x0e\xe0\x1d\x7d\x2d\x00\x21\x44\x92\x2a\x43\x12\xec\x30\x08\x40\xd9\x0c\xf5\x65\xda\x0c\x4e\x1b\xb5\xa3\x00\xa5\xb7\xe7\x7f\x65\x50\xe0\xf1\x3f\x5e\x5f\xde\x03\xce\xcd\xfe\x53\xf1\x04\xf1\x32\x0c\x3d\x52\x3e\x24\xe3\x1f\xaf\x2f\xb1\xf5\x7e\xa3\x0e\xa5\x89\x99\x97\xcb\x6c\x72\x50\x90\x1e\x8d\x37\x5e\x98\x83\xd3\xb8\xea\x8f\x8c\x38\xc0\xd4\x04\x33\x1a\xfa\x4e\xaf\x37\x7e\xaf\x20\xac\xce\x11\x5c\xc5\x7c\x94\x8d\x38\x32\x23\x74\x75\xfc\xcd\x73\x32\xd7\xd0\x38\x39\x47\x5a\x17\x0b\x53\xce\x78\xa2\xc0\x50\x51\x7c\x20\x9c\xf3\x33\x96\x15\xfd\xef\x9e\xb4\x1c\x75\x54\x94\x1d\x6f\x9c\x78\x09\x30\xd3\xf2\x38\x34\xce\x1f\xd0\xcb\x60\x1e\xc1\x3b\xb9\x85\x60\xa9\x01\xea\xe7\x7b\x71\x2c\xf8\x99\xa6\x33\xf1\x0e\x7f\xdd\x0f\x5e\x3c\xed\x14\xe6\x3d\x7d\xde\xd7\xd7\x3c\x92\x0d\x47\x83\xcc\xad\x40\x51\xd4\xfe\x7b\x38\x3b\xff\x21\xfe\x1e\x96\xca\x3f\xc4\xdf\xb5\x69\xd5\x97\x7f\xf0\xad\x59\x7c\x5a\x3c\x90\xbb\xd3\x49\xc8\x13\x54\x7d\x87\x41\x80\x62\xf9\xe9\x3f\x74\xdd\x78\xb7\x94\x52\x13\x05\xcf\xda\xe1\xb3\x49\xbd\x5e\x0e\x78\xf2\xf1\x95\xe6\x24\x3a\xd0\x72\x2a\x35\xe0\xdd\x12\x06\xc5\x80\x03\x19\x7c\x9b\xc4\x99\x78\x83\xd1\x30\xf8\x6e\x9c\x39\x19\xc8\x1e\x97\xc7\x1d\x46\x57\x1f\x7c\x5d\x87\x7b\x6b\x80\x53\x06\xee\x3e\xe2\x2d\x27\x5b\x76\x27\x39\x53\x82\x3b\xc5\xef\x68\xf9\xf8\x02\xbe\xc4\xff\x69\x4d\x2e\x89\xe3\x1d\x0f\x78\xd2\x79\x5b\xbb\x70\x76\xb0\xc1\x4b\x26\x28\xc3\xed\x59\xe1\x8b\x1e\xb6\xb3\x77\xc2\xf6\x7a\xad\xc3\x8a\xa3\x67\x63\x22\x62\xa3\xf6\xf4\x3a\xcf\x46\x3a\xc4\x1b\xdf\x1a\xc1\xd0\xf5\x58\x8d\x8c\x0f\xdc\xba\xb2\x82\x52\x47\xb2\x18\xc9\x25\x91\x1f\x86\x17\x0f\x32\xad\x81\xb9\x53\xbd\x8f\xd7\xa6\x5e\x7c\xb0\xe2\x5a\xad\x87\x4e\xf6\x79\x10\x80\x71\x81\xf1\x82\x64\x3c\xa4\xde\x84\x33\x3f\x2c\x0b\xd1\x13\xae\x5c\x41\xc0\xe1\x00\xe8\xf6\x23\xc8\x26\x3d\x06\x12\x1e\xd7\x82\x7a\x26\x07\x8a\xa6\x27\xf4\xe8\x4a\x19\x00\xa9\xa8\x38\x1b\x0d\x6a\x03\xdc\x21\xcf\xb5\x82\xc3\xc4\x53\x1b\x30\x0e\xd2\x4c\x0b\x92\x55\x1c\x47\x42\xa2\xfb\xe5\x91\xa6\x07\xa1\x31\x46\xdb\x28\x30\x44\xd2\xb8\x23\x14\xbf\x51\x8a\x4d\x02\x9b\xd5\x32\x82\x7f\x4e\x08\xf0\x6d\x98\xb3\x40\x9a\xf0\xe7\x7b\x7e\x5d\x66\x0a\x16\x15\x23\xe9\x49\x99\x72\x50\x32\xb9\x08\x48\x01\x4d\xd2\xe8\xb9\x23\xdc\x62\xcd\x26\x7b\xb1\x15\x54\x57\x10\x33\xce\xcd\x34\x6f\x34\x4d\xb3\xe1\xb6\xf4\x2a\x5b\xc3\xe0\x67\xa5\x4d\xab\xef\x74\x3b\xc8\x8e\xde\xc2\x3a\x8e\xf7\xa7\x12\x6f\x63\x0d\x68\x44\x8e\xe2\x1e\x75\x08\x68\x1b\x84\xca\x7d\xdc\x93\x31\xf9\x2a\x3d\x73\x35\xdb\xa3\x40\x76\xa3\x79\x18\xed\x24\x0c\xbb\x9a\x9e\xad\xc9\x75\xf5\xa8\x88\x87\xf5\x81\xc1\xbb\x79\x95\xfe\x3c\xe1\xf2\xc8\x9e\xeb\xd7\x3e\xe0\x04\xf6\xe7\x85\xf4\x72\x16\x8c\x27\xf4\x3d\x7b\x54\x29\x28\x04\x2c\x57\x2b\xbd\x4c\xb7\xa1\xc6\x52\x28\xad\xa5\x6c\x6e\x67\xf5\xac\xb3\xf8\x67\xf6\x57\xae\xca\x0d\x03\xc7\xc2\x38\x78\xbc\x85\x8a\xc3\x41\x72\x32\x65\x5e\x27\x17\x0e\xd7\x39\x69\xe2\x06\x27\x4f\x2e\xe8\xca\xf8\xed\x8a\x4c\xe3\x57\x3a\x88\x42\xd3\xe6\xe8\xd1\x91\x81\xe2\x0e\x14\x0f\x4f\xfd\x33\xa3\x75\x7c\xa0\x12\x21\x7a\x30\xbe\xda\x71\x7c\x3f\x1d\x25\x6c\x59\x14\x34\xee\x4d\xa0\x93\x07\x34\x55\x9a\xba\x9e\x9d\x52\x50\xa1\x90\x1b\xa4\xc2\x30\xdc\xa7\xc4\x41\x9e\x46\x93\x61\x7a\x58\x30\xb3\xe1\xc4\x3d\x74\xbc\x85\x70\xd2\x61\xb7\xcf\x39\x88\x17\x33\x73\x70\x17\x14\xf8\x85\x9d\x32\x2d\x58\xd4\x62\xc4\xd1\xa9\x82\xe9\xfe\xf5\xf1\xc0\x8d\xd4\x31\xf9\x6e\x1e\x19\xcb\xdd\x0f\x3c\x93\x32\xdd\xf3\x7c\x8c\xbf\x53\x7b\xb2\x5d\x4d\xf2\xad\xbc\x05\x7e\x9a\xa9\x31\xc4\xd4\x64\x32\x3b\x83\x6a\xf6\x1c\x48\xef\x82\xc5\xa6\x71\x81\xfe\x78\xf3\xca\xc8\x7c\x73\x11\xf9\x32\xa9\xb3\xad\x47\xf6\xb9\xe7\x6d\x0b\xfd\x29\xec\x74\x8f\x16\x18\x05\xbc\x2d\x70\x95\x41\xf5\xa7\xeb\x65\x54\x31\x47\xd6\x9f\x5e\x4f\xd8\x3e\x37\x47\xcd\x1b\x36\xd3\xa5\xd9\x62\x85\x09\x0f\x1c\x64\xb0\x1e\x93\x7b\x2b\x19\xea\xe5\x97\x34\x79\xd4\xc7\xf2\x50\x1c\xad\xd9\x7b\x22\xf1\x73\xa3\xf0\xbe\xf6\xd8\xc8\x5d\xcc\x8e\x1a\x45\x0b\xcd\x55\x19\x49\xfd\x35\xf2\xe8\xca\x34\x61\x85\xc6\x1a\x9e\xde\x4c\xe1\xa7\x02\xff\xb9\x9c\x0c\x7c\xf1\x12\x67\x19\x81\x8a\x94\xa4\xf8\x2a\x02\xb0\x8f\x79\xd9\x45\xb9\x2e\xf6\xa8\x76\xa2\x35\x44\x4a\xa8\x91\x76\x2a\xde\xf8\x92\x8a\x0a\xcc\xa2\xb6\x43\xb3\xc1\x1b\x5e\xd0\x44\x41\xb8\x27\x71\xf5\xfe\xe6\x83\x40\x1d\xb4\xef\xf5\x7a\x1d\x8e\x5d\xf1\xe7\x8d\x32\x81\xa6\xc1\x2d\x11\xd2\x35\xdb\x34\x03\xea\x2b\x5f\xd9\xb5\x3b\x15\x7b\xc5\x51\x76\x4d\x4b\x87\x50\xfe\xce\x0d\x2b\x61\xd0\x54\x52\x6c\xac\xc3\xc7\x3b\xdc\x4e\x35\x7a\x75\x58\x88\x4b\x25\x7b\x23\xb6\x41\x82\x60\x92\x79\xaf\x13\x72\xec\x09\x04\x10\x7a\xf6\x54\xe6\xca\x7a\x1a\x92\x7c\xf9\xd2\xf1\x34\x19\x9e\x31\xe8\x5c\x58\x5b\x1e\xe1\xfb\x6c\x00\xe0\x99\x34\x3c\x90\x35\xc4\x9e\x66\x4b\xd3\xaf\x58\xa6\x93\x36\xa4\x35\x4a\xed\xfd\x6a\xc2\x4b\xa8\x16\x1e\x75\xf7\xd4\x96\x33\xf1\x41\x39\x08\xf9\x09\xdf\x0f\x80\xf3\x10\xdc\xa8\xd0\x27\x01\xee\x35\xa0\x9f\xc5\x65\x11\xb1\x86\x29\x55\x8e\x6c\x02\x78\x8c\xdc\x54\x67\x36\x5b\x47\x16\x9c\x3a\xe0\xd8\x8f\xfb\x89\x6b\x1f\x4d\x1d\xb1\xba\xbf\x0d\x6a\x50\x0b\xf1\xc6\x8b\xad\x3c\xc0\x5b\xb3\x60\x91\xe8\x54\x63\x4d\xeb\xd8\x50\x4e\x7b\xf0\xd2\x76\x62\xd8\xb1\xd7\xfc\x64\x4a\xa6\x6d\xeb\x55\x36\x56\xd7\xf1\xe3\x3e\xc0\xac\x07\xaf\x43\xcb\xbd\x74\xb7\x23\x1b\x95\x20\xff\x7d\x63\x2f\x52\x20\xe2\x58\x82\x1e\xcc\xd0\xe6\xde\xf6\xe7\x37\x40\xca\xf9\x39\x10\xb7\xb3\x18\x9c\xf2\x9a\x7e\x4e\x81\xd0\x40\x08\xfa\x84\xbf\xa6\x20\x3b\x7a\x77\x3c\xbe\x40\x3e\x05\x59\xda\x36\x8c\xe3\x2f\xb6\x3d\x4c\x75\xe1\xbc\xba\xa2\x42\x1c\x68\xd1\xce\xee\xe1\x26\x78\x79\x80\x0c\xed\x9d\xea\x56\xf8\xa6\x45\x90\x5a\x15\x07\x03\x82\x5b\x83\x74\x0b\x8b\x24\x80\xe6\x19\xee\x4c\xc0\xcb\x34\xb7\xec\xc5\x87\xe8\x8a\xc7\xb5\xc6\x6d\xc2\x50\x41\xd4\xae\x37\x28\x71\xc0\x6a\x04\x25\x38\xc6\x68\x3a\x0d\x12\xfb\x2e\x0b\xa7\xc0\x6a\xb2\x5d\xaf\x1c\xf8\x70\x01\x0d\x83\x47\x6d\x19\x04\x45\x36\x8c\xd6\x91\x45\x5a\x4d\x8c\xba\x76\x50\xcf\x4c\x8b\x28\x32\x2e\xac\x2c\x88\x89\x3b\x81\x48\x3e\x5c\x00\xc4\xaf\xee\x8c\x59\x30\x02\x4f\x1a\xf6\xd7\x05\xf9\xcb\x0e\x90\x38\x31\x76\x4d\x7c\xa3\x43\x02\x80\x3a\xab\x70\x30\xb0\x8a\x2a\x33\xa0\x0e\x63\xf5\xf1\xfa\x32\x27\xe6\xa7\x42\x86\xe3\x1d\xf5\x1c\xad\xf2\xf0\x8c\x5a\xaf\xd6\xb2\x6f\x39\x36\x11\x1d\x30\x1b\xe9\xf1\x20\xe9\xc3\xf0\xb1\x8a\x02\x22\x06\x12\x2e\x0c\x2b\x71\xab\x0d\xc4\xf5\x05\xc9\x84\x94\x8a\x41\x48\x4c\x06\x4a\xe1\x50\x19\x76\xe1\x9c\xc1\x43\x8b\x2b\x82\xbe\x7f\xff\x1f\x37\xef\xdf\x9d\x8a\x2f\x4f\xf6\xfb\xfd\x93\x50\xfc\xc9\xd0\x77\xca\x84\xbe\xb4\xa7\xe2\x7f\xbd\xbd\x3c\x15\xca\x37\x3f\x2c\xc4\x5b\x3c\x7e\x12\x55\x27\xbb\x65\x70\x81\x00\x23\xe0\xa1\xff\x17\x8e\x25\xda\x3a\xa4\xb0\xcd\x1f\xf0\xcf\x99\xc8\x30\x8d\xec\x20\xcb\x6f\xdf\x83\xa3\x6c\xc6\x90\xd0\xd3\x24\x37\xf0\x63\x9c\x91\xe8\x37\x80\xf1\x42\x85\x37\xcb\xa4\x13\x37\xaf\xcf\x7f\xfa\xf7\xff\x29\x5e\xbf\x3d\xbf\x10\x1b\xf5\x45\xb4\x7a\xad\xf0\x7a\x92\xb7\xf6\x9d\xe6\x49\xff\x5f\x4f\xc2\x6a\x78\x72\xa3\xd7\x46\xfa\xa1\x57\xbc\x00\x90\x4e\xe4\x3c\x52\x27\x9b\xdb\xb9\x77\x2f\xc7\x20\xba\xb1\x86\x06\xe0\x4d\x63\x4d\xd9\x7b\x04\x61\x67\xae\x0b\x70\xe3\x4a\xca\xeb\xb0\x66\x22\x23\xb3\x51\x26\x10\xfa\xa1\x6b\xcb\x33\x7a\xa9\x78\x09\xa8\xf6\x8f\xe3\xc2\x10\xf8\x0f\x9e\xc9\x38\x13\xff\x01\x21\x9f\x36\x6c\xfd\x14\xb2\xb8\x77\x00\x3c\x2e\x1b\x36\x43\x9d\x09\x76\x67\xe2\x8d\x30\x41\x74\x60\xa1\x32\xe5\x45\xc1\x72\x8c\x83\x54\x7c\x67\xe2\x52\x79\xb1\x8d\x2a\x3f\x58\xe3\x88\x6d\x52\xa2\x34\x8d\x9d\xcf\xe6\x41\xf9\x25\x8f\x05\xc8\x66\xa3\xd3\x01\x2c\xfd\xd4\x66\xb3\xe7\x31\x12\xef\x31\x2e\x92\x07\x7f\x9c\xc9\x4a\x91\x7f\x53\x48\x45\x08\x73\x39\x37\x3b\x14\x8b\x71\x76\xe2\xb2\x83\x83\xaf\x8b\x73\xb5\xc1\xb8\xcc\x38\xd6\xe1\x6c\x76\xa4\xfa\xa0\x51\x47\x17\xcf\x53\x74\x5c\x6d\x4f\x05\x3b\x7d\x9e\x92\x3d\xdf\x29\x47\x89\x68\x4f\xc5\x60\xd2\x6f\x74\xb8\x23\xf1\x95\x3f\xc1\x9e\x38\x7c\x46\x73\xcf\xf6\x14\x5f\xb1\x4e\x09\x8b\x69\x47\x0b\x7b\x8e\xc2\x3e\xff\x1e\xd0\x68\xe2\x92\x5b\x07\xfc\xff\xdf\x9b\xbc\x2b\xd0\x37\x77\x30\xcd\xa6\xb7\x46\xff\x3e\xd3\x37\xbc\x5e\x49\x2e\xbb\x38\xe6\xec\xb8\x7b\x1f\x70\x39\x4b\x8c\x81\x16\x78\xea\x4e\x7c\x22\x7c\x5a\x37\x05\xa0\x4c\xf1\x27\x8f\x00\xa4\xc5\xca\xb6\x71\xcb\x4e\x83\xa9\x0a\xf8\x18\xce\xdf\x21\x63\xc8\x46\x8e\xdd\x38\xce\xc8\x83\x34\x1f\x3f\x0b\x51\x91\x1b\x49\x57\x3a\xbc\x98\x7c\x13\x3f\x88\x02\x21\xbe\x48\x51\x9c\xe2\x70\x84\x97\x6a\x81\x79\xa6\x7a\x6a\x9d\x96\x24\x48\xe2\x11\x26\x52\x12\x01\x8e\xea\x98\x08\x27\xb4\x66\xa6\x3a\x87\x54\xc3\x31\x39\x0c\xa3\x10\xb0\x7c\xc0\xaf\x9a\xc3\x9b\x76\x2f\x62\x5a\x29\xd5\xf2\x21\x09\xfc\x4f\x79\x42\x42\x18\x24\x38\x4c\x72\xce\x26\xc8\xc7\xa5\x1f\x73\x00\xa1\xe7\xdc\xbc\xe2\xb0\xbd\x93\x67\x28\x0f\xa3\xa1\x6e\xb5\x6b\x6c\xdf\xde\x8f\xfb\x05\x02\xfd\x33\xd8\xcd\xda\xcb\xee\x81\xa6\xbf\x20\xa8\x6f\xc3\x8f\x63\xc2\xaf\xc2\xe0\xeb\x35\xa3\xcc\xd6\x6e\x25\x98\xbf\xbe\x80\x1f\x93\xc3\x79\x23\x8d\x41\x53\x7f\xfc\x95\xcf\xf5\xae\xb3\x07\x7e\x67\xf4\x05\x7c\xf1\xd3\xe9\x53\x90\xec\x55\xce\xe5\xf3\x0b\x7c\x1b\xf3\x95\xf5\xcd\x46\x7e\xf7\xec\xe9\xf2\x79\xe0\xc3\xe9\x1e\xa0\xb3\xf6\x96\xbd\x7c\x64\x0b\xfb\x26\x3e\x34\xb3\x8b\xaf\x57\x26\x1b\x15\xd9\xb6\x68\x58\xa4\x0d\x0e\xc5\xe8\x49\xbf\xf4\x24\x13\xb6\x6a\xc4\xa5\xc1\x1c\xc4\x76\xd2\xd8\xa7\xde\xcc\x75\x26\x29\x0d\x00\x0a\x46\x60\x83\xcf\x9d\xc8\xf6\x09\x30\x1c\xa4\xbd\x15\x1f\x36\xea\x10\x03\x57\xc3\x8b\x72\x70\xa9\x5b\xbe\x9d\x03\xcd\xe3\x27\x45\xf3\xab\x47\x5b\x97\x83\xcc\x4f\x99\x40\x0c\x1f\xd4\x16\x99\x83\x68\x53\x33\x72\xf5\x69\xe1\x40\x33\xd7\x8b\xe9\x1b\x9e\x11\x6a\xfc\xd6\x68\xea\xe9\xd1\xb7\x46\xf3\xa2\xf9\x83\xa3\x59\x51\x90\x10\xe2\x20\xcc\x5a\x8c\x17\xd3\x32\x7d\x4e\x34\x75\xf5\x2b\x5e\x14\x9d\x9f\xb9\xb1\x8a\xe8\xc1\xa9\xbe\xcf\x61\xa4\xcd\x3b\xf7\x15\x6f\x8b\x8e\xc3\xd2\x7d\x85\xb6\x68\xae\x2d\xb9\x41\x71\x6c\xc0\xd7\xea\x8c\xf2\xe0\xff\x53\x67\xaa\x6f\x7c\x4e\x60\x16\xeb\x03\x4f\x0a\xb4\x7a\xb5\x5a\x60\x68\xe5\xda\xd9\xa1\x07\x73\x82\x5f\xe0\x5b\xdc\xc0\x37\x82\x50\x60\xc9\x33\x8a\x30\x89\x89\xd1\xc9\x92\xbc\x2a\x21\x11\xdc\x6b\x41\x03\x1b\x2b\x3c\x13\x2f\xf4\x6a\x85\xae\xb6\xef\xac\x4f\x4d\x59\x60\x11\xb7\xb1\xfb\x3a\xfc\x82\x17\x4a\xc1\xaa\x70\x63\xf7\x58\xe8\x26\xa4\x64\x60\x6e\xd7\x69\x5f\x53\x54\xe7\x9b\xf0\x01\x71\xa9\x33\x88\xc1\x40\x0c\x4a\x86\xf9\x88\x9f\x39\x54\x40\x19\x83\x6b\xf0\x45\xd4\x49\x1b\x03\x27\x82\xb6\x23\x5d\x51\xc1\x56\x61\xb8\x93\x16\x08\x21\xa8\x33\x12\x48\xfe\x82\xd0\x49\x1b\x15\xe5\x09\x82\x06\x1a\xa8\xfb\x2f\x6f\xde\xe1\x27\xc4\x54\xa6\x68\x58\x10\x5c\xfb\xa5\xee\x68\xbc\x21\xe2\xa2\x1b\x76\x10\xb8\x51\xb5\x1c\x50\x32\xe4\x89\x2c\x39\x73\x86\xcc\xc3\x6b\x23\x0e\x6f\x6d\xbd\x95\xe6\x10\x5d\xb7\x6f\xec\x56\x91\x2a\x67\xaf\x88\x0e\x42\x08\xee\xe4\x39\x6a\xad\x08\x45\x08\x8a\x07\x84\xd5\xc2\x01\x6d\xc5\x11\xc5\x17\x73\x91\xc5\x39\x0f\xc3\xc4\x33\xe3\x17\xc8\x05\x33\x7f\x0c\xd1\xf6\x72\x05\x8e\x7c\xe1\x7f\x4c\xdd\xf5\x2a\x15\xbb\xea\xd5\x93\x71\x31\x72\xb8\x0b\xff\x62\x9a\xdc\xa0\xb3\x47\x9a\x81\x34\x33\xec\x1b\xea\xad\x38\x71\x14\x77\x93\x76\x7e\x89\x18\x57\x7f\x4d\xef\x73\xe2\xda\x87\x97\x15\x8b\x3e\xe5\x9e\x7c\x57\xc8\xa0\x8a\x38\x0e\x60\xbe\x82\xaf\xd3\xed\x7a\xdb\x0e\x8d\x5f\x14\xed\x2e\x4a\x23\x47\xaa\x78\xd5\x89\xce\xae\x41\xe7\x01\x81\x92\xd1\xde\x77\x30\xad\xea\x9d\x47\xd3\x7e\x99\x91\x79\xbd\xdd\xf5\x78\x53\xc2\xe8\xbd\x5c\xc7\xd7\xf3\xe4\x1a\xc3\xb4\xa4\x3c\x50\xfc\x87\x9c\xf0\xa3\x28\x13\x39\x01\xf6\x02\xc8\xa2\xad\x7a\xb9\x06\xc6\xbe\xc9\xe3\xfb\x07\x61\xd4\x1a\x66\xce\xb3\x06\x14\x47\x1c\xa7\x4e\x8f\x35\xce\x29\x9d\x78\xb2\xe9\xa7\x6d\x4b\x01\xc6\x63\x4e\x67\x65\x8b\xb2\xff\x25\xfe\x5a\x2c\x16\x33\xab\x66\xfa\x7a\xfa\xae\x57\x4f\xc6\x73\x9d\xc1\xc7\x01\xf8\xb3\x7a\xdc\x75\x62\x67\xb5\xf1\x02\x9d\xd2\xa4\x2f\x56\x0a\x5f\x14\xd1\xd4\x6a\x6b\x9e\xc0\x79\x99\x9a\x31\x76\xc5\x8c\xd5\xd1\x42\x49\x4b\x66\xbc\xaa\xc1\xc9\x8d\x77\x04\x78\xb9\x95\xdb\x02\x56\x4f\xda\x18\xe0\x6e\x3a\xd9\x50\xc8\xef\x27\xa8\xd2\x2c\x60\x06\x18\xcf\x5e\x96\xb7\xe2\xc5\xe2\x18\x66\xfe\xb8\xe5\x7a\xc6\x6e\x6d\x8d\xed\x51\xdf\x1d\x6f\xd9\xbd\x5c\xdf\xfb\x50\xdc\xa8\xb6\xfc\xc2\x1a\xab\x78\xe0\x34\x1d\xef\x81\xd2\x49\x2e\xc3\x43\x3c\x4f\xa0\x94\xb4\x47\x26\x3c\xcf\x04\x17\x39\x15\x67\xfb\xaa\x78\xf8\x37\x95\xe0\x98\x36\xc0\x09\xf0\xef\xaa\xfa\x64\xfb\xf5\xe7\x0a\x6e\x25\x21\x0c\x7a\x8c\x5f\x9a\x5f\x41\x82\x9a\x39\xc0\x84\x1e\xdd\x07\xf8\x72\xe8\xba\x04\x5d\xbe\xd3\xf6\x2a\x6c\xd3\xd2\xa8\x27\x00\xa0\x92\x1f\x9e\x65\x23\x9f\x0e\x7a\x99\x6d\xc1\x4f\x7a\xd8\x7e\x9d\xbc\x38\xf3\xea\xf0\x81\xa2\xe4\x1b\x48\xaf\x16\x54\xe4\x6b\x71\x26\xae\xe0\x47\xa5\xcd\x9d\xf6\x81\x7f\xd8\x2a\xb4\x0a\x7c\x03\x09\x70\xde\x58\xa3\xaa\xc2\x1b\xa1\x82\x60\xeb\x35\x7b\x22\x9c\xb1\x4f\x02\xa5\x17\x76\x90\x67\x85\x59\x64\xfe\x04\x49\x40\x59\xba\x9e\x06\xe4\x30\x2a\x33\x4e\xe9\x01\x3a\x92\xc7\x50\x12\x86\x10\x52\xef\x83\x2e\x9e\x3d\x0b\xd4\x61\xe0\x80\x97\x80\x0b\x6c\x24\x0d\x4a\x7e\xb0\xa8\x02\x66\x6d\x8a\x48\x5c\x6e\x91\xaa\xc9\x68\xcd\x06\x3d\xd6\x53\xb1\xc0\xa5\x82\x41\xff\x1f\x11\xbe\x78\x77\x87\xd4\xae\x12\x9f\x2d\xc4\x64\x7a\xcc\x36\xd7\xc3\x02\xa2\x20\x92\xfc\xb1\x9a\x7f\xca\xe9\xfd\x78\x6d\xfc\x13\x8f\x39\x4d\x71\xdc\xfb\x9c\x13\xa0\x4b\x03\x9a\x35\x06\xe6\xe1\x48\x23\x22\x2b\xfb\xad\x4e\xa7\x71\xff\x04\x86\x29\xee\x95\xfc\x96\x8c\x9c\x23\xfe\x8c\xbf\x52\x56\x67\x1b\xf6\x54\xbd\xa4\x9f\x47\x6d\x6a\xee\xf3\x99\x28\x41\x33\x62\x56\x0c\x5c\xc4\xf4\xb5\x06\x38\xe4\x8a\x61\xfb\xf5\xbf\xe6\x89\x51\x3c\x2d\x3a\x69\xb5\xbc\x93\x5e\xf6\xc7\x1a\x8d\xb9\xdc\xf6\xaf\x6e\xfa\xd8\x4c\xad\xa0\x30\x63\x6d\xd5\xe4\xb1\x4f\xe8\xe0\xbd\x45\xca\xa7\x3f\xf3\x06\xc7\x7b\xc2\xcc\x4c\x8c\x6c\x4c\xf0\xd1\x4f\xb4\x75\x78\xf8\xe5\xcf\x23\x86\x46\xf7\x3d\x01\x3a\x6e\x65\xa0\x4c\x31\xac\x65\xde\xc8\x7b\x4b\xe4\xdc\x8c\x1d\x19\xad\xfc\xf3\xcf\x82\xce\x1b\xa8\x9c\xb7\x2d\xab\x2d\xe9\x15\x40\x1e\xbf\xa4\x1a\x5d\x65\x31\xe5\xc7\x6f\xda\xa6\x91\x03\xbe\x95\x1c\x16\x8b\xf5\x56\x11\xad\x5f\xd0\xff\x8d\xde\xd5\xc5\x53\xa0\x6f\x63\x7a\xf6\x2a\xe8\xcf\xb1\x18\xa9\x9c\x88\x8f\x6a\x46\xe9\x89\xbe\x42\x40\x04\x76\xff\x88\x40\xf8\x0d\xbc\xe5\x6c\xce\xb8\x7c\x59\x07\xfe\xaf\x7b\xdb\xa9\xd8\x50\x71\x6d\x3b\x95\x9a\x57\x06\x75\x2c\x0b\xc6\x32\x31\x9d\xf4\x13\xfc\x2e\x63\x4c\x2f\xdf\xf3\xe5\x54\x3a\x63\xf3\x97\x3e\x80\x1f\x27\xec\x20\xde\xfc\x3c\x86\x36\x10\x52\x9f\x4e\xe3\x77\x76\x5f\xe1\x51\xbc\x80\xa8\x91\x67\xe2\x3f\xac\x36\x94\x52\x56\x8a\x69\x81\x33\x4a\x6f\xd0\x5c\x07\x19\x0b\x1f\xa9\x9e\xe6\x8f\xde\xda\x83\x93\x28\xbe\xb2\x47\x6f\x65\x03\x63\x4f\xb1\x49\x0d\x5a\xf1\x94\xaf\xc4\x21\xd6\xd1\xd3\x37\x18\x2e\xa2\xa8\x37\x87\xf8\x9a\x8a\x21\x14\xc0\xb8\xba\x53\xd6\xe5\x83\x02\x30\xba\x40\xaa\x2d\xb7\x03\xec\xb9\x53\x3b\x20\x22\x41\xd9\x8e\x1c\xe2\x6b\xda\x11\x6a\x81\xc0\x74\xec\xe7\x70\xb4\x3d\xb2\x6d\x05\x9a\xa0\xe7\xc6\x67\x6e\xdc\xc4\xf4\xda\xdb\x87\xec\xfc\x07\xd3\xdd\x76\xc4\xcf\xb8\xc5\xdc\x91\x8a\x39\x68\x73\x39\xc3\x72\xa0\x19\xfd\xec\xeb\xed\x0f\x13\x01\x08\x38\x18\x4a\x46\xd0\xcc\x40\xbe\x78\x7d\x62\x7a\x2e\x61\xbb\x12\x8b\x08\xbc\x02\xd1\x06\xca\x7c\xf8\x48\x46\x38\x7e\x7e\x09\xf9\xc5\xfc\x50\x01\x86\x91\x67\xb2\x05\x88\x3a\xee\xd5\xb0\xc1\xb2\x5a\xa7\xc8\x22\x31\x07\xa8\x48\xc4\xa7\x70\xbc\x63\x73\x6e\x2f\xbb\x58\x52\x70\x7d\x56\xf8\xe5\x32\xd4\x56\x1e\xc6\xaf\x71\x43\xa8\x88\x62\xd7\x1c\x17\xac\xa6\x4d\x49\xe7\xfa\x2b\x7d\xa7\x4c\x5a\x30\x47\x85\xab\x45\xbe\xd5\xa7\x0b\x24\x23\xd7\x3a\x67\x82\xd7\x3d\x84\x4a\xe4\x99\x0f\xa4\x23\x5b\x18\x80\xfe\xe7\xd8\xe7\x46\x9a\x31\x6d\x00\x73\x45\x25\xb7\x8f\xef\x23\x11\xff\x74\x73\x80\xa4\xdc\xdf\x1e\x20\x19\x18\x19\xd8\xb4\x39\x79\xb8\xaf\x59\x48\x0f\xfe\xe9\x66\x01\x85\xf9\xca\x66\x9d\x72\x9b\x90\x8f\x09\xf4\x62\x8e\x52\xdc\xd7\xda\x91\xa0\x05\xcb\xf8\x3a\x97\xb6\x98\x6c\x80\x05\x2e\x48\x82\xb3\x16\xb8\x99\x82\x7a\xb1\x18\xef\xa7\xcc\x84\x38\xdb\x53\x99\x8f\x02\xb7\x05\x8c\x85\xc9\x97\x8b\xce\xc3\x84\xca\x58\x03\xf2\x39\x5e\x16\x47\x7f\xaf\x0c\x39\x5d\x57\xf9\xfe\x40\x3c\x11\x3c\x32\x56\xbc\x20\x1a\xef\xa8\x48\x9d\xa5\x63\xac\x95\xea\x13\xcc\xdc\xe7\xaa\x95\x6e\xb3\xb4\xb2\x87\xab\x12\xfe\x5d\x15\x7e\xfc\x55\x4e\xa8\xc6\x1c\x32\xbe\x12\x9c\x0d\x6a\x31\x9e\x72\xf0\x9b\x20\x2e\x46\x39\xe3\xbc\x48\x70\xf8\xbe\xfc\x9a\x99\xc9\xf5\x40\xa1\x72\xc8\xc9\x00\x7c\xca\x9d\x57\x5b\xf1\x0e\x13\xaa\xad\x35\x1a\xed\x99\xdf\xe2\x2f\x6d\xd6\x55\x11\xef\xe9\x65\xf8\xa8\x20\xc2\x0f\xa5\x5c\x4a\xe7\x2b\x6f\x3d\x3c\x13\xfb\x21\xfc\xff\x59\x9c\xb4\x55\xea\xfa\x62\x39\xe8\xae\xe5\x70\x4a\xbf\x84\x0f\xf1\x26\x99\x65\x65\x80\x72\xb7\xab\xef\x90\x58\xee\x76\x1d\x77\x8b\xdd\xbe\x12\xdc\x5a\xfb\x9a\xe3\xb4\x9c\xe5\x51\x5b\x72\x18\x9b\x83\xd8\x19\x08\x6c\x96\xd7\x20\xda\x61\xb3\xc2\xc7\x04\x22\xde\x49\x20\x0c\xdf\x4c\x44\x28\xe7\xa5\xd7\xce\x03\x17\x79\xc3\xbf\x5d\x06\x90\xac\x15\x31\x1a\x1f\x7d\xe4\x28\x60\x1a\x6a\x32\x0e\x8d\xd3\x42\x93\x00\x58\x07\x37\x57\x25\x8f\x2a\x98\xf9\xb5\xd2\xcb\x25\x6b\xb7\x9e\x2d\x41\x69\xbd\x7c\x8e\x9a\xdf\xd3\x2c\xa1\x58\x70\x79\x46\x71\xff\x9a\x92\x4b\xa6\x22\xa5\xe3\xd3\xd7\x45\x92\xf3\xb2\xac\x4b\x36\x93\x5a\xf8\xca\x2c\x4f\x63\x87\x99\x94\xc2\xae\x33\x05\x76\x0b\xd1\x07\x48\x46\x2a\xb2\xd0\x3f\xac\x48\x42\x5f\xc4\x51\x4f\x50\xaf\x9e\xa7\x75\x76\xad\x8d\x40\x5d\x7d\xd9\x3d\x92\x5c\x4a\x9c\x1c\xec\xad\x40\x01\x41\xc8\xf3\x94\x0d\x1b\x11\x17\xa9\x40\x7f\xf2\x04\xb2\x0e\x9e\x00\xa6\x68\xd7\x6e\x31\xb7\x90\x58\x21\x11\x17\x13\x6a\x25\xe6\x20\xdd\x5e\xe3\xbb\xbf\x37\xf0\x63\x16\xa6\x1f\x40\x6b\x3b\xe4\xbb\xa3\xe9\x94\x34\xf5\x60\x96\xda\xb4\xb5\xa5\xd7\xb3\x2f\x42\xa2\x18\xcc\x12\x4c\x28\xdf\x03\xb9\x71\xf7\x16\xca\x38\x84\xf3\xae\x13\x98\xc5\x25\x33\xbf\xb4\x79\x56\x21\x61\x26\xa6\x83\x0c\x78\x65\x92\x94\x5d\xe2\xc1\x24\x84\xbe\x25\x03\x1e\xce\xfe\x2a\x1c\xa3\x56\x26\x88\x88\xe6\xdb\x9b\x0a\xe7\x5b\x38\xcf\xf4\x9d\x1a\x35\xb2\xf4\xcc\x26\x90\x07\x30\x8c\x9a\x38\x8b\xe2\xdb\x1b\x09\x7c\x85\x59\xe3\xa9\x7a\xa4\x91\x07\xd1\xab\xc6\xf6\x2d\x89\xf0\x9d\x75\x1e\x68\x2e\xbe\xb3\x7a\x3f\xca\x63\xad\xbe\x17\xe7\x37\x74\x23\x9c\x04\xeb\x26\x35\xdf\x8a\xb5\xec\x97\x72\x8d\x7e\x48\x14\x60\xca\x96\xbe\xf0\x47\x8a\xdf\x37\xc0\xd0\xa0\x36\xf0\x91\x33\xe8\x8f\xb5\xad\x57\x10\x98\x45\x76\x5d\xed\xdc\x86\x6c\x3c\xae\x15\x5e\x53\x3d\x5e\x38\xb7\x79\x2a\xe9\x21\x7a\x05\xd6\x10\xee\x31\xbe\x51\xf4\x7d\x23\xc1\x95\xff\x67\x08\xa3\x04\xa4\x1d\x4a\x33\x8f\x1f\x46\xeb\x87\x7b\x2b\x1a\xf5\x25\xa3\xeb\xd9\xd8\xf6\xd0\x14\xaf\xbe\xaa\x07\x1c\xf9\xe6\x1a\x92\xe8\x0a\xac\x51\x60\x4b\x4f\x54\x0c\xf8\x5a\xeb\x3c\x67\x90\x3d\xbf\x5d\x4d\xd6\xfc\x3d\x55\xdc\x33\x0b\x8f\xbf\xa5\xd6\xbc\x9b\xa1\x86\x7b\xd6\x50\xaf\xb4\xd1\x7e\xb2\x15\xae\x21\x59\xcb\x4e\xff\xfe\x4f\x6e\x88\x39\xc4\xff\xea\x86\xe8\xb3\x56\x8d\xbb\x94\x33\x08\x10\xba\xae\x1e\x76\xc4\xde\xdc\xe0\x4b\xfc\x1f\x77\x23\x0e\x07\xac\xf5\x8d\xaf\xd7\xb6\xb7\x83\xd7\xf8\x66\x1b\xa6\x89\x57\x9c\xe6\x66\x0a\xc0\x9d\xcf\xa1\x1e\x28\x04\x27\x97\x79\x0b\xc9\xe2\x23\x3c\xba\x97\x4a\x01\x7b\xc8\x65\x64\x07\x9a\x71\x54\xd9\x03\xdf\x48\xa5\xce\x39\x23\x2b\x49\x65\xec\xd2\x4b\x8a\xab\x48\xc0\xef\x29\x25\x83\x85\x9b\x56\xd5\xd7\x9d\xb5\xb7\xc3\x0e\x38\x3b\x88\x0c\x85\xc9\xe2\x12\x92\xc5\x87\x90\x3c\xad\x81\x5b\x15\x8b\x8d\x1a\x75\xac\xdc\xaa\x57\x93\x32\x2f\x7b\x35\x85\xe7\x91\xdb\x28\xb9\x9b\x8c\xdb\x6b\x25\x77\x93\x51\x03\xc8\xe9\x00\x00\xec\xf1\x51\xc8\x4b\xe9\x16\x14\x0a\x79\x89\x37\x6d\x77\xac\x0e\x0d\x06\x61\x63\x78\x13\xc4\x94\x23\x25\x88\x9f\x1a\xb7\x8a\x6e\x47\x27\xad\xb2\xcb\xbf\xaa\xc6\x3b\x86\x7e\x8f\x9f\x39\xc3\x6d\xad\x77\xbe\x97\xbb\xc0\x0a\x83\x0b\x02\x0e\xd3\x2f\x9c\x1e\x58\xe1\xe6\x76\x32\x52\x08\x3d\x1d\x2a\x84\x3e\x3e\x56\x5b\xb7\x93\xa6\x76\xbe\x1f\x1a\x3f\xf4\xca\xc5\x0a\xdf\xde\xec\xa4\x11\x37\x31\x63\x52\xe3\xa4\x64\xbe\x42\xc7\x85\xe7\x6a\x6e\x64\xb3\x51\xb3\x55\x5f\x84\x9c\x7b\xeb\x9e\x94\xcd\x2b\x9f\x14\x9f\xdb\x29\xbd\x5d\xe9\x2e\x10\xa5\xe5\xd0\xdc\x2a\x5f\x6f\xa4\xdb\xd4\x1e\x5e\x11\xcd\x70\x5d\x31\x98\xf8\x05\xc0\xc4\x6b\xe9\x36\xe2\x03\x68\x1f\x67\xb0\xae\x9b\x7a\xab\xbc\x04\x73\xad\x0c\xcb\xab\x0b\xf1\x96\x92\xe7\x4a\x81\x56\xb2\x26\x09\x88\x76\x61\x60\x4a\x33\x0c\xef\x41\x71\x49\x42\xd1\x79\x04\x99\xc3\x66\xd4\x17\x3a\xd2\x9b\x43\x43\xef\xd6\x7f\xf1\xa1\x0d\xd7\x98\x92\xc1\x82\x14\xbb\x6e\x58\x04\xbc\x01\x4b\x1e\x88\x56\xfb\xea\x02\xb6\xef\x84\x82\x25\x60\x24\x5c\xaf\x2e\xc4\x95\x1c\xdc\x2c\xe0\x4e\xe2\x66\x3a\x0a\xc9\xd5\x33\x20\xd7\x3c\x86\xa3\x4a\x1d\x0e\x25\x92\x15\x54\x21\x2c\xc0\x8b\x19\xa3\xc3\xd6\x3b\x89\x96\xbc\x1f\x9d\xea\xc5\x5b\x8c\x18\x7b\x15\xd2\x08\xd6\xa8\x7d\x7e\xbb\x94\xae\xb9\xcf\x31\x91\xc1\x50\xb2\x00\x79\x02\x53\x98\x17\x6e\xd9\x28\x1e\x48\x34\xe5\x15\xd1\x75\x31\x2d\x1d\xa0\x3b\xeb\x28\x8d\xa3\x9e\xc7\xc7\xf9\x28\x1d\xfc\x70\x7a\xb5\xd6\xce\x53\xe0\x11\x88\x2e\x0e\xce\xaa\xd7\x90\xcc\xf2\x4d\xee\x7e\xfc\xc1\x42\x2f\xb3\x8e\x95\x76\xa4\xdc\xcd\x87\x23\xaf\x2f\x08\x47\xfe\x10\x14\xf5\x0c\x84\x17\xb6\x5f\x2c\x15\x2b\x6c\xc7\x88\x90\x61\x39\x76\x74\xc9\xdb\xe5\xa5\x41\xb2\x64\x51\x6d\x84\xe1\x12\xa4\xce\x6c\x94\x77\xd2\xb9\x3d\xd8\xa1\xb3\xda\x1f\x2e\x4e\x84\xf6\xe4\x73\x08\xd7\x0e\x60\xcd\x3d\x18\xb2\xa2\xe3\xd6\xa7\xd8\x88\x64\xe4\x17\x59\x0c\x1a\x08\xca\x79\xe8\x82\x35\x8d\x45\xb6\x52\xc0\x32\xa8\x5c\x23\x5b\xf9\x05\x85\x13\x18\x52\x0a\xcc\x4e\x96\xa4\x99\x63\xd0\x05\xe7\x5e\xea\xad\x3e\x5a\x96\x75\x9a\xdf\xdf\x28\x2f\x9e\xfc\x08\x4e\xb3\x4e\x89\x75\x67\x97\x10\x8d\x16\x43\xea\x76\x01\xc5\x0f\x84\x43\xbb\x3a\x5f\x94\xa0\x7b\xe7\x06\xc3\xcf\x72\x91\xee\x7a\xbb\xd1\x4b\xed\x71\x42\x66\x0a\x30\x00\xbf\x1d\xba\x8e\x6b\x39\xd4\x44\x4b\xbc\x28\x04\x61\xa0\x42\x06\xae\x50\xdb\x67\x76\x14\xbc\xe6\x31\x2c\x56\x10\x31\xc8\x5b\x62\x82\x21\x2b\x93\x3d\xbb\x1a\xd8\x3e\x0c\x3d\x99\xe3\xd1\xdb\x9d\xed\x43\x17\x70\xb1\x3d\x84\x0b\xc1\x05\x82\x17\xbc\xf7\xdc\x92\x49\x77\x1d\xbc\x62\x90\xf4\xf3\xe2\xbc\xf7\x2a\xbd\x5c\x1b\xf0\x02\x4d\x6d\xf7\x26\xe9\x55\xb3\x96\xe2\xfb\x34\xa1\xbd\x29\x2c\x87\x0d\x9c\x69\xe0\x79\xe1\x5d\xc9\x20\x64\xe5\xe1\x55\x62\x34\xa4\xf4\x10\xa2\xed\x63\x04\x0f\x74\x0d\x20\xad\x6b\xde\x80\x8d\x74\x64\x85\x74\xa4\xfe\x6d\xa1\x42\x2f\xaa\xcf\xf5\x63\x65\x03\xf0\x4e\x33\x7a\x26\x4d\xee\x99\x5c\xd9\x94\x19\x03\xb4\xf3\x6c\xca\xee\x7b\x0d\xc0\xf6\x14\x79\x62\x44\xdd\x8b\x8b\xfe\x82\xca\x43\x89\x9c\x7a\x43\x42\x69\x28\x05\x49\xe9\x12\x8c\xef\xbf\x50\xc9\x0c\x84\x7b\x5c\x5f\xb6\x9d\x8b\xda\xb0\x44\x79\x3d\x8d\x69\x79\x13\x30\x65\x7a\x4d\x8e\xe9\xa4\x3f\x14\x67\xe2\xcf\xf8\x8b\xd2\x41\x89\x88\xdc\x5b\xcf\x69\x63\xff\x3f\x82\x0c\xb2\x59\x38\xb9\x7f\x57\x15\x68\xc3\x0b\xba\xed\x8e\x11\x6e\x47\xb0\xf8\x82\x0b\x07\x6b\x21\xa2\x4e\x59\x59\x2f\x30\x25\x7f\xe5\x16\x53\x14\x44\xe5\x6b\x63\x7c\xbe\x96\xd2\x99\x66\xc5\x80\xe0\x94\x3e\x35\x7b\xcb\x9a\x4c\xe8\x47\xed\xcd\x6a\x03\xa8\xf9\xc3\x24\x6b\xa5\x53\xcd\xd0\x6b\x7f\x80\x40\xb9\xb6\xb1\x1d\xba\x0e\x43\x1a\xc4\xc8\x0d\x69\xdc\xce\x91\x73\x10\xa6\x42\x34\x8f\x33\xf1\xda\x3a\x6e\xf7\x0e\xdf\xbf\xbd\xb2\x3d\xa7\x80\x7e\xaf\x05\xcb\x73\x6d\x5a\xf1\xe2\x5d\x99\x5e\x58\xb9\xc5\xc8\x89\xf8\x96\xbf\x2b\x22\x28\x72\x78\x44\x8c\x8e\xa8\x16\xeb\x85\x78\xf1\xfe\xed\xff\x75\xe2\x72\x84\x7c\x34\x72\x75\x57\xf4\x3d\x07\x93\x59\xc4\xc9\xde\x68\xb3\xfe\x99\x9e\x9c\x62\x1c\xf0\x48\x96\xed\xd1\x04\x7d\xd7\x85\x01\xf0\xea\x8b\x87\x5b\x4f\x63\x3d\xbd\x76\xbd\xd1\xeb\x0d\x98\x7b\xe8\x4e\xad\xd1\xcd\x23\x6c\xdb\x05\xcf\x64\xe0\xbb\xe8\x3d\x3b\xe0\xb7\xe8\xe6\xea\x17\xe9\x54\x0e\x02\x43\x04\x00\x71\x88\xa4\xc7\x50\x8d\x6a\xce\xbf\x5a\x9c\x73\xee\x51\xe8\xf1\x33\xe4\x40\x91\x22\x87\x10\x5a\xef\xf4\xda\x3c\xd1\xf0\xfa\x4b\x20\x8d\xaa\x6b\x29\x5e\x41\x11\x8b\x72\x31\xa9\x81\x8d\xdc\xe0\x19\x8f\x77\xf7\xb7\xc6\x0d\xdc\xf4\x9b\xe1\xa1\x96\x6f\xa5\x86\x90\xa6\xf0\x7f\x0c\x76\xa7\x7a\xbd\x3a\xd4\xeb\xde\x0e\xbb\x3a\xa3\xc9\x67\xe2\x4f\x90\x23\x20\x27\xa3\xd6\x54\x0e\x0b\xd0\x55\x22\x04\x9e\x84\xb1\x7e\x05\xd0\xd9\x6c\xa4\x81\xc7\x12\xf8\x06\x49\x84\xc4\x47\x48\x0a\x88\xd4\xf0\xc6\x9a\x20\x5f\x60\xac\xa0\x0e\x0d\x7f\xb1\x58\xec\x05\x18\xa1\x4b\x0d\x0f\x47\x5f\x52\x5c\x70\xbc\xd5\xcb\x56\x41\xc2\x18\x90\xa8\x36\x08\xda\xd8\x2d\x5a\x1c\x09\xdd\x25\x00\x40\x20\x9e\x00\x30\x1e\x4b\x17\x8a\x82\x06\xfd\x4c\xbc\x54\xbe\xd9\x88\x94\x15\x0a\xd1\x6e\x44\x2f\xae\x2f\xbc\x5b\x63\x9f\xa1\xb2\xa2\xcb\x78\xc1\x1c\x01\xd0\x24\xa5\x80\xd8\x06\x0e\xa8\x76\x32\x1c\x17\x4e\x9c\xb7\xe2\xe6\x9c\x49\xcd\xd6\xef\x6a\xba\x18\xb8\x79\xfb\xe1\xea\x1e\xda\x15\x40\x89\xae\x00\x64\x46\x5c\x42\x16\x11\x18\xc8\xca\xa8\x0c\x07\x5c\x42\x3a\xe5\x38\xa8\xa8\x6a\x89\x60\xb9\x79\xb8\xfb\x38\xe8\xb0\xc3\x7b\xe5\x7c\xaf\x1b\x7c\x27\x9f\xca\x2c\xc4\xdb\xa1\xf3\x7a\xd7\x29\x4e\x61\x3b\x58\x88\xb5\xb0\x93\x3d\xbf\x28\xde\xd8\xed\x56\x8a\xc7\xa7\x8f\x17\xc5\x29\x50\xfb\xce\xa5\x40\xad\x1f\x2e\x6f\xc4\xaf\xa6\xe9\x0f\x68\x2e\x43\x3d\xbd\xd5\xbb\x00\x56\xe3\x9a\x0f\x1d\xbe\xd5\x3b\x80\xc5\xb5\xce\xe4\x56\x6e\x6b\xa7\xfa\x3b\xdd\xc4\x3d\x79\x75\xfe\x16\x54\x78\xba\x51\x39\xb1\xa7\xaa\xe1\xe5\x3b\x16\xa2\x52\x23\xce\x07\x6f\x0b\x21\x8a\x4b\x65\x0f\x4c\x8d\x8f\x47\xb4\x74\xe1\x71\x9d\xf0\xd8\x25\x74\xc1\x6a\x17\x47\x1f\x2f\x8b\x63\xc5\x22\x57\x9f\xdd\xbd\xa5\x33\x79\x2c\xcd\x95\xc5\x1f\xf2\x0c\x5c\x14\xa7\x6d\xce\x7a\x95\x78\xbe\xd2\xe8\x34\x47\x96\xb1\xc9\xf7\x8d\xdb\x6c\x14\xc5\xb2\x44\x01\x59\x23\x03\x40\xd6\x3f\x23\xd4\xd1\x0e\x68\x5a\x22\xb7\xd4\x9a\x8e\xf1\x8c\x31\xe7\x3d\x06\x9c\xb4\x44\x81\x77\xd6\xd1\x31\xf4\x08\x6a\xe4\xa2\x01\x66\x79\x40\x0b\x22\xba\x64\x26\x83\x88\xc4\xa8\xa7\x40\xb1\xca\x11\x54\x1e\x0f\x15\x17\x00\xf0\x3e\xc4\x39\x67\xdd\x1c\x71\xce\x65\x33\x1e\x60\xa0\x11\x0d\x4a\xe0\xe4\x87\xc5\xbe\x1b\x97\xd9\xa2\x23\xa6\x64\xe4\xb2\x41\xc7\x81\xf6\x9b\x61\x59\xcb\x9d\xae\x95\x69\xd1\x8d\xe7\x4c\x9c\x5f\xbd\x11\xbf\xd2\x67\x45\x06\x16\x0b\x63\x7d\xed\xc0\x21\xea\x7b\xf0\x80\x53\xfe\x07\xce\x22\x4d\x7c\xb4\xc4\x20\x4d\x7c\x69\x90\x41\xb0\x72\xb7\x8b\x1c\x5e\x66\x00\x01\x3b\x3e\x03\xc1\x80\x2b\x39\xc4\xc7\xeb\x4b\x06\x18\x33\x75\x94\x6c\x57\xab\x4e\x1b\x55\x6f\xd1\x19\xed\x3d\x7e\x8a\xb7\xb6\x8d\xa8\x29\x92\x51\xdd\xdb\x01\xb5\xe8\xeb\xec\x6d\x93\x6b\x48\x0c\x63\xc7\xe0\xfd\x80\x27\x23\xde\x1c\xa3\x42\x26\xcb\xa2\x8a\x42\x56\x5e\x09\x58\x2e\x34\xe0\x3f\x58\xf7\xd6\xfa\x7a\x27\xf1\x00\x81\x74\x74\x49\xbc\xb6\xd6\x8b\x2b\xe9\x37\x5c\xa8\xb3\xeb\x69\x89\x4b\xbb\x3e\x02\x4e\x91\x8d\x71\x93\x70\x13\x31\x6d\xbc\x8a\xa0\xd5\xb1\x6d\x6e\x93\xcd\xd3\xcd\xeb\xf9\x49\x0a\x50\x53\xce\x3f\xcb\x0c\xe2\x8b\xaf\x29\x42\x7d\x8d\xf3\x4f\xd2\x8c\x07\x1b\x12\xaf\x0d\x2d\x83\xbc\xd8\x91\x89\x0b\x59\x39\x03\x9e\x25\x03\x37\x61\x38\x17\x58\x07\x33\x01\xca\x87\x6c\x32\x52\x00\xa0\xc8\xfa\xb5\xbc\x8b\xac\xa5\xc7\x9e\x64\x97\x96\x23\x10\x71\xee\xb1\x57\x39\xba\x5b\x75\xa8\x21\x38\x1c\xd5\xf9\x9f\xea\x80\x41\xe1\xc6\xf5\xde\xaa\xc3\x3a\xb4\x3e\x82\xad\x95\x11\xdf\x3f\x76\x6e\xf3\x04\xb3\x1e\xff\x30\x29\xb3\xd5\x46\x6f\x87\x2d\xba\x8e\xeb\xdf\x15\xbe\x89\x0b\xef\x5d\x40\x06\xd4\x16\xa4\x41\x71\x11\x32\xee\x2b\xea\x66\x4a\xb9\x2a\x2d\xa1\x9d\x4d\x6b\x21\xd7\x69\xcd\x2d\x09\x80\x2e\x06\x3a\x15\x98\x8e\x39\x58\xd1\xb2\xbc\x77\x03\x5f\xc8\x2b\xe5\xd8\xe0\x2d\xa1\x3a\x49\xce\x2f\xe1\x6d\x21\x96\x9f\x09\x72\x2b\xbf\x24\x35\x1a\x68\xc8\x50\x11\x37\xd6\xbc\x11\xf8\xae\x57\x18\xf4\xb4\xee\x74\xa3\x8c\xa3\x47\xa5\x28\x51\x5c\x52\xe2\x98\x1e\x6c\xbc\xdf\xd5\x6b\xc0\xcd\xd4\x00\x82\x4b\xbe\x4a\x98\x89\x11\x01\x6d\x13\x8c\x41\xbd\xd5\xeb\xf8\x4e\x1b\xf1\x23\xa0\x1f\x85\xa1\x10\x6f\x39\x97\x11\x90\x4f\x6d\xbd\x0a\x4c\x6d\x18\x78\xbc\x2d\x6b\x0e\xe9\xe1\x68\x62\x78\x2f\x52\x5e\x9c\x2d\x68\x61\x9c\x2d\x68\xdc\xec\x3c\x01\x1c\x59\x57\x43\xcc\x7c\xdb\xa1\x1f\x52\x8d\xf1\xe1\x51\x3f\x13\x8e\x9b\x0b\xcc\xa5\x28\xf6\xef\x21\x37\x56\xd7\x2e\x53\x65\x2f\xd8\xe6\x6a\xb6\xc2\x76\x59\xe7\x6a\x83\x94\x9a\x0b\xd9\x29\x35\x57\x3a\xa4\x54\xa2\x60\x39\x81\x6d\x97\xb5\x73\x1d\xd3\xd8\x9b\x9b\xcb\x92\x90\xa7\xdc\xc4\x0b\x7f\x1f\xa4\xbf\x47\x3b\xeb\xfc\xba\x57\xee\x91\xb0\xa6\x3b\xfc\x90\x95\xa0\x95\x9b\xaf\x54\x4a\x1d\xe3\x70\x7f\xeb\xb4\x57\x7f\x78\x04\x57\xef\x8f\xbc\x6e\x97\x8f\x7e\xa8\xf2\xe3\x4e\x83\xd3\x73\x76\xde\xe9\xe6\xc8\xf8\x44\xcd\xbf\x0a\xc2\x61\x16\xf5\x9d\x9f\xbe\x42\xa1\x91\x5c\x61\xca\xa1\xe5\xd3\x2a\xf1\xbd\xf1\xac\xca\x79\x5e\x6e\xd7\x06\x9e\x28\x48\x19\xe9\xc9\x45\x88\x0c\x70\xcd\x68\x7e\x81\xe4\xd4\x40\x7c\x45\x2b\xc8\xd4\x81\x2f\x22\x57\x62\x6e\xde\x8d\x5e\x1b\xf1\xc6\x60\x24\x80\xb8\x29\x75\x97\x6e\x32\xde\x86\xf6\xe7\x97\x17\xe3\xf6\x4f\x48\x19\xf7\xe2\x7e\x92\x46\x3b\xae\x91\x3b\xdf\x6c\x64\xda\x64\x17\x98\x10\xd9\x05\x0c\x5a\xd4\x84\xa5\xd0\x91\x21\x12\x06\x36\x02\x47\x74\x71\x09\x96\x47\xb1\xb3\x4e\xf9\xa4\x49\x29\x0a\x5d\x87\xbc\xa8\x79\xc9\x0b\x73\x69\x0e\x3c\x18\x67\x9e\x03\x0a\xcd\xce\x3c\x44\xce\x4c\xa1\x24\xfe\x2b\x7c\x8a\x4b\xf8\x8c\x23\x84\x91\x82\xe0\xf2\xcb\x0e\xa4\x75\x0e\x29\x70\x07\x66\x87\x74\xec\x3c\x28\x58\xe5\x73\x93\x33\x63\x6f\xe1\x7b\xbe\x85\x04\x7b\xf4\xa8\xa7\xfc\x48\x25\x55\x67\x73\x0a\xf9\xeb\xe5\xfb\x11\xa4\x1b\xe0\xbe\xbb\x0e\x64\x58\x7f\x01\xd5\x09\x24\x00\x09\xd6\x5f\x46\xd0\x33\x14\x82\x72\x66\xe8\x01\x5c\xa3\xc1\xa9\x4b\xca\x16\xb8\x40\x83\x63\x17\x76\x10\xc3\x45\x90\x7a\x85\x91\x02\xce\xc4\x4b\xfc\xe1\x2d\x06\x88\x84\x18\xb0\xb0\x1b\x43\x52\xe0\x8e\x7f\x16\x27\x77\xd3\xf2\x0e\x7d\xf0\x3f\x24\xf0\xf4\x98\x2f\x45\xcb\x0c\x85\x17\x71\xe8\xd1\x1a\x30\x8e\x3c\x58\x00\xce\x0f\x3c\x42\x4e\xc7\x3d\x9e\x15\x70\xfb\x9d\x4c\x9b\xe1\xbe\x7b\x16\x13\x42\xca\x56\xee\x90\x40\x20\xe8\x39\x7e\x97\x40\x60\x22\x72\x27\xbb\x08\xf5\x86\x12\x26\xb5\x9a\xbc\x4e\x43\xef\x15\xa6\x89\x40\x3b\xfd\x8c\xfc\xa1\x6f\xed\x3c\x2b\x49\xd0\xbb\xde\xde\x69\x36\x81\x47\xf8\x2b\x4a\x4a\x67\x37\x7e\x27\xcc\x0c\x41\xa8\xd3\x49\x6a\x6f\x75\x54\x1c\x5c\xc0\x57\x71\xa2\x10\xe5\x08\x5b\x1d\x61\x13\xf1\xb8\x51\x9e\x4a\x30\xf0\xba\x89\x23\xc3\x37\xdf\xaf\x2e\xe2\xd8\xe0\x25\xf9\xa8\x33\x9d\x5e\xa9\x78\xa5\x4e\xbd\xb9\xd4\x2b\x55\x00\x87\x93\xd8\x71\xf0\xc6\x70\x60\xdf\x88\xf7\xa6\x3b\x8c\x3a\x91\xa3\xa2\x9e\x24\x4c\x71\x64\x34\xd8\x39\x64\x03\x83\x09\xf3\x43\xce\xd0\x74\x4e\x65\xe0\x74\x50\x8d\xe9\xf3\xba\x27\x27\xd5\xb4\xb7\x5f\x51\xd2\x68\x44\x57\xaa\x85\x48\x1d\x6d\x1d\x4b\xd0\xb8\xbe\xe4\x1c\x71\x0e\x39\x89\x68\xae\xb5\x4f\x0d\x7f\xa5\xfd\x7c\xa3\x03\x14\xb7\x07\x82\xda\x6c\xf4\x7a\x03\x4f\x5f\x65\xad\xc2\xd8\x36\x07\xe3\xe5\x17\xf1\x9a\xf3\x73\x0c\x81\x5b\x84\xd2\x41\xf2\x73\xc4\x29\x42\xa9\x4b\x48\x80\xd3\x5d\x0a\xa7\xcd\xba\xc3\xa0\x2e\x3f\x1c\x2d\x5e\x67\xc1\x82\x32\x44\x17\x29\xb5\xc4\x16\xca\xcc\x63\xe3\x48\x32\x11\xc7\x4b\x48\xf8\x1e\x15\x17\x10\x4b\xa6\x28\xb8\x6e\x6a\xd9\xaf\xc9\x18\xe2\xbc\x5f\xc3\x4b\xd6\xae\x40\x0d\xcc\xa5\xca\xce\x8d\xc8\x6e\x8e\x4f\x0e\x04\x87\x47\xf4\x72\x68\x78\xc3\x86\x34\x3d\x33\x25\xc0\xa3\x28\x2b\x70\x01\x1e\x46\xc9\x16\x7b\xa6\x08\x84\x77\x4c\x25\x20\xb2\xe3\xbd\x05\xc8\xe8\x03\xc1\x5f\x5d\xcc\x00\xe7\xc2\x71\x5c\x42\x41\x28\x9e\x5d\x42\x01\x8a\xd8\xc5\x9c\x55\x0c\xc9\x53\xe7\x77\xf6\x03\x59\x34\x3d\xbe\x16\x10\xfe\x7d\x90\xee\x36\x7a\x88\x14\xf7\x63\x9c\xe6\x9a\x8d\x6a\x87\x0e\xc5\x1a\xfc\x99\xe0\xd5\x17\xcf\xc6\x38\xb0\x7d\x39\x03\xe2\xb3\xd8\xc1\x71\x80\x96\xf0\xb3\x00\x50\x5f\x54\x33\x64\x76\x79\xbf\xe2\x37\x19\xc2\x24\x34\x96\xbd\x4a\x07\x03\xea\xf8\x2b\x4c\xc9\x60\x66\x02\x33\xc4\xa6\x93\xa4\x8b\x42\xfa\xd1\xfa\x63\xf5\x3c\x11\x15\xfb\xd2\xb0\x0b\x07\x3d\xd1\x4d\xb7\x05\x23\xf7\x1a\x86\x85\x28\x4d\x18\x4b\xb9\x8e\xd1\x7b\x20\x5c\x13\x42\x52\x24\x9f\x08\x4f\x4e\x14\xc4\xbb\x85\x19\x8a\xb5\xaa\x2e\xb0\x14\xb2\xc3\x43\x3f\x7c\x04\x99\x25\xe6\xb7\xaa\x80\x78\x41\x9f\x05\x8c\x36\xa8\x2e\xc1\x2c\x14\xd9\xde\x60\x1a\xa1\xcc\x7c\x86\x58\x01\x89\xc0\x14\x02\x0e\x94\x7d\x37\x94\x32\x86\xe4\x9a\x01\xe8\xbc\xeb\x26\xa3\x91\x4b\x48\x79\x1a\x3c\x7f\x92\x39\x76\x65\x7d\x1a\x4f\x23\x67\xd9\x1d\xac\xe2\xc5\xa4\xb5\x51\x8b\x48\x33\xc2\x1e\x50\x0f\x59\x9a\x57\x9f\x70\xec\x3f\x73\xa4\x10\x32\x6a\x60\x5b\xa2\xcc\x7e\xb7\x08\xe8\x78\x02\x71\x08\xab\x5e\x99\xec\x45\x31\xfc\x2a\x0a\x81\x43\x20\xc6\x2c\x3e\xf9\xf4\xe3\x67\xc7\x41\x8b\xbd\xcd\xf0\x7d\xfa\xe9\x73\x40\xf9\xe9\x0f\x9f\x11\x2b\xbd\x4f\x4f\x58\xd3\xe3\xbb\x59\x89\x1f\x3f\xbb\xa7\xae\x6f\x9e\x8e\xcb\x0a\xe9\x47\x60\x21\xf3\x7f\x24\xc4\x3b\xd9\xab\x9a\x23\x5c\xd1\xa2\xc4\x64\xed\xac\xa1\x28\x77\xca\x29\x08\x6e\x46\x0f\xb9\xc5\xf7\x57\xa8\x45\xfc\x3d\x1a\x1f\xec\xe5\x7c\x17\xd3\x90\xd1\x38\xe3\xa3\x78\x67\xe2\x37\x8c\x72\x4b\x8f\xe4\x65\x05\x9e\xa2\x45\xc0\x53\x2c\xfa\x6f\xd0\xd1\x80\xe0\xb7\x0a\x22\xe4\x26\x04\x18\x30\xf7\x5b\x10\x60\x68\xdd\x84\x81\x43\xed\x7e\x53\x23\x28\xd6\x6d\x6a\x06\x26\xa8\x56\x80\x0e\xfd\xeb\x11\xe1\x78\x8c\x42\x09\xff\xc6\x0b\xb0\x78\x41\x38\x47\x08\x4f\xf3\x1d\x1d\x9d\x09\x3a\x1c\xa4\x6f\xc6\x46\x43\x35\x46\x17\x47\xec\x9b\x11\xc2\x13\x81\x13\x7c\xf4\x6a\xf4\xb7\x77\x16\x07\x2f\xbe\xf0\xcd\xa3\x66\xd4\x3e\x3e\x0f\xfe\xaf\x6e\x1a\x22\x31\xb1\x0e\x26\x24\x8c\x9f\x36\xf7\x4f\x69\x73\xcf\xa2\xe3\xcd\x0d\xc1\xb1\xbd\x5c\x67\x3b\x5b\xae\x8b\xce\x42\x13\xa1\x0c\xf5\x73\xba\xf7\x73\x84\xec\xae\x0d\x28\xb9\x71\x80\xf3\x1b\x5b\x06\xe1\xbf\x69\x8b\x63\xcc\xef\xc9\x53\x8b\x73\x1b\x3a\x7f\xa4\x98\x82\x82\x93\x43\x46\x16\x48\xef\x5f\x9d\x05\x24\xa4\x58\x55\x51\x63\x0c\xb9\x4e\x75\x86\x99\x07\x8d\xa7\x32\x8d\xfa\x17\x86\xf5\x68\x85\xf1\xf2\x8f\x2a\x84\xc7\xdc\x68\xd4\xb3\x8a\xbf\x6d\xec\x8b\xda\xaa\x4f\xde\xda\xee\x73\x25\xd7\x61\x26\xe4\xda\x56\x21\x97\x22\x73\x00\xa0\xb1\xfb\x0a\x3f\xc3\xaf\x1f\x03\x21\xff\x91\x1e\x25\x11\x27\xae\xfa\x71\x0b\x09\xf8\xca\x33\x24\x6c\x20\x61\x63\x07\x78\x63\xee\xc7\x16\x3e\x5b\x79\x80\xaf\x3d\x7c\xed\x95\xba\xc5\xc2\xc0\x20\xfc\x28\xb6\xd6\xf8\x0d\xa4\x1c\xe0\xfb\xa0\x24\xbd\x50\x87\x8f\x9f\x9c\x85\x23\x82\x3f\x4e\x5c\x85\xd5\x51\x3a\x7f\x9c\xb8\x2a\xd4\x4a\xa9\xf8\xf3\xc4\x55\xad\x3c\x50\x12\xfc\x3a\x71\x55\xa8\x9e\x92\xf0\xe7\x09\xf0\x75\x7e\xc3\x08\xf1\xf7\x89\xab\x42\x3b\x28\x11\x7f\x9e\xb8\xaa\x97\xfb\x3a\xb5\x8b\x7e\x41\x6a\x6a\x15\xfd\xaa\xaa\x4f\x6d\x6f\x77\xbf\x5b\xa3\x3e\x57\x7c\x9d\xbd\x55\x8e\xac\xf3\x5f\xf4\x76\xc7\x4e\x39\xaa\xc7\x2b\x4e\x78\x3e\x17\xde\x7a\xe9\xac\x6c\x17\x15\x05\x78\xab\xb5\xd9\x0d\x51\xd1\x4f\x96\x50\x8f\x3d\x81\xa5\x07\x50\xd0\x7d\xff\xb0\x53\x8b\x0a\x2e\xb9\xbc\xb5\xf5\x12\xb8\x79\xb8\xde\x02\x1b\xb7\xef\xff\xfe\x77\x80\xd7\xbf\xab\x7f\xfc\x43\xbc\xfd\xe5\x07\xa1\xbe\x34\x4a\xb5\x4e\x6c\xc9\xee\x96\xc1\xb6\xf2\xcb\xcb\x02\x72\x51\x91\x2f\x3c\x19\x7a\xa2\x2f\x3c\x54\x5f\xfd\x7f\x01\x00\x00\xff\xff\x9d\x0c\x47\x5e\x9c\x02\x01\x00"
+var _confLocaleLocale_enUsIni = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\xbd\xeb\x72\x1c\xb9\xb1\x30\xf8\xbf\x9e\x02\xa3\x13\x0c\xcd\x44\x50\xad\x98\xf1\x77\xbe\xdd\x98\x10\xe5\xe5\x50\xa3\xcb\x39\x94\xc4\x43\x4a\xf6\xe7\xd5\x2a\x6a\xd0\x55\xe8\x6e\x98\xd5\x40\xbb\x80\x62\xab\xc7\xe1\x37\xd8\x07\xd8\xe7\xdb\x27\xd9\x40\x5e\x70\xa9\xaa\x26\x25\xfb\xec\x1f\xb2\x0b\x48\x24\xee\x89\xcc\x44\x66\x42\xee\x76\x75\xab\x5c\x23\xce\xc4\xb9\xd8\x49\x6d\x3a\xe5\x9c\x70\xaa\x5b\x3d\xd9\x58\xe7\x55\x2b\x5e\x69\x2f\x9c\xea\xef\x74\xa3\xaa\x6a\x63\xb7\x4a\x9c\x89\xd7\x76\xab\xaa\x56\xba\xcd\xd2\xca\xbe\x15\x67\xe2\x05\xff\xae\xd4\x97\x5d\x67\xfb\x00\xf4\x2b\xfe\xaa\x36\xaa\xdb\x85\x32\xaa\xdb\x55\x4e\xaf\x4d\xad\x8d\x38\x13\x37\x7a\x6d\xc4\x1b\x83\x29\x76\xf0\x9c\xf4\x7e\xf0\x98\x36\xec\x38\xe9\xe3\xae\xea\xd5\x5a\x3b\xaf\x7a\x71\x26\xae\xe9\x67\xb5\x57\x4b\xa7\x7d\xa8\xe9\xcf\xf8\xab\xda\xc9\x75\xf8\xbc\x92\x6b\x55\x79\xb5\xdd\x75\x12\xb2\x3f\xd0\xcf\xaa\x93\x66\x3d\x20\xcc\x25\xfd\xac\x9a\x5e\x49\xaf\x6a\xa3\xf6\xe2\x4c\x5c\xc0\xc7\x62\xb1\xa8\x06\xa7\xfa\x7a\xd7\xdb\x95\xee\x54\x2d\x4d\x5b\x6f\xb1\x53\x1f\x9d\xea\x05\xa5\x0b\x69\x5a\x11\xd2\xa1\xc1\xaa\xad\xb5\xa9\xa5\xa3\x56\xab\x56\x68\x23\xa4\xab\x00\x95\x91\x5b\x2e\x1d\x7e\x56\x6a\x2b\x75\x17\xc6\x28\xfc\xaf\x76\xd2\xb9\xbd\x85\x81\xbc\xa2\x9f\x55\xaf\x6a\x7f\xd8\x29\xe8\xf0\x93\x0f\x87\x9d\xaa\x1a\xb9\xf3\xcd\x46\x86\x66\xe2\xaf\xaa\xea\xd5\xce\x3a\xed\x6d\x7f\x00\x38\xfe\xa8\x6c\xbf\x96\x46\xff\x2e\xbd\xb6\x61\xac\xdf\x67\x9f\xd5\x56\xf7\xbd\x0d\x03\xf9\x16\x7e\x54\x46\xed\xeb\x80\x47\x9c\x89\x77\x6a\x9f\x63\x09\x39\x5b\xbd\xee\x71\x14\x43\xe6\x5b\xf8\x0a\x58\x30\x8f\x30\x61\x56\xc4\xb6\xb2\xfd\x2d\xa5\xbe\x0c\x3f\x47\x28\x6d\xbf\xa6\xdc\xb2\x5d\xd2\xc8\xb5\xa2\xdc\xb7\xf0\x51\x00\xb8\x4a\xb6\x5b\x6d\xea\x9d\x34\x2a\x0c\xdd\x79\xf8\x12\x57\xe1\xab\x92\x4d\x63\x07\xe3\x6b\xa7\xbc\xd7\x66\x1d\xe6\xe0\x1c\x93\xc4\x0d\x25\x55\x59\x5e\x4c\x3b\xd8\x21\xce\xb2\x38\x13\x7f\xb1\x43\x2f\xae\xf0\x13\xf3\xb2\x42\x90\x19\x4b\x56\xb2\xf1\xfa\x4e\x7b\xad\xb0\x32\xfe\xa8\x76\x43\xd7\xd5\xbd\xfa\xdb\xa0\x9c\x0f\x59\x57\x43\xd7\x89\x6b\xfa\xae\xb4\x73\x03\x94\x78\x03\x3f\xaa\xaa\x91\xa6\x81\xee\x5c\xc0\x8f\xaa\xfa\xa4\x8d\xf3\xb2\xeb\x3e\x57\xf4\x23\x00\xe3\x2f\x1c\x27\xaf\x3d\x34\x96\x12\xc5\x8d\x57\x3b\x17\x06\x5a\xbc\xd4\xbd\xf3\x4f\xbc\xde\x2a\x71\x3d\x98\xaa\xb5\xcd\xad\xea\xeb\xb0\xfd\x60\xe3\xbc\x59\x89\x83\x1d\x1e\xf7\x4a\xf4\x83\x31\xda\xac\xc5\x2b\xbb\x76\x42\x1b\xa7\x5b\x25\x5e\x00\xf4\xa9\xd8\x75\x4a\x3a\x25\x7a\x25\x5b\xf1\x4c\x0a\x2f\xfb\xb5\xf2\x67\x8f\xea\x65\x27\xcd\xed\x23\xb1\xe9\xd5\xea\xec\xd1\x89\x7b\xf4\xfc\xd5\xa0\x5b\xd5\x69\xa3\xdc\xb3\xa7\xf2\xb9\x68\x64\xaf\x56\x43\xd7\x1d\xc4\x52\xad\xc2\x5e\x39\xd8\x41\x34\x1b\x69\xd6\x61\x9f\x1c\xfc\x26\x54\xa8\x8d\xf0\x1b\xed\x44\xd8\xa8\xdf\x55\x61\x94\xb4\x57\x75\xbb\x64\x12\x04\x0d\x82\xe4\x5e\x39\xf1\xf6\x70\xf3\x5f\x97\xa7\xe2\xca\x3a\xbf\xee\x15\xfc\xbe\xf9\xaf\x4b\xed\xd5\x1f\x4e\xc5\xdb\x9b\x9b\xff\xba\x14\xb6\x17\x1f\xf4\x8b\x5f\x16\x55\xbb\xac\x79\x5c\x5e\x48\x2f\x97\xa1\x0b\x71\xae\x42\x26\x6e\xa5\x98\x07\x1b\x2a\x10\x38\x20\x66\xce\xc3\x26\xa5\x0d\x3a\xbb\x1d\xdb\x65\x4d\x7b\x38\xe2\x78\x17\x36\x72\xbb\x4c\x03\x7c\x85\x43\x37\x38\x25\xde\xbc\x7b\xf7\xfe\xc5\x2f\x42\x99\xb5\x36\x4a\xec\xb5\xdf\x88\xc1\xaf\xfe\xf7\x7a\xad\x8c\xea\x65\x57\x37\x3a\x8c\x4d\xef\x94\x17\x2b\xdb\x63\x4f\x17\x95\x73\x5d\xbd\xb5\x6d\xa8\xe5\xe6\xe6\x52\xbc\xb5\x6d\xa0\x69\x7e\x03\x0d\xf1\x9b\xca\xfd\xad\x0b\xe3\x15\x2b\xfc\xb0\x51\x02\x96\x2e\x00\xd9\x15\x0f\x8f\x68\xa9\x8d\x0b\xf1\x6c\xd9\x3f\xcf\xda\x25\x97\xce\x76\x83\xa7\x12\xfb\x8d\x32\x30\x4f\xce\xcb\xde\x0b\xe9\x98\xd0\x2f\x2a\xd5\xf7\xb5\xda\xee\xfc\x21\xcc\x0e\xb5\x61\x8c\x1d\x91\x34\xd2\x18\xeb\xc5\x52\x09\x80\x5f\x54\xc6\xd6\xb8\x53\x03\xd9\x6c\xb5\x93\xcb\x4e\xd5\x48\xc0\x7b\xa6\x48\x7f\x09\x8b\x03\x0b\x12\x84\x28\x20\xc2\x88\x85\x43\x01\xa8\x73\x58\x39\xd2\x08\x40\x2a\x68\xab\xe7\x2d\x64\xba\x10\x67\x0d\x49\x43\x4c\x98\xb4\xb0\xe2\x69\xe0\x35\x73\xbe\xdb\x75\xba\xc1\xaa\x5f\x61\x5e\x5a\x3e\xe1\x88\xa4\xb9\xcf\xe1\x60\xfa\x39\x2f\x5b\x04\x83\x0f\x43\xda\x8b\x82\x06\x43\xf9\x8d\xea\x95\xd8\x0c\x6b\x3c\x38\x3a\x3b\xb4\xdf\x01\x05\xe7\xf1\x4d\x74\x52\x5c\x5b\xeb\x71\xce\x23\x40\xaa\xe2\xbc\xeb\xe0\x54\xee\xd5\xd6\xfa\x30\x70\x54\x2c\xd0\xa2\xbd\xee\xba\xd0\x53\x27\xef\x54\x2b\xbc\xc5\xfd\xd6\xea\x5e\x35\x01\xf1\xa2\xea\x07\x53\xd3\x62\xbf\x1e\x0c\x2e\x78\x4e\x2b\x57\x16\x40\x6d\x07\xe7\xc5\x46\xde\xa9\x30\xf0\x81\x35\xf0\x76\xb6\x9d\xd0\xa5\x7e\x30\xb0\x85\x17\x55\x6b\xb7\x12\x8e\xf9\x17\xf0\x83\xbe\x73\xfc\xda\x09\xb9\x5a\xa9\xc6\x3b\x71\x73\xf3\x5a\x34\x9d\x35\x4a\x7c\xbc\xbe\x74\x61\x1b\x6c\xea\x9d\xed\x81\x25\xb8\x79\x2d\xae\x6c\xef\x63\x5a\x36\xd0\x01\xc2\x0c\xdb\xa5\xea\xc5\x7e\xa3\x9b\x0d\x0e\x7b\x28\x11\x56\xb1\xea\x85\x76\x62\x70\xda\xac\x4f\x45\xa7\x42\x0f\xb4\xc7\x05\x10\xfa\xc0\xab\x2e\x80\xaf\x94\xf4\x43\xaf\xe0\xd0\xaf\x97\x83\xee\xbc\x36\x75\xa8\x90\xf0\x00\x59\x10\xbf\x60\x06\x94\xb8\x81\x8c\x23\xf0\xf5\xce\xee\x90\x79\x81\x5d\xb5\xcc\xca\x11\xc2\xb0\xe5\xc3\x04\xda\x9d\xc2\xf5\xee\xa8\x49\x61\xc1\x0d\xda\x6d\xc4\xaa\xb7\x5b\xe1\x0e\xce\xab\x2d\x14\x6c\xa5\xda\x5a\xb3\xa8\x36\xde\xef\x78\x6c\x5e\x7f\xf8\x70\x85\x83\x13\x53\xef\x1b\x1d\x99\xad\x5d\x58\x25\x5d\x60\xa3\x8c\x08\x68\xc3\x32\x1e\xfa\x6e\xb4\xc2\x3f\x5e\x5f\x72\xce\x91\x99\x0b\x4d\x78\x1a\xfe\xdc\xa4\x09\x84\x95\xe0\xec\x56\xed\x61\xbd\x6b\x23\x80\xd9\x59\x54\x9d\x5d\xd7\xbd\xb5\x9e\x97\xfb\xa5\x5d\xe3\x12\x2f\x32\x52\x4d\x2f\x78\xd1\x86\xc1\xd9\xf7\x81\xd5\xeb\xec\x1a\x08\x5e\x18\xaf\x45\xa5\x0c\x90\x96\xc6\x1a\x67\x3b\xc5\x94\xf3\x57\x48\x15\x17\x98\x8a\x44\x74\x06\x32\xce\xd2\x9b\x40\x59\x5a\x0d\x3d\xf6\x16\xe9\x69\x00\x38\x15\xb2\x73\x56\xec\x7a\x6d\x7c\xa8\x18\xe6\x88\x30\x2c\xaa\xca\xee\x42\x89\x8c\x86\xbc\xa7\x84\x44\x38\xa0\xdf\x31\x1f\x58\x3d\x58\x39\xba\xc9\x0e\x27\xb7\xf5\xbb\x9a\x4e\xa2\x9b\xb7\x1f\xae\xf0\x38\x82\x54\x58\x04\x67\xe2\x65\x6f\xb7\x29\x21\x8d\xcf\xdb\x80\x0f\x60\x64\xdb\xf6\xca\xb9\x53\x71\xfd\xf2\x42\xfc\xfb\x1f\x7e\xfa\x69\x21\xde\xf8\x40\xf6\x02\x25\xf8\x6b\xd8\xc1\x92\x66\x21\x81\xda\x5e\xf8\x8d\x12\x8f\x02\x19\x7b\x24\x9e\x41\xee\xff\xa1\xbe\xc8\xed\xae\x53\x8b\xc6\x6e\x9f\x87\x55\xba\x95\x7e\x51\x85\x1c\xd5\x33\xd1\xb8\x51\xa6\x55\x3d\x31\xae\x94\x95\x91\x5e\xca\xce\xd8\x58\xe4\xd6\xc3\xd8\xaf\x74\xbf\x4d\x13\xc4\x7c\x7c\x98\xa9\x90\xc3\x5c\xa0\xee\x6a\x63\xbd\x5e\x1d\x12\x28\xf4\xf4\x5d\x48\xa4\xa5\x59\xd1\x4e\xa3\xe3\x2a\x8e\x31\xee\x4b\x58\x81\xef\xfd\x46\xf5\x3c\xdc\x2e\x8d\xb7\x5d\xad\x02\xd3\x32\x5a\x2d\xef\x31\x15\x57\x4b\x0e\x12\x97\xc9\x0b\x22\x18\x17\x2f\xde\x09\x75\xa7\x4c\x58\xd8\xbb\xde\xb6\x43\x03\x2b\x87\x57\x4c\x27\x7a\xe5\xec\xd0\x37\x8a\x16\x6a\x24\xc8\xa1\x69\x81\xea\x37\xb2\xeb\x0e\x8b\x8a\x0f\xc6\x75\x2f\xef\xa4\x97\x7d\x56\xc5\x2b\x4e\xa2\xd6\x4f\x60\x27\x8d\x8a\x25\x42\xcf\x9b\xc1\xf9\x40\x3d\xa0\x15\x0e\x1b\x85\xd9\x4e\xc8\x5e\x89\x61\xd7\x59\xd9\xaa\x56\x2c\x0f\x40\xe3\x5d\x58\x0b\xad\x5a\xc9\xa1\xf3\x8b\x6a\xa5\xda\x40\x94\x54\x5b\x53\x5d\x9d\xb5\xb7\x50\x19\x0d\xd5\x4b\x06\x10\xe7\x84\xf4\x12\x20\x8e\x95\x8c\x8d\xa5\xf2\x11\x2c\x36\x8a\x6a\xf0\x16\x58\x94\x94\x6f\x77\xca\x50\x37\x98\x31\x11\x81\xef\x68\x85\x35\xa2\xd3\x4b\xea\x74\x1a\xcb\x11\x93\xc1\xa3\x73\x13\xa4\xd9\x3c\x6f\xb6\xc0\x64\x50\x61\xc1\xbb\x71\xd9\x53\x61\x4d\x77\x20\x66\x24\x6c\x31\x14\x20\x99\x2f\x71\x89\x2c\x45\x71\x8d\x29\x12\x49\x6d\x65\x7e\xac\xf6\x1a\xd9\x5e\x71\x27\x3b\xdd\x06\x8c\x8c\x20\x9c\x16\xf3\x6d\x59\x54\xc4\x2b\xd7\x24\x57\xd7\x77\x1a\xe4\xd8\xb8\xc5\x10\x25\xc9\xda\x61\x84\xff\x14\x00\x82\x80\xec\x66\xcb\xc6\xd6\xbc\x0f\x9d\x74\x51\x8e\xc5\x75\x12\xba\x0b\x35\x04\xfe\xdd\x9d\x8a\x3b\x0d\x6c\x00\x2d\x72\x18\x97\x65\xe0\x31\x3b\x15\xaa\x72\x4a\x01\x06\xa1\xcd\xd3\x61\x87\x65\x16\x24\xc4\x91\x5c\xc5\x7c\x7f\x60\x07\x5b\x6b\x1e\x7b\x61\x14\xb2\x2d\x3c\xaa\x23\xb6\x4f\xf4\x7a\xbd\xf1\xc2\xd8\xfd\x82\xb8\xdf\xde\x79\x1c\x1d\x90\x2d\x14\xb5\xd4\x43\x23\x78\xef\xc9\xc1\xdb\x40\x5f\x60\xeb\x89\x75\x2f\x0d\x2c\x3f\x46\xac\x5c\x6c\x57\x64\x08\x21\x6f\x22\x43\x22\xd0\x58\x98\x9f\xf0\x9f\x91\xfa\x11\xd1\xcb\xf3\x88\xda\x25\x18\x2c\xcd\x0a\x01\xac\x18\xa9\x2b\x09\x80\xf5\xda\x82\x00\xca\x02\x5f\xe0\xb0\x2a\xaf\x9c\xaf\xd7\xda\xd7\xab\x40\x82\x03\xe2\x97\xf8\x23\xb0\x7c\xca\x79\xf1\x78\xad\xfd\x63\xd1\xd8\xed\x56\x9a\xf6\x67\x71\x72\x47\xd2\xc3\x1f\x02\x75\x0d\x3b\x54\x77\x30\x46\x24\xd8\xf6\x0a\x85\x84\x3b\xd5\xbb\xb0\x7b\x5a\xab\x9c\x08\x5c\xb3\x1b\x76\xc0\x6f\x44\xc9\x8b\x04\xc4\xd6\xee\x4d\xa0\x23\x30\xe8\x76\xb5\xd2\x8d\x96\x9d\x58\x6a\x23\xfb\x43\xc4\x02\xa7\xd3\x89\x3b\x15\xef\xde\x7f\x00\xc0\xb5\x0d\xec\x50\xcb\x00\x8b\x4a\x1b\x58\xef\x41\xca\xa0\x35\x91\x8b\x58\x9c\xa4\xb1\x2d\x8d\xed\x03\x4b\x00\xbd\xe1\x82\x47\x18\xe8\xc0\x4f\xa0\x7c\xa2\x83\x88\x0b\xb0\x50\x2e\xf2\xba\x61\x18\xb6\xd2\x37\x1b\xe2\x84\x71\x11\xb9\xb0\x08\x43\x4b\x9b\xa1\xef\x95\xc1\xb5\xf5\xb3\x38\x71\xe2\xc9\x73\x71\x92\x1d\xd7\xf5\x56\xbb\xc0\x5c\x46\x4e\x95\xcf\x6e\x01\x09\x94\x5b\x9c\xcf\xa9\xb7\xf9\xf1\x0e\x05\xc3\x19\x2f\x56\x5a\x75\xed\xb8\xbd\x81\x91\xc7\xc3\x73\x3d\x37\xd7\x21\x5b\x60\xf6\x80\x44\x81\x46\x67\x7e\x69\x84\x74\x2d\x3b\xfd\xbb\xca\xf9\xc1\x62\x40\x8b\x0d\x1a\x57\x24\xef\xbf\x6c\x46\xf2\x56\xf2\x52\x75\x03\x4a\x09\x67\xe2\xcf\xaa\x6b\xec\x56\x7d\x27\xfe\xac\x1e\xf7\x4a\xac\x3b\x58\x2a\xd2\x93\x5e\xc0\x3a\x05\x0b\xf9\x14\x85\x8b\xd5\x60\xe0\xec\xf2\xf2\x56\x81\x2a\x21\x8d\xd5\x1c\xdb\x78\x74\x76\xab\x4f\x1b\xbb\x55\x9f\xab\x01\x85\x32\xdb\xb5\x51\xac\x87\x5d\x6b\x7b\xe4\x83\xa2\x8c\x9f\x60\xe2\x86\x74\x7b\xed\x9b\x4d\x1d\xd5\x9b\x61\xf4\xbd\xfa\x02\x93\x0c\x59\x49\xdb\x19\x76\x73\xc8\xaa\xb6\x07\x58\x88\xa1\xe3\x6f\x0f\x69\x1d\x6a\xe5\x2a\xb7\xb1\x7b\xd0\x1e\x46\x88\x9b\x8d\xdd\x83\xde\xb0\x10\xdd\x16\x8b\x45\xd5\xd8\xae\x93\x4b\x1b\x26\xf2\x2e\xc1\x5f\xe4\xa9\x25\xf2\xed\xa1\xb6\xfd\x9a\xaa\x2d\xb5\x65\xdb\x03\x29\xe8\x28\x17\x15\x74\xae\x02\x32\x4f\x7a\x5c\x38\x0d\x4e\x5c\x45\x7a\xa9\x85\x36\x35\xa8\xbd\xb8\xe6\x37\x06\x85\xaa\xbc\x9d\x55\xf5\x89\x74\xbc\x9f\x2b\x86\x2b\xda\x84\x14\x18\x07\xdd\x15\xaa\x48\x37\xd2\x45\xba\xca\x29\xd9\xc3\x0e\xbc\x81\x1f\x55\xf5\x49\x0e\x7e\xf3\x39\xd3\xca\xd6\xbc\xf2\x58\x3b\x0b\x9a\x43\xa2\xcc\x89\xbd\xdc\xa8\x5d\xe0\x44\xb7\x0e\x96\x6c\xd7\x2b\xd9\x1e\x48\x6e\x8d\x8b\xf7\x8f\x78\x10\x6a\x13\xce\x8f\xef\x2a\x67\x03\xc9\xaa\xbf\x11\xc5\x2f\xda\xb4\x58\xbe\x64\x22\x50\x5d\xbc\xdd\xc1\x32\xb1\x7d\x7f\x38\x2d\x35\x1a\x1b\xe9\xc4\x52\x29\xc3\x92\x67\xbb\x60\x7d\x51\x58\x5e\xb2\x41\xaa\x03\x0a\x6d\xd8\x81\x58\xd2\x4e\xb8\x9b\xd0\x42\x3c\x2a\xa8\x16\x3c\x39\x1c\x33\xba\x81\xc3\xfb\xe6\x2a\xc2\xa0\xd7\xc4\x69\x9d\x89\xf3\xc1\x6f\x94\xf1\x2c\x06\xde\x40\x7a\x05\x9c\x2b\xec\xbf\x46\x76\x55\xaf\xb6\x2a\x08\x97\xf5\x16\x55\xd4\xf8\x25\xde\xaa\x6a\x65\xfb\x35\xec\x56\xdc\x4e\x67\xe2\x25\x24\xa4\xfd\x15\x00\x94\xcf\xcf\x44\x82\xe0\x94\x3f\xf2\x05\x40\x6d\xec\x1e\x54\xc5\xe1\xb4\x1e\x4f\xe3\xb0\x03\x36\x80\xcf\x58\xe4\xe1\x40\x7c\x70\xca\xf8\x34\x19\xe7\xc2\xa8\xbd\xc8\xa1\x68\xc8\xe2\x8c\x04\xf8\x40\x1c\x9f\x2d\x9f\x9f\xb8\x67\x4f\x97\xcf\xe3\x21\xd7\x6c\x54\x73\x8b\x5b\x40\x9b\xa5\xfd\x02\x7a\x29\x62\x34\x4c\x20\x09\x27\xad\xd8\xd8\xa1\x27\xd9\x30\xc8\x4e\x5e\x41\x6e\x31\xf7\xbb\xde\x12\x93\xd1\xc0\xc6\x86\x3d\x96\xd6\x35\x68\x8f\xc3\xca\x86\x93\x98\x97\xf6\xae\xb7\x1b\xbd\xd4\x3e\x10\x40\x50\xa5\x5c\xc2\xff\x2b\x4a\x56\xed\x08\x22\xe3\xa5\xfa\x48\xae\xb5\x13\xbb\x58\x00\x0f\xa3\xce\xae\xd7\xa8\x8b\x7d\x60\x79\x04\xee\x12\x86\xb2\xd3\x5b\xed\x27\xab\x3b\xd0\x71\x49\xbb\x84\xf4\xdd\x3c\x4d\xd0\x9d\x34\xd0\xbd\x6a\x94\xf1\xdd\x21\xd6\xb7\x97\xda\x8b\x3f\x88\xad\x36\x83\x0f\xb2\xfc\x46\x19\xe1\xfb\x83\x90\x6b\x19\xaa\xdd\x48\x57\x0f\x86\x66\x4c\xb5\xbc\xde\x5f\x6b\x60\x25\x42\xbd\xbc\x2b\x33\xa8\x52\xbe\x15\xdf\xc7\xc9\xfc\x61\x41\x9a\x6f\x28\x15\x8e\xf7\xd0\x1e\x1d\x84\x31\x39\xb7\x2c\x6c\x1f\x99\x50\x02\x14\x12\x96\x90\x35\x2a\x2d\x8c\x4e\x37\xb7\x30\x5e\xcb\xc1\x7b\x1b\x04\xed\x2e\x2c\x46\x18\xb1\xd8\xe2\x0b\x80\x02\x35\x08\x60\x0b\x79\xb8\x9a\xc6\x63\x54\x41\xb1\x00\xe1\xe7\x0b\x7f\xdf\xab\x1f\x52\xf1\xb8\x77\xa0\x04\xa1\xc0\xd2\xd9\xb6\xba\x86\x4c\xbc\xd4\xe0\xcd\xc7\xa7\x6a\x43\x6a\xe6\x38\x97\x7d\x39\x16\x90\x1f\x76\x88\xfa\xb2\xd3\x7d\x10\xb9\x7a\x60\xc1\xa0\xf4\x62\x54\x57\xd2\x49\x4c\x7b\xec\xcb\x16\xa7\x83\xd7\x5b\x5b\xbb\x0d\x32\x4f\xdc\x3c\xd1\x29\xb3\xf6\x1b\xd4\x3a\x06\xc6\xdd\x8b\x30\xde\x5e\xfc\x4f\x50\x97\xcb\xc6\xab\xde\x2d\x2a\x63\x4d\x0d\xe4\x28\xdb\x44\xef\xac\x79\x82\x24\x8a\x25\x31\xd6\xfb\xd2\x25\x04\x57\x1c\xd6\x5b\x6f\x87\xf5\x86\x54\x95\x15\xee\x1e\xbf\xb7\xf5\x4a\x36\x1e\x2e\xb4\x3e\xec\xed\x13\xfa\x28\x89\xe1\x04\x18\xc6\x80\x06\x73\x44\x37\xaf\x28\x67\x5a\x46\x99\x40\xc6\x7b\xd5\xd8\x3b\xd5\x1f\x78\x2e\x7e\x0d\xa9\x42\x0a\x9f\x2a\x67\x10\x31\x8f\x27\x66\x17\x2d\xbe\xa6\xd4\xe3\xf0\x5c\x23\x43\x8a\x8b\x7b\x9a\x99\x75\x70\xa6\x85\xbb\xa3\x9d\x4c\x0c\xfa\x91\x4a\xe1\x9b\x29\xc8\xe0\x70\x8d\x51\xa9\x45\x55\x7d\x0a\x8b\xfa\x73\x45\x3b\x45\x65\x53\x4d\x54\x84\x73\x78\x47\x21\xd9\x8c\xf0\x2c\x51\xfd\x49\xf5\x7a\x75\x40\xa0\x82\x46\x1c\xdb\x30\xe5\x7a\x8d\xa7\x6e\x62\x6d\xaf\x73\xda\x4e\xc9\xab\xa1\x3b\x15\x7b\xe4\x79\x53\x99\xa8\xc8\x22\x6e\x58\x04\x4a\x01\xd7\xe4\xd5\xa7\xad\x6d\x65\xf7\xb9\x3a\xc0\x75\xe0\x5f\x94\xab\x0c\x5c\xc1\xda\x6a\x6b\x5b\x2c\xf4\x16\x7e\x54\xd5\xa7\x95\xed\xb7\x9f\xab\xc0\x4f\xbd\x1b\x89\x9e\x81\xf1\xa2\xb4\x4c\xf8\x81\xac\x5f\xf3\x2b\xe6\xd8\xe7\xab\x19\x29\xf5\x5a\xa5\x9b\x66\xf8\x15\x3b\x7f\x73\xf3\xfa\x03\xab\xd6\x6e\x5e\x8b\x5b\x45\xb8\x5f\x7b\xbf\x73\x1f\x41\x61\x8c\xda\xdf\x8f\xd7\x97\xd5\x95\x3c\x04\x81\x10\x93\xe9\x03\x32\x3e\x28\xb9\xa5\x46\x86\x9f\x88\x22\x6c\x16\x4a\x0c\x3f\x6d\x9f\x5f\x95\x54\x20\x74\xfc\x5a\xc8\xc4\x48\xe4\xaa\x77\x6a\xff\x4b\x2f\x4d\xc3\x85\x03\x37\xb8\x84\x04\x2c\x79\x61\xb7\x5b\xed\x6f\x86\xed\x56\xc2\xc6\xc0\x6f\xe1\x30\x81\xb2\xdf\x2a\xe7\xd0\x0e\x80\xb2\xb7\x98\x40\xd9\x17\x1b\xab\x9b\x2c\xb7\x81\xef\xea\x43\xaf\x14\xd5\xfa\x92\x6f\xdd\x2a\x90\x00\x90\x3d\xc5\x5f\x55\x54\xac\x28\xba\x1e\xff\x6d\x72\x03\xf5\x5b\x25\xbb\xdd\x46\x82\x8c\x91\x81\x45\xb2\x17\x32\xcd\xb0\x55\xbd\x6e\x40\x39\x27\xdd\xe6\xfb\x27\xf5\x0f\x39\x11\x2c\x50\xb4\xd6\x7f\x0b\x9a\xf0\x1b\x09\xe3\x51\x6c\xae\x7b\xb8\x69\xa7\x80\x51\x04\x94\xa7\x80\xd0\xf6\x02\xca\x95\x98\x9d\xfe\x9d\xc7\x02\x50\x85\xef\x88\xef\x24\x40\x80\xc0\x99\xa0\x62\x7d\xc0\x97\x04\xe1\x93\x8f\x81\x13\x57\xa2\xde\xca\x2f\x0f\x15\xdc\xda\x99\x72\xa8\x99\x4f\x85\x48\xbf\x20\xf1\x78\x2b\xc9\xc4\xe2\xb7\x6a\xe8\xef\x01\xfe\x78\x7d\xb9\xf8\xad\xd2\xa6\xe9\x86\xf6\x68\x43\xdc\xb0\x74\xbe\x0f\x6c\xd7\xe3\x13\xf7\x38\xa0\x34\xb7\xc6\xee\x4d\x84\xff\x88\xdf\x02\xbe\x7f\x66\x5b\x8f\x5a\x1b\xd2\x79\x24\xab\x0f\xd1\xea\x36\x70\x31\xa0\xbb\x58\xa4\xf3\x34\xd7\x67\xc4\x5d\x0e\xfa\x60\xd2\x38\x45\x42\x17\x44\x04\x50\xed\xc8\xad\x5a\x24\xfb\x94\x3a\x30\xc3\x75\x90\xc0\x4d\x2e\x32\x07\x26\x80\xa9\x34\xb0\xcb\x00\xb1\xc0\x8b\xc9\x69\xb9\x11\x19\x3a\x5a\xdc\xf6\xeb\x99\xd2\xef\xa7\x97\xa6\x47\xca\x7b\x25\xb7\x33\x08\x22\x81\x39\x5a\x10\xe7\x1e\x0a\xc1\xa1\x33\xa2\x90\xd3\x72\x01\x6a\x91\x46\x29\x0e\x78\x3e\x37\xb9\x82\x21\x8e\x73\xa9\xb5\x2a\xa4\xac\x7a\xab\x1d\x4f\xd6\x87\x0d\x68\x28\x73\xd6\x21\x2a\xbd\x3b\xd5\x04\xae\x9a\x97\x9c\x03\x99\x35\xa4\x80\x49\x01\xeb\x3b\x17\x15\x1c\xd5\x3d\x98\x20\x65\x6a\x31\x52\x54\xd2\x79\xb9\x95\xb7\x4a\xb8\x21\xb0\x66\x1b\xe9\x49\x4a\x29\x27\x2b\x70\xc9\x80\x0a\xeb\x8c\x2d\x9f\xa0\xb7\x7b\x13\x8e\xb7\x87\xf0\x03\xd8\x37\xa2\xce\xf5\xa8\x53\xc4\x84\x3c\x02\x1d\x43\x1b\x55\x7c\xea\x8b\x86\xbb\xb5\x57\xfa\x4e\x91\x92\x2f\xea\x36\x21\x6f\x51\x75\xd2\xf9\x3a\xac\x47\x6c\x2e\x88\xb3\xf6\x2e\x6c\xd6\x50\x5f\xc8\x15\x7d\x58\x35\x60\x33\x03\x18\x50\xab\x67\xa8\x7f\x61\x29\xc6\x29\xea\x3a\xbb\x57\xed\xa9\x08\xab\xc8\x94\x46\x00\x40\x11\x64\xb7\x97\x07\x47\x12\x0c\xd3\x35\x6b\x68\xac\x16\x55\xd2\x11\xba\x4d\x1d\x0e\xdc\xc8\xa4\xdf\x05\x46\x86\x57\x88\x5d\xa5\xeb\xee\x00\x85\xba\xbe\x9f\xc5\x89\xab\x06\xbc\x5f\x00\xf0\x43\x86\x06\x8c\x6b\xe8\x24\xba\xcb\x98\x22\x42\x71\x1a\x44\x19\xa1\xfd\x63\x17\xd6\xd9\xb0\x45\x11\x68\x49\x17\x12\x51\x76\x6b\xed\xb0\xec\xd4\x13\x94\x8c\x35\xaf\xea\xa8\x6a\x1c\xf1\xc0\xb1\x59\x77\x55\xe5\xbc\xee\xba\x30\xc6\x6c\x6e\x56\x48\xaa\x90\x0b\x9b\x0f\x06\xc2\x6d\xf4\x4e\x58\xb8\xcc\xcb\x07\x29\x2d\xd8\x4c\x10\xf4\x56\xb4\x0a\x24\x6f\xdb\x0b\xdf\x4b\xe3\x56\x0a\x6e\x37\xb7\x78\x3f\xb0\xa0\xaa\x83\x5c\x89\xe6\x65\x47\x6a\x46\x25\x06\x54\x9d\x9f\x3a\x30\x3b\xd9\x44\x96\x55\xa3\x6d\x01\x5c\xa1\x41\x1b\x60\x4c\x13\x26\xc7\x6d\x08\x0b\x6c\x32\x04\x70\x9b\x5e\x2c\x92\xd9\x71\x58\x15\x1a\x38\xac\x1f\x56\xd3\x03\xfd\xae\xd0\x7c\xab\x46\x06\xa9\xd8\x0f\x1f\x20\x87\x59\xa7\xf1\x96\xa8\x3e\x85\x75\xfe\xb9\x42\xd9\xa9\x8e\x57\x94\x17\x28\x4b\x21\xc7\x0d\x89\xd5\x5f\xad\x36\x35\xdc\xb7\xfd\x87\xd5\x06\x2e\xe7\xaa\xc2\x24\x65\xa4\x1e\x24\xc3\xb9\x03\xd8\xca\x2c\x3b\xdd\xb0\xf5\xdc\xa1\x5a\x59\xd8\x3d\xa0\x3d\x7c\xc9\xbf\x2b\xe7\x65\x20\x10\x64\x50\x11\x7e\x15\xea\x48\x2c\x84\xba\xea\x97\xfc\x9b\x52\x63\x52\x35\x98\x98\xf2\x91\x7e\x56\x55\xe0\xab\x17\x40\xd4\x83\x28\x00\xf7\xb3\x19\x29\x0f\x27\x75\xd8\xd6\x9c\xb7\xc8\xe0\x77\xd2\x7b\xd5\x1b\xbc\x4b\xc1\x2d\x9f\x17\xa5\xec\x88\x22\xa3\x0c\x61\x6c\xd9\xaa\xf0\x73\x95\x6c\x0f\xd9\xec\x70\xee\x1a\x29\x0e\x3f\xde\xb8\x56\xb4\xa7\x1d\xb1\xe5\xff\xa9\x0e\xae\x72\xaa\x19\x7a\x1c\xd6\x1b\xfa\x39\xaf\x9e\x25\x7d\xf1\xc8\xb4\x32\x5d\x06\xb8\xd2\x0a\xc4\x55\xb4\xc6\xce\xc4\x0b\xfc\xc1\x0a\xaa\x6a\x07\xd3\x97\xd9\x4f\xd2\x7c\xc6\xae\x90\xf9\x6c\xae\x98\x2a\xb5\x34\xda\x09\x44\x02\x8c\x0a\x5f\xd7\xc1\xb1\xbc\xb2\xbd\x90\xe6\x90\x2e\xfe\x54\x07\x07\x9f\xc9\xcc\x00\xdc\x29\x94\x0b\x60\x7b\xb5\xe4\xbb\xe1\x64\x54\xb3\x95\xad\x12\x77\x5a\x46\xc5\x56\xc6\x2e\xc5\xf3\x9c\x95\xa5\x85\x0e\x01\xc4\x20\x54\x64\x33\xb7\xc4\xd3\xec\x2d\x6b\x14\xfc\x46\x69\xbc\x9a\x35\xc0\x49\xad\x86\xae\xe3\x33\xf1\xe5\xd0\x75\x68\x22\x36\x35\x53\x0e\x55\xd0\x15\xf5\x25\xfd\xac\x86\x5d\x1b\x84\xd6\x34\x96\x1f\x21\x21\x8e\x65\x99\x9f\x09\xa3\x30\xaa\x5c\x2c\xaa\x34\x11\xbc\xcd\xa4\xd3\xee\xb0\xe0\xdd\x3c\x63\x90\x4c\x1b\xbb\x1d\x83\x24\xad\x1f\x50\x2a\xea\x38\x4c\x14\xda\x00\xc1\xd0\xee\xe5\x41\x6c\xec\x5e\x74\xda\xdc\x3a\x9a\xa9\x30\x4e\xb9\x60\x0e\x8a\x5a\xaf\xcd\xa0\x48\x54\x0a\x3f\xa7\xe6\xaf\x64\x33\x40\x16\x04\xcb\x03\x6b\xc3\xd0\xc6\x80\x36\x80\x58\x1e\x04\x48\x83\xc7\x8d\x15\xc6\x56\x0a\x6c\xa4\xc0\x97\xef\x60\x23\x91\xe8\xda\x47\xa7\xc4\x05\xda\x4d\xd0\x1e\x6b\x36\xd6\x3a\xba\x81\x48\xd4\x2f\xa4\x81\x32\x90\x88\x1f\x4d\x4b\xc2\x83\xb3\x76\xce\xf6\x1b\xb0\xcf\x69\x07\xd5\x74\xa5\x98\xa0\x69\x43\x5d\xd0\x55\xe3\x39\xe3\x44\xfb\x0c\xee\x13\xd0\x98\x5a\x6f\x51\x60\xfd\xc8\xd6\x1b\x30\xe1\x51\x16\x81\xec\x45\xd9\x9e\xf1\x2a\xa1\x7a\xf9\x0a\xef\x81\xc5\xc2\x4b\x21\xbf\xbb\xc6\xe9\x8f\x74\xc9\x76\x05\xbb\xc6\xfd\x88\xf9\x61\xf0\xb2\xfc\x77\x60\x7a\x10\xf5\x2a\x61\x8f\xd5\x23\x10\x52\x45\x14\x90\xb3\x0c\x37\xd7\x75\x94\xd9\x1e\xb5\x7e\xb2\x63\xb8\xdc\x5e\xba\xa2\xe3\xb4\xc6\x49\x74\x92\x70\x57\x54\x10\xa5\x4c\x7f\x9e\x9a\x46\xb5\xfd\xab\xb4\x84\xf1\x2d\x2a\x14\x53\x5c\x94\x4e\xce\x91\x62\x2a\xc7\x76\xf2\x31\x9f\x4c\xe5\x0b\xc2\xaa\xd8\xf8\x2c\x27\xbd\xbb\x5e\x83\x4e\xa4\x24\xc1\x13\xa2\x5b\x10\x58\x18\x05\x0b\xa6\x54\x89\xae\x2e\x2a\x46\x15\x8e\x2d\xf8\xc5\x29\x51\xeb\x76\xa3\xc0\x9e\x98\x92\x79\x07\x70\x2e\x2e\xfc\xd8\xc6\x4e\x11\x39\xc4\xbe\xbe\xa0\x84\x51\x3e\x77\x06\xb3\x81\x3b\xd7\x6e\xae\x37\x7d\x60\xdf\x55\x3c\x31\xb4\x41\x4b\xb6\x68\x90\x50\x90\x25\xf1\x02\xe8\x94\xd8\x4b\xbc\x04\x62\x2a\xf5\xc7\x71\xed\x69\x01\xfd\x5a\x5e\x1f\x61\xdf\xca\xed\xf3\x5d\x25\xdb\x16\x16\x77\x32\xec\x68\x81\x70\x94\x2a\xc8\x00\x95\x43\xa0\xe1\x47\x4c\xad\x8b\xcb\x2d\x87\x7a\xa6\xaf\xbf\xd0\x0a\xec\xc7\x7f\xc3\x5d\x56\x51\x55\xba\xcb\x8a\x8d\x1c\x6d\xad\x49\x2f\xa7\x7b\x4c\xb6\x2d\x70\x42\xb4\x96\x33\x7e\x86\x56\x73\x64\x6b\x42\x2d\x28\xbe\x84\xe1\xf9\x4f\x75\x00\xe6\x87\x56\x02\x9c\x49\xda\x09\x09\xb6\xac\x60\x00\x8f\xb2\x8c\x9b\x88\xca\xe5\x9c\x9f\xc3\xa5\x93\x53\x04\x0b\x8c\xa1\x34\x87\xc0\xe8\x83\xc5\x30\x32\xd1\xde\x8a\xb5\x8c\x26\x42\xf1\x40\x2b\x59\x71\x0d\x97\x6c\x1b\xbd\xde\x74\x07\xa1\xb7\x3b\xdb\x7b\x58\x49\x6c\xea\x90\x84\xd7\xf0\xd5\xab\xc6\xae\x8d\xfe\x1d\x06\x76\x8b\xa6\xce\xf1\xf2\xe4\x99\xf3\xbd\x35\xeb\xe7\x2f\xc0\x12\xea\x36\x10\x9e\x8d\xdd\xff\xf1\xd9\x53\x4a\x17\x17\x30\x85\x76\xf0\xe2\x95\xf6\xaf\x87\xe5\x63\x27\xd6\x83\x6e\xe1\xac\x7d\x26\x33\xdf\x0c\xb2\x9e\x42\x3b\xf4\xbd\x89\xc3\x02\x9e\x1a\xb6\x17\xce\x76\x77\x6a\x54\xc4\x6e\xb7\x38\xbd\xcb\x4e\x6d\x11\x12\xda\x0f\x06\x57\xca\xc0\xc8\xa9\x9e\xc6\xe7\xe6\xe6\xf5\x22\x2e\xf1\x34\x3f\x34\x6d\xcc\xa0\x16\x5a\x16\x62\x0e\x03\x70\x43\x3a\xd3\x74\x02\x81\x8a\x85\x4b\x01\xe3\x31\x2d\x05\xf3\xe8\x02\xb3\x32\xd1\xef\x80\xd4\x12\x50\x70\x71\x71\x16\xda\x81\x0c\x58\x48\x6b\x26\x5a\x5a\x5a\x58\xd9\xe2\x0d\x87\x0e\x8b\xd3\xc0\xb8\xc7\xe6\xc1\x72\x1d\xed\x6f\xa2\x68\xd8\x77\xa2\x67\xdc\x81\x8c\xa2\xd1\x88\x24\x9a\x36\x86\x29\xa8\x9a\x42\x9a\xc6\xad\xc8\xa9\x19\x9a\x96\x22\x45\xc3\x05\xa9\x1c\xd0\xeb\xaf\xa4\x66\x93\x7a\x53\xc7\xb9\xba\xaf\xa0\x68\xd0\xa7\x73\x18\x0e\x6b\x50\x71\x42\x13\x75\x29\xd1\x10\x0f\x32\x8c\xad\x33\x31\xef\x9d\xa5\x2b\x60\xc1\x89\x30\x27\xce\x07\x56\x25\xdf\xca\xa1\x11\x60\xb4\x8f\x46\x87\xa0\x79\xf9\xdf\x44\x2b\x0f\xae\xf2\xf6\x56\x99\x99\x22\x90\x7e\xac\x50\xf5\x95\x97\x7a\xd9\xad\x55\xa8\x61\x70\x28\x6b\xfa\xc1\xfd\x9c\xe7\xa1\x2f\x5d\x01\x6e\x57\xab\x90\xb6\x5a\x55\xc5\xbd\x19\x59\xd6\xa1\x19\x66\x9e\xc5\x6e\x07\xd1\xca\x34\xcf\x04\xcb\x9c\xe2\xba\xcc\xb1\x8d\x0e\xd8\xd4\xcb\x72\xcf\x86\x5d\x4b\x04\x29\xbb\x51\xc3\x9d\x1b\xa8\x96\x70\x72\xa5\xc4\xae\x93\x8d\x5a\xb0\xc3\x0d\x58\xd8\x02\x71\x0b\x87\x33\xdf\xec\x69\xbc\x1f\xef\xac\x53\x63\x62\x37\x52\x4c\x66\x72\xe2\x22\x6f\xfa\xc6\xfb\x1d\x1a\x72\xe4\x3e\x01\x89\x65\x20\x73\x01\x60\x7f\x44\x67\xcd\x5a\xf5\xd1\x4e\x34\x34\x69\xd7\x49\xb2\x32\x85\xdd\x1b\xba\x1b\x79\xa1\x68\xa5\xc0\x26\xa1\x2d\x14\x49\x23\xf1\xe9\xc7\xcf\xee\xe4\xd3\x4f\x9f\xdd\xa3\xe7\x57\xaa\x77\x60\x84\x7f\x8e\xdd\xf8\x10\x96\x07\x8c\x88\x74\x74\xcb\xdd\xab\x36\x74\x48\x76\xa7\x42\x2d\xd6\x0b\xf1\x2c\x0c\xc1\xf3\x93\x4f\x7f\xf8\xec\x9e\x3d\x85\xdf\x8b\xe9\x64\x26\x2b\x7e\x9c\xdb\xaf\x5b\x4b\x8d\x34\xf5\xdf\x46\x9e\x61\x0f\x8c\x2a\xd8\xf4\x85\x89\x0a\x07\x2f\x30\xf5\xe5\x12\xe4\x5b\x59\xa7\x9a\x5e\x79\x90\xe3\x51\xff\x89\x32\x2e\xa4\x16\x25\x42\x45\xd3\x9b\xdc\x0f\x1b\x65\xa8\x1c\xa7\x16\xa5\x48\x3f\xc8\xb7\xa7\xd5\xcc\xbd\x6e\x89\x2d\x2d\xa6\x91\x46\x36\x1a\x0d\x44\x46\x24\x5a\x7a\x7c\x57\x15\x77\xd3\x61\x07\x7f\x15\xd6\x59\x0d\x7d\x89\xde\x10\xcf\x6a\xd4\x77\x33\x93\xc9\x97\x2e\xd3\xc9\x94\x47\xd5\x97\x53\x2c\x89\x80\x1e\x47\x00\x16\x14\x06\x65\x82\x31\xb1\x1e\x91\xd7\x63\xf7\xf4\x2e\xae\xbd\xa3\x8b\xae\xbc\xc8\x77\xf7\xa0\x22\xd2\x59\xdc\xc1\x93\x57\x40\xa0\x9f\xd1\x21\xd0\xab\xc0\xc9\xc8\x5e\x77\x87\x6f\x25\x0b\xe2\x57\xd9\x6c\x4a\x9a\x04\x94\x87\xcd\xc3\xe9\x8c\x68\xd4\xa9\x78\xb6\x7c\x4e\x93\x76\xab\xd4\x8e\x58\x32\x6c\xd2\x88\x80\x3d\x7b\xba\x2c\xb7\x65\xaf\xd0\x87\xcf\xab\x29\xc5\xbc\x8e\x79\xf7\x0e\xcc\x11\x04\x71\x75\x64\x68\x4a\x0a\x7b\x64\x59\x1c\xc7\x58\xf2\x18\x23\x64\xf1\xd4\xe5\xd2\xe3\x73\x77\x7a\x7c\x24\x5f\x57\x3a\x4e\xbe\x8a\x1c\x71\xe1\x39\x3b\xb1\xa8\x3d\xec\xd4\x9d\xea\x90\xf1\x68\x03\x31\x01\x43\x8b\x55\xa0\x13\x51\xb6\xf5\xc7\x56\xfb\x3d\xdc\xc7\x4c\x33\xbe\x76\xfb\xc4\x7a\xcb\x51\x61\xd9\x01\x17\x66\x8d\x7c\x40\x94\x1f\x66\xcf\x01\x57\xc5\x09\x0a\x6c\x2b\x17\x79\xc5\xb3\x1c\x26\x07\x00\x91\xdb\x88\xbb\x05\x0b\x27\xa5\x7f\x9a\x28\xe0\xf2\xc9\xcf\x0a\xd6\xb5\xb7\x71\xa7\x6c\xd0\xc0\x59\x9c\x5f\xbd\x71\x8b\x2a\x56\xc8\x48\x61\x97\x60\x13\xf6\xa8\xf1\x07\x33\xe8\xae\x9b\x6c\x35\xd6\x9f\x61\x71\xe2\x6e\xa1\x4d\xc8\xdf\xc6\x4e\x4d\x3a\x84\x9d\x29\xf3\x71\xdc\x95\xcb\x56\x00\xd6\x06\x2d\x19\x0b\x6a\xb1\xab\xdf\x89\xb7\xe9\x16\x2e\xcc\xec\xee\x10\x44\x9f\xe8\x8e\x71\x4a\x07\xac\xd8\x83\xf0\x32\x72\x03\xd1\x1e\x29\xbe\x08\xfc\x6b\x1f\x99\x67\x6e\x30\xb1\xcf\xf9\x54\xe6\x3c\xf4\xec\x64\x26\x8e\x7a\xb6\xd8\x1c\x5b\xbd\x63\x3c\x65\x9f\x1f\x62\xb2\xed\xaa\xa4\x6f\x47\x17\x79\xde\xab\x6c\x79\x5f\xcd\x56\x1b\xb7\x3d\x56\x3d\x5a\xde\x02\x65\x40\x34\x95\x05\x26\x09\x15\x8b\xb8\x22\x32\x76\x41\x3a\xb1\x57\x5d\x97\xaf\x0e\xbc\xe2\x71\x71\x91\x8c\xe4\xa6\x42\x66\x72\x8b\x0a\x2e\x04\x16\x26\xc8\xbe\xe8\x88\x13\x95\x54\x74\x8b\x05\x03\x60\x0e\xc5\x35\x95\x5b\x60\x31\xb8\xfc\x8a\xe4\xe8\x92\xae\xc2\xb2\xa8\x0e\x19\x54\xe6\xeb\x83\xfe\xa7\xe5\xb9\x82\x63\x9f\xdd\x1b\x81\x3f\x80\x92\x5b\x47\x04\x08\x58\x54\xb5\xa2\x9b\xe5\xac\x92\x7b\xa6\x04\xaf\x40\xb0\x01\xdc\xc0\x3c\x6d\xd4\xf4\x74\xbd\x58\x00\x3d\xd0\xf2\xd1\x4d\x7a\xd9\xda\x7b\x1a\x97\x57\x51\xe8\x50\x90\x18\x40\x5f\x33\xbc\x20\x93\x8e\x88\x20\x2d\xb9\x64\x1b\x47\xeb\xbd\xb0\x24\x26\xa0\x4c\x95\xaf\x12\x6b\xce\xb4\x3e\xdd\x5d\x32\xb2\x9d\xea\xb7\xd2\x80\xe5\x2e\xde\xb3\xb0\x7e\xe2\xe2\xfc\xdd\xbb\xf7\x1f\x92\x5a\x22\x10\x3f\xd3\x02\xaf\xc5\x0e\x4f\x93\x76\xb1\xdb\x53\xdc\xb5\x25\x44\x72\xbc\xa2\x12\xc7\xe0\x72\xd9\x2f\x33\x72\x5e\x5b\xd0\xda\xc0\x7d\x35\x4b\xaf\x45\xfb\xdb\xa3\x2b\xe4\x53\x18\xe2\xcf\x15\xdf\xfd\xbf\x0f\xff\xab\xdc\x7c\x22\xb3\x68\x01\x7a\x9b\x0c\x5f\x92\x47\xbe\x58\x5b\xdb\x4e\xcc\x29\x40\x2c\x1d\xc0\xe9\xac\xb1\xdb\x9d\x05\xce\x67\x25\xc0\xea\xf5\x34\xec\x2e\xdb\x03\x95\x04\x91\xc6\xe8\xbf\x0d\xa0\x90\x02\x23\xd5\x45\x75\xa7\x9d\x5e\xea\x0e\x45\xe8\x3f\xc5\x0f\x4c\x0f\xbf\x46\x3e\xd9\x59\xe5\xda\x89\x67\x6e\x27\x8d\x68\x3a\xe9\xdc\xd9\xa3\x41\x8b\xc0\x37\x7b\xf5\xc5\x3f\x7a\x7e\xd5\x83\x7d\xe4\xb3\xa7\x01\xe2\xf9\x04\x5d\xbd\xb2\x7d\x83\xb7\xad\xd1\x12\x1c\x88\x15\xa5\x87\x6d\x6a\x80\x8b\xc9\xb6\x2a\x0e\xfc\x3f\x51\xe7\xca\xf6\xb7\xa9\x1f\xdf\xd3\x05\x83\x5d\x21\xc1\xbe\x93\xdd\x50\xde\x36\x85\xda\x43\x19\xf7\x43\x05\x0e\xe7\xa9\x2c\x38\x09\x40\xa8\xa1\x90\xa1\xcd\xfa\x8f\x30\x68\xfe\xfe\x20\x26\xaf\x55\xb7\x0b\xe2\xe1\x77\x15\xb4\x84\x6e\xe5\xc7\x51\x6b\x20\x8f\xbd\xb1\x43\x1e\xb8\x64\x43\xea\xcc\x6c\x64\xb1\x2d\x64\xc7\x92\x59\x36\x9b\x81\x9c\x42\x27\xf2\x9b\xec\x03\x19\x54\xc5\x63\xcb\x35\xbd\x06\x8f\x72\x4c\xef\x24\x5c\x70\xc7\xb0\x45\x90\xb8\xd6\x5e\xaf\x8d\xed\xb3\x61\xb8\x01\x93\x21\xb1\x88\x59\x82\x03\x21\xb9\xaa\xd3\x8d\x32\x0e\xa8\x1d\xfe\xe2\x94\x49\x71\x29\x18\x16\x2e\x1f\xc3\x81\x41\x5b\x21\xfc\xa0\xef\x99\x52\x04\xc8\x55\x56\x72\xf0\xb6\xd6\x46\x7b\xf0\x25\x8a\xae\x67\x7e\xb4\x5e\xf1\x84\x62\x63\x27\xf4\x9b\x46\xea\x4f\x78\xc8\x1d\x88\xa6\x87\xfc\x80\xb2\x09\x22\xef\x65\xb2\x73\x80\xf1\x83\x04\x81\xa6\xa2\x14\xf3\xa8\xde\xf5\x83\xc1\xbb\xf6\xc1\xa8\x22\x31\x09\x46\xc8\x07\x98\x03\x45\xd7\x78\xe2\x7b\xd9\xdc\x06\xe2\xd2\xab\x95\xea\x95\x69\xc0\x61\x41\xfa\x4c\x91\x81\x26\x15\xd6\xd0\x41\x10\x8a\x31\x72\x1d\x44\xd6\x3b\xf0\x9b\x41\xff\x2b\xf1\x86\x53\xbe\xdf\xd8\xa1\xff\x81\x01\x59\x55\x1e\xe1\xe8\xc2\x67\x94\xcf\xed\x24\x85\x02\x59\x1d\x0a\xa3\xc2\xa1\x20\x7b\x74\xe8\xce\x74\x1c\x8e\xdd\x62\xa3\x0b\x22\xe1\x03\xd5\x9d\x3b\x98\x26\x29\xef\x6e\xe0\xab\xda\x4b\xdf\x6c\xd0\x06\xe3\xcf\xf4\x13\x4c\x30\xd6\xf2\x77\x4c\xbd\x89\x1f\xb0\x05\x1c\x6d\x0a\x97\x16\x30\xad\xdc\x2c\x94\x43\x4a\x2c\x8c\x59\x0e\x0b\xf1\x56\x7e\xd1\xdb\x61\x2b\xfe\xfd\xc7\x9f\x32\x1b\x4d\x72\x04\x58\x4c\x71\x92\x87\x00\xd8\x42\x90\x0b\x6b\x2a\x46\x26\x1d\xbd\x92\xcd\x86\xdc\x56\xec\xaa\xc6\x20\x32\xc0\x4a\x7e\x88\x46\x69\x81\xa4\x01\x9c\x6a\xc5\x96\xda\x10\x01\xa1\x68\x68\xe9\x49\x69\x6c\xb2\x98\x37\x19\x19\xdb\x3c\x7e\xbb\xe5\xc8\x18\xc3\xfd\x06\x24\x46\xa9\xb6\x0e\xa2\x12\xd3\xbd\xc2\x82\xba\xa2\x98\x5d\x1c\xf4\x28\x06\xed\xc2\xa8\x47\x79\xee\xf1\x23\x24\xba\x4e\x97\x54\x1d\xfc\x20\x97\xdd\xa0\x1e\x3d\xc7\x85\xc4\x24\x9d\xb1\xd2\x16\x7d\x4b\x61\xc3\xb2\x3d\x4a\x10\x0b\xa4\xdb\x69\xbd\x5f\x40\xe0\x90\xb4\xdc\x67\xa0\x8a\x53\x9f\xc4\x2d\x99\x29\x1a\x9f\xbe\x7a\xf3\x01\xec\x70\xef\x29\x5e\xe3\xdd\x4c\xcd\x6e\x6c\x7f\xc1\x50\x58\x10\xe3\x23\xbb\x8e\xe5\x78\x67\x32\x1f\x8c\xe5\x01\xe3\x36\x70\xfc\x96\x9d\x0c\x4b\x93\xeb\x0a\x7c\x86\x76\x0e\x85\x0e\xa3\x61\x3e\x0b\x3e\x3a\x61\xc7\x36\x10\xb2\x72\x61\x31\xb6\xe4\xf6\xda\xc8\x8e\x7d\x5e\xdf\x60\x22\x15\x0c\x89\x70\xf1\x54\x5a\x6d\xb1\x8b\x8e\xcc\xc3\xfd\x30\xda\x68\xa0\x97\x56\x43\x6e\x9b\x47\x54\x81\xce\x38\x0a\xec\x66\x57\x15\x1e\x53\x9c\x4e\x87\x56\xf8\xaa\x82\x04\x58\x77\xda\xdc\x02\x73\xb7\x3b\xa4\x84\x8c\x97\xbd\xb0\x3b\xad\xda\xef\xb2\x3c\x56\xae\x5c\xc1\xec\xff\xbf\xff\xf7\xff\xf3\xe4\x22\xb4\xfb\xc2\xf7\xdd\x93\x0b\x96\x2c\x03\x3c\x8e\x23\x22\x10\xef\xff\xb3\x1a\xcc\x9e\xec\x65\x3f\xe2\xaf\x8a\xbf\x81\x4a\x55\x83\x71\x64\x82\x01\x3f\x2a\xfa\x0a\xc4\xaa\xa2\x80\x74\x81\x4a\x55\x95\x89\x87\xec\x3b\x5b\x9c\xb3\x7f\x1b\x74\x73\x5b\xe3\x85\xda\x99\xf8\xaf\xf0\x25\x20\xc8\x19\xb1\x1a\xe1\xd4\x8a\x47\x10\x2c\xda\xd1\x39\x96\x7b\xad\x02\xdd\x22\xef\xfb\x74\x64\xc9\x92\x75\x3a\xf0\xa1\xc1\x80\x9d\x36\xaa\xda\x0d\x6e\x83\x32\x1c\xd7\x76\x35\xb8\x0d\x84\x70\xf9\x82\x21\x82\x72\x0c\x30\x35\x13\x1c\x4b\xd9\xab\x7a\x1b\xbd\x1c\xc6\xbb\x3b\x2e\x1c\x72\xa4\x4b\x57\x72\x07\xe5\x17\x55\x85\x47\x30\xba\x39\xb8\x2a\x9e\xaa\x74\x9a\xfa\x5e\x01\xd2\x5e\xa9\x00\xe9\x55\xcf\x06\x86\xd2\xb4\xb5\x97\x6b\x2c\x19\x58\x1f\x2a\x6a\x7b\xe1\xe5\x9a\x10\x01\xe6\x5f\xe8\x67\xe5\x25\x98\xa3\x7d\x90\xeb\x69\x74\xbc\xdd\xd0\x75\xd3\x18\x7a\x9d\x5c\x2a\x48\xbe\x84\x1f\xd5\x36\x34\xd2\x5b\xa3\xf0\xf4\xe4\x8f\xaa\x01\xe7\x0d\x17\xdd\x38\x5c\xb5\xd6\xcc\x22\x94\x6d\xa0\xe0\x07\xa8\x3b\xc4\x9f\x30\x04\x75\x2f\xf7\x21\x4d\xee\xf1\x73\xa3\x1d\xc5\x5a\x7c\x8d\xbf\x30\x19\xef\x6d\x00\x14\x2e\x6b\x22\x3c\x48\x20\xb4\x47\xae\xf8\x37\x66\x79\x1b\x78\xba\x3e\xcd\x0e\x9b\xf3\x78\x6b\x05\x66\x20\x53\xed\x36\x76\x6f\xaa\x3b\xdd\x2a\x0b\x67\x06\xc5\x63\xc0\x68\x93\xcb\xde\xee\x1d\x33\x9d\x61\xb4\xf1\x33\x4c\xaf\x79\x9c\x62\x37\xbc\xfe\xf0\xf6\xf2\xdf\x05\xe0\x08\xf3\xb0\xa8\xe2\x4c\x2c\xec\x9d\xea\x29\x68\xc8\x7b\xfa\x99\x32\xc9\x5d\x35\x1b\x32\x30\xd5\x54\x69\xe4\x22\xa8\xf3\xb2\x2b\x20\x6f\x42\xc2\x0c\x20\x46\x34\x3c\xef\xba\x99\x3c\x32\x44\xaa\x97\x87\x68\x4a\xd5\x0a\xb8\xde\x09\x24\x18\xae\x78\x12\x30\x9b\xdc\x8c\x59\x3f\x92\x21\x46\x1c\x60\xa5\xda\xb0\xf4\x17\x10\x9f\x12\x2d\xec\xde\xa9\x3d\xb2\xb7\x94\x85\x76\x57\x75\xb4\xbf\x03\xff\xa5\x1c\x20\xfc\xe3\xec\x5f\x5b\xed\x8b\xcc\x5d\xaf\x60\x1d\x60\xb3\x1c\x92\x38\x18\x59\x6c\x90\x63\x40\x14\x0d\x6a\x40\x66\xac\xa9\xc3\x91\x5a\xf3\x86\xbb\x40\xb9\x21\x64\x0a\x63\xcd\x13\x38\x6f\x21\xb3\x68\x04\x90\xa2\xbc\x25\x9e\x97\x10\x83\x6d\x07\xe7\xeb\xa5\xaa\xad\xa9\x65\x1a\x9b\xbf\xb0\xdd\xf0\x12\x5c\xd1\x24\xef\xcf\x70\xf0\xc9\x5b\xf4\x5e\xe8\x6d\x10\x54\x05\xf7\x83\x43\xc8\xe5\xc8\x41\xf2\xc1\x30\x8f\xd0\x8f\x1c\x33\xd0\xda\x31\x83\x4f\x21\x21\x03\x2c\x9b\xd5\xe7\xf8\x58\x71\x96\xf5\x2a\xd7\xdb\x4d\xfa\x15\xa8\x56\x0d\x11\xc1\x48\xfd\x9b\x37\x00\x48\x1a\x86\x0b\x4b\x2a\x9a\x6f\xea\x1d\xda\xac\x42\x93\xd2\x51\x06\x1e\x5f\xa5\x59\xc0\xfc\x35\x39\x2f\xb4\xc0\xec\x81\xa3\x37\x2f\x37\xf2\x82\xe8\xa1\xb2\xc5\x62\x91\xd7\x17\xd5\x09\xa0\xb5\x0b\xdc\x7a\x3a\xc4\x4f\x31\x84\x17\x70\x73\xda\xe3\xdd\x28\x9c\x9e\x4f\x17\x01\x96\x55\x97\x79\x81\xb5\x65\xbd\xd4\x52\xad\x35\x06\xfb\x04\xa1\x5a\x51\x90\x91\x84\x64\x29\x9b\x5b\xb7\x93\x10\xf3\x11\xdb\x03\xe7\xb3\xed\xb3\xf5\xda\xa8\xae\x06\x63\x6c\x71\x26\xf0\x33\x66\x02\x65\xcd\x16\x3d\x79\xcc\x8d\xd6\xbc\x6c\xdb\xda\x6f\x77\x6c\xe5\xf4\xf8\xc4\x3d\x7d\xc6\xdd\x7e\xfe\x38\x83\x4a\x00\x8f\xd3\xb6\x6c\x31\x00\x2d\xd9\x56\xe6\x79\x63\xd3\xe4\x3c\x8f\x9a\x46\x87\x60\x0c\x72\xdc\x82\x8f\x3a\x47\x6f\x13\xea\x8b\x57\xa6\x55\xad\xc8\x64\x8c\x6c\x6e\x08\x09\x0e\x6d\x77\xa8\xbd\xc5\x55\x9a\xa8\x0d\xf6\x97\x01\x78\xd8\x49\x55\xc6\x6c\x33\x82\x3f\x09\xdd\x7d\x04\x6e\xe9\x51\x75\x06\x19\xa9\xba\xc4\x40\xa4\x1a\x98\x75\x60\xf5\x9b\x89\x1e\x8f\x09\xcf\x0a\xc2\xb9\x81\x03\x0c\xb4\x07\xec\x05\x30\xa8\xa7\x08\xa7\x28\x7b\xe8\x2f\x72\x3a\xc8\x5e\x01\x60\x05\x4d\x2c\x51\xe9\x4d\x99\x8f\xc4\xc8\x52\x77\xbc\x78\x89\xac\x2d\x15\x06\xe5\xa4\x1d\x03\xc2\xcc\x24\xfe\x26\x95\x65\xa6\x01\x15\xd2\x49\x6d\x8d\x24\x1b\x37\x5b\xa9\xad\x8e\x01\x64\x73\xbd\x09\xaf\x05\x5e\xfe\xb5\x76\xb5\x8c\xd4\xd1\x78\x56\x9d\x92\x24\xbc\x93\x64\x38\x8a\xd1\x63\x24\x9e\xbc\x23\xc6\xf9\xbe\x8a\x80\x3e\x40\x1d\xee\xb0\xa5\xd3\x3d\x46\x62\x65\x81\x4d\x0a\xce\xe4\x3b\x22\x1a\x02\xf0\xee\xd5\x1c\x8c\x01\xac\xa7\xd5\x52\x10\xea\xc9\xa8\x42\x35\xa9\x55\xa9\xa2\x42\xce\xcc\x59\xc3\xaf\xef\x02\x51\xe3\xda\xd8\x1a\x15\x19\xd9\xc5\x41\xd1\x1d\x36\xdd\x60\xf2\x3d\xd2\x7c\x44\x1d\xc3\xb1\x8a\xc8\xa2\xb6\xde\x6f\xb2\x6a\x99\xa4\x4e\x6c\xc1\xd8\xfe\xd6\x69\xd3\xa8\x14\x9d\x56\xb5\x5c\xff\xe2\x7e\x95\x5e\x0a\x41\x00\x76\x1f\x74\x03\xb5\x0f\xb3\x00\x47\x43\x51\x89\xed\xe3\xb6\x42\x72\xc8\xfb\x67\x2d\xb5\x49\xdb\xcb\x5b\xf0\x45\xc2\x53\xc5\x6f\xb2\x13\xa4\xec\xe9\x64\x29\x9f\xe3\x30\x82\x82\x2b\x4d\xd9\xd7\x2f\x6a\x63\x99\xb6\x06\xd2\x13\x78\x41\x9c\x9d\x20\xb9\xa2\x31\x4d\x76\x92\x85\xec\xd4\x1e\x88\x3d\x69\x6b\xb2\x08\xa7\xed\x90\x22\x41\x61\xfa\x53\x32\xaa\x49\x93\x0d\x4d\x45\x2f\xd4\x20\x19\x8e\xb0\xd1\xb1\x38\xc1\x46\x84\xf8\x21\x34\xe1\x1c\x70\xc3\xb2\xd5\x3d\x91\x62\xfc\x20\x61\x35\x11\x1b\x72\x61\x83\xe6\x47\xa6\xcc\x8d\xda\x1f\xf9\x33\xc7\xb6\xae\x47\x6a\xcd\x71\x40\x27\x74\x5f\x32\x78\x11\x41\xc5\x42\x03\x13\xfe\xc4\xf1\x13\xa1\x67\xc6\xbf\x84\xcb\x85\x0c\xce\x19\x85\x36\xa2\x95\x95\xf2\x57\x1a\x24\xc3\x97\xda\xb4\x31\x4d\x82\x1e\x27\xba\xc4\xc7\xf4\x24\xc9\x91\xe7\x7a\xcc\xa1\xb3\xf1\x05\x68\x49\x29\x8d\x23\x5a\xbd\x0f\xff\x63\xaa\x51\x7b\x52\x94\xef\x55\x1f\x23\x3e\x61\xdc\xfb\x40\xf6\x41\xe6\xca\x92\x17\x63\x39\x2b\xcb\x0a\x24\x23\x24\xa2\x10\x0d\xf9\x79\x76\xd3\x29\xd9\xd7\xb1\xfc\x45\xf8\x14\xdd\x04\x4b\x14\xdc\x72\xb9\x6d\x54\x4d\x0e\xf3\xce\xce\x83\x61\x75\x39\x24\xd6\xb8\x9d\x03\xb6\x3b\x65\x0a\xd8\xf7\x3b\x65\x72\xb1\xb1\x40\x6c\x9d\x6a\x47\x98\xe1\x16\x67\x1e\x5e\x3a\x88\x98\x08\xf7\x58\xf4\x73\xda\xce\x0c\x08\x9b\x29\x67\x40\x8d\xcd\xe1\xde\xd9\x09\x10\xed\xdb\xc8\x1e\x8c\x67\x2f\xcd\x8f\xda\x4f\x26\x08\x33\x6b\xb0\xac\x89\xf1\xcf\x00\x28\x9e\xfa\x45\x35\x11\x19\x55\x56\xe0\x43\x5c\xf1\x96\x61\x11\x6f\x54\xc3\xee\x92\x81\xcb\x6c\xd5\x0a\x1c\x03\x9d\x02\x9d\x6a\xb9\x10\xc6\xc5\xb5\x59\xd9\x9c\xc6\x05\x39\x56\x9a\x03\x95\x02\xfd\x44\x34\x66\xc4\x28\x3c\xa4\x43\x79\x14\x7b\xfa\x88\x83\xf2\xc8\xa5\x45\x1f\x4d\x1a\x2d\x74\xe4\xc4\x40\xe8\xe3\x86\x51\x00\x9f\x23\xad\x9a\xb9\x20\x81\x21\x71\xca\x1f\x2b\x32\x38\x72\xb0\x42\xe2\xfe\x20\x3c\x93\xd8\x5c\x08\x4d\xe4\x0e\x68\x15\xe2\x88\x2f\x5b\x44\x6a\x8b\x21\xf8\x10\x2d\xac\x6f\x2f\x97\xe2\x4c\x9c\xb4\xb0\xb8\xe3\x5c\x86\xa5\x9b\xb2\x70\x25\x73\x26\xe9\x71\x78\xa2\x8b\x19\xce\xf3\x02\xb7\x80\x37\x35\xb8\x2e\xe3\xad\x4d\x37\x53\xe2\xde\x0d\x3e\x86\x39\x8a\x79\xb2\x8d\xa9\xe4\x3d\xbb\x2d\x41\xac\xb5\x51\xc7\x51\x1f\x29\x47\x8a\x73\x50\x97\x4f\x73\x16\xb2\xeb\xea\xa8\xaa\x3a\xef\x3a\x81\x1f\xb3\xa0\x8e\x9e\x06\xf1\x36\x08\x83\xa9\xa9\x2d\xd9\xf7\xcc\x15\xc2\xd5\xda\xd6\xcb\x03\x95\xc1\x6d\x07\x01\x7b\x8f\x14\xd9\x2a\x13\x24\x97\xc0\xce\x61\x91\xb7\x31\x61\xa6\x88\xa3\x90\x95\xb6\xf7\x33\x39\x0b\x58\x8f\x9e\x8e\x0a\x37\x0b\x12\x88\x06\x80\xbc\x87\x1f\x73\x20\x68\xf2\x1d\xa5\xb7\x6b\x0a\x02\xc6\xde\x66\xb3\x15\x2b\xe9\x52\x89\x4b\x85\x9e\xf7\x0f\x97\xdb\x5a\xe7\xc3\x31\x87\x16\xfe\x6f\x2d\x04\xde\x80\xcf\x7b\xea\x49\x05\xb0\xa2\x49\x89\xb0\x93\x58\x19\x85\xbf\x93\x2e\x2a\x33\x3e\x06\xbb\x63\x32\x1f\x96\xcf\x27\x85\xeb\x95\xbc\x55\x33\x18\x50\x9b\x45\xd0\xa0\x3c\xb2\x43\xd4\x1a\xd9\x21\x3b\x57\xbe\xe0\x54\x7c\xf1\xe5\x16\x8f\x61\xc7\x47\x3b\xbc\x8d\x59\xe5\x0e\x37\xc3\xb6\xa6\x3e\x3a\xa4\x00\xfc\x15\x8b\xf3\x08\xd4\x32\x54\xf9\x5b\xfc\x4e\xdd\xfd\xb7\xc0\x61\x9f\x40\x4f\x7f\xe3\x62\xec\xdd\x88\xd0\x59\xa0\xef\x73\x72\x7a\x89\xde\x2f\x6c\x7d\xd1\x66\xca\x1d\x2a\xf6\xc7\xd8\x4c\x9b\x39\x6b\xe0\x29\x00\xf7\x5f\xa5\x86\xba\x20\x69\xf0\xc1\xfd\x2d\xb3\xb8\x51\x11\x84\x26\x1d\x9c\xfb\x72\xf0\x5e\xc1\xa8\x32\xdc\x35\x7c\x8e\x32\xef\x43\xd6\x17\x05\xe8\xd8\x4c\x4b\x8c\x40\x47\x13\x45\xc3\x8c\x2c\xc5\x33\x29\x74\x4b\xd6\xec\x8f\xe2\x70\xc3\xd7\x73\x58\x2c\xc5\xa0\x63\x7d\x11\x07\x7f\x7e\x23\x16\xe2\x72\x7b\xb5\x8a\x78\xe8\x92\xbb\xc5\xd9\xc1\xae\x62\xb8\x0b\x96\x8d\xbe\xad\x8a\x9d\xa5\x77\x9b\xae\xe0\x47\xaa\x99\x63\x9a\x02\xbf\x7b\x91\x7d\xc6\x65\x5e\x58\xe4\x50\x22\x07\xab\xe6\x18\x4b\xa4\xb7\x28\x5c\x99\x28\xca\x27\x8b\x7f\x7f\xb5\x2c\x60\x35\xd6\xdc\xa9\xde\x91\xfb\x02\x61\x24\x05\xe6\xaf\xad\x4e\xd3\x33\xd2\x75\x70\xdd\x68\x44\x76\x23\xef\xd4\xe8\x10\x67\x96\x27\xb2\x50\x65\x7e\x63\x3b\x9b\x58\x2c\xf8\x1a\x03\xa0\x95\xd4\x49\x3b\xcb\x1d\xa5\xa5\x49\x3b\x17\x22\xa3\x97\xa7\x0e\x42\xce\x74\x06\x33\x46\x9a\xb2\x32\x33\x46\x1c\xc3\x06\x42\xdc\x31\x36\x20\x9e\x62\x21\xcf\x75\x00\x8d\x66\x5a\xb3\x60\xf3\x1e\x9b\xc8\x63\xe4\x66\x97\x1a\x84\xe0\xe4\xa5\xa9\x4d\x61\x89\x49\xb8\x8f\x1b\xd2\xcd\x57\x9e\x74\xb7\xd8\xd6\x07\xf4\xb6\x19\x99\xdc\xc9\xde\xeb\x46\xef\x64\x24\x95\x57\x59\x0a\x43\x4a\xef\x65\xb3\x09\xdb\x3a\x67\xba\x7e\x43\xfd\x03\xa9\x1d\xc2\x7a\x44\x5b\xf6\x20\x68\x79\xb9\xfc\x6d\xa6\x74\x0c\xa5\x9d\x97\x8e\x89\x01\xc5\x6f\x15\xde\x85\x65\xe2\x5a\x7e\x27\x46\x99\x8d\xdd\xee\x64\xaf\x4a\x6d\x6c\x48\x89\xea\xd8\x59\x38\x9e\x25\x06\xf6\x7b\x2b\xe2\x45\x0e\x3c\x71\x16\x4e\xb0\x52\x8f\x08\x0a\xc7\xa8\x02\x29\xd1\x42\xe4\xee\x33\x88\xc6\x30\xae\x90\x6a\x38\x13\xf4\x8b\xf2\x8b\x4b\xc4\xf1\xe5\x21\xf7\xdc\xd6\xbd\x72\x43\x07\x33\x02\x1e\x65\xf8\xb1\xb2\x83\x69\x17\x11\x08\xde\x99\x0a\xdc\x56\xaa\x2b\x3b\x44\xf0\x15\x2a\xf2\x6f\x0d\xb9\x4b\xd5\xc8\xc0\xa8\x43\x9b\x43\x5f\x37\x4a\xb6\x59\xef\x7b\x05\x8f\x3d\x8c\xf1\x6f\x55\xbf\x8e\x1d\xfd\x1a\xfc\xc5\x98\x6e\x30\x66\x37\x7a\xd8\x76\x07\xd1\xea\x15\x50\x5d\x2f\x48\xdd\xc0\xd5\x6d\xa4\xab\xf3\xf7\xc4\xc2\x02\x89\xb5\xb1\x12\x69\x34\x31\x4b\xe5\xf7\x10\xed\x0a\x9c\x29\x42\xbd\xa8\x2a\x73\x3f\x8f\x3c\xa6\x9e\x42\x1d\x4f\x03\xe7\xd2\x12\xe1\xfe\x37\xf8\x40\xf2\x4d\x33\x37\x12\x33\x67\x56\x1d\x10\x3f\x5e\x43\x7b\xd8\x32\xde\x0a\x18\x21\xe0\x76\x5a\xd6\x7c\xe0\x31\xc2\xee\x56\x3f\x45\x77\x2b\xa1\x8d\xb7\x33\x6e\x58\x84\x1f\x30\x11\x53\xc3\xd5\x60\xda\xbf\x86\x5e\x9c\x7c\xfa\x1f\x9f\x79\x4b\x78\xb9\xac\xf3\xd3\x01\x2d\x56\xe3\x67\x01\x35\x56\xf8\xa4\xbc\xe2\xda\x9c\x75\x8c\x94\x4f\x3c\x84\xb7\xb8\x78\x92\x0d\x17\x66\x90\x85\x7a\x3e\x93\xde\x8a\x9d\xea\x03\x55\xa4\xd1\x8c\x36\xbb\x8b\x62\x68\x80\xdb\xef\x53\x4d\x61\xd5\xc4\x9c\x0f\x13\xb4\x91\x0c\x12\x4c\x49\x05\x11\x45\x2b\xbd\xac\x97\x3d\x9b\xe7\x4b\x2f\xa3\x4d\xe6\x3c\x2e\x82\x6d\x87\x14\x8d\x89\x6c\xbd\xe0\x3e\x30\x23\xee\xdc\x76\xed\x6a\xf0\x48\x47\x55\xf0\x07\x72\x33\xef\x74\xe3\x45\x4c\xd7\x8e\xc2\x21\xe1\x5b\x2b\x6b\x7c\xb9\x26\xbe\x50\xb7\xea\x95\xdb\xc0\xbb\x12\x01\x60\xa5\xf6\x62\x6b\x81\xa1\x8d\x14\x49\x9a\x1a\x4c\x10\x71\xbf\xe6\x56\x44\x45\x37\xc8\xa4\x88\x06\xa4\x78\x2d\x22\x43\x05\x16\x5b\x5f\x87\x0d\x3d\x20\xe6\xf0\x25\x8a\x10\x95\xb8\xdc\x6f\x77\xbc\xae\xf1\x13\x73\xb8\x1e\xb6\xd2\xa0\x71\xb1\x36\xc2\xf6\xad\xea\x29\xe6\x2e\x38\x77\xfb\xcd\x1c\x66\xe4\x4b\x11\x29\xb1\x73\xd9\x0d\x13\xa2\xc5\xf4\xb8\x6c\x03\x95\xe3\xcb\xde\x00\x80\x13\x76\x0d\xe9\x7c\xb1\x4b\xe9\x89\xdc\xc3\xa5\x59\x66\xf4\x17\xf5\xa7\xb9\xc1\x4d\xb6\x88\xc7\x64\x0e\x16\xf4\x1c\xb5\x81\x4d\x34\x18\x22\x0a\x50\x2a\x2a\xdb\x7f\x23\xbd\xd0\x63\x1f\x37\x0e\x6d\xae\x64\xed\x5e\x0e\x7f\x4e\x46\x0d\x72\x55\xc5\x54\x7e\xff\x6f\x27\xed\x0f\xf4\x18\x97\xdc\xaa\xa9\xcd\x6a\x48\xc4\x51\xcb\xf9\x97\x70\x90\x68\x07\x61\xae\xe1\x0d\x08\xdb\xf3\x08\x2d\x98\xb0\x92\xd0\x94\x19\xac\x02\x7f\xf6\x4b\x7e\xe4\x15\x30\x10\xbd\xcc\xa8\x7d\x46\x80\xe8\x9e\x2c\xdd\x2d\x31\x63\xc3\x9d\xd4\xb8\x43\x31\x5c\x04\x96\x42\xe7\x04\x68\xb2\x69\xd4\xa2\xca\xac\x67\x32\xe6\x22\x29\x6b\xb2\xec\x19\xcd\x52\x96\x3b\xaf\x5d\x1a\x03\xb4\x49\x85\x7a\xe2\x8a\xba\x6d\xdd\x0e\xaa\x26\xd1\xff\x9d\x05\x52\x12\xbe\xc6\x2d\x60\x91\x77\x8c\x39\xca\x7f\x65\x87\x6a\x37\x2c\xc3\x99\x8e\xd1\xa9\x71\xa1\x67\x06\x43\xde\xb2\x27\x09\xdd\xcd\x13\x77\x56\xa0\x1f\x9d\x81\xb3\x83\x13\x7d\x34\xc3\xff\x3c\x63\xc6\xa0\x3b\xcf\x4d\x7d\x7e\x31\x28\x50\xe3\x8b\xef\xf9\x72\xfa\x87\xb2\x93\x0a\x63\x10\x85\xff\x79\x46\x7c\x41\x85\x50\xd5\xb8\x0e\x09\x23\x20\xa7\x94\xf4\x56\xc6\x69\xb4\x02\x79\x7c\x38\x1c\x0e\x4f\xb6\xdb\x27\x6d\xfb\x78\xa6\xd7\x19\x13\x1d\xbb\x3d\xb2\x82\x20\x6d\xd5\xe8\x1c\xc9\x30\x65\x32\xc9\xfc\xd8\x81\x49\x4b\x3e\x4f\x1f\x41\x41\xbb\x54\x1e\xfc\x0e\x33\x32\x02\x3b\x29\xcd\x9e\x0b\x27\xa4\xdd\x75\x2a\x79\x9d\x05\x92\x87\xd1\x24\xf2\xbe\x8c\xe4\xb9\x2c\x6b\x14\x6c\xf9\xde\x06\x46\xab\x46\xe2\xaf\xed\x2a\x35\x66\x34\x28\xf8\xfc\xe2\xd1\x21\xc9\xe4\xa8\x34\xac\x51\x96\x9a\x01\x9c\x97\xa4\x52\xed\xff\x9d\xd2\xd4\x5c\xf5\x73\xcb\xe0\x01\x79\xaa\xda\xeb\x5b\x2d\xce\xc4\x9f\xf5\xad\x86\xdf\x0b\x0a\x8f\x9d\x85\xc3\xf6\x16\xb2\xbf\x2b\xf2\xb9\xaf\x21\x07\x2c\xe2\x36\xe4\x04\x2c\xf0\x45\x41\xf4\x32\x1c\xba\x56\x74\xfa\x16\xf9\x0d\xdb\x0c\xa0\x68\x39\x50\x30\xb4\xbf\x42\x64\x32\xbb\x56\xe0\x05\x1e\x65\x18\xed\x69\x51\x2d\xb0\x42\x5a\xe3\x10\x2c\xb1\xa6\xc7\xa3\x69\x93\xfb\xf8\xb8\x54\x48\x47\xf0\xfc\x79\x69\x48\x20\xb9\x85\xd2\x49\x6a\x49\xf0\x18\xdb\x2a\xc7\xfa\x8e\x1e\xdf\xc2\x7c\x36\x5d\x2b\x2d\x55\x42\xcf\xd1\x7a\x29\x08\x14\x4a\xc8\xa5\x1d\xc8\xc0\x8b\x54\xa3\x89\x40\x50\x3f\xe0\x8d\x20\xaa\xe9\x26\x08\x17\xa9\x0e\xb0\xf3\xa7\x0a\xe8\x6a\xe5\xc4\xc1\x4d\x3a\xab\x78\xa0\xdc\x89\x43\x70\x58\xe9\x21\xa5\xa6\x2b\x14\xd2\x25\x14\xfd\x49\x79\xe3\xfe\xa0\x9f\x59\x01\x42\x07\xdb\x3c\x94\xb1\x5e\x37\xaa\xfe\x91\xf9\xa8\xdc\x17\x0d\x6d\x35\xd6\x8a\x58\xf7\x20\x06\x73\x7c\x06\x66\x83\xc2\x7e\x57\xbd\x87\x47\x23\xe2\x0c\x4d\x2f\xe1\x61\x21\x01\xaa\x07\x5c\x21\x23\x0e\x47\xd3\xec\xb2\x41\xe4\x28\x69\x1c\xea\x84\xcd\x13\x5d\x35\xfb\xb4\x34\xa7\x2d\x70\xb2\x5c\x7c\x21\x32\xcb\xca\x9e\xfb\x21\x1e\x29\xfb\x3e\x02\xb6\x40\x8f\x2c\x8a\x8a\x7e\x0c\x08\x2d\x15\x68\x25\x1d\x03\x82\x37\x9e\xd1\xa9\xe7\x18\xc8\x60\xf8\x8e\xec\x4c\x7c\xe4\xdf\x09\x78\xce\x98\x76\x92\x59\x2f\x51\x0e\xcf\xfc\xa2\xd0\x77\x3b\x49\xc4\x81\xae\x03\x54\xee\x19\x42\x93\xbc\x1b\xdc\x06\xde\x13\x8d\x1a\x60\x0e\xea\xca\x15\x3d\xe4\xfd\x73\x04\x30\x71\xf0\x8a\x9f\x3f\x64\xdb\x27\xd4\x15\x3a\xdd\x42\xbc\x09\xb8\x5d\x0c\xec\xee\x23\xce\x07\xed\x07\x04\x36\x40\xb6\xea\xb4\x60\x1b\x29\x6a\x9a\x81\x17\x25\xd9\x68\x25\xb5\x62\x64\xd0\x36\xce\x18\x59\xb4\xd6\x83\x89\x26\xbf\xc9\xba\x75\xda\xde\xec\xad\x36\xbc\x29\x02\x07\x74\xed\xe3\x5b\x6c\xd6\x90\xfb\xc2\xa4\x29\xe3\x1a\x13\xb1\x7f\x51\x56\xc3\x32\x60\xc6\x06\xdf\x1b\x44\xf0\xbb\x54\xd3\xae\xb7\x1e\xee\xdc\x72\x1b\xe1\x2b\x4e\x9c\x59\x3d\xd3\x02\xd1\xf7\x09\x73\xb2\xd5\x03\x8f\xa7\xd9\xbe\xc1\xc5\x02\x2f\xfe\xca\xa6\xd1\xad\x32\x5e\x76\x49\x1a\x85\x18\xa3\x1b\xed\x15\x44\x0b\xcb\xe6\x0f\x5f\x15\x49\x5b\x00\x43\x3f\xca\xdc\xa6\x18\x02\x3f\xb2\xbd\xec\x62\xb1\x18\x2f\xf3\x9a\xda\x8b\x1b\x99\x38\xf3\xab\x98\x76\x0f\xf8\xc8\xa5\x0b\x2b\x17\x94\x2f\x98\x7a\xc0\x0e\x41\xac\xf1\x65\x9b\xc5\x64\xb4\x46\xc6\x89\x3c\x52\x30\x69\xcb\xd1\x66\x98\x29\x12\xb9\x0c\x0a\x2b\x91\xc6\x94\x34\x81\xbb\x5e\xdd\xc1\x0e\x0c\x23\xce\xe3\x3a\xd3\x0c\xd6\xce\x8f\xa4\x3a\x7e\x8f\xb2\x90\xb1\xb4\x71\x3e\x10\x22\xb4\x03\xe2\x19\xfc\x3a\x9c\x31\x98\x02\x06\x72\x81\x7e\xe2\x88\xe5\x6f\x3c\x97\x98\xa3\xcd\x2f\xcd\x25\xeb\x71\x62\x40\xe7\x25\x75\x19\xa3\x39\x50\x24\x19\x63\xcd\x93\xb8\x24\x79\x26\x80\xb1\x40\x21\xbf\x44\x1a\x9f\x98\x29\x6d\x2f\x27\x7d\x8a\xab\xb1\x4e\x0b\x31\x50\xed\xb8\x48\xf7\x1b\x0b\xda\x09\x20\x82\x65\x1d\x5f\x87\x2d\xb7\x7b\x25\x5e\xd9\xf6\xe4\x56\xef\x6d\xb6\x1d\xec\x2a\x1f\xa7\xc9\x20\xc1\x63\x6e\x81\x95\x4c\x25\xd0\x45\xec\xb0\x93\x2e\xbe\xd9\x3f\x52\x84\x6c\x54\x73\x7b\x6f\xaf\x8b\xa7\xe2\xfe\xd9\xce\xa2\xa1\x55\xc4\x45\xe6\x56\xf0\x79\x5f\x31\x1c\x03\x7c\x31\x00\xf7\x17\xbe\x93\x4d\xa1\xbb\xc9\x5e\x7a\xfb\x2f\xb4\x88\x6b\xa0\x16\xc1\xe7\x84\xf6\x72\xe9\x09\xed\xbd\x9a\xa1\x00\xf9\x12\xfb\x5a\xca\xbb\xb1\xf6\x16\x1f\x64\x5c\xc2\xcf\x94\xb3\xd6\x9e\x33\xc3\x41\xf1\xba\xcc\x5d\x4a\xa7\x9b\x3a\x63\x6d\x7e\x09\x09\x33\x0c\x0e\xf9\x8e\x65\x90\xe4\xc2\x3a\x05\x75\x07\xd3\xd0\xab\x84\x61\x5c\x0e\xa6\x11\xef\xec\x7e\x8a\x2a\x80\x69\x53\xb3\xce\x2f\xa1\x0c\x39\xf1\xf9\xc9\x87\x75\x82\xc8\x3b\x4b\x7a\x69\x2c\x5b\x8a\x14\x91\xf9\x3d\xbf\x5b\x7a\xa3\x67\x0e\xe2\xac\x47\x64\x7b\x3e\xed\x11\x79\xa1\x84\x13\xf1\xeb\xe2\x25\xcf\xc5\x49\x1e\x1b\xcf\x46\xec\xb2\xbd\x0b\x12\x6b\x9b\x37\xe5\x9c\xd2\x66\x1a\x13\x98\xd5\x11\x49\x04\x21\x0c\x1f\x92\xcf\xfa\xe7\x14\x7a\x26\x1b\xd9\xd5\x24\xa6\x05\x99\x9b\x9f\xaa\x0f\x49\x59\x23\xba\xce\xee\x6b\x0a\xf6\x9d\x57\x71\x0e\x71\x33\x39\x80\x77\xf4\xb5\x00\x84\x10\x49\xaa\x0c\x49\xb0\xc3\x20\x00\x65\x33\xd4\x97\x69\x33\x38\x6d\xd4\x8e\x02\x94\x9e\xab\xff\x95\x41\x81\xc7\xff\x78\x7d\x79\x0f\x38\x37\xfb\x4f\xc5\xab\xc5\xcb\x30\xf4\x48\xf9\x90\x8c\x7f\xbc\xbe\xc4\xd6\xfb\x8d\x3a\x94\x26\x66\x5e\x2e\xb3\xc9\x41\x41\x7a\x34\xde\x78\x61\x0e\x4e\xe3\xaa\x3f\x32\xe2\x00\x53\x13\xcc\x68\xe8\x3b\xbd\xde\xf8\xbd\x82\xb0\x3a\x47\x70\x15\xf3\x51\x36\xe2\xc8\x8c\xd0\xd5\xf1\x37\xcf\xc9\x5c\x43\xe3\xe4\x1c\x69\x5d\x2c\x4c\x39\xe3\x89\x02\x43\x45\xf1\x81\x70\xce\xcf\x58\x56\xf4\xbf\x7b\xd2\x72\xd4\x51\x51\x76\xbc\x71\xe2\x25\xc0\x4c\xcb\xe3\xd0\x38\x7f\x40\x2f\x83\x79\x04\xef\xe4\x16\x82\xa5\x06\xa8\x9f\xef\xc5\xb1\xe0\x67\x9a\xce\xc4\x3b\xfc\x75\x3f\x78\xf1\xb4\x53\x98\xf7\xf4\x79\x5f\x5f\xf3\x48\x36\x1c\x0d\x32\xb7\x02\x45\x51\xfb\xef\xe1\xec\xfc\x87\xf8\x7b\x58\x2a\xff\x10\x7f\xd7\xa6\x55\x5f\xfe\xc1\xb7\x66\xf1\x35\xf2\x40\xee\x4e\x27\x21\x4f\x50\xf5\x1d\x06\x01\x8a\xe5\xa7\xff\xd0\x75\xe3\xdd\x52\x4a\x4d\x14\x3c\x6b\x87\xcf\x26\xf5\x7a\x39\xe0\xc9\xc7\x57\x9a\x93\xe8\x40\xcb\xa9\xd4\x80\x77\x4b\x18\x14\x03\x0e\x64\xf0\x6d\x12\x67\xe2\x0d\x46\xc3\xe0\xbb\x71\xe6\x64\x20\x7b\x5c\x1e\x77\x18\x5d\x7d\xf0\x75\x1d\xee\xad\x01\x4e\x19\xb8\xfb\x88\xb7\x9c\x6c\xd9\x9d\xe4\x4c\x09\xee\x14\xbf\xa3\xe5\xe3\x0b\xf8\x12\xff\xa7\x35\xb9\x24\x8e\x77\x3c\xe0\x49\xe7\x6d\xed\xc2\xd9\xc1\x06\x2f\x99\xa0\x0c\xb7\x67\x85\x2f\x7a\xd8\xce\xde\x09\xdb\xeb\xb5\x0e\x2b\x8e\x9e\x8d\x89\x88\x8d\xda\xd3\xeb\x3c\x1b\xe9\x10\x6f\x7c\x6b\x04\x43\xd7\x63\x35\x32\x3e\x70\xeb\xca\x0a\x4a\x1d\xc9\x62\x24\x97\x44\x7e\x18\x5e\x3c\xc8\xb4\x06\xe6\x4e\xf5\x3e\x5e\x9b\x7a\xf1\xc1\x8a\x6b\xb5\x1e\x3a\xd9\xe7\x41\x00\xc6\x05\xc6\x0b\x92\xf1\x90\x7a\x13\xce\xfc\xb0\x2c\x44\x4f\xb8\x72\x05\x01\x87\x03\xa0\xdb\x8f\x20\x9b\xf4\x18\x48\x78\x5c\x0b\xea\x99\x1c\x28\x9a\x9e\xd0\xa3\x2b\x65\x00\xa4\xa2\xe2\x6c\x34\xa8\x0d\x70\x87\x3c\xd7\x0a\x0e\x13\x4f\x6d\xc0\x38\x48\x33\x2d\x48\x56\x71\x1c\x09\x89\xee\x97\x47\x9a\x1e\x84\xc6\x18\x6d\xa3\xc0\x10\x49\xe3\x8e\x50\xfc\x46\x29\x36\x09\x6c\x56\xcb\x08\xfe\x39\x21\xc0\xb7\x61\xce\x02\x69\xc2\x9f\xef\xf9\x75\x99\x29\x58\x54\x8c\xa4\x27\x65\xca\x41\xc9\xe4\x22\x20\x05\x34\x49\xa3\xe7\x8e\x70\x8b\x35\x9b\xec\xc5\x56\x50\x5d\x41\xcc\x38\x37\xd3\xbc\xd1\x34\xcd\x86\xdb\xd2\xab\x6c\x0d\x83\x9f\x95\x36\xad\xbe\xd3\xed\x20\x3b\x7a\x0b\xeb\x38\xde\x9f\x4a\xbc\x8d\x35\xa0\x11\x39\x8a\x7b\xd4\x21\xa0\x6d\x10\x2a\xf7\x71\x4f\xc6\xe4\xab\xf4\xcc\xd5\x6c\x8f\x02\xd9\x8d\xe6\x61\xb4\x93\x30\xec\x6a\x7a\xb6\x26\xd7\xd5\xa3\x22\x1e\xd6\x07\x06\xef\xe6\x55\xfa\xf3\x84\xcb\x23\x7b\xae\x5f\xfb\x80\x13\xd8\x9f\x17\xd2\xcb\x59\x30\x9e\xd0\xf7\xec\x51\xa5\xa0\x10\xb0\x5c\xad\xf4\x32\xdd\x86\x1a\x4b\xa1\xb4\x96\xb2\xb9\x9d\xd5\xb3\xce\xe2\x9f\xd9\x5f\xb9\x2a\x37\x0c\x1c\x0b\xe3\xe0\xf1\x16\x2a\x0e\x07\xc9\xc9\x94\x79\x9d\x5c\x38\x5c\xe7\xa4\x89\x1b\x9c\x3c\xb9\xa0\x2b\xe3\xb7\x2b\x32\x8d\x5f\xe9\x20\x0a\x4d\x9b\xa3\x47\x47\x06\x8a\x3b\x50\x3c\x3c\xf5\xcf\x8c\xd6\xf1\x81\x4a\x84\xe8\xc1\xf8\x6a\xc7\xf1\xfd\x74\x94\xb0\x65\x51\xd0\xb8\x37\x81\x4e\x1e\xd0\x54\x69\xea\x7a\x76\x4a\x41\x85\x42\x6e\x90\x0a\xc3\x70\x9f\x12\x07\x79\x1a\x4d\x86\xe9\x61\xc1\xcc\x86\x13\xf7\xd0\xf1\x16\xc2\x49\x87\xdd\x3e\xe7\x20\x5e\xcc\xcc\xc1\x5d\x50\xe0\x17\x76\xca\xb4\x60\x51\x8b\x11\x47\xa7\x0a\xa6\xfb\xd7\xc7\x03\x37\x52\xc7\xe4\xbb\x79\x64\x2c\x77\x3f\xf0\x4c\xca\x74\xcf\xf3\x31\xfe\x4e\xed\xc9\x76\x35\xc9\xb7\xf2\x16\xf8\x69\xa6\xc6\x10\x53\x93\xc9\xec\x0c\xaa\xd9\x73\x20\xbd\x0b\x16\x9b\xc6\x05\xfa\xe3\xcd\x2b\x23\xf3\xcd\x45\xe4\xcb\xa4\xce\xb6\x1e\xd9\xe7\x9e\xb7\x2d\xf4\xa7\xb0\xd3\x3d\x5a\x60\x14\xf0\xb6\xc0\x55\x06\xd5\x9f\xae\x97\x51\xc5\x1c\x59\x7f\x7a\x3d\x61\xfb\xdc\x1c\x35\x6f\xd8\x4c\x97\x66\x8b\x15\x26\x3c\x70\x90\xc1\x7a\x4c\xee\xad\x64\xa8\x97\x5f\xd2\xe4\x51\x1f\xcb\x43\x71\xb4\x66\xef\x89\xc4\xcf\x8d\xc2\xfb\xda\x63\x23\x77\x31\x3b\x6a\x14\x2d\x34\x57\x65\x24\xf5\xd7\xc8\xa3\x2b\xd3\x84\x15\x1a\x6b\x78\x7a\x33\x85\x9f\x0a\xfc\xe7\x72\x32\xf0\xc5\x4b\x9c\x65\x04\x2a\x52\x92\xe2\xab\x08\xc0\x3e\xe6\x65\x17\xe5\xba\xd8\xa3\xda\x89\xd6\x10\x29\xa1\x46\xda\xa9\x78\xe3\x4b\x2a\x2a\x30\x8b\xda\x0e\xcd\x06\x6f\x78\x41\x13\x05\xe1\x9e\xc4\xd5\xfb\x9b\x0f\x02\x75\xd0\xbe\xd7\xeb\x75\x38\x76\xc5\x9f\x37\xca\x04\x9a\x06\xb7\x44\x48\xd7\x6c\xd3\x0c\xa8\xaf\x7c\x65\xd7\xee\x54\xec\x15\x47\xd9\x35\x2d\x1d\x42\xf9\x3b\x37\xac\x84\x41\x53\x49\xb1\xb1\x0e\x1f\xef\x70\x3b\xd5\xe8\xd5\x61\x21\x2e\x95\xec\x8d\xd8\x06\x09\x82\x49\xe6\xbd\x4e\xc8\xb1\x27\x10\x40\xe8\xd9\x53\x99\x2b\xeb\x69\x48\xf2\xe5\x4b\xc7\xd3\x64\x78\xc6\xa0\x73\x61\x6d\x79\x84\xef\xb3\x01\x80\x67\xd2\xf0\x40\xd6\x10\x7b\x9a\x2d\x4d\xbf\x62\x99\x4e\xda\x90\xd6\x28\xb5\xf7\xab\x09\x2f\xa1\x5a\x78\xd4\xdd\x53\x5b\xce\xc4\x07\xe5\x20\xe4\x27\x7c\x3f\x00\xce\x43\x70\xa3\x42\x9f\x04\xb8\xd7\x80\x7e\x16\x97\x45\xc4\x1a\xa6\x54\x39\xb2\x09\xe0\x31\x72\x53\x9d\xd9\x6c\x1d\x59\x70\xea\x80\x63\x3f\xee\x27\xae\x7d\x34\x75\xc4\xea\xfe\x36\xa8\x41\x2d\xc4\x1b\x2f\xb6\xf2\x00\x6f\xcd\x82\x45\xa2\x53\x8d\x35\xad\x63\x43\x39\xed\xc1\x4b\xdb\x89\x61\xc7\x5e\xf3\x93\x29\x99\xb6\xad\x57\xd9\x58\x5d\xc7\x8f\xfb\x00\xb3\x1e\xbc\x0e\x2d\xf7\xd2\xdd\x8e\x6c\x54\x82\xfc\xf7\x8d\xbd\x48\x81\x88\x63\x09\x7a\x30\x43\x9b\x7b\xdb\x9f\xdf\x00\x29\xe7\xe7\x40\xdc\xce\x62\x70\xca\x6b\xfa\x39\x05\x42\x03\x21\xe8\x13\xfe\x9a\x82\xec\xe8\xdd\xf1\xf8\x02\xf9\x14\x64\x69\xdb\x30\x8e\xbf\xd8\xf6\x30\xd5\x85\xf3\xea\x8a\x0a\x71\xa0\x45\x3b\xbb\x87\x9b\xe0\xe5\x01\x32\xb4\x77\xaa\x5b\xe1\x9b\x16\x41\x6a\x55\x1c\x0c\x08\x6e\x0d\xd2\x2d\x2c\x92\x00\x9a\x67\xb8\x33\x01\x2f\xd3\xdc\xb2\x17\x1f\xa2\x2b\x1e\xd7\x1a\xb7\x09\x43\x05\x51\xbb\xde\xa0\xc4\x01\xab\x11\x94\xe0\x18\xa3\xe9\x34\x48\xec\xbb\x2c\x9c\x02\xab\xc9\x76\xbd\x72\xe0\xc3\x05\x34\x0c\x1e\xb5\x65\x10\x14\xd9\x30\x5a\x47\x16\x69\x35\x31\xea\xda\x41\x3d\x33\x2d\xa2\xc8\xb8\xb0\xb2\x20\x26\xee\x04\x22\xf9\x70\x01\x10\xbf\xba\x33\x66\xc1\x08\x3c\x69\xd8\x5f\x17\xe4\x2f\x3b\x40\xe2\xc4\xd8\x35\xf1\x8d\x0e\x09\x00\xea\xac\xc2\xc1\xc0\x2a\xaa\xcc\x80\x3a\x8c\xd5\xc7\xeb\xcb\x9c\x98\x9f\x0a\x19\x8e\x77\xd4\x73\xb4\xca\xc3\x33\x6a\xbd\x5a\xcb\xbe\xe5\xd8\x44\x74\xc0\x6c\xa4\xc7\x83\xa4\x0f\xc3\xc7\x2a\x0a\x88\x18\x48\xb8\x30\xac\xc4\xad\x36\x10\xd7\x17\x24\x13\x52\x2a\x06\x21\x31\x19\x28\x85\x43\x65\xd8\x85\x73\x06\x0f\x2d\xae\x08\xfa\xfe\xfd\x7f\xdc\xbc\x7f\x77\x2a\xbe\x3c\xd9\xef\xf7\x4f\x42\xf1\x27\x43\xdf\x29\x13\xfa\xd2\x9e\x8a\xff\xf5\xf6\xf2\x54\x28\xdf\xfc\xb0\x10\x6f\xf1\xf8\x49\x54\x9d\xec\x96\xc1\x05\x02\x8c\x80\x87\xfe\x5f\x38\x96\x68\xeb\x90\xc2\x36\x7f\xc0\x3f\x67\x22\xc3\x34\xb2\x83\x2c\xbf\x7d\x0f\x8e\xb2\x19\x43\x42\x4f\x93\xdc\xc0\x8f\x71\x46\xa2\xdf\x00\xc6\x0b\x15\xde\x2c\x93\x4e\xdc\xbc\x3e\xff\xe9\xdf\xff\xa7\x78\xfd\xf6\xfc\x42\x6c\xd4\x17\xd1\xea\xb5\xc2\xeb\x49\xde\xda\x77\x9a\x27\xfd\x7f\x3d\x09\xab\xe1\xc9\x8d\x5e\x1b\xe9\x87\x5e\xf1\x02\x40\x3a\x91\xf3\x48\x9d\x6c\x6e\xe7\xde\xbd\x1c\x83\xe8\xc6\x1a\x1a\x80\x37\x8d\x35\x65\xef\x11\x84\x9d\xb9\x2e\xc0\x8d\x2b\x29\xaf\xc3\x9a\x89\x8c\xcc\x46\x99\x40\xe8\x87\xae\x2d\xcf\xe8\xa5\xe2\x25\xa0\xda\x3f\x8e\x0b\x43\xe0\x3f\x78\x26\xe3\x4c\xfc\x07\x84\x7c\xda\xb0\xf5\x53\xc8\xe2\xde\x01\xf0\xb8\x6c\xd8\x0c\x75\x26\xd8\x9d\x89\x37\xc2\x04\xd1\x81\x85\xca\x94\x17\x05\xcb\x31\x0e\x52\xf1\x9d\x89\x4b\xe5\xc5\x36\xaa\xfc\x60\x8d\x23\xb6\x49\x89\xd2\x34\x76\x3e\x9b\x07\xe5\x97\x3c\x16\x20\x9b\x8d\x4e\x07\xb0\xf4\x53\x9b\xcd\x9e\xc7\x48\xbc\xc7\xb8\x48\x1e\xfc\x71\x26\x2b\x45\xfe\x4d\x21\x15\x21\xcc\xe5\xdc\xec\x50\x2c\xc6\xd9\x89\xcb\x0e\x0e\xbe\x2e\xce\xd5\x06\xe3\x32\xe3\x58\x87\xb3\xd9\x91\xea\x83\x46\x1d\x5d\x3c\x4f\xd1\x71\xb5\x3d\x15\xec\xf4\x79\x4a\xf6\x7c\xa7\x1c\x25\xa2\x3d\x15\x83\x49\xbf\xd1\xe1\x8e\xc4\x57\xfe\x04\x7b\xe2\xf0\x19\xcd\x3d\xdb\x53\x7c\xc5\x3a\x25\x2c\xa6\x1d\x2d\xec\x39\x0a\xfb\xfc\x7b\x40\xa3\x89\x4b\x6e\x1d\xf0\xff\x7f\x6f\xf2\xae\x40\xdf\xdc\xc1\x34\x9b\xde\x1a\xfd\xfb\x4c\xdf\xf0\x7a\x25\xb9\xec\xe2\x98\xb3\xe3\xee\x7d\xc0\xe5\x2c\x31\x06\x5a\xe0\xa9\x3b\xf1\x89\xf0\x69\xdd\x14\x80\x32\xc5\x9f\x3c\x02\x90\x16\x2b\xdb\xc6\x2d\x3b\x0d\xa6\x2a\xe0\x63\x38\x7f\x87\x8c\x21\x1b\x39\x76\xe3\x38\x23\x0f\xd2\x7c\xfc\x2c\x44\x45\x6e\x24\x5d\xe9\xf0\x62\xf2\x4d\xfc\x20\x0a\x84\xf8\x22\x45\x71\x8a\xc3\x11\x5e\xaa\x05\xe6\x99\xea\xa9\x75\x5a\x92\x20\x89\x47\x98\x48\x49\x04\x38\xaa\x63\x22\x9c\xd0\x9a\x99\xea\x1c\x52\x0d\xc7\xe4\x30\x8c\x42\xc0\xf2\x01\xbf\x6a\x0e\x6f\xda\xbd\x88\x69\xa5\x54\xcb\x87\x24\xf0\x3f\xe5\x09\x09\x61\x90\xe0\x30\xc9\x39\x9b\x20\x1f\x97\x7e\xcc\x01\x84\x9e\x73\xf3\x8a\xc3\xf6\x4e\x9e\xa1\x3c\x8c\x86\xba\xd5\xae\xb1\x7d\x7b\x3f\xee\x17\x08\xf4\xcf\x60\x37\x6b\x2f\xbb\x07\x9a\xfe\x82\xa0\xbe\x0d\x3f\x8e\x09\xbf\x0a\x83\xaf\xd7\x8c\x32\x5b\xbb\x95\x60\xfe\xfa\x02\x7e\x4c\x0e\xe7\x8d\x34\x06\x4d\xfd\xf1\x57\x3e\xd7\xbb\xce\x1e\xf8\x9d\xd1\x17\xf0\xc5\x4f\xa7\x4f\x41\xb2\x57\x39\x97\xcf\x2f\xf0\x6d\xcc\x57\xd6\x37\x1b\xf9\xdd\xb3\xa7\xcb\xe7\x81\x0f\xa7\x7b\x80\xce\xda\x5b\xf6\xf2\x91\x2d\xec\x9b\xf8\xd0\xcc\x2e\xbe\x5e\x99\x6c\x54\x64\xdb\xa2\x61\x91\x36\x38\x14\xa3\x27\xfd\xd2\x93\x4c\xd8\xaa\x11\x97\x06\x73\x10\xdb\x49\x63\x9f\x7a\x33\xd7\x99\xa4\x34\x00\x28\x18\x81\x0d\x3e\x77\x22\xdb\x27\xc0\x70\x90\xf6\x56\x7c\xd8\xa8\x43\x0c\x5c\x0d\x2f\xca\xc1\xa5\x6e\xf9\x76\x0e\x34\x8f\x9f\x14\xcd\xaf\x1e\x6d\x5d\x0e\x32\x3f\x65\x02\x31\x7c\x50\x5b\x64\x0e\xa2\x4d\xcd\xc8\xd5\xa7\x85\x03\xcd\x5c\x2f\xa6\x6f\x78\x46\xa8\xf1\x5b\xa3\xa9\xa7\x47\xdf\x1a\xcd\x8b\xe6\x0f\x8e\x66\x45\x41\x42\x88\x83\x30\x6b\x31\x5e\x4c\xcb\xf4\x39\xd1\xd4\xd5\xaf\x78\x51\x74\x7e\xe6\xc6\x2a\xa2\x07\xa7\xfa\x3e\x87\x91\x36\xef\xdc\x57\xbc\x2d\x3a\x0e\x4b\xf7\x15\xda\xa2\xb9\xb6\xe4\x06\xc5\xb1\x01\x5f\xab\x33\xca\x83\xff\x4f\x9d\xa9\xbe\xf1\x39\x81\x59\xac\x0f\x3c\x29\xd0\xea\xd5\x6a\x81\xa1\x95\x6b\x67\x87\x1e\xcc\x09\x7e\x81\x6f\x71\x03\xdf\x08\x42\x81\x25\xcf\x28\xc2\x24\x26\x46\x27\x4b\xf2\xaa\x84\x44\x70\xaf\x05\x0d\x6c\xac\xf0\x4c\xbc\xd0\xab\x15\xba\xda\xbe\xb3\x3e\x35\x65\x81\x45\xdc\xc6\xee\xeb\xf0\x0b\x5e\x28\x05\xab\xc2\x8d\xdd\x63\xa1\x9b\x90\x92\x81\xb9\x5d\xa7\x7d\x4d\x51\x9d\x6f\xc2\x07\xc4\xa5\xce\x20\x06\x03\x31\x28\x19\xe6\x23\x7e\xe6\x50\x01\x65\x0c\xae\xc1\x17\x51\x27\x6d\x0c\x9c\x08\xda\x8e\x74\x45\x05\x5b\x85\xe1\x4e\x5a\x20\x84\xa0\xce\x48\x20\xf9\x0b\x42\x27\x6d\x54\x94\x27\x08\x1a\x68\xa0\xee\xbf\xbc\x79\x87\x9f\x10\x53\x99\xa2\x61\x41\x70\xed\x97\xba\xa3\xf1\x86\x88\x8b\x6e\xd8\x41\xe0\x46\xd5\x72\x40\xc9\x90\x27\xb2\xe4\xcc\x19\x32\x0f\xaf\x8d\x38\xbc\xb5\xf5\x56\x9a\x43\x74\xdd\xbe\xb1\x5b\x45\xaa\x9c\xbd\x22\x3a\x08\x21\xb8\x93\xe7\xa8\xb5\x22\x14\x21\x28\x1e\x10\x56\x0b\x07\xb4\x15\x47\x14\x5f\xcc\x45\x16\xe7\x3c\x0c\x13\xcf\x8c\x5f\x20\x17\xcc\xfc\x31\x44\xdb\xcb\x15\x38\xf2\x85\xff\x31\x75\xd7\xab\x54\xec\xaa\x57\x4f\xc6\xc5\xc8\xe1\x2e\xfc\x8b\x69\x72\x83\xce\x1e\x69\x06\xd2\xcc\xb0\x6f\xa8\xb7\xe2\xc4\x51\xdc\x4d\xda\xf9\x25\x62\x5c\xfd\x35\xbd\xcf\x89\x6b\x1f\x5e\x56\x2c\xfa\x94\x7b\xf2\x5d\x21\x83\x2a\xe2\x38\x80\xf9\x0a\xbe\x4e\xb7\xeb\x6d\x3b\x34\x7e\x51\xb4\xbb\x28\x8d\x1c\xa9\xe2\x55\x27\x3a\xbb\x06\x9d\x07\x04\x4a\x46\x7b\xdf\xc1\xb4\xaa\x77\x1e\x4d\xfb\x65\x46\xe6\xf5\x76\xd7\xe3\x4d\x09\xa3\xf7\x72\x1d\x5f\xcf\x93\x6b\x0c\xd3\x92\xf2\x40\xf1\x1f\x72\xc2\x8f\xa2\x4c\xe4\x04\xd8\x0b\x20\x8b\xb6\xea\xe5\x1a\x18\xfb\x26\x8f\xef\x1f\x84\x51\x6b\x98\x39\xcf\x1a\x50\x1c\x71\x9c\x3a\x3d\xd6\x38\xa7\x74\xe2\xc9\xa6\x9f\xb6\x2d\x05\x18\x8f\x39\x9d\x95\x2d\xca\xfe\x97\xf8\x6b\xb1\x58\xcc\xac\x9a\xe9\xeb\xe9\xbb\x5e\x3d\x19\xcf\x75\x06\x1f\x07\xe0\xcf\xea\x71\xd7\x89\x9d\xd5\xc6\x0b\x74\x4a\x93\xbe\x58\x29\x7c\x51\x44\x53\xab\xad\x79\x02\xe7\x65\x6a\xc6\xd8\x15\x33\x56\x47\x0b\x25\x2d\x99\xf1\xaa\x06\x27\x37\xde\x11\xe0\xe5\x56\x6e\x0b\x58\x3d\x69\x63\x80\xbb\xe9\x64\x43\x21\xbf\x9f\xa0\x4a\xb3\x80\x19\x60\x3c\x7b\x59\xde\x8a\x17\x8b\x63\x98\xf9\xe3\x96\xeb\x19\xbb\xb5\x35\xb6\x47\x7d\x77\xbc\x65\xf7\x72\x7d\xef\x43\x71\xa3\xda\xf2\x0b\x6b\xac\xe2\x81\xd3\x74\xbc\x07\x4a\x27\xb9\x0c\x0f\xf1\x3c\x81\x52\xd2\x1e\x99\xf0\x3c\x13\x5c\xe4\x54\x9c\xed\xab\xe2\xe1\xdf\x54\x82\x63\xda\x00\x27\xc0\xbf\xab\xea\x93\xed\xd7\x9f\x2b\xb8\x95\x84\x30\xe8\x31\x7e\x69\x7e\x05\x09\x6a\xe6\x00\x13\x7a\x74\x1f\xe0\xcb\xa1\xeb\x12\x74\xf9\x4e\xdb\xab\xb0\x4d\x4b\xa3\x9e\x00\x80\x4a\x7e\x78\x96\x8d\x7c\x3a\xe8\x65\xb6\x05\x3f\xe9\x61\xfb\x75\xf2\xe2\xcc\xab\xc3\x07\x8a\x92\x6f\x20\xbd\x5a\x50\x91\xaf\xc5\x99\xb8\x82\x1f\x95\x36\x77\xda\x07\xfe\x61\xab\xd0\x2a\xf0\x0d\x24\xc0\x79\x63\x8d\xaa\x0a\x6f\x84\x0a\x82\xad\xd7\xec\x89\x70\xc6\x3e\x09\x94\x5e\xd8\x41\x9e\x15\x66\x91\xf9\x13\x24\x01\x65\xe9\x7a\x1a\x90\xc3\xa8\xcc\x38\xa5\x07\xe8\x48\x1e\x43\x49\x18\x42\x48\xbd\x0f\xba\x78\xf6\x2c\x50\x87\x81\x03\x5e\x02\x2e\xb0\x91\x34\x28\xf9\xc1\xa2\x0a\x98\xb5\x29\x22\x71\xb9\x45\xaa\x26\xa3\x35\x1b\xf4\x58\x4f\xc5\x02\x97\x0a\x06\xfd\x7f\x44\xf8\xe2\xdd\x1d\x52\xbb\x4a\x7c\xb6\x10\x93\xe9\x31\xdb\x5c\x0f\x0b\x88\x82\x48\xf2\xc7\x6a\xfe\x29\xa7\xf7\xe3\xb5\xf1\x4f\x3c\xe6\x34\xc5\x71\xef\x73\x4e\x80\x2e\x0d\x68\xd6\x18\x98\x87\x23\x8d\x88\xac\xec\xb7\x3a\x9d\xc6\xfd\x13\x18\xa6\xb8\x57\xf2\x5b\x32\x72\x8e\xf8\x33\xfe\x4a\x59\x9d\x6d\xd8\x53\xf5\x92\x7e\x1e\xb5\xa9\xb9\xcf\x67\xa2\x04\xcd\x88\x59\x31\x70\x11\xd3\xd7\x1a\xe0\x90\x2b\x86\xed\xd7\xff\x9a\x27\x46\xf1\xb4\xe8\xa4\xd5\xf2\x4e\x7a\xd9\x1f\x6b\x34\xe6\x72\xdb\xbf\xba\xe9\x63\x33\xb5\x82\xc2\x8c\xb5\x55\x93\xc7\x3e\xa1\x83\xf7\x16\x29\x9f\xfe\xcc\x1b\x1c\xef\x09\x33\x33\x31\xb2\x31\xc1\x47\x3f\xd1\xd6\xe1\xe1\x97\x3f\x8f\x18\x1a\xdd\xf7\x04\xe8\xb8\x95\x81\x32\xc5\xb0\x96\x79\x23\xef\x2d\x91\x73\x33\x76\x64\xb4\xf2\xcf\x3f\x0b\x3a\x6f\xa0\x72\xde\xb6\xac\xb6\xa4\x57\x00\x79\xfc\x92\x6a\x74\x95\xc5\x94\x1f\xbf\x69\x9b\x46\x0e\xf8\x56\x72\x58\x2c\xd6\x5b\x45\xb4\x7e\x41\xff\x37\x7a\x57\x17\x4f\x81\xbe\x8d\xe9\xd9\xab\xa0\x3f\xc7\x62\xa4\x72\x22\x3e\xaa\x19\xa5\x27\xfa\x0a\x01\x11\xd8\xfd\x23\x02\xe1\x37\xf0\x96\xb3\x39\xe3\xf2\x65\x1d\xf8\xbf\xee\x6d\xa7\x62\x43\xc5\xb5\xed\x54\x6a\x5e\x19\xd4\xb1\x2c\x18\xcb\xc4\x74\xd2\x4f\xf0\xbb\x8c\x31\xbd\x7c\xcf\x97\x53\xe9\x8c\xcd\x5f\xfa\x00\x7e\x9c\xb0\x83\x78\xf3\xf3\x18\xda\x40\x48\x7d\x3a\x8d\xdf\xd9\x7d\x85\x47\xf1\x02\xa2\x46\x9e\x89\xff\xb0\xda\x50\x4a\x59\x29\xa6\x05\xce\x28\xbd\x41\x73\x1d\x64\x2c\x7c\xa4\x7a\x9a\x3f\x7a\x6b\x0f\x4e\xa2\xf8\xca\x1e\xbd\x95\x0d\x8c\x3d\xc5\x26\x35\x68\xc5\x53\xbe\x12\x87\x58\x47\x4f\xdf\x60\xb8\x88\xa2\xde\x1c\xe2\x6b\x2a\x86\x50\x00\xe3\xea\x4e\x59\x97\x0f\x0a\xc0\xe8\x02\xa9\xb6\xdc\x0e\xb0\xe7\x4e\xed\x80\x88\x04\x65\x3b\x72\x88\xaf\x69\x47\xa8\x05\x02\xd3\xb1\x9f\xc3\xd1\xf6\xc8\xb6\x15\x68\x82\x9e\x1b\x9f\xb9\x71\x13\xd3\x6b\x6f\x1f\xb2\xf3\x1f\x4c\x77\xdb\x11\x3f\xe3\x16\x73\x47\x2a\xe6\xa0\xcd\xe5\x0c\xcb\x81\x66\xf4\xb3\xaf\xb7\x3f\x4c\x04\x20\xe0\x60\x28\x19\x41\x33\x03\xf9\xe2\xf5\x89\xe9\xb9\x84\xed\x4a\x2c\x22\xf0\x0a\x44\x1b\x28\xf3\xe1\x23\x19\xe1\xf8\xf9\x25\xe4\x17\xf3\x43\x05\x18\x46\x9e\xc9\x16\x20\xea\xb8\x57\xc3\x06\xcb\x6a\x9d\x22\x8b\xc4\x1c\xa0\x22\x11\x9f\xc2\xf1\x8e\xcd\xb9\xbd\xec\x62\x49\xc1\xf5\x59\xe1\x97\xcb\x50\x5b\x79\x18\xbf\xc6\x0d\xa1\x22\x8a\x5d\x73\x5c\xb0\x9a\x36\x25\x9d\xeb\xaf\xf4\x9d\x32\x69\xc1\x1c\x15\xae\x16\xf9\x56\x9f\x2e\x90\x8c\x5c\xeb\x9c\x09\x5e\xf7\x10\x2a\x91\x67\x3e\x90\x8e\x6c\x61\x00\xfa\x9f\x63\x9f\x1b\x69\xc6\xb4\x01\xcc\x15\x95\xdc\x3e\xbe\x8f\x44\xfc\xd3\xcd\x01\x92\x72\x7f\x7b\x80\x64\x60\x64\x60\xd3\xe6\xe4\xe1\xbe\x66\x21\x3d\xf8\xa7\x9b\x05\x14\xe6\x2b\x9b\x75\xca\x6d\x42\x3e\x26\xd0\x8b\x39\x4a\x71\x5f\x6b\x47\x82\x16\x2c\xe3\xeb\x5c\xda\x62\xb2\x01\x16\xb8\x20\x09\xce\x5a\xe0\x66\x0a\xea\xc5\x62\xbc\x9f\x32\x13\xe2\x6c\x4f\x65\x3e\x0a\xdc\x16\x30\x16\x26\x5f\x2e\x3a\x0f\x13\x2a\x63\x0d\xc8\xe7\x78\x59\x1c\xfd\xbd\x32\xe4\x74\x5d\xe5\xfb\x03\xf1\x44\xf0\xc8\x58\xf1\x82\x68\xbc\xa3\x22\x75\x96\x8e\xb1\x56\xaa\x4f\x30\x73\x9f\xab\x56\xba\xcd\xd2\xca\x1e\xae\x4a\xf8\x77\x55\xf8\xf1\x57\x39\xa1\x1a\x73\xc8\xf8\x4a\x70\x36\xa8\xc5\x78\xca\xc1\x6f\x82\xb8\x18\xe5\x8c\xf3\x22\xc1\xe1\xfb\xf2\x6b\x66\x26\xd7\x03\x85\xca\x21\x27\x03\xf0\x29\x77\x5e\x6d\xc5\x3b\x4c\xa8\xb6\xd6\x68\xb4\x67\x7e\x8b\xbf\xb4\x59\x57\x45\xbc\xa7\x97\xe1\xa3\x82\x08\x3f\x94\x72\x29\x9d\xaf\xbc\xf5\xf0\x4c\xec\x87\xf0\xff\x67\x71\xd2\x56\xa9\xeb\x8b\xe5\xa0\xbb\x96\xc3\x29\xfd\x12\x3e\xc4\x9b\x64\x96\x95\x01\xca\xdd\xae\xbe\x43\x62\xb9\xdb\x75\xdc\x2d\x76\xfb\x4a\x70\x6b\xed\x6b\x8e\xd3\x72\x96\x47\x6d\xc9\x61\x6c\x0e\x62\x67\x20\xb0\x59\x5e\x83\x68\x87\xcd\x0a\x1f\x13\x88\x78\x27\x81\x30\x7c\x33\x11\xa1\x9c\x97\x5e\x3b\x0f\x5c\xe4\x0d\xff\x76\x19\x40\xb2\x56\xc4\x68\x7c\xf4\x91\xa3\x80\x69\xa8\xc9\x38\x34\x4e\x0b\x4d\x02\x60\x1d\xdc\x5c\x95\x3c\xaa\x60\xe6\xd7\x4a\x2f\x97\xac\xdd\x7a\xb6\x04\xa5\xf5\xf2\x39\x6a\x7e\x4f\xb3\x84\x62\xc1\xe5\x19\xc5\xfd\x6b\x4a\x2e\x99\x8a\x94\x8e\x4f\x5f\x17\x49\xce\xcb\xb2\x2e\xd9\x4c\x6a\xe1\x2b\xb3\x3c\x8d\x1d\x66\x52\x0a\xbb\xce\x14\xd8\x2d\x44\x1f\x20\x19\xa9\xc8\x42\xff\xb0\x22\x09\x7d\x11\x47\x3d\x41\xbd\x7a\x9e\xd6\xd9\xb5\x36\x02\x75\xf5\x65\xf7\x48\x72\x29\x71\x72\xb0\xb7\x02\x05\x04\x21\xcf\x53\x36\x6c\x44\x5c\xa4\x02\xfd\xc9\x13\xc8\x3a\x78\x02\x98\xa2\x5d\xbb\xc5\xdc\x42\x62\x85\x44\x5c\x4c\xa8\x95\x98\x83\x74\x7b\x8d\xef\xfe\xde\xc0\x8f\x59\x98\x7e\x00\xad\xed\x90\xef\x8e\xa6\x53\xd2\xd4\x83\x59\x6a\xd3\xd6\x96\x5e\xcf\xbe\x08\x89\x62\x30\x4b\x30\xa1\x7c\x0f\xe4\xc6\xdd\x5b\x28\xe3\x10\xce\xbb\x4e\x60\x16\x97\xcc\xfc\xd2\xe6\x59\x85\x84\x99\x98\x0e\x32\xe0\x95\x49\x52\x76\x89\x07\x93\x10\xfa\x96\x0c\x78\x38\xfb\xab\x70\x8c\x5a\x99\x20\x22\x9a\x6f\x6f\x2a\x9c\x6f\xe1\x3c\xd3\x77\x6a\xd4\xc8\xd2\x33\x9b\x40\x1e\xc0\x30\x6a\xe2\x2c\x8a\x6f\x6f\x24\xf0\x15\x66\x8d\xa7\xea\x91\x46\x1e\x44\xaf\x1a\xdb\xb7\x24\xc2\x77\xd6\x79\xa0\xb9\xf8\xce\xea\xfd\x28\x8f\xb5\xfa\x5e\x9c\xdf\xd0\x8d\x70\x12\xac\x9b\xd4\x7c\x2b\xd6\xb2\x5f\xca\x35\xfa\x21\x51\x80\x29\x5b\xfa\xc2\x1f\x29\x7e\xdf\x00\x43\x83\xda\xc0\x47\xce\xa0\x3f\xd6\xb6\x5e\x41\x60\x16\xd9\x75\xb5\x73\x1b\xb2\xf1\xb8\x56\x78\x4d\xf5\x78\xe1\xdc\xe6\xa9\xa4\x87\xe8\x15\x58\x43\xb8\xc7\xf8\x46\xd1\xf7\x8d\x04\x57\xfe\x9f\x21\x8c\x12\x90\x76\x28\xcd\x3c\x7e\x18\xad\x1f\xee\xad\x68\xd4\x97\x8c\xae\x67\x63\xdb\x43\x53\xbc\xfa\xaa\x1e\x70\xe4\x9b\x6b\x48\xa2\x2b\xb0\x46\x81\x2d\x3d\x51\x31\xe0\x6b\xad\xf3\x9c\x41\xf6\xfc\x76\x35\x59\xf3\xf7\x54\x71\xcf\x2c\x3c\xfe\x96\x5a\xf3\x6e\x86\x1a\xee\x59\x43\xbd\xd2\x46\xfb\xc9\x56\xb8\x86\x64\x2d\x3b\xfd\xfb\x3f\xb9\x21\xe6\x10\xff\xab\x1b\xa2\xcf\x5a\x35\xee\x52\xce\x20\x40\xe8\xba\x7a\xd8\x11\x7b\x73\x83\x2f\xf1\x7f\xdc\x8d\x38\x1c\xb0\xd6\x37\xbe\x5e\xdb\xde\x0e\x5e\xe3\x9b\x6d\x98\x26\x5e\x71\x9a\x9b\x29\x00\x77\x3e\x87\x7a\xa0\x10\x9c\x5c\xe6\x2d\x24\x8b\x8f\xf0\xe8\x5e\x2a\x05\xec\x21\x97\x91\x1d\x68\xc6\x51\x65\x0f\x7c\x23\x95\x3a\xe7\x8c\xac\x24\x95\xb1\x4b\x2f\x29\xae\x22\x01\xbf\xa7\x94\x0c\x16\x6e\x5a\x55\x5f\x77\xd6\xde\x0e\x3b\xe0\xec\x20\x32\x14\x26\x8b\x4b\x48\x16\x1f\x42\xf2\xb4\x06\x6e\x55\x2c\x36\x6a\xd4\xb1\x72\xab\x5e\x4d\xca\xbc\xec\xd5\x14\x9e\x47\x6e\xa3\xe4\x6e\x32\x6e\xaf\x95\xdc\x4d\x46\x0d\x20\xa7\x03\x00\xb0\xc7\x47\x21\x2f\xa5\x5b\x50\x28\xe4\x25\xde\xb4\xdd\xb1\x3a\x34\x18\x84\x8d\xe1\x4d\x10\x53\x8e\x94\x20\x7e\x6a\xdc\x2a\xba\x1d\x9d\xb4\xca\x2e\xff\xaa\x1a\xef\x18\xfa\x3d\x7e\xe6\x0c\xb7\xb5\xde\xf9\x5e\xee\x02\x2b\x0c\x2e\x08\x38\x4c\xbf\x70\x7a\x60\x85\x9b\xdb\xc9\x48\x21\xf4\x74\xa8\x10\xfa\xf8\x58\x6d\xdd\x4e\x9a\xda\xf9\x7e\x68\xfc\xd0\x2b\x17\x2b\x7c\x7b\xb3\x93\x46\xdc\xc4\x8c\x49\x8d\x93\x92\xf9\x0a\x1d\x17\x9e\xab\xb9\x91\xcd\x46\xcd\x56\x7d\x11\x72\xee\xad\x7b\x52\x36\xaf\x7c\x52\x7c\x6e\xa7\xf4\x76\xa5\xbb\x40\x94\x96\x43\x73\xab\x7c\xbd\x91\x6e\x53\x7b\x78\x45\x34\xc3\x75\xc5\x60\xe2\x17\x00\x13\xaf\xa5\xdb\x88\x0f\xa0\x7d\x9c\xc1\xba\x6e\xea\xad\xf2\x12\xcc\xb5\x32\x2c\xaf\x2e\xc4\x5b\x4a\x9e\x2b\x05\x5a\xc9\x9a\x24\x20\xda\x85\x81\x29\xcd\x30\xbc\x07\xc5\x25\x09\x45\xe7\x11\x64\x0e\x9b\x51\x5f\xe8\x48\x6f\x0e\x0d\xbd\x5b\xff\xc5\x87\x36\x5c\x63\x4a\x06\x0b\x52\xec\xba\x61\x11\xf0\x06\x2c\x79\x20\x5a\xed\xab\x0b\xd8\xbe\x13\x0a\x96\x80\x91\x70\xbd\xba\x10\x57\x72\x70\xb3\x80\x3b\x89\x9b\xe9\x28\x24\x57\xcf\x80\x5c\xf3\x18\x8e\x2a\x75\x38\x94\x48\x56\x50\x85\xb0\x00\x2f\x66\x8c\x0e\x5b\xef\x24\x5a\xf2\x7e\x74\xaa\x17\x6f\x31\x62\xec\x55\x48\x23\x58\xa3\xf6\xf9\xed\x52\xba\xe6\x3e\xc7\x44\x06\x43\xc9\x02\xe4\x09\x4c\x61\x5e\xb8\x65\xa3\x78\x20\xd1\x94\x57\x44\xd7\xc5\xb4\x74\x80\xee\xac\xa3\x34\x8e\x7a\x1e\x1f\xe7\xa3\x74\xf0\xc3\xe9\xd5\x5a\x3b\x4f\x81\x47\x20\xba\x38\x38\xab\x5e\x43\x32\xcb\x37\xb9\xfb\xf1\x07\x0b\xbd\xcc\x3a\x56\xda\x91\x72\x37\x1f\x8e\xbc\xbe\x20\x1c\xf9\x43\x50\xd4\x33\x10\x5e\xd8\x7e\xb1\x54\xac\xb0\x1d\x23\x42\x86\xe5\xd8\xd1\x25\x6f\x97\x97\x06\xc9\x92\x45\xb5\x11\x86\x4b\x90\x3a\xb3\x51\xde\x49\xe7\xf6\x60\x87\xce\x6a\x7f\xb8\x38\x11\xda\x93\xcf\x21\x5c\x3b\x80\x35\xf7\x60\xc8\x8a\x8e\x5b\x9f\x62\x23\x92\x91\x5f\x64\x31\x68\x20\x28\xe7\xa1\x0b\xd6\x34\x16\xd9\x4a\x01\xcb\xa0\x72\x8d\x6c\xe5\x17\x14\x4e\x60\x48\x29\x30\x3b\x59\x92\x66\x8e\x41\x17\x9c\x7b\xa9\xb7\xfa\x68\x59\xd6\x69\x7e\x7f\xa3\xbc\x78\xf2\x23\x38\xcd\x3a\x25\xd6\x9d\x5d\x42\x34\x5a\x0c\xa9\xdb\x05\x14\x3f\x10\x0e\xed\xea\x7c\x51\x82\xee\x9d\x1b\x0c\x3f\xcb\x45\xba\xeb\xed\x46\x2f\xb5\xc7\x09\x99\x29\xc0\x00\xfc\x76\xe8\x3a\xae\xe5\x50\x13\x2d\xf1\xa2\x10\x84\x81\x0a\x19\xb8\x42\x6d\x9f\xd9\x51\xf0\x9a\xc7\xb0\x58\x41\xc4\x20\x6f\x89\x09\x86\xac\x4c\xf6\xec\x6a\x60\xfb\x30\xf4\x64\x8e\x47\x6f\x77\xb6\x0f\x5d\xc0\xc5\xf6\x10\x2e\x04\x17\x08\x5e\xf0\xde\x73\x4b\x26\xdd\x75\xf0\x8a\x41\xd2\xcf\x8b\xf3\xde\xab\xf4\x72\x6d\xc0\x0b\x34\xb5\xdd\x9b\xa4\x57\xcd\x5a\x8a\xef\xd3\x84\xf6\xa6\xb0\x1c\x36\x70\xa6\x81\xe7\x85\x77\x25\x83\x90\x95\x87\x57\x89\xd1\x90\xd2\x43\x88\xb6\x8f\x11\x3c\xd0\x35\x80\xb4\xae\x79\x03\x36\xd2\x91\x15\xd2\x91\xfa\xb7\x85\x0a\xbd\xa8\x3e\xd7\x8f\x95\x0d\xc0\x3b\xcd\xe8\x99\x34\xb9\x67\x72\x65\x53\x66\x0c\xd0\xce\xb3\x29\xbb\xef\x35\x00\xdb\x53\xe4\x89\x11\x75\x2f\x2e\xfa\x0b\x2a\x0f\x25\x72\xea\x0d\x09\xa5\xa1\x14\x24\xa5\x4b\x30\xbe\xff\x42\x25\x33\x10\xee\x71\x7d\xd9\x76\x2e\x6a\xc3\x12\xe5\xf5\x34\xa6\xe5\x4d\xc0\x94\xe9\x35\x39\xa6\x93\xfe\x50\x9c\x89\x3f\xe3\x2f\x4a\x07\x25\x22\x72\x6f\x3d\xa7\x8d\xfd\xff\x08\x32\xc8\x66\xe1\xe4\xfe\x5d\x55\xa0\x0d\x2f\xe8\xb6\x3b\x46\xb8\x1d\xc1\xe2\x0b\x2e\x1c\xac\x85\x88\x3a\x65\x65\xbd\xc0\x94\xfc\x95\x5b\x4c\x51\x10\x95\xaf\x8d\xf1\xf9\x5a\x4a\x67\x9a\x15\x03\x82\x53\xfa\xd4\xec\x2d\x6b\x32\xa1\x1f\xb5\x37\xab\x0d\xa0\xe6\x0f\x93\xac\x95\x4e\x35\x43\xaf\xfd\x01\x02\xe5\xda\xc6\x76\xe8\x3a\x0c\x69\x10\x23\x37\xa4\x71\x3b\x47\xce\x41\x98\x0a\xd1\x3c\xce\xc4\x6b\xeb\xb8\xdd\x3b\x7c\xff\xf6\xca\xf6\x9c\x02\xfa\xbd\x16\x2c\xcf\xb5\x69\xc5\x8b\x77\x65\x7a\x61\xe5\x16\x23\x27\xe2\x5b\xfe\xae\x88\xa0\xc8\xe1\x11\x31\x3a\xa2\x5a\xac\x17\xe2\xc5\xfb\xb7\xff\xd7\x89\xcb\x11\xf2\xd1\xc8\xd5\x5d\xd1\xf7\x1c\x4c\x66\x11\x27\x7b\xa3\xcd\xfa\x67\x7a\x72\x8a\x71\xc0\x23\x59\xb6\x47\x13\xf4\x5d\x17\x06\xc0\xab\x2f\x1e\x6e\x3d\x8d\xf5\xf4\xda\xf5\x46\xaf\x37\x60\xee\xa1\x3b\xb5\x46\x37\x8f\xb0\x6d\x17\x3c\x93\x81\xef\xa2\xf7\xec\x80\xdf\xa2\x9b\xab\x5f\xa4\x53\x39\x08\x0c\x11\x00\xc4\x21\x92\x1e\x43\x35\xaa\x39\xff\x6a\x71\xce\xb9\x47\xa1\xc7\xcf\x90\x03\x45\x8a\x1c\x42\x68\xbd\xd3\x6b\xf3\x44\xc3\xeb\x2f\x81\x34\xaa\xae\xa5\x78\x05\x45\x2c\xca\xc5\xa4\x06\x36\x72\x83\x67\x3c\xde\xdd\xdf\x1a\x37\x70\xd3\x6f\x86\x87\x5a\xbe\x95\x1a\x42\x9a\xc2\xff\x31\xd8\x9d\xea\xf5\xea\x50\xaf\x7b\x3b\xec\xea\x8c\x26\x9f\x89\x3f\x41\x8e\x80\x9c\x8c\x5a\x53\x39\x2c\x40\x57\x89\x10\x78\x12\xc6\xfa\x15\x40\x67\xb3\x91\x06\x1e\x4b\xe0\x1b\x24\x11\x12\x1f\x21\x29\x20\x52\xc3\x1b\x6b\x82\x7c\x81\xb1\x82\x3a\x34\xfc\xc5\x62\xb1\x17\x60\x84\x2e\x35\x3c\x1c\x7d\x49\x71\xc1\xf1\x56\x2f\x5b\x05\x09\x63\x40\xa2\xda\x20\x68\x63\xb7\x68\x71\x24\x74\x97\x00\x00\x81\x78\x02\xc0\x78\x2c\x5d\x28\x0a\x1a\xf4\x33\xf1\x52\xf9\x66\x23\x52\x56\x28\x44\xbb\x11\xbd\xb8\xbe\xf0\x6e\x8d\x7d\x86\xca\x8a\x2e\xe3\x05\x73\x04\x40\x93\x94\x02\x62\x1b\x38\xa0\xda\xc9\x70\x5c\x38\x71\xde\x8a\x9b\x73\x26\x35\x5b\xbf\xab\xe9\x62\xe0\xe6\xed\x87\xab\x7b\x68\x57\x00\x25\xba\x02\x90\x19\x71\x09\x59\x44\x60\x20\x2b\xa3\x32\x1c\x70\x09\xe9\x94\xe3\xa0\xa2\xaa\x25\x82\xe5\xe6\xe1\xee\xe3\xa0\xc3\x0e\xef\x95\xf3\xbd\x6e\xf0\x9d\x7c\x2a\xb3\x10\x6f\x87\xce\xeb\x5d\xa7\x38\x85\xed\x60\x21\xd6\xc2\x4e\xf6\xfc\xa2\x78\x63\xb7\x5b\x29\x1e\x9f\x3e\x5e\x14\xa7\x40\xed\x3b\x97\x02\xb5\x7e\xb8\xbc\x11\xbf\x9a\xa6\x3f\xa0\xb9\x0c\xf5\xf4\x56\xef\x02\x58\x8d\x6b\x3e\x74\xf8\x56\xef\x00\x16\xd7\x3a\x93\x5b\xb9\xad\x9d\xea\xef\x74\x13\xf7\xe4\xd5\xf9\x5b\x50\xe1\xe9\x46\xe5\xc4\x9e\xaa\x86\x97\xef\x58\x88\x4a\x8d\x38\x1f\xbc\x2d\x84\x28\x2e\x95\x3d\x30\x35\x3e\x1e\xd1\xd2\x85\xc7\x75\xc2\x63\x97\xd0\x05\xab\x5d\x1c\x7d\xbc\x2c\x8e\x15\x8b\x5c\x7d\x76\xf7\x96\xce\xe4\xb1\x34\x57\x16\x7f\xc8\x33\x70\x51\x9c\xb6\x39\xeb\x55\xe2\xf9\x4a\xa3\xd3\x1c\x59\xc6\x26\xdf\x37\x6e\xb3\x51\x14\xcb\x12\x05\x64\x8d\x0c\x00\x59\xff\x8c\x50\x47\x3b\xa0\x69\x89\xdc\x52\x6b\x3a\xc6\x33\xc6\x9c\xf7\x18\x70\xd2\x12\x05\xde\x59\x47\xc7\xd0\x23\xa8\x91\x8b\x06\x98\xe5\x01\x2d\x88\xe8\x92\x99\x0c\x22\x12\xa3\x9e\x02\xc5\x2a\x47\x50\x79\x3c\x54\x5c\x00\xc0\xfb\x10\xe7\x9c\x75\x73\xc4\x39\x97\xcd\x78\x80\x81\x46\x34\x28\x81\x93\x1f\x16\xfb\x6e\x5c\x66\x8b\x8e\x98\x92\x91\xcb\x06\x1d\x07\xda\x6f\x86\x65\x2d\x77\xba\x56\xa6\x45\x37\x9e\x33\x71\x7e\xf5\x46\xfc\x4a\x9f\x15\x19\x58\x2c\x8c\xf5\xb5\x03\x87\xa8\xef\xc1\x03\x4e\xf9\x1f\x38\x8b\x34\xf1\xd1\x12\x83\x34\xf1\xa5\x41\x06\xc1\xca\xdd\x2e\x72\x78\x99\x01\x04\xec\xf8\x0c\x04\x03\xae\xe4\x10\x1f\xaf\x2f\x19\x60\xcc\xd4\x51\xb2\x5d\xad\x3a\x6d\x54\xbd\x45\x67\xb4\xf7\xf8\x29\xde\xda\x36\xa2\xa6\x48\x46\x75\x6f\x07\xd4\xa2\xaf\xb3\xb7\x4d\xae\x21\x31\x8c\x1d\x83\xf7\x03\x9e\x8c\x78\x73\x8c\x0a\x99\x2c\x8b\x2a\x0a\x59\x79\x25\x9d\x5d\x83\xf3\x60\xdd\x5b\xeb\xeb\x9d\x04\x32\x71\x69\xd7\xe8\x8c\x78\x6d\xad\x17\x57\xd2\x6f\x22\x26\x0c\x52\x8c\xeb\x9d\x6b\xc3\xb4\xf1\x82\x80\x06\xc4\x51\x77\x9b\x6c\xc8\x6f\x5e\xcf\x8f\x77\x80\x9a\x32\xf1\x59\x66\x90\x44\x7c\x4d\xc1\xe6\x6b\x9c\x4a\x12\x4c\x3c\x98\x83\x78\x6d\x68\x46\xf3\x62\x47\xe6\x20\x64\xe5\xbc\x74\x96\x0c\x8c\x81\xe1\x5c\xe0\x02\xcc\x04\x28\x1f\xb2\xc9\x48\x01\x80\x22\x43\xd6\xf2\x5a\xb1\x96\x1e\x7b\x92\xdd\x3f\x8e\x40\xc4\xb9\xc7\x5e\xe5\xe8\x6e\xd5\xa1\x86\x38\x6f\x54\xe7\x7f\xaa\x03\xc6\x77\x1b\xd7\x7b\xab\x0e\xeb\xd0\xfa\x08\xb6\x56\x46\x7c\xff\xd8\xb9\xcd\x13\xcc\x7a\xfc\xc3\xa4\xcc\x56\x1b\xbd\x1d\xb6\xe8\x05\xae\x7f\x57\xf8\xbc\x2d\x3c\x5d\x01\x19\x50\x5b\x10\xec\xc4\x45\xc8\xb8\xaf\xa8\x9b\x29\xe5\xaa\xb4\x84\x76\x36\xad\x85\x5c\x3d\x35\xb7\x24\x00\xba\x18\xe8\x54\x60\x3a\xe6\x60\x10\xcb\xa2\xdb\x0d\x7c\x21\xdb\x93\x63\x83\x67\x81\xea\x24\x04\xbf\x84\x67\x82\x58\x14\x26\xc8\xad\xfc\x92\x34\x62\xa0\xec\x42\x9d\xda\x58\x89\x46\xe0\xbb\x5e\x61\xfc\xd2\xba\xd3\x8d\x32\x8e\xde\x87\xa2\x44\x71\x49\x89\xe3\xad\xbd\xf1\x7e\x57\xaf\x01\x37\x6f\x6c\x88\x13\xf9\x2a\x61\x26\x9e\x02\x14\x47\x30\x06\xf5\x56\xaf\xe3\x93\x6b\xc4\x5a\x80\xaa\x13\x86\x42\xbc\xe5\x5c\x46\x40\xee\xb1\xf5\x2a\xf0\xa7\x61\xe0\xf1\xe2\xab\x39\xa4\x37\xa0\x89\x77\xbd\x48\x79\x71\xb6\xa0\x85\x71\xb6\xa0\x71\xb3\xf3\x04\x70\x64\x28\x0d\xe1\xef\x6d\x87\x2e\x45\x35\x86\x7a\x47\x55\x4b\x38\x39\x2e\x30\x97\x02\xd2\xbf\x87\xdc\x58\x5d\xbb\x4c\x95\xbd\x60\xf3\xa9\xd9\x0a\xdb\x65\x9d\x6b\x00\x52\x6a\x2e\x2f\xa7\xd4\x5c\x7f\x90\x52\x89\x82\xe5\xb4\xb2\x5d\xd6\xce\x75\x4c\x2e\x6f\x6e\x2e\x4b\x9a\x9c\x72\x13\x5b\xfb\x7d\x10\xe4\x1e\xed\xac\xf3\xeb\x5e\xb9\x47\xc2\x9a\xee\xf0\x43\x56\x82\x56\x6e\xbe\x52\x29\x75\x8c\xc3\xfd\xad\xd3\x5e\xfd\xe1\x11\xdc\xa2\x3f\xf2\xba\x5d\x3e\xfa\xa1\xca\x4f\x2e\x0d\xfe\xcb\xd9\xd1\xa5\x9b\x23\xe3\x13\x95\xf8\x2a\xc8\x79\x59\x00\x77\x7e\xc5\x0a\xe5\x3f\xf2\x6a\x29\x87\x96\x0f\x9e\xc4\xc2\xc6\x63\x27\x67\x5f\xb9\x5d\x1b\x78\x6d\x20\x65\xa4\xd7\x13\xc1\xc9\xff\x9a\xd1\xfc\x02\xc9\xa9\x81\xf8\x20\x56\x10\x8f\x03\x8b\x43\x5e\xc1\xdc\xbc\x1b\xbd\x36\xe2\x8d\x41\xa7\xfe\xb8\x29\x75\x97\x2e\x25\xde\x86\xf6\xe7\xf7\x10\xe3\xf6\x4f\x48\x19\xf7\xe2\x7e\x92\x46\x3b\xae\x91\x3b\xdf\x6c\x64\xda\x64\x17\x98\x10\x4f\x7e\x8c\x3f\xd4\x84\xa5\xd0\x91\x4d\x11\xc6\x28\x02\x9f\x72\x71\x09\x46\x44\xb1\xb3\x4e\xf9\xa4\x14\x29\x0a\x5d\x87\xbc\xa8\x44\xc9\x0b\x73\x69\x8e\x21\x18\x67\x9e\x63\x03\xcd\xce\x3c\x04\xc1\x4c\x51\x21\xfe\x2b\x7c\x8a\x4b\xf8\x8c\x23\x84\x41\x7f\xe0\x1e\xcb\x0e\xa4\x40\x0e\x29\x70\x9d\x65\x87\x74\xec\x3c\x28\x23\xe5\x73\x93\xf3\x55\x6f\xe1\x7b\xbe\x85\x04\x7b\xf4\xa8\xa7\xfc\x48\x25\x55\x67\x73\x0a\xf9\xeb\xe5\xfb\x11\xa4\x1b\xe0\xea\xba\x0e\x64\x58\x7f\x01\x2d\x08\x24\x00\x09\xd6\x5f\x46\xd0\x33\x14\x82\x72\x66\xe8\x01\xdc\x88\xc1\xa9\x4b\x7a\x13\xb8\x0b\x83\x63\x17\x76\x10\xc3\x45\x90\x7a\x85\x4e\xff\x67\xe2\x25\xfe\xf0\x16\x63\x3d\x42\x38\x57\xd8\x8d\x21\x29\x30\xba\x3f\x8b\x93\xbb\x69\x79\x87\xee\xf4\x1f\x12\x78\x7a\x97\x97\x02\x5f\x86\xc2\x8b\x38\xf4\x68\xd8\x17\x47\x1e\x8c\xf9\xe6\x07\x1e\x21\xa7\xe3\x1e\xcf\x0a\xb8\xc8\x4e\x56\xca\x70\x75\x3d\x8b\x09\x21\x65\x2b\x77\x48\x20\x10\xf4\x1c\xbf\x4b\x20\xb0\xf6\xb8\x93\x5d\x84\x7a\x43\x09\x93\x5a\x4d\x5e\xa7\xa1\xa7\x07\xd3\x44\xa0\xc9\x7d\x46\xfe\xd0\x4d\x76\x9e\x95\x24\xe8\x5d\x6f\xef\x34\x5b\xb3\x23\xfc\x15\x25\xa5\xb3\x1b\xbf\x13\x66\x86\x20\xd4\xe9\x24\xb5\xb7\x3a\xea\x00\x2e\xe0\xab\x38\x51\x88\x72\x84\xad\x8e\xb0\x89\x78\xdc\x28\x4f\x25\x18\x78\xdd\xc4\x91\xe1\x4b\xec\x57\x17\x71\x6c\xf0\xbe\x7b\xd4\x99\x4e\xaf\x54\xbc\x1d\xa7\xde\x5c\xea\x95\x2a\x80\xc3\x49\xec\x38\x0e\x63\x38\xb0\x6f\xc4\x7b\xd3\x1d\x46\x9d\xc8\x51\x51\x4f\x12\xa6\x38\x32\x1a\x4c\x16\xb2\x81\xc1\x84\xf9\x21\x67\x68\x3a\xa7\x32\x70\x3a\xa8\xc6\xf4\x79\xdd\x93\xbf\x69\xda\xdb\xaf\x28\x69\x34\xa2\x2b\xd5\x42\xd0\x8d\xb6\x8e\x25\x68\x5c\x5f\x72\x8e\x38\x87\x9c\x44\x34\xd7\xda\xa7\x86\xbf\xd2\x7e\xbe\xd1\x01\x8a\xdb\x03\xf1\x69\x36\x7a\xbd\x81\x57\xac\xb2\x56\x61\x98\x9a\x83\xf1\xf2\x8b\x78\xcd\xf9\x39\x86\xc0\x2d\x42\xe9\x20\xc4\x39\xe2\x14\xa1\xd4\x25\x24\xc0\xe9\x2e\x85\xd3\x66\xdd\x61\x7c\x96\x1f\x8e\x16\xaf\xb3\xb8\x3f\x19\xa2\x8b\x94\x5a\x62\x0b\x65\xe6\xb1\x71\x50\x98\x88\xe3\x25\x24\x7c\x8f\x3a\x08\x08\x0b\x53\x14\x5c\x37\xb5\xec\xd7\x64\xd7\x70\xde\xaf\xe1\x51\x6a\x57\xa0\x06\xe6\x52\x65\xe7\x46\x64\x37\xc7\x27\x07\x82\xc3\x7b\x78\x39\x34\x3c\x47\x43\x4a\x9b\x99\x12\xe0\x1c\x94\x15\xb8\x00\x67\xa1\x64\x56\x3d\x53\x04\x22\x35\xa6\x12\x10\xa4\xf1\xde\x02\x64\xbf\x81\xe0\xaf\x2e\x66\x80\x73\xe1\x38\x2e\xa1\x20\x14\xcf\x2e\xa1\x00\x45\xec\xe2\x58\xb2\x9e\xfa\xb1\xb3\x4b\xc7\xa2\xe9\x31\xf0\x7f\xf8\xf7\x41\xba\xdb\xe8\xec\x51\x5c\x75\x71\x9a\x6b\x36\xaa\x1d\x3a\x14\x6b\xf0\x67\x82\x57\x5f\x3c\xdb\xd5\xc0\xf6\xe5\x0c\x08\xb5\x62\x07\xc7\xb1\x56\xc2\xcf\x02\x40\x7d\x51\xcd\x90\x99\xd8\xfd\x8a\xdf\x64\xd3\x92\xd0\x58\x76\x10\x1d\x0c\x68\xd6\xaf\x30\x25\x83\x99\x89\xb1\x10\x9b\x4e\x92\x2e\x0a\xe9\x47\xeb\x8f\xd5\xf3\x44\x54\xec\x16\xc3\xde\x18\xf4\xda\x36\x29\xfe\x47\x9e\x32\x0c\x0b\x01\x97\x30\x2c\x72\x1d\x03\xf1\x40\xe4\x25\x84\xa4\xa0\x3c\x11\x9e\xfc\x21\x88\x77\x0b\x33\x14\x6b\x55\x5d\x60\x29\x64\x87\x87\x7e\xf8\x08\x32\x4b\xcc\x6f\x55\x01\xf1\x82\x3e\x0b\x18\x6d\x50\x5d\x82\x59\x28\xb2\xbd\xc1\x34\x42\x99\xb9\xff\xb0\x2e\x11\x81\x29\x9a\x1b\xe8\xed\x6e\x28\x65\x0c\xc9\x35\x03\xd0\x79\xd7\x4d\x46\x23\x97\x90\xf2\x34\x78\xc9\x24\xf3\xd1\xca\xfa\x34\x9e\x46\xce\xb2\x3b\x58\xc5\x8b\x49\x6b\xa3\x42\x90\x66\x84\x9d\x99\x1e\x32\x1a\xaf\x3e\xe1\xd8\x7f\xe6\xa0\x1f\x64\x9f\xc0\x66\x41\x99\x29\x6e\x11\x9b\xf1\x04\x42\x0a\x56\xbd\x32\xd9\xe3\x60\xf8\x55\x14\x02\xdf\x3e\x0c\x3f\x7c\xf2\xe9\xc7\xcf\x8e\xe3\x0f\x7b\x9b\xe1\xfb\xf4\xd3\xe7\x80\xf2\xd3\x1f\x3e\x23\x56\x7a\x6a\x9e\xb0\xa6\x77\x74\xb3\x12\x3f\x7e\x76\x4f\x5d\xdf\x3c\x1d\x97\x15\xd2\x8f\xc0\x42\xe6\xff\x48\x88\x77\xb2\x57\x35\x07\xab\xa2\x45\x89\xc9\xda\x59\x43\x01\xeb\x94\x53\x10\xa7\x8c\xde\x64\x8b\x4f\xa9\x50\x8b\xf8\x7b\x34\x3e\xd8\xcb\xf9\x2e\xa6\x21\xa3\x71\xc6\xf7\xed\xce\xc4\x6f\x18\xb0\x96\xde\xbb\xcb\x0a\x3c\xc5\xcb\xfd\xa7\x58\xf4\xdf\xa0\xa3\x01\xc1\x6f\x15\x04\xbb\x4d\x08\x30\xf6\xed\xb7\x20\xc0\x28\xb9\x09\x03\x47\xcd\xfd\xa6\x46\x50\xd8\xda\xd4\x0c\x4c\x50\xad\x00\x75\xf8\xd7\x23\xc2\xf1\x18\x45\x05\xfe\x8d\x17\x60\xf1\x18\x70\x8e\x10\x5e\xd9\x3b\x3a\x3a\x13\x74\x38\x48\xdf\x8c\x8d\x86\x6a\x8c\x2e\x8e\xd8\x37\x23\x84\xd7\xfe\x26\xf8\xe8\x01\xe8\x6f\xef\x2c\x0e\x5e\x7c\xac\x9b\x47\xcd\xa8\x7d\x7c\xe9\xfb\x5f\xdd\x34\x44\x62\x62\x1d\x4c\x48\x18\x3f\x6d\xee\x9f\xd2\xe6\x9e\x45\xc7\x9b\x1b\xe2\x5c\x7b\xb9\xce\x76\xb6\x5c\x17\x9d\x85\x26\x42\x19\xea\xe7\x74\xef\xe7\x08\xd9\xf3\x1a\x50\x72\xe3\x00\xe7\x37\xb6\x0c\x22\x79\xd3\x16\xc7\xf0\xdd\x93\x57\x13\xe7\x36\x74\xfe\xde\x30\xc5\xf7\x26\xdf\x8a\x2c\x26\xde\xbf\x3a\x0b\x48\x48\xb1\xaa\xa2\xc6\x18\x3d\x9d\xea\x0c\x33\x0f\x1a\x4f\x65\x1a\xf5\x2f\x0c\xeb\xd1\x0a\xe3\x3d\x1e\x55\x08\xef\xb2\xd1\xa8\x67\x15\x7f\xdb\xd8\x17\xb5\x55\x9f\xbc\xb5\xdd\xe7\x4a\xae\xc3\x4c\xc8\xb5\xad\x42\x2e\x05\xd9\x00\x40\x63\xf7\x15\x7e\x86\x5f\x3f\x06\x42\xfe\x23\xbd\x2f\x22\x4e\x5c\xf5\xe3\x16\x12\xf0\xc1\x66\x48\xd8\x40\xc2\xc6\x0e\xf0\x5c\xdc\x8f\x2d\x7c\xb6\xf2\x00\x5f\x7b\xf8\xda\x2b\x75\x8b\x85\x81\x41\xf8\x51\x6c\xad\xf1\x1b\x48\x39\xc0\xf7\x41\x49\x7a\x6c\x0e\xdf\x31\x39\x0b\x47\x04\x7f\x9c\xb8\x0a\xab\xa3\x74\xfe\x38\x71\x55\xa8\x95\x52\xf1\xe7\x89\xab\x5a\x79\xa0\x24\xf8\x75\xe2\xaa\x50\x3d\x25\xe1\xcf\x13\xe0\xeb\xfc\x86\x11\xe2\xef\x13\x57\x85\x76\x50\x22\xfe\x3c\x71\x55\x2f\xf7\x75\x6a\x17\xfd\x82\xd4\xd4\x2a\xfa\x55\x55\x9f\xda\xde\xee\x7e\xb7\x46\x7d\xae\xf8\x66\x7a\xab\x1c\x19\xda\xbf\xe8\xed\x8e\xfd\x6b\x54\x8f\xb7\x95\xf0\x12\x2e\x3c\xdb\xd2\x59\xd9\x2e\x2a\x8a\xd5\x56\x6b\xb3\x1b\xa2\xa2\x9f\x8c\x9a\x1e\x7b\x02\x4b\x6f\x99\xa0\x27\xfe\x61\xa7\x16\x15\x5c\x72\x79\x6b\xeb\x25\x70\xf3\x70\xbd\x05\xe6\x6a\xdf\xff\xfd\xef\x00\xaf\x7f\x57\xff\xf8\x87\x78\xfb\xcb\x0f\x42\x7d\x69\x94\x6a\x9d\xd8\x92\x09\x2d\x83\x6d\xe5\x97\x97\x05\xe4\xa2\x22\xb7\x76\xb2\xd9\x44\xb7\x76\xa8\xbe\xfa\xff\x02\x00\x00\xff\xff\x56\xbf\x2b\xa0\x9a\x02\x01\x00"
func confLocaleLocale_enUsIniBytes() ([]byte, error) {
return bindataRead(
@@ -4584,8 +4584,8 @@ func confLocaleLocale_enUsIni() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 66204, mode: os.FileMode(0644), modTime: time.Unix(1582135285, 0)}
- a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x76, 0xb3, 0x28, 0x43, 0x94, 0xed, 0xe1, 0xe5, 0xc2, 0x56, 0x9, 0xb2, 0xf6, 0x3d, 0xcf, 0x66, 0xb0, 0xc7, 0x24, 0x81, 0xf, 0x4a, 0x69, 0xf, 0x50, 0xf4, 0xe8, 0xe4, 0x7a, 0x44, 0xd5, 0x31}}
+ info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 66202, mode: os.FileMode(0644), modTime: time.Unix(1582332311, 0)}
+ a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0x73, 0x2d, 0x27, 0x68, 0x8c, 0x9c, 0xe4, 0xf2, 0x91, 0xbf, 0xfe, 0xaf, 0xf1, 0x9d, 0x8a, 0x96, 0xaf, 0xeb, 0x79, 0x2a, 0x15, 0xd1, 0x75, 0xea, 0x51, 0x2a, 0x3c, 0xfd, 0x46, 0xe4, 0xc5}}
return a, nil
}
diff --git a/internal/assets/templates/templates_gen.go b/internal/assets/templates/templates_gen.go
index 0e8b9086..5bac8b89 100644
--- a/internal/assets/templates/templates_gen.go
+++ b/internal/assets/templates/templates_gen.go
@@ -5,7 +5,7 @@
// ../../../templates/admin/auth/new.tmpl (10.045kB)
// ../../../templates/admin/base/page.tmpl (1.227kB)
// ../../../templates/admin/base/search.tmpl (247B)
-// ../../../templates/admin/config.tmpl (13.623kB)
+// ../../../templates/admin/config.tmpl (13.51kB)
// ../../../templates/admin/dashboard.tmpl (7.122kB)
// ../../../templates/admin/monitor.tmpl (1.87kB)
// ../../../templates/admin/navbar.tmpl (1.219kB)
@@ -317,7 +317,7 @@ func adminBaseSearchTmpl() (*asset, error) {
return a, nil
}
-var _adminConfigTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\x41\x73\xea\x38\x12\x3e\x67\x7e\x85\x97\xda\xc3\xee\xd4\x62\x6a\xab\xe6\xb0\x07\x92\x2a\x86\x4c\x92\xd9\x47\x66\x58\x60\x66\x8f\x2a\x61\xb5\x6d\x6d\x64\xc9\x4f\x92\x21\xbc\x54\xfe\xfb\x96\x24\x1b\x0c\xb1\xc1\x62\xc8\x14\xa7\xc4\xb1\xfa\xeb\x4f\xad\x56\xab\xbb\xe5\xbc\xbd\x69\xc8\x72\x86\x35\x04\xbd\x25\x56\x30\x48\x01\x93\x5e\x10\xbe\xbf\x7f\x37\x24\x74\x15\x44\x0c\x2b\x75\xdb\xc3\x24\xa3\x3c\x88\x04\x8f\x69\xd2\xbb\xfb\xee\xa6\xfe\xae\xa0\xe6\x85\xc6\x94\x83\x34\xef\x0e\x5f\x26\x92\x12\xfb\xf7\x9b\xba\x32\x8b\x38\xe0\x78\xb5\xc4\xd2\xe9\xbb\xd9\x97\xd4\x6b\x60\x2b\x08\xd6\x94\x40\x10\x09\x56\x64\x56\xbf\x06\xae\x1d\xd8\xcd\x07\xea\x98\x81\xd4\x5b\xac\x9b\x61\xfa\x43\x8d\x85\x16\x79\x80\xb5\xc6\x51\x0a\x24\x30\x93\x2c\xc9\x5a\xa0\x90\xfe\xf3\x5f\x3c\x5c\xc8\x92\x56\xe8\x26\x1a\x2a\x90\x2b\x90\xa8\x9c\x76\x05\x3b\x48\x7f\x70\x82\x07\xf3\xdc\xa2\x6b\xbc\x64\x10\x28\x48\xb2\x1d\xd9\x9b\x21\x61\xd5\x58\xc2\xfa\xa9\x90\xf4\x9b\x31\x1a\x0b\xac\xc6\xfe\xde\xdf\x2a\x99\x9b\x21\xd1\x77\xad\xec\x70\x9e\x23\x8e\x33\xe8\xbd\xbf\x0f\x07\x44\xef\x64\xc8\xdd\xdb\xdb\x28\xcf\x7f\xc1\x19\xd8\x57\xa4\x33\x5c\x21\x59\x23\x5a\x38\xca\xf3\xdf\x66\x13\x0f\x34\x22\x32\x4c\x79\x33\xd8\xbd\x7d\xe7\x01\x26\xe2\x98\x51\x0e\x28\x13\xa4\x69\xb6\x43\x5a\x59\x36\xc6\x41\x8c\xdf\xde\x68\x1c\x84\xbf\x3a\x99\x67\x41\xe0\xfd\xbd\x1f\xa5\x10\xbd\xbc\xbd\x01\x27\xef\xef\x7d\xf5\xb5\xc0\x12\xfa\xa2\x77\x37\x1c\xd0\xbb\xee\x53\xa2\xca\x2c\x2c\x92\xa2\xd0\x20\x11\x13\x49\x57\x2e\xf7\x4e\x72\x66\x05\x27\x22\xe9\x42\x68\x8b\xb9\xe7\x63\x84\xae\xa8\xf5\xdc\xe1\x80\xd0\x55\x6d\xd4\x11\xde\xb2\xe0\xa8\x50\x20\x9b\x17\x63\x56\xf0\xdf\x14\x48\x8f\xd5\x30\x78\x2d\x2b\xe1\xf0\x9c\xcd\x2f\x3d\x0d\xa5\xb1\xa6\x11\x8a\xa9\x5d\x02\xa1\x51\x8e\x75\xda\xb4\x02\x91\x20\x60\x60\xe6\x56\x60\x26\x84\x9e\x62\x9d\x9a\x81\xf6\x4d\xe7\x79\x32\x91\x78\x68\x9b\x88\xe4\x7c\x55\x12\x56\x20\x15\x20\x5c\xe8\xb4\x6d\xad\xb6\x9a\x66\x6e\xf0\x54\x8a\xd7\xcd\xa8\xd0\x69\xb5\x7c\x87\x2a\x87\x03\xc2\xca\x40\x55\xb3\xf2\x05\xa2\xa2\x4a\xaf\x35\x24\x1a\x6a\xc0\x8d\x2e\xd2\x71\x6f\x72\xa1\x83\x70\x3e\x7f\xaa\xf6\x28\xe9\x1e\x2c\xda\xe4\xcb\xd7\xa7\x99\x2a\x8d\xa5\x46\xcb\x82\x32\x4d\x39\x72\x87\xcd\x01\xed\xf6\x98\x62\x74\xce\x0d\xc0\x8f\x4e\x7e\x6e\xc5\xbb\xb3\x3f\x4d\xaf\x31\x84\x57\xdb\xdc\x4e\xb9\x21\x8e\x9f\x86\xcd\x85\xd4\x47\x40\xa7\x42\x6a\x5f\x48\x46\x95\x06\x7e\x0a\x79\x62\x47\xd5\xf1\xab\x41\xfb\x2b\xd9\x64\xd5\x6a\xe4\x69\x2e\x6d\xc1\x62\x8f\x4a\x3d\x52\xd4\x26\xda\x01\x1d\xd6\x92\x6a\x17\x28\xcc\xde\x00\x82\x5e\x60\xa3\x10\xd6\xce\x9b\x1a\x95\xb6\xfa\xcf\xcc\xa1\x8d\xb6\x60\x5f\x60\xa3\x46\xda\x1a\xc0\xc3\x93\x4e\xd3\x7e\x81\x0d\xd2\xa0\x4e\x1b\xe6\x0b\x6c\x16\xa0\xce\xb3\xcd\x0b\x6c\x12\xe3\x05\xa7\x55\x24\xc0\xcf\xd2\x90\x51\x4e\xb3\x22\xb3\xd3\x51\xf4\x1b\x20\x6b\x21\x3f\x9b\x3f\x3b\x8c\x2f\xb0\x99\xd3\x6f\x30\x36\x00\x3e\xa6\x3e\x01\x74\xfe\x5c\xd4\x31\x9b\xed\xeb\x52\x87\x86\x2b\x89\x7f\xd7\xf8\xb8\xf7\xd4\x72\x26\xfd\xa5\xdf\x0f\x66\x90\x0b\x45\xb5\x90\x9b\x60\x6c\x69\x16\x12\x6b\x2a\x78\xd0\xef\xdf\x5d\xe8\xe4\x92\x90\x8b\x6b\x3d\xba\x2c\xb7\x4e\x99\x86\x31\xd4\xf9\xa9\x86\x8a\x24\xcd\x35\xd2\x9b\xbc\x25\x81\x9b\xdb\x01\x8b\x4d\xee\x53\x3c\x58\xf6\xb1\x90\x11\xa0\x5c\xd2\x15\xd6\x9d\xf3\xf4\xdd\xb2\x87\x0f\x46\x7e\xea\xc4\x2f\x94\xb3\x67\xf8\x15\x45\x12\xac\x23\x21\x46\x33\x7a\x18\x21\xab\xac\x75\xc7\xe2\x19\xbf\x8e\x4b\x89\x89\x11\xf0\xb0\x42\x2e\x21\x06\x29\x81\x20\x46\x23\xe0\xea\xc3\xa6\x72\xda\xfe\x2d\x28\xdf\x9b\xf8\xb4\x92\x9b\x94\x62\x41\xef\x1f\x41\xcf\xa7\xda\x2a\x4b\x93\x54\xeb\x1c\x25\x8d\x93\x3c\x65\xfc\x32\x7f\x79\x5a\x2c\xa6\x8f\xd4\x23\xfa\x1f\xe5\xe5\x72\x31\xc4\x44\x84\x99\xf5\x6b\x94\xd1\xc4\x6d\xeb\x33\x28\xfe\x64\xd1\x26\x06\xcc\xf8\xfe\x73\x05\x75\x21\xb2\x91\xc8\x32\xaa\x15\x8a\x41\x47\x36\xc3\x8d\x0a\x29\x81\x47\x9b\x93\x2e\x33\x76\x92\x0f\x46\x70\xbc\x93\xdb\x5b\xc0\x23\x91\xcf\xd8\xfc\xd3\x62\x9e\x75\x89\x2b\x8d\x79\x96\x1b\x8e\x22\x50\xca\x50\xd4\x52\x30\x84\x19\x13\x6b\x24\x24\x4d\x1a\xdb\x07\x7b\x29\x5b\x68\x2c\x17\x8e\x2c\xc0\xd8\xc9\x8f\x8c\xf8\xaf\x56\xba\x7e\x1a\x56\xb1\xf3\x84\x40\x19\x4c\x6b\x07\x19\x53\x50\xc7\xa1\xed\x93\xe1\x42\x23\x05\x6e\xeb\xd1\xbb\xe6\xb3\xb0\x9b\x3f\xdc\x63\x8d\x97\x58\xc1\xa7\xf9\x04\x59\x5e\xab\x47\x90\xe5\x91\x93\xe9\x7e\x39\x8e\x93\xd0\xf3\x64\x22\x4b\x94\x0a\xd5\x12\xf6\x1d\xe2\x93\x50\x3e\x51\x9e\x2c\xdb\xdb\x6e\x25\xa2\x67\xeb\x8d\x2c\x8f\x34\x68\x1c\xa2\x67\x8f\x86\x2c\x91\x52\xec\x48\x9b\xc6\xa1\xce\xe7\x13\xd7\xac\x09\xba\x20\xa1\x14\x58\x5e\xd1\xec\xcc\xa3\x25\x9d\xd9\x72\x70\x69\xcc\x51\x02\xf6\xe4\x68\x52\xfe\x69\x2d\x0e\x90\x2b\x1a\xc1\xb5\xee\x12\x09\x89\xa9\x65\x25\x82\x0c\x53\xe6\x58\xca\xac\xeb\x89\x3a\x77\x93\x0b\x67\x25\xca\x4f\x06\x64\xec\x30\x2e\xdd\x2a\x2d\x55\xf8\x52\xab\x1a\xa6\x56\xfc\xa2\x87\xbc\x4a\xc5\xba\xa4\xe5\x70\xd1\xb2\xd0\xba\x7b\x3a\x52\x31\x9c\xa7\x62\x5d\xa7\xf7\xa3\x45\xb9\x10\x49\x09\x5f\x0b\x2a\x01\x29\x9a\x70\x44\x39\x5a\x51\x58\xfb\xaf\xae\xc5\x98\xd3\x84\xff\xcc\x7f\xa7\xb0\xbe\x58\x46\x4d\x19\xe2\x42\xd3\xb8\x29\x2f\x3a\x4a\xc9\xe5\x6f\xbf\x58\xd9\x67\x4c\x99\x4f\xab\x6d\xf0\x7d\x27\x87\x3b\x5a\x99\x77\x75\xbb\xf3\x4a\xf4\xef\x07\xbb\x63\xbe\x43\x4e\x1c\xe1\x5c\x47\x29\x3e\xcf\x86\x63\x27\xec\xb3\xa4\x47\xfb\xef\x1d\x68\xe3\x48\xd3\x95\x89\x88\x04\x10\xa3\xab\x96\xd2\x66\xcb\x73\x64\x87\x8f\x05\x81\x89\x19\x7c\x10\xe0\xb5\x10\x2c\x94\x78\x8d\x32\xca\x0b\x5d\x61\x75\xdd\x1c\x0a\x4c\x91\xac\xd4\x5a\x48\xd2\x99\xd0\xcc\x88\x4d\xd7\xe4\x3c\x4a\x9f\x75\xd0\xac\x61\x99\x0a\xf1\x72\xad\x07\xcd\xd7\x02\x0a\x40\x0c\x78\xd2\x76\x86\xff\xd7\x4d\x20\xfc\x8f\x19\x39\xb1\x03\x7d\xd2\x03\x30\x2b\x27\x91\xa6\x19\x88\xa2\x25\x49\xab\x54\xdc\xbb\xc1\x0b\x37\xb6\x6d\xf9\x14\x44\x82\x13\x2f\x8f\x52\x2f\x34\x47\x9a\x29\xb4\x02\xe9\x11\xd6\x2a\x5e\xf3\x17\x9a\x2f\x26\xf3\xdf\xad\x70\xe7\x2d\xf9\x59\x1e\x65\xe2\xf3\xf5\xde\x59\x97\xec\xfc\xee\x68\xc2\x67\x2b\xe5\x42\x9f\xef\x05\xcd\xa1\x70\xa7\x4b\x85\x92\xa6\x2a\x96\xff\x83\x48\xa3\x5c\x42\x4c\x5f\x1b\xaf\x66\xaa\xc2\xd2\x69\x09\xe7\x4e\x62\x6a\x05\x1a\x9b\x73\x9d\x14\x6f\xfb\x39\xc0\x44\xe7\x1b\xa1\x92\x42\xd5\xc8\x01\x26\x2e\x75\x1b\x54\xb2\x6a\xa8\xa3\xaa\x3d\x5a\xea\xfe\x58\x49\x75\x02\x6e\x28\x7e\x4a\xe0\xda\xbc\x5c\x05\xb4\xd3\x55\x3d\xbb\x12\xfd\x6f\x90\xe5\x7a\xf3\xf7\x72\xa6\x96\xc1\x70\x29\x77\x68\xb1\x90\x59\xcd\xef\xcd\x63\x2f\x30\x67\x9a\xe0\xb7\x3d\xfb\xb9\xc4\xbc\x58\xda\x4f\x1c\x06\xee\xcb\x14\xc7\x70\x60\x6f\x2d\x0c\xcd\x5e\x90\x81\x4e\x05\xb9\xed\xe5\xc6\x0c\xf5\xe6\x77\x38\x9e\xcf\x1e\x16\xe2\x05\xf8\xd3\xe2\x79\xb2\xd7\x84\xdf\x6d\x36\xca\x19\xe5\x10\xc4\x14\x18\x09\x0a\x1a\x30\x88\xeb\x28\x87\x1b\x93\xf2\xbc\xd8\x7b\x7f\x33\xb4\x7f\x0a\x4c\x79\x7c\xdb\x03\x47\xc9\xd4\xa1\xdb\x87\x32\x6b\x24\x75\xd0\xfa\xf1\xfe\xf1\xd1\xa5\xbe\x7b\x9f\xea\x00\xf0\xa0\xcc\x88\x03\x4a\x6e\x7b\x66\xfe\x7d\x83\xdf\x5f\x6a\xde\x3b\x12\x43\x81\x13\xb4\x33\x96\x59\x02\x07\xb3\x5b\x82\x81\x31\xfa\x9d\xc7\xad\xc0\x1f\x8e\x85\x91\x19\x7d\xad\xa1\xd0\x91\xc3\x04\xe7\xcd\x05\x92\xf1\x2b\x33\x64\xe4\x46\x78\x9c\x67\x0e\x99\x72\x0d\x72\x85\x5b\x3e\xe8\xb1\xd0\x3f\x97\x43\xfc\xce\x52\xb7\x2b\x2d\xc0\x58\x70\xde\x2d\xeb\xdd\x2e\x45\x63\xa5\x55\x45\xd1\x1a\x68\x43\xe8\xfc\x53\x7c\x46\x81\x52\xa6\x2c\xbc\x52\xaf\xa9\xe8\xe5\x52\xb8\x14\xbe\x25\xe9\xb5\xa3\x5c\xff\x30\x9c\x96\x63\xbd\x6e\x32\x9c\xc8\xce\x0c\xed\x9f\xd9\x34\xea\x72\x8f\xfe\xd7\x53\x91\x10\x2f\x14\x8e\x34\xd8\xf6\xd5\x8d\xed\x70\xcf\x76\x5b\x12\x6d\x37\x87\xcd\x3c\xbb\x28\x7a\x8c\x18\x8d\xc1\x8c\xbe\x64\xe2\x59\x2e\xa6\x81\xee\xcc\xe4\x19\xbf\x7e\x02\x95\x54\xeb\x5c\x21\xc1\x99\x47\x55\x5f\x67\x35\x87\xa8\x90\x97\xba\xb5\x2b\x9d\xc0\xcb\x2c\xce\x13\x26\x34\x86\x85\xaf\x65\x3e\x2b\x94\xe4\x34\xd2\x85\xbc\xda\x03\xa8\x4a\x32\x13\x89\x57\x58\xe3\xce\x4d\xba\x32\xc1\x7c\x2c\xc5\xfe\xcc\x26\x44\xd9\x3b\x89\x81\x80\xc4\x1a\x08\xf2\x63\xee\x8a\x80\x87\x4a\x7a\xe4\xc7\xff\xb3\xdc\x24\xa1\xfa\x5a\x5d\xc4\x50\xab\xdc\x84\xd0\x38\x46\x29\x4d\x52\x46\x93\xb4\xf3\x0d\xf3\x23\xd5\x95\xc3\xdc\xd3\x38\x7e\xaa\xe4\x2f\x14\x29\x0c\xc1\x0c\xbf\x3a\x72\x26\xc1\x6e\xe9\x02\x19\x1a\xcf\xf8\xf5\x91\x6a\xc3\x62\x62\x06\xfa\x1c\x18\x87\x5a\x50\x94\x62\x89\x23\x0d\xb2\xb3\xbe\xf1\x56\xe2\x5c\xc5\x31\x65\xdd\xa6\xf7\x60\x06\x7a\x6a\x49\x22\x84\x65\xd2\x04\xbf\x3d\xe8\x8d\x92\xc7\xf1\x48\x26\xaa\xe5\x58\xff\xa3\xbb\xdb\xce\xd6\x5e\xea\xc3\xf1\x8e\x90\x61\x52\xb6\x81\x42\xf7\x15\xc0\x25\x8f\x42\x47\x43\x4a\x71\xa2\x2f\xb5\xcf\xc2\x8c\xbf\x30\x89\x88\x09\xee\x61\x89\xb1\x19\x7e\x61\x0a\x79\xc1\x58\x77\x06\xd3\x82\x79\xd6\x12\x5d\xfc\xb2\xb3\xfa\xc7\xf1\x55\x1c\xfb\x4c\x24\xde\xf1\x9c\x89\xa4\xef\x64\x3e\x04\x75\x17\xea\x77\x32\x2b\x90\x9b\x60\x89\x15\x8d\xdc\x29\xd0\xdb\x95\x47\x12\xf3\x04\x82\x70\x22\x92\xc4\xc6\x99\x6d\xe9\xad\x65\xad\xea\xd7\xc6\x70\x7f\x3d\x42\x7e\x7b\x6b\xac\xc9\xa1\x58\x58\x7d\xdb\x5f\x7b\x55\x47\x1f\x0e\xfc\x54\x89\x5c\x53\xc1\x55\xa3\xb6\x61\x2e\xa1\x56\x1a\x1e\x16\x14\xf6\xed\x1e\x8f\x9a\xee\x83\x52\xd1\x1a\x6a\x6f\xad\xeb\xbf\x55\xbf\x94\x3f\xcb\x1f\x1f\xfe\xbd\x28\x16\xc2\x54\xea\xf6\xff\x8b\xfe\x1f\x00\x00\xff\xff\x30\x34\x50\xdf\x37\x35\x00\x00"
+var _adminConfigTmpl = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\x51\x73\xe3\xb6\x11\x7e\x76\x7e\x05\xab\xe9\x43\x9b\xa9\xa8\xe9\x4c\x1e\xfa\xa0\xf3\x8c\x22\xe7\xec\xf4\xe4\xc4\xb5\x94\xf4\x11\x03\x11\x4b\x72\x6b\x10\xe0\x01\xa0\x64\x9d\xc7\xff\xbd\x03\x80\x94\x28\x99\x94\x48\x47\xce\xe8\xe9\x8e\x22\xf6\xdb\x0f\x8b\xc5\x62\x77\x41\xbf\xbc\x18\xc8\x72\x4e\x0d\x04\x83\x25\xd5\x30\x4a\x81\xb2\x41\x10\xbe\xbe\x7e\x37\x66\xb8\x0a\x22\x4e\xb5\xfe\x34\xa0\x2c\x43\x11\x44\x52\xc4\x98\x0c\xae\xbf\xbb\xaa\xbf\x2b\xd0\xbe\x30\x14\x05\x28\xfb\xee\xf0\x65\xa2\x90\xb9\xdf\xaf\xea\xca\x1c\xe2\x48\xd0\xd5\x92\x2a\xaf\xef\x6a\x5f\xd2\xac\x81\xaf\x20\x58\x23\x83\x20\x92\xbc\xc8\x9c\x7e\x03\xc2\x78\xb0\xab\x37\xd4\x29\x07\x65\xb6\x58\x57\xe3\xf4\x87\x1a\x0b\x23\xf3\x80\x1a\x43\xa3\x14\x58\x60\x27\x59\x92\x75\x40\x21\xfe\xf3\x5f\x22\x5c\xa8\x92\x56\xe8\x27\x1a\x6a\x50\x2b\x50\xa4\x9c\x76\x05\x3b\x4a\x7f\xf0\x82\x07\xf3\xdc\xa2\x1b\xba\xe4\x10\x68\x48\xb2\x1d\xd9\xab\x31\xe3\xd5\x58\xc6\x87\xa9\x54\xf8\xcd\x1a\x8d\x07\x4e\xe3\x70\xef\xb7\x4a\xe6\x6a\xcc\xcc\x75\x2b\x3b\x9a\xe7\x44\xd0\x0c\x06\xaf\xaf\xe3\x11\x33\x3b\x19\x76\xfd\xf2\x32\xc9\xf3\x5f\x68\x06\xee\x15\xeb\x0c\x57\x28\xde\x88\x16\x4e\xf2\xfc\xb7\xc7\x59\x0f\x34\x26\x33\x8a\xa2\x19\xec\xc6\xbd\xeb\x01\x26\xe3\x98\xa3\x00\x92\x49\xd6\x34\xdb\x31\x56\x96\x8d\x69\x10\xd3\x97\x17\x8c\x83\xf0\x57\x2f\x73\x2f\x19\xbc\xbe\x0e\xa3\x14\xa2\xa7\x97\x17\x10\xec\xf5\x75\xa8\xbf\x16\x54\xc1\x50\x0e\xae\xc7\x23\xbc\xee\x3e\x25\xd4\x76\x61\x89\x92\x85\x01\x45\xb8\x4c\xba\x72\xb9\xf1\x92\x8f\x4e\x70\x26\x93\x2e\x84\xb6\x98\x7b\x3e\xc6\x70\x85\xce\x73\xc7\x23\x86\xab\xda\xa8\x23\xbc\x55\x21\x48\xa1\x41\x35\x2f\xc6\x63\x21\x7e\xd3\xa0\x7a\xac\x86\xc5\x6b\x59\x09\x8f\xe7\x6d\x7e\xee\x69\x70\x99\x90\x18\x9d\xfd\xa5\x21\x39\x35\x69\x93\xf9\x23\xc9\xc0\x62\xcc\x64\xf2\x28\xa5\x79\xa0\x26\xb5\xa3\xdc\xcf\xdd\x67\x08\x2b\x50\x1a\x08\x2d\x4c\xda\x66\xba\xad\xa6\x47\x3f\xf8\x41\xc9\xe7\xcd\xa4\x30\x69\x65\xcd\x43\x95\xe3\x11\xe3\x65\xdc\xa8\x4d\xfa\x0c\x41\x4a\xa7\x97\x1a\xa1\x2c\x35\x10\x56\x17\xeb\xb8\x55\x84\x34\x41\x38\x9f\xdf\x55\x5b\x86\x75\xdf\xbb\x6d\xf2\xe5\xeb\xd3\x4c\xb5\xa1\xca\x90\x65\x81\xdc\xa0\x20\x3e\xf6\x1f\xd0\x6e\xdf\xe2\x56\xe7\xdc\x02\xfc\xe8\xe5\xe7\x4e\xbc\x3b\xfb\xd3\xf4\x1a\x23\x6a\xb5\xeb\xdc\x94\x1b\xc2\xea\x69\xd8\x5c\x2a\x73\x04\xf4\x41\x2a\xd3\x17\x92\xa3\x36\x20\x4e\x21\xcf\xdc\xa8\x3a\x7e\x35\x68\x7f\x25\x9b\xac\x5a\x8d\x3c\xcd\xa5\x2d\x58\xec\x51\xa9\x47\x8a\xda\x44\x3b\xa0\xc3\x5a\xa1\xf1\x81\xc2\xee\x0d\x60\xe4\x09\x36\x9a\x50\xe3\xbd\xa9\x51\x69\xab\xff\x3c\x7a\xb4\xc9\x16\xec\x0b\x6c\xf4\xc4\x38\x03\xf4\xf0\xa4\xd3\xb4\x9f\x60\x43\x0c\xe8\xd3\x86\xf9\x02\x9b\x05\xe8\xf7\xd9\xe6\x09\x36\x89\xf5\x82\xd3\x2a\x12\x10\xef\xd2\x90\xa1\xc0\xac\xc8\xdc\x74\x34\x7e\x03\xe2\x2c\xd4\xcf\xe6\xf7\x1e\xe3\x0b\x6c\xe6\xf8\x0d\xa6\x16\xa0\x8f\xa9\x4f\x00\xbd\x7f\x2e\xfa\x98\xcd\xf6\x75\xe9\x43\xc3\x95\xc4\xbf\x6b\x7c\xdc\x7b\x6a\x39\x93\xfe\x32\x1c\x06\x8f\x90\x4b\x8d\x46\xaa\x4d\x30\x75\x34\x0b\x45\x0d\x4a\x11\x0c\x87\xd7\x67\x3a\xb9\x14\xe4\xf2\x52\x8f\x2e\xc7\xad\x53\xa6\x61\x0d\xf5\xfe\x54\x43\x47\x0a\x73\x43\xcc\x26\x6f\xc9\xa7\xe6\x6e\xc0\x62\x93\xf7\xc9\xe5\x1d\xfb\x58\xaa\x08\x48\xae\x70\x45\x4d\xe7\xb4\x79\xb7\xec\xe1\x67\x2b\xff\xe0\xc5\xcf\x94\x42\x67\xf4\x99\x44\x0a\x9c\x23\x11\x8e\x19\x1e\x46\xc8\x2a\x89\xdc\xb1\xb8\xa7\xcf\xd3\x52\x62\x66\x05\x7a\x58\x21\x57\x10\x83\x52\xc0\x08\xc7\x08\x84\x7e\xb3\xa9\xbc\xb6\x7f\x4b\x14\x7b\x13\x7f\xa8\xe4\x66\xa5\x58\x30\xf8\x47\x30\xe8\x53\xfc\x94\x95\x42\x6a\x4c\x4e\x92\xc6\x49\x9e\x32\x7e\x99\xbf\xdc\x2d\x16\x0f\xb7\xd8\x23\xfa\x1f\xe5\xe5\x73\x31\xc2\x65\x44\xb9\xf3\x6b\x92\x61\xe2\xb7\xf5\x3b\x28\xfe\xe4\xd0\x66\x16\xcc\xfa\xfe\x7d\x05\x75\x26\xb2\x91\xcc\x32\x34\x9a\xc4\x60\x22\x97\xe1\x46\x85\x52\x20\xa2\xcd\x49\x97\x99\x7a\xc9\xcf\x56\x70\xba\x93\xdb\x5b\xc0\x23\x91\xcf\xda\xfc\xc3\x62\x9e\x73\x89\x0b\x8d\x79\x8e\x1b\x8d\x22\xd0\xda\x52\x34\x4a\x72\x42\x39\x97\x6b\x22\x15\x26\x8d\xd5\xfc\x5e\xca\x16\x5a\xcb\x85\x13\x07\x30\xf5\xf2\x13\x2b\xfe\xab\x93\xae\x9f\x86\x55\xec\x3c\x21\x50\x06\xd3\xda\x41\xc6\x35\xd4\x71\xb0\x7d\x32\x42\x1a\xa2\xc1\x6f\x3d\xbc\x6e\x3e\x0b\xbb\xf9\xc3\x0d\x35\x74\x49\x35\x7c\x98\x4f\xb0\xe5\xa5\x7a\x04\x5b\x1e\x39\x99\x6e\x96\xd3\x38\x09\x7b\x9e\x4c\x6c\x49\x52\xa9\x5b\xc2\xbe\x47\xbc\x93\xba\x4f\x94\x67\xcb\xf6\x2e\x58\x89\xd8\xb3\x13\xc6\x96\x47\xfa\x25\x1e\xb1\x67\xcb\x84\x2d\x89\xd6\xfc\x48\xd7\xc4\xa3\xce\xe7\x33\xdf\x3b\x09\xba\x20\x91\x14\x78\x5e\xd1\xec\xcc\xa3\x25\x9d\xd9\x72\xf0\x69\xcc\x51\x02\xee\xe4\x68\x52\xfe\x61\x2d\x0e\x50\x2b\x8c\xe0\x52\x77\x89\x82\xc4\xd6\xb2\x8a\x40\x46\x91\x7b\x96\x2a\xeb\x7a\xa2\xce\xfd\xe4\xc2\xc7\x12\xe5\x27\x0b\x32\xf5\x18\xe7\xee\x5c\x96\x2a\xfa\x52\xab\xfa\x97\x4e\xfc\xac\x87\xbc\x4e\xe5\xba\xa4\xe5\x71\xc9\xb2\x30\xa6\x7b\x3a\x52\x31\x9c\xa7\x72\x5d\xa7\xf7\xa3\x43\x39\x13\x49\x05\x5f\x0b\x54\x40\x34\x26\x82\xa0\x20\x2b\x84\x75\xff\xd5\x75\x18\x73\x4c\xc4\xcf\xe2\x77\x84\xf5\xd9\x32\x6a\xe4\x44\x48\x83\x71\x53\x5e\x74\x94\x92\xcf\xdf\x7e\x71\xb2\xf7\x14\x79\x9f\x56\xdb\xe8\xfb\x4e\x0e\x77\xb4\x32\xef\xea\x76\xef\x2b\xd1\xbf\x1f\xed\x8e\xf9\x0e\x39\x71\x44\x73\x13\xa5\xf4\x7d\x36\x9c\x7a\xe1\x3e\x4b\x7a\xb4\x1d\xde\x81\x36\x8d\x0c\xae\x6c\x44\x64\x40\x38\xae\x5a\x4a\x9b\x2d\xcf\x89\x1b\x3e\x95\x0c\x66\x76\xf0\x41\x80\x37\x52\xf2\x50\xd1\x35\xc9\x50\x14\xa6\xc2\xea\xba\x39\x34\xd8\x22\x59\xeb\xb5\x54\xac\x33\xa1\x47\x2b\xf6\xb0\x66\xef\xa3\xf4\x51\x07\xcd\x1a\x96\xa9\x94\x4f\x97\x7a\xd0\x7c\x2d\xa0\x00\xc2\x41\x24\x6d\x67\xf8\x7f\xfd\x04\xc2\xff\xd8\x91\x33\x37\xb0\x4f\x7a\x00\x76\xe5\x14\x31\x98\x81\x2c\x5a\x92\xb4\x4a\xc5\x8d\x1f\xbc\xf0\x63\xdb\x96\x4f\x43\x24\x05\xeb\xe5\x51\xfa\x09\x73\x62\xb8\x26\x2b\x50\x3d\xc2\x5a\xc5\x6b\xfe\x84\xf9\x62\x36\xff\xdd\x09\x77\xde\x92\x1f\xe5\x51\x36\x3e\x5f\xee\x15\x72\xc9\xae\xdf\x1d\x4d\x78\xef\xa4\x7c\xe8\xeb\x7b\x41\x73\x28\xdc\xe9\x52\xa1\xa4\xa9\x8b\xe5\xff\x20\x32\x24\x57\x10\xe3\x73\xe3\xd5\x4c\x55\x58\x7a\x2d\xe1\xdc\x4b\x3c\x38\x81\xc6\xe6\x5c\x27\xc5\xdb\x7e\x0e\x70\xd9\xf9\x46\xa8\xa4\x50\x35\x72\x80\xcb\x73\xdd\x06\x95\xac\x1a\xea\xa8\x6a\x8f\x96\xba\xdf\x56\x52\x9d\x80\x1b\x8a\x9f\x12\xb8\x36\x2f\x5f\x01\xed\x74\x55\xcf\xbe\x44\xff\x1b\x64\xb9\xd9\xfc\xbd\x9c\xa9\x63\x30\x5e\xaa\x1d\x5a\x2c\x55\x56\xf3\x7b\xfb\x38\x08\xec\x99\x26\xc5\xa7\x81\xfb\x7a\x61\x5e\x2c\xdd\x17\x07\x23\xff\xa1\x88\x67\x38\x72\xb7\x16\x96\xe6\x20\xc8\xc0\xa4\x92\x7d\x1a\xe4\xd6\x0c\xf5\xe6\x77\x38\x9d\x3f\x7e\x5e\xc8\x27\x10\x77\x8b\xfb\xd9\x5e\x13\x7e\xb7\xd9\x50\x70\x14\x10\xc4\x08\x9c\x05\x05\x06\x1c\xe2\x3a\xca\xe1\xc6\x44\x91\x17\x7b\xef\xaf\xc6\xee\xa7\xc0\x96\xc7\x9f\x06\xe0\x29\xd9\x3a\x74\xfb\x50\x66\x8d\xac\x0e\x5a\x3f\xde\xdf\x3e\xfa\xd4\x77\xef\xcb\x19\x00\x11\x94\x19\x71\x80\xec\xd3\xc0\xce\x7f\x68\xf1\x87\x4b\x23\x06\x47\x62\x28\x08\x46\x76\xc6\xb2\x4b\xe0\x61\x76\x4b\x30\xb2\x46\xbf\xee\x71\x2b\xf0\x87\x63\x61\x64\x47\x5f\x6a\x28\xf4\xe4\x28\xa3\x79\x73\x81\x64\xfd\xca\x0e\x99\xf8\x11\x3d\xce\x33\x8f\x8c\xc2\x80\x5a\xd1\x96\xef\x6b\x1c\xf4\xcf\xe5\x90\x7e\x67\xa9\xdf\x95\x0e\x60\x2a\x85\xe8\x96\xf5\x6e\x97\xa2\xb1\xd2\xaa\xa2\x68\x0d\xb4\x21\x74\xfe\x29\x3e\xa3\x41\x6b\x5b\x16\x5e\xa8\xd7\x54\xf4\x72\x25\x7d\x0a\xdf\x92\xf4\xba\x51\xbe\x7f\x18\x3e\x94\x63\x7b\xdd\x64\x78\x91\x9d\x19\x5a\xd7\xac\x59\x97\x7f\xec\x7f\x3d\x15\x49\xf9\x84\x70\xa4\xc1\xb6\xaf\x6e\xea\x86\xf7\x6c\xb7\x25\xd1\x76\x73\xb8\xcc\xb3\x8b\xa2\xdb\x88\x63\x0c\x76\xf4\x39\x13\xcf\x72\x31\x2d\x74\x67\x26\xf7\xf4\xf9\x03\xa8\xa4\xc6\xe4\x9a\x48\xc1\x7b\x54\xf5\x75\x56\x73\x88\x0a\x75\xae\x5b\xbb\xd2\x09\x7a\x99\xc5\x7b\xc2\x0c\x63\x58\xf4\xb5\xcc\x47\x85\x92\x1c\x23\x53\xa8\x8b\x3d\x80\xaa\x24\x33\x51\x74\x45\x0d\xed\xdc\xa4\x2b\x13\xcc\xdb\x52\xec\xcf\x6c\x42\x94\xbd\x93\x18\x18\x28\x6a\x80\x91\x7e\xcc\x7d\x11\xf0\xb9\x92\x9e\xf4\xe3\xff\x51\x6e\x92\xa0\xb9\x54\x17\xb1\xd4\x2a\x37\x61\x18\xc7\x24\xc5\x24\xe5\x98\xa4\x9d\x6f\x98\x6f\xd1\x54\x0e\x73\x83\x71\x7c\x57\xc9\x9f\x29\x52\x58\x82\x19\x7d\xf6\xe4\x6c\x82\xdd\xd2\x05\xb2\x34\xee\xe9\xf3\x2d\x1a\xcb\x62\x66\x07\xf6\x39\x30\x0e\xb5\x90\x28\xa5\x8a\x46\x06\x54\x67\x7d\xd3\xad\xc4\x7b\x15\xc7\xc8\xbb\x4d\xef\xb3\x1d\xd8\x53\x4b\x12\x11\xaa\x92\x26\xf8\xed\x41\x6f\x95\xdc\x4e\x27\x2a\xd1\x2d\xc7\xfa\x1f\xdd\xdd\x6e\xb6\xee\x52\x1f\x8e\x77\x84\x2c\x93\xb2\x0d\x14\xfa\xaf\x00\xce\x79\x14\x7a\x1a\x4a\xc9\x13\x7d\xa9\x7d\x16\x76\xfc\x99\x49\x44\x5c\x8a\x1e\x96\x98\xda\xe1\x67\xa6\x90\x17\x9c\x77\x67\xf0\x50\xf0\x9e\xb5\x44\x17\xbf\xec\xac\xfe\x76\x7a\x11\xc7\x3e\x97\x49\xef\x78\xce\x65\x32\xf4\x32\x6f\x82\xba\x0f\xf5\x3b\x99\x15\xa8\x4d\xb0\xa4\x1a\x23\x7f\x0a\x0c\x76\xe5\x91\xa2\x22\x81\x20\x9c\xc9\x24\x71\x71\x66\x5b\x7a\x1b\x55\xab\xfa\x8d\x35\xdc\x5f\x8f\x90\xdf\xde\x1a\x1b\x76\x28\x16\x56\x9f\xda\xd7\x5e\xd5\xd1\xc7\xa3\x7e\xaa\x64\x6e\x50\x0a\xdd\xa8\x6d\x9c\x2b\xa8\x95\x86\x87\x05\x85\x7b\xbb\xc7\xa3\xa6\xfb\xa0\x54\x74\x86\xda\x5b\xeb\xfa\xff\xaa\xff\x94\xff\x96\xff\xbc\xf9\x6b\x9f\x58\x4a\x5b\xa9\xbb\x3f\xf7\xf9\x7f\x00\x00\x00\xff\xff\xf9\x75\xb3\xec\xc6\x34\x00\x00"
func adminConfigTmplBytes() ([]byte, error) {
return bindataRead(
@@ -332,8 +332,8 @@ func adminConfigTmpl() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "admin/config.tmpl", size: 13623, mode: os.FileMode(0644), modTime: time.Unix(1582102726, 0)}
- a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x88, 0xdd, 0xfb, 0xb0, 0xd6, 0x3d, 0xe5, 0x23, 0x2, 0xc3, 0x1a, 0x6, 0x28, 0x95, 0x8b, 0x96, 0x54, 0x65, 0x0, 0x16, 0x32, 0x24, 0x4c, 0x5f, 0x36, 0xd6, 0xbf, 0x23, 0xbd, 0xd3, 0xf8, 0xcc}}
+ info := bindataFileInfo{name: "admin/config.tmpl", size: 13510, mode: os.FileMode(0644), modTime: time.Unix(1582332314, 0)}
+ a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcf, 0xe3, 0x85, 0xd3, 0xa3, 0x82, 0x4b, 0x46, 0x53, 0xe2, 0xe5, 0xe0, 0x53, 0xda, 0xaa, 0xab, 0x8a, 0x4e, 0x3, 0xd1, 0x91, 0x41, 0xbb, 0x8, 0x1a, 0xdf, 0x64, 0xc8, 0x3e, 0x71, 0xef, 0x5c}}
return a, nil
}
diff --git a/internal/auth/auth.go b/internal/auth/auth.go
index 41aba23d..0270b6b4 100644
--- a/internal/auth/auth.go
+++ b/internal/auth/auth.go
@@ -15,7 +15,7 @@ import (
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/tool"
)
@@ -90,8 +90,8 @@ func SignedInUser(ctx *macaron.Context, sess session.Store) (_ *db.User, isBasic
uid, isTokenAuth := SignedInID(ctx, sess)
if uid <= 0 {
- if setting.Service.EnableReverseProxyAuth {
- webAuthUser := ctx.Req.Header.Get(setting.ReverseProxyAuthUser)
+ if conf.Service.EnableReverseProxyAuth {
+ webAuthUser := ctx.Req.Header.Get(conf.ReverseProxyAuthUser)
if len(webAuthUser) > 0 {
u, err := db.GetUserByName(webAuthUser)
if err != nil {
@@ -101,7 +101,7 @@ func SignedInUser(ctx *macaron.Context, sess session.Store) (_ *db.User, isBasic
}
// Check if enabled auto-registration.
- if setting.Service.EnableReverseProxyAutoRegister {
+ if conf.Service.EnableReverseProxyAutoRegister {
u := &db.User{
Name: webAuthUser,
Email: gouuid.NewV4().String() + "@localhost",
diff --git a/internal/cmd/admin.go b/internal/cmd/admin.go
index 3ba654ee..19c31a54 100644
--- a/internal/cmd/admin.go
+++ b/internal/cmd/admin.go
@@ -9,10 +9,11 @@ import (
"reflect"
"runtime"
+ "github.com/pkg/errors"
"github.com/urfave/cli"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
)
var (
@@ -133,18 +134,18 @@ to make automatic initialization process more smoothly`,
func runCreateUser(c *cli.Context) error {
if !c.IsSet("name") {
- return fmt.Errorf("Username is not specified")
+ return errors.New("Username is not specified")
} else if !c.IsSet("password") {
- return fmt.Errorf("Password is not specified")
+ return errors.New("Password is not specified")
} else if !c.IsSet("email") {
- return fmt.Errorf("Email is not specified")
+ return errors.New("Email is not specified")
}
- if c.IsSet("config") {
- setting.CustomConf = c.String("config")
+ err := conf.Init(c.String("config"))
+ if err != nil {
+ return errors.Wrap(err, "init configuration")
}
- setting.Init()
db.LoadConfigs()
db.SetEngine()
@@ -164,11 +165,11 @@ func runCreateUser(c *cli.Context) error {
func adminDashboardOperation(operation func() error, successMessage string) func(*cli.Context) error {
return func(c *cli.Context) error {
- if c.IsSet("config") {
- setting.CustomConf = c.String("config")
+ err := conf.Init(c.String("config"))
+ if err != nil {
+ return errors.Wrap(err, "init configuration")
}
- setting.Init()
db.LoadConfigs()
db.SetEngine()
diff --git a/internal/cmd/backup.go b/internal/cmd/backup.go
index 6e9b24b0..28411b0e 100644
--- a/internal/cmd/backup.go
+++ b/internal/cmd/backup.go
@@ -9,16 +9,18 @@ import (
"io/ioutil"
"os"
"path"
+ "path/filepath"
"time"
+ "github.com/pkg/errors"
"github.com/unknwon/cae/zip"
"github.com/unknwon/com"
"github.com/urfave/cli"
"gopkg.in/ini.v1"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
)
var Backup = cli.Command{
@@ -44,10 +46,12 @@ const _ARCHIVE_ROOT_DIR = "gogs-backup"
func runBackup(c *cli.Context) error {
zip.Verbose = c.Bool("verbose")
- if c.IsSet("config") {
- setting.CustomConf = c.String("config")
+
+ err := conf.Init(c.String("config"))
+ if err != nil {
+ return errors.Wrap(err, "init configuration")
}
- setting.Init()
+
db.LoadConfigs()
db.SetEngine()
@@ -66,12 +70,12 @@ func runBackup(c *cli.Context) error {
metadata := ini.Empty()
metadata.Section("").Key("VERSION").SetValue(com.ToStr(_CURRENT_BACKUP_FORMAT_VERSION))
metadata.Section("").Key("DATE_TIME").SetValue(time.Now().String())
- metadata.Section("").Key("GOGS_VERSION").SetValue(setting.AppVersion)
+ metadata.Section("").Key("GOGS_VERSION").SetValue(conf.App.Version)
if err = metadata.SaveTo(metaFile); err != nil {
log.Fatal("Failed to save metadata '%s': %v", metaFile, err)
}
- archiveName := path.Join(c.String("target"), c.String("archive-name"))
+ archiveName := filepath.Join(c.String("target"), c.String("archive-name"))
log.Info("Packing backup files to: %s", archiveName)
z, err := zip.Create(archiveName)
@@ -83,7 +87,7 @@ func runBackup(c *cli.Context) error {
}
// Database
- dbDir := path.Join(rootDir, "db")
+ dbDir := filepath.Join(rootDir, "db")
if err = db.DumpDatabase(dbDir); err != nil {
log.Fatal("Failed to dump database: %v", err)
}
@@ -93,7 +97,7 @@ func runBackup(c *cli.Context) error {
// Custom files
if !c.Bool("database-only") {
- if err = z.AddDir(_ARCHIVE_ROOT_DIR+"/custom", setting.CustomPath); err != nil {
+ if err = z.AddDir(_ARCHIVE_ROOT_DIR+"/custom", conf.CustomDir()); err != nil {
log.Fatal("Failed to include 'custom': %v", err)
}
}
@@ -101,7 +105,7 @@ func runBackup(c *cli.Context) error {
// Data files
if !c.Bool("database-only") {
for _, dir := range []string{"attachments", "avatars", "repo-avatars"} {
- dirPath := path.Join(setting.AppDataPath, dir)
+ dirPath := filepath.Join(conf.Server.AppDataPath, dir)
if !com.IsDir(dirPath) {
continue
}
@@ -114,9 +118,9 @@ func runBackup(c *cli.Context) error {
// Repositories
if !c.Bool("exclude-repos") && !c.Bool("database-only") {
- reposDump := path.Join(rootDir, "repositories.zip")
- log.Info("Dumping repositories in '%s'", setting.RepoRootPath)
- if err = zip.PackTo(setting.RepoRootPath, reposDump, true); err != nil {
+ reposDump := filepath.Join(rootDir, "repositories.zip")
+ log.Info("Dumping repositories in '%s'", conf.RepoRootPath)
+ if err = zip.PackTo(conf.RepoRootPath, reposDump, true); err != nil {
log.Fatal("Failed to dump repositories: %v", err)
}
log.Info("Repositories dumped to: %s", reposDump)
diff --git a/internal/cmd/hook.go b/internal/cmd/hook.go
index 41cf88f2..cac19097 100644
--- a/internal/cmd/hook.go
+++ b/internal/cmd/hook.go
@@ -20,11 +20,11 @@ import (
"github.com/gogs/git-module"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/httplib"
"gogs.io/gogs/internal/mailer"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/template"
)
@@ -141,7 +141,7 @@ func runHookPreReceive(c *cli.Context) error {
}
var hookCmd *exec.Cmd
- if setting.IsWindows {
+ if conf.IsWindowsRuntime() {
hookCmd = exec.Command("bash.exe", "custom_hooks/pre-receive")
} else {
hookCmd = exec.Command(customHooksPath)
@@ -175,7 +175,7 @@ func runHookUpdate(c *cli.Context) error {
}
var hookCmd *exec.Cmd
- if setting.IsWindows {
+ if conf.IsWindowsRuntime() {
hookCmd = exec.Command("bash.exe", append([]string{"custom_hooks/update"}, args...)...)
} else {
hookCmd = exec.Command(customHooksPath, args...)
@@ -198,7 +198,7 @@ func runHookPostReceive(c *cli.Context) error {
// Post-receive hook does more than just gather Git information,
// so we need to setup additional services for email notifications.
- setting.NewPostReceiveHookServices()
+ conf.NewPostReceiveHookServices()
mailer.NewContext()
isWiki := strings.Contains(os.Getenv(db.ENV_REPO_CUSTOM_HOOKS_PATH), ".wiki.git/")
@@ -233,7 +233,7 @@ func runHookPostReceive(c *cli.Context) error {
}
// Ask for running deliver hook and test pull request tasks
- reqURL := setting.LocalURL + options.RepoUserName + "/" + options.RepoName + "/tasks/trigger?branch=" +
+ reqURL := conf.Server.LocalRootURL + options.RepoUserName + "/" + options.RepoName + "/tasks/trigger?branch=" +
template.EscapePound(strings.TrimPrefix(options.RefFullName, git.BRANCH_PREFIX)) +
"&secret=" + os.Getenv(db.ENV_REPO_OWNER_SALT_MD5) +
"&pusher=" + os.Getenv(db.ENV_AUTH_USER_ID)
@@ -258,7 +258,7 @@ func runHookPostReceive(c *cli.Context) error {
}
var hookCmd *exec.Cmd
- if setting.IsWindows {
+ if conf.IsWindowsRuntime() {
hookCmd = exec.Command("bash.exe", "custom_hooks/post-receive")
} else {
hookCmd = exec.Command(customHooksPath)
diff --git a/internal/cmd/import.go b/internal/cmd/import.go
index 0f3a2d44..e9795693 100644
--- a/internal/cmd/import.go
+++ b/internal/cmd/import.go
@@ -7,16 +7,16 @@ package cmd
import (
"bufio"
"bytes"
- "errors"
"fmt"
"os"
"path/filepath"
"time"
+ "github.com/pkg/errors"
"github.com/unknwon/com"
"github.com/urfave/cli"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
var (
@@ -54,12 +54,11 @@ func runImportLocale(c *cli.Context) error {
return fmt.Errorf("target directory %q does not exist or is not a directory", c.String("target"))
}
- if c.IsSet("config") {
- setting.CustomConf = c.String("config")
+ err := conf.Init(c.String("config"))
+ if err != nil {
+ return errors.Wrap(err, "init configuration")
}
- setting.Init()
-
now := time.Now()
line := make([]byte, 0, 100)
@@ -67,7 +66,7 @@ func runImportLocale(c *cli.Context) error {
escapedQuotes := []byte(`\"`)
regularQuotes := []byte(`"`)
// Cut out en-US.
- for _, lang := range setting.Langs[1:] {
+ for _, lang := range conf.Langs[1:] {
name := fmt.Sprintf("locale_%s.ini", lang)
source := filepath.Join(c.String("source"), name)
target := filepath.Join(c.String("target"), name)
diff --git a/internal/cmd/restore.go b/internal/cmd/restore.go
index 2dba08d5..fcb006cf 100644
--- a/internal/cmd/restore.go
+++ b/internal/cmd/restore.go
@@ -7,16 +7,18 @@ package cmd
import (
"os"
"path"
+ "path/filepath"
"github.com/mcuadros/go-version"
+ "github.com/pkg/errors"
"github.com/unknwon/cae/zip"
"github.com/unknwon/com"
"github.com/urfave/cli"
"gopkg.in/ini.v1"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
)
var Restore = cli.Command{
@@ -59,7 +61,7 @@ func runRestore(c *cli.Context) error {
defer os.RemoveAll(archivePath)
// Check backup version
- metaFile := path.Join(archivePath, "metadata.ini")
+ metaFile := filepath.Join(archivePath, "metadata.ini")
if !com.IsExist(metaFile) {
log.Fatal("File 'metadata.ini' is missing")
}
@@ -68,8 +70,8 @@ func runRestore(c *cli.Context) error {
log.Fatal("Failed to load metadata '%s': %v", metaFile, err)
}
backupVersion := metadata.Section("").Key("GOGS_VERSION").MustString("999.0")
- if version.Compare(setting.AppVersion, backupVersion, "<") {
- log.Fatal("Current Gogs version is lower than backup version: %s < %s", setting.AppVersion, backupVersion)
+ if version.Compare(conf.App.Version, backupVersion, "<") {
+ log.Fatal("Current Gogs version is lower than backup version: %s < %s", conf.App.Version, backupVersion)
}
formatVersion := metadata.Section("").Key("VERSION").MustInt()
if formatVersion == 0 {
@@ -82,15 +84,21 @@ func runRestore(c *cli.Context) error {
// If config file is not present in backup, user must set this file via flag.
// Otherwise, it's optional to set config file flag.
- configFile := path.Join(archivePath, "custom/conf/app.ini")
+ configFile := filepath.Join(archivePath, "custom", "conf", "app.ini")
+ var customConf string
if c.IsSet("config") {
- setting.CustomConf = c.String("config")
+ customConf = c.String("config")
} else if !com.IsExist(configFile) {
log.Fatal("'--config' is not specified and custom config file is not found in backup")
} else {
- setting.CustomConf = configFile
+ customConf = configFile
}
- setting.Init()
+
+ err = conf.Init(customConf)
+ if err != nil {
+ return errors.Wrap(err, "init configuration")
+ }
+
db.LoadConfigs()
db.SetEngine()
@@ -102,27 +110,27 @@ func runRestore(c *cli.Context) error {
// Custom files
if !c.Bool("database-only") {
- if com.IsExist(setting.CustomPath) {
- if err = os.Rename(setting.CustomPath, setting.CustomPath+".bak"); err != nil {
+ if com.IsExist(conf.CustomDir()) {
+ if err = os.Rename(conf.CustomDir(), conf.CustomDir()+".bak"); err != nil {
log.Fatal("Failed to backup current 'custom': %v", err)
}
}
- if err = os.Rename(path.Join(archivePath, "custom"), setting.CustomPath); err != nil {
+ if err = os.Rename(filepath.Join(archivePath, "custom"), conf.CustomDir()); err != nil {
log.Fatal("Failed to import 'custom': %v", err)
}
}
// Data files
if !c.Bool("database-only") {
- os.MkdirAll(setting.AppDataPath, os.ModePerm)
+ _ = os.MkdirAll(conf.Server.AppDataPath, os.ModePerm)
for _, dir := range []string{"attachments", "avatars", "repo-avatars"} {
// Skip if backup archive does not have corresponding data
- srcPath := path.Join(archivePath, "data", dir)
+ srcPath := filepath.Join(archivePath, "data", dir)
if !com.IsDir(srcPath) {
continue
}
- dirPath := path.Join(setting.AppDataPath, dir)
+ dirPath := filepath.Join(conf.Server.AppDataPath, dir)
if com.IsExist(dirPath) {
if err = os.Rename(dirPath, dirPath+".bak"); err != nil {
log.Fatal("Failed to backup current 'data': %v", err)
@@ -135,9 +143,9 @@ func runRestore(c *cli.Context) error {
}
// Repositories
- reposPath := path.Join(archivePath, "repositories.zip")
+ reposPath := filepath.Join(archivePath, "repositories.zip")
if !c.Bool("exclude-repos") && !c.Bool("database-only") && com.IsExist(reposPath) {
- if err := zip.ExtractTo(reposPath, path.Dir(setting.RepoRootPath)); err != nil {
+ if err := zip.ExtractTo(reposPath, filepath.Dir(conf.RepoRootPath)); err != nil {
log.Fatal("Failed to extract 'repositories.zip': %v", err)
}
}
diff --git a/internal/cmd/serv.go b/internal/cmd/serv.go
index 2bcb85ac..8d4a78ef 100644
--- a/internal/cmd/serv.go
+++ b/internal/cmd/serv.go
@@ -16,9 +16,9 @@ import (
"github.com/urfave/cli"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -39,7 +39,7 @@ func fail(userMessage, logMessage string, args ...interface{}) {
fmt.Fprintln(os.Stderr, "Gogs:", userMessage)
if len(logMessage) > 0 {
- if !setting.ProdMode {
+ if !conf.IsProdMode() {
fmt.Fprintf(os.Stderr, logMessage+"\n", args...)
}
log.Fatal(logMessage, args...)
@@ -49,22 +49,26 @@ func fail(userMessage, logMessage string, args ...interface{}) {
}
func setup(c *cli.Context, logPath string, connectDB bool) {
+ var customConf string
if c.IsSet("config") {
- setting.CustomConf = c.String("config")
+ customConf = c.String("config")
} else if c.GlobalIsSet("config") {
- setting.CustomConf = c.GlobalString("config")
+ customConf = c.GlobalString("config")
}
- setting.Init()
+ err := conf.Init(customConf)
+ if err != nil {
+ fail("Internal error", "Failed to init configuration: %v", err)
+ }
level := log.LevelTrace
- if setting.ProdMode {
+ if conf.IsProdMode() {
level = log.LevelError
}
- err := log.NewFile(log.FileConfig{
+ err = log.NewFile(log.FileConfig{
Level: level,
- Filename: filepath.Join(setting.LogRootPath, logPath),
+ Filename: filepath.Join(conf.LogRootPath, logPath),
FileRotationConfig: log.FileRotationConfig{
Rotate: true,
Daily: true,
@@ -72,8 +76,7 @@ func setup(c *cli.Context, logPath string, connectDB bool) {
},
})
if err != nil {
- log.Fatal("Failed to init file logger: %v", err)
- return
+ fail("Internal error", "Failed to init file logger: %v", err)
}
log.Remove(log.DefaultConsoleName) // Remove the primary logger
@@ -83,13 +86,12 @@ func setup(c *cli.Context, logPath string, connectDB bool) {
db.LoadConfigs()
- if setting.UseSQLite3 {
- workDir, _ := setting.WorkDir()
- os.Chdir(workDir)
+ if conf.UseSQLite3 {
+ _ = os.Chdir(conf.WorkDir())
}
if err := db.SetEngine(); err != nil {
- fail("Internal error", "SetEngine: %v", err)
+ fail("Internal error", "Failed to set database engine: %v", err)
}
}
@@ -130,7 +132,7 @@ var (
func runServ(c *cli.Context) error {
setup(c, "serv.log", true)
- if setting.SSH.Disabled {
+ if conf.SSH.Disabled {
println("Gogs: SSH has been disabled")
return nil
}
@@ -220,12 +222,12 @@ func runServ(c *cli.Context) error {
}
}
} else {
- setting.NewService()
+ conf.NewService()
// Check if the key can access to the repository in case of it is a deploy key (a deploy keys != user key).
// A deploy key doesn't represent a signed in user, so in a site with Service.RequireSignInView activated
// we should give read access only in repositories where this deploy key is in use. In other case, a server
// or system using an active deploy key can get read access to all the repositories in a Gogs service.
- if key.IsDeployKey() && setting.Service.RequireSignInView {
+ if key.IsDeployKey() && conf.Service.RequireSignInView {
checkDeployKey(key, repo)
}
}
@@ -244,7 +246,7 @@ func runServ(c *cli.Context) error {
}
// Special handle for Windows.
- if setting.IsWindows {
+ if conf.IsWindowsRuntime() {
verb = strings.Replace(verb, "-", " ", 1)
}
@@ -265,7 +267,7 @@ func runServ(c *cli.Context) error {
RepoPath: repo.RepoPath(),
})...)
}
- gitCmd.Dir = setting.RepoRootPath
+ gitCmd.Dir = conf.RepoRootPath
gitCmd.Stdout = os.Stdout
gitCmd.Stdin = os.Stdin
gitCmd.Stderr = os.Stderr
diff --git a/internal/cmd/web.go b/internal/cmd/web.go
index 20f20af8..6a61f54a 100644
--- a/internal/cmd/web.go
+++ b/internal/cmd/web.go
@@ -12,7 +12,7 @@ import (
"net/http"
"net/http/fcgi"
"os"
- "path"
+ "path/filepath"
"strings"
"github.com/go-macaron/binding"
@@ -29,9 +29,9 @@ import (
"gopkg.in/macaron.v1"
log "unknwon.dev/clog/v2"
- "gogs.io/gogs/internal/assets/conf"
"gogs.io/gogs/internal/assets/public"
"gogs.io/gogs/internal/assets/templates"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/form"
@@ -42,7 +42,6 @@ import (
"gogs.io/gogs/internal/route/org"
"gogs.io/gogs/internal/route/repo"
"gogs.io/gogs/internal/route/user"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/template"
)
@@ -61,58 +60,58 @@ and it takes care of all the other things for you`,
// newMacaron initializes Macaron instance.
func newMacaron() *macaron.Macaron {
m := macaron.New()
- if !setting.DisableRouterLog {
+ if !conf.Server.DisableRouterLog {
m.Use(macaron.Logger())
}
m.Use(macaron.Recovery())
- if setting.EnableGzip {
+ if conf.Server.EnableGzip {
m.Use(gzip.Gziper())
}
- if setting.Protocol == setting.SCHEME_FCGI {
- m.SetURLPrefix(setting.AppSubURL)
+ if conf.Server.Protocol == "fcgi" {
+ m.SetURLPrefix(conf.Server.Subpath)
}
// Register custom middleware first to make it possible to override files under "public".
m.Use(macaron.Static(
- path.Join(setting.CustomPath, "public"),
+ filepath.Join(conf.CustomDir(), "public"),
macaron.StaticOptions{
- SkipLogging: setting.DisableRouterLog,
+ SkipLogging: conf.Server.DisableRouterLog,
},
))
var publicFs http.FileSystem
- if !setting.LoadAssetsFromDisk {
+ if !conf.Server.LoadAssetsFromDisk {
publicFs = public.NewFileSystem()
}
m.Use(macaron.Static(
- path.Join(setting.StaticRootPath, "public"),
+ filepath.Join(conf.WorkDir(), "public"),
macaron.StaticOptions{
- SkipLogging: setting.DisableRouterLog,
+ SkipLogging: conf.Server.DisableRouterLog,
FileSystem: publicFs,
},
))
m.Use(macaron.Static(
- setting.AvatarUploadPath,
+ conf.AvatarUploadPath,
macaron.StaticOptions{
Prefix: db.USER_AVATAR_URL_PREFIX,
- SkipLogging: setting.DisableRouterLog,
+ SkipLogging: conf.Server.DisableRouterLog,
},
))
m.Use(macaron.Static(
- setting.RepositoryAvatarUploadPath,
+ conf.RepositoryAvatarUploadPath,
macaron.StaticOptions{
Prefix: db.REPO_AVATAR_URL_PREFIX,
- SkipLogging: setting.DisableRouterLog,
+ SkipLogging: conf.Server.DisableRouterLog,
},
))
renderOpt := macaron.RenderOptions{
- Directory: path.Join(setting.StaticRootPath, "templates"),
- AppendDirectories: []string{path.Join(setting.CustomPath, "templates")},
+ Directory: filepath.Join(conf.WorkDir(), "templates"),
+ AppendDirectories: []string{filepath.Join(conf.CustomDir(), "templates")},
Funcs: template.FuncMap(),
IndentJSON: macaron.Env != macaron.PROD,
}
- if !setting.LoadAssetsFromDisk {
+ if !conf.Server.LoadAssetsFromDisk {
renderOpt.TemplateFileSystem = templates.NewTemplateFileSystem("", renderOpt.AppendDirectories[0])
}
m.Use(macaron.Renderer(renderOpt))
@@ -121,34 +120,34 @@ func newMacaron() *macaron.Macaron {
if err != nil {
log.Fatal("Failed to list locale files: %v", err)
}
- localFiles := make(map[string][]byte)
+ localeFiles := make(map[string][]byte)
for _, name := range localeNames {
- localFiles[name] = conf.MustAsset("conf/locale/" + name)
+ localeFiles[name] = conf.MustAsset("conf/locale/" + name)
}
m.Use(i18n.I18n(i18n.Options{
- SubURL: setting.AppSubURL,
- Files: localFiles,
- CustomDirectory: path.Join(setting.CustomPath, "conf/locale"),
- Langs: setting.Langs,
- Names: setting.Names,
+ SubURL: conf.Server.Subpath,
+ Files: localeFiles,
+ CustomDirectory: filepath.Join(conf.CustomDir(), "conf", "locale"),
+ Langs: conf.Langs,
+ Names: conf.Names,
DefaultLang: "en-US",
Redirect: true,
}))
m.Use(cache.Cacher(cache.Options{
- Adapter: setting.CacheAdapter,
- AdapterConfig: setting.CacheConn,
- Interval: setting.CacheInterval,
+ Adapter: conf.CacheAdapter,
+ AdapterConfig: conf.CacheConn,
+ Interval: conf.CacheInterval,
}))
m.Use(captcha.Captchaer(captcha.Options{
- SubURL: setting.AppSubURL,
+ SubURL: conf.Server.Subpath,
}))
- m.Use(session.Sessioner(setting.SessionConfig))
+ m.Use(session.Sessioner(conf.SessionConfig))
m.Use(csrf.Csrfer(csrf.Options{
- Secret: setting.SecretKey,
- Cookie: setting.CSRFCookieName,
+ Secret: conf.SecretKey,
+ Cookie: conf.CSRFCookieName,
SetCookie: true,
Header: "X-Csrf-Token",
- CookiePath: setting.AppSubURL,
+ CookiePath: conf.Server.Subpath,
}))
m.Use(toolbox.Toolboxer(m, toolbox.Options{
HealthCheckFuncs: []*toolbox.HealthCheckFuncDesc{
@@ -163,15 +162,15 @@ func newMacaron() *macaron.Macaron {
}
func runWeb(c *cli.Context) error {
- if c.IsSet("config") {
- setting.CustomConf = c.String("config")
+ err := route.GlobalInit(c.String("config"))
+ if err != nil {
+ log.Fatal("Failed to initialize application: %v", err)
}
- route.GlobalInit()
m := newMacaron()
reqSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: true})
- ignSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: setting.Service.RequireSignInView})
+ ignSignIn := context.Toggle(&context.ToggleOptions{SignInRequired: conf.Service.RequireSignInView})
ignSignInAndCsrf := context.Toggle(&context.ToggleOptions{DisableCSRF: true})
reqSignOut := context.Toggle(&context.ToggleOptions{SignOutRequired: true})
@@ -185,7 +184,7 @@ func runWeb(c *cli.Context) error {
m.Get("/", ignSignIn, route.Home)
m.Group("/explore", func() {
m.Get("", func(c *context.Context) {
- c.Redirect(setting.AppSubURL + "/explore/repos")
+ c.Redirect(conf.Server.Subpath + "/explore/repos")
})
m.Get("/repos", route.ExploreRepos)
m.Get("/users", route.ExploreUsers)
@@ -570,7 +569,7 @@ func runWeb(c *cli.Context) error {
m.Post("/upload-file", repo.UploadFileToServer)
m.Post("/upload-remove", bindIgnErr(form.RemoveUploadFile{}), repo.RemoveUploadFileFromServer)
}, func(c *context.Context) {
- if !setting.Repository.Upload.Enabled {
+ if !conf.Repository.Upload.Enabled {
c.NotFound()
return
}
@@ -658,21 +657,21 @@ func runWeb(c *cli.Context) error {
}, ignSignIn)
m.Group("/-", func() {
- if setting.Prometheus.Enabled {
+ if conf.Prometheus.Enabled {
m.Get("/metrics", func(c *context.Context) {
- if !setting.Prometheus.EnableBasicAuth {
+ if !conf.Prometheus.EnableBasicAuth {
return
}
- c.RequireBasicAuth(setting.Prometheus.BasicAuthUsername, setting.Prometheus.BasicAuthPassword)
+ c.RequireBasicAuth(conf.Prometheus.BasicAuthUsername, conf.Prometheus.BasicAuthPassword)
}, promhttp.Handler())
}
})
// robots.txt
m.Get("/robots.txt", func(c *context.Context) {
- if setting.HasRobotsTxt {
- c.ServeFileContent(path.Join(setting.CustomPath, "robots.txt"))
+ if conf.HasRobotsTxt {
+ c.ServeFileContent(filepath.Join(conf.CustomDir(), "robots.txt"))
} else {
c.NotFound()
}
@@ -683,69 +682,76 @@ func runWeb(c *cli.Context) error {
// Flag for port number in case first time run conflict.
if c.IsSet("port") {
- setting.AppURL = strings.Replace(setting.AppURL, setting.HTTPPort, c.String("port"), 1)
- setting.HTTPPort = c.String("port")
+ conf.Server.URL.Host = strings.Replace(conf.Server.URL.Host, conf.Server.URL.Port(), c.String("port"), 1)
+ conf.Server.ExternalURL = conf.Server.URL.String()
+ conf.Server.HTTPPort = c.String("port")
}
var listenAddr string
- if setting.Protocol == setting.SCHEME_UNIX_SOCKET {
- listenAddr = fmt.Sprintf("%s", setting.HTTPAddr)
+ if conf.Server.Protocol == "unix" {
+ listenAddr = conf.Server.HTTPAddr
} else {
- listenAddr = fmt.Sprintf("%s:%s", setting.HTTPAddr, setting.HTTPPort)
+ listenAddr = fmt.Sprintf("%s:%s", conf.Server.HTTPAddr, conf.Server.HTTPPort)
}
- log.Info("Listen on %v://%s%s", setting.Protocol, listenAddr, setting.AppSubURL)
+ log.Info("Listen on %v://%s%s", conf.Server.Protocol, listenAddr, conf.Server.Subpath)
- var err error
- switch setting.Protocol {
- case setting.SCHEME_HTTP:
+ switch conf.Server.Protocol {
+ case "http":
err = http.ListenAndServe(listenAddr, m)
- case setting.SCHEME_HTTPS:
- var tlsMinVersion uint16
- switch setting.TLSMinVersion {
- case "SSL30":
- tlsMinVersion = tls.VersionSSL30
+
+ case "https":
+ tlsMinVersion := tls.VersionTLS12
+ switch conf.Server.TLSMinVersion {
+ case "TLS13":
+ tlsMinVersion = tls.VersionTLS13
case "TLS12":
tlsMinVersion = tls.VersionTLS12
case "TLS11":
tlsMinVersion = tls.VersionTLS11
case "TLS10":
- fallthrough
- default:
tlsMinVersion = tls.VersionTLS10
}
- server := &http.Server{Addr: listenAddr, TLSConfig: &tls.Config{
- MinVersion: tlsMinVersion,
- CurvePreferences: []tls.CurveID{tls.X25519, tls.CurveP256, tls.CurveP384, tls.CurveP521},
- PreferServerCipherSuites: true,
- CipherSuites: []uint16{
- tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
- tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
- tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
- tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
- tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,
- tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
- },
- }, Handler: m}
- err = server.ListenAndServeTLS(setting.CertFile, setting.KeyFile)
- case setting.SCHEME_FCGI:
+ server := &http.Server{
+ Addr: listenAddr,
+ TLSConfig: &tls.Config{
+ MinVersion: uint16(tlsMinVersion),
+ CurvePreferences: []tls.CurveID{tls.X25519, tls.CurveP256, tls.CurveP384, tls.CurveP521},
+ PreferServerCipherSuites: true,
+ CipherSuites: []uint16{
+ tls.TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384,
+ tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
+ tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256,
+ tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
+ tls.TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305,
+ tls.TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305,
+ },
+ }, Handler: m}
+ err = server.ListenAndServeTLS(conf.Server.CertFile, conf.Server.KeyFile)
+
+ case "fcgi":
err = fcgi.Serve(nil, m)
- case setting.SCHEME_UNIX_SOCKET:
- os.Remove(listenAddr)
+
+ case "unix":
+ err = os.Remove(listenAddr)
+ if err != nil {
+ log.Fatal("Failed to remove existing Unix domain socket: %v", err)
+ }
var listener *net.UnixListener
- listener, err = net.ListenUnix("unix", &net.UnixAddr{listenAddr, "unix"})
+ listener, err = net.ListenUnix("unix", &net.UnixAddr{Name: listenAddr, Net: "unix"})
if err != nil {
- break // Handle error after switch
+ log.Fatal("Failed to listen on Unix networks: %v", err)
}
// FIXME: add proper implementation of signal capture on all protocols
// execute this on SIGTERM or SIGINT: listener.Close()
- if err = os.Chmod(listenAddr, os.FileMode(setting.UnixSocketPermission)); err != nil {
- log.Fatal("Failed to set permission of unix socket: %v", err)
+ if err = os.Chmod(listenAddr, conf.Server.UnixSocketMode); err != nil {
+ log.Fatal("Failed to change permission of Unix domain socket: %v", err)
}
err = http.Serve(listener, m)
+
default:
- log.Fatal("Invalid protocol: %s", setting.Protocol)
+ log.Fatal("Unexpected server protocol: %s", conf.Server.Protocol)
}
if err != nil {
diff --git a/internal/conf/computed.go b/internal/conf/computed.go
new file mode 100644
index 00000000..07a5a94c
--- /dev/null
+++ b/internal/conf/computed.go
@@ -0,0 +1,116 @@
+// Copyright 2020 The Gogs Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package conf
+
+import (
+ "os"
+ "os/exec"
+ "path/filepath"
+ "runtime"
+ "strings"
+ "sync"
+)
+
+// ℹ️ README: This file contains configuration values that require computation to be useful.
+
+// IsWindowsRuntime returns true if the current runtime in Windows.
+func IsWindowsRuntime() bool {
+ return runtime.GOOS == "windows"
+}
+
+// IsProdMode returns true if the application is running in production mode.
+func IsProdMode() bool {
+ return strings.EqualFold(App.RunMode, "prod")
+}
+
+var (
+ appPath string
+ appPathOnce sync.Once
+)
+
+// AppPath returns the absolute path of the application's binary.
+func AppPath() string {
+ appPathOnce.Do(func() {
+ var err error
+ appPath, err = exec.LookPath(os.Args[0])
+ if err != nil {
+ panic("look executable path: " + err.Error())
+ }
+
+ appPath, err = filepath.Abs(appPath)
+ if err != nil {
+ panic("get absolute executable path: " + err.Error())
+ }
+ })
+
+ return appPath
+}
+
+var (
+ workDir string
+ workDirOnce sync.Once
+)
+
+// WorkDir returns the absolute path of work directory. It reads the value of envrionment
+// variable GOGS_WORK_DIR. When not set, it uses the directory where the application's
+// binary is located.
+func WorkDir() string {
+ workDirOnce.Do(func() {
+ workDir = os.Getenv("GOGS_WORK_DIR")
+ if workDir != "" {
+ return
+ }
+
+ workDir = filepath.Dir(AppPath())
+ })
+
+ return workDir
+}
+
+var (
+ customDir string
+ customDirOnce sync.Once
+)
+
+// CustomDir returns the absolute path of the custom directory that contains local overrides.
+// It reads the value of envrionment variable GOGS_CUSTOM. When not set, it uses the work
+// directory returned by WorkDir fucntion.
+func CustomDir() string {
+ customDirOnce.Do(func() {
+ customDir = os.Getenv("GOGS_CUSTOM")
+ if customDir != "" {
+ return
+ }
+
+ customDir = filepath.Join(WorkDir(), "custom")
+ })
+
+ return customDir
+}
+
+var (
+ homeDir string
+ homeDirOnce sync.Once
+)
+
+// HomeDir returns the home directory by reading environment variables. It may return empty
+// string when environment variables are not set.
+func HomeDir() string {
+ homeDirOnce.Do(func() {
+ if !IsWindowsRuntime() {
+ homeDir = os.Getenv("HOME")
+ return
+ }
+
+ homeDir = os.Getenv("USERPROFILE")
+ if homeDir != "" {
+ return
+ }
+
+ homeDir = os.Getenv("HOMEDRIVE") + os.Getenv("HOMEPATH")
+ })
+
+ return homeDir
+}
diff --git a/internal/setting/setting.go b/internal/conf/conf.go
index b95ddbe3..90e3060e 100644
--- a/internal/setting/setting.go
+++ b/internal/conf/conf.go
@@ -2,16 +2,14 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
-package setting
+package conf
import (
"net/mail"
"net/url"
"os"
- "os/exec"
"path"
"path/filepath"
- "runtime"
"strconv"
"strings"
"time"
@@ -21,83 +19,325 @@ import (
"github.com/go-macaron/session"
_ "github.com/go-macaron/session/redis"
"github.com/mcuadros/go-version"
- "github.com/unknwon/com"
+ "github.com/pkg/errors"
"gopkg.in/ini.v1"
log "unknwon.dev/clog/v2"
"github.com/gogs/go-libravatar"
"gogs.io/gogs/internal/assets/conf"
- "gogs.io/gogs/internal/process"
+ "gogs.io/gogs/internal/osutil"
"gogs.io/gogs/internal/user"
)
-type Scheme string
+func init() {
+ // Initialize the primary logger until logging service is up.
+ err := log.NewConsole()
+ if err != nil {
+ panic("init console logger: " + err.Error())
+ }
+}
-const (
- SCHEME_HTTP Scheme = "http"
- SCHEME_HTTPS Scheme = "https"
- SCHEME_FCGI Scheme = "fcgi"
- SCHEME_UNIX_SOCKET Scheme = "unix"
-)
+// Asset is a wrapper for getting conf assets.
+func Asset(name string) ([]byte, error) {
+ return conf.Asset(name)
+}
-type LandingPage string
+// AssetDir is a wrapper for getting conf assets.
+func AssetDir(name string) ([]string, error) {
+ return conf.AssetDir(name)
+}
-const (
- LANDING_PAGE_HOME LandingPage = "/"
- LANDING_PAGE_EXPLORE LandingPage = "/explore"
-)
+// MustAsset is a wrapper for getting conf assets.
+func MustAsset(name string) []byte {
+ return conf.MustAsset(name)
+}
-var (
- // Build information should only be set by -ldflags.
- BuildTime string
- BuildCommit string
-
- // App settings
- AppVersion string
- AppName string
- AppURL string
- AppSubURL string
- AppSubURLDepth int // Number of slashes
- AppPath string
- AppDataPath string
- HostAddress string // AppURL without protocol and slashes
-
- // Server settings
- Protocol Scheme
- Domain string
- HTTPAddr string
- HTTPPort string
- LocalURL string
- OfflineMode bool
- DisableRouterLog bool
- CertFile string
- KeyFile string
- TLSMinVersion string
- LoadAssetsFromDisk bool
- StaticRootPath string
- EnableGzip bool
- LandingPageURL LandingPage
- UnixSocketPermission uint32
+// File is the configuration object.
+var File *ini.File
+
+// Init initializes configuration from conf assets and given custom configuration file.
+// If `customConf` is empty, it falls back to default location, i.e. "<WORK DIR>/custom".
+// It is safe to call this function multiple times with desired `customConf`, but it is
+// not concurrent safe.
+//
+// ⚠️ WARNING: Do not print anything in this function other than wanrings.
+func Init(customConf string) error {
+ var err error
+ File, err = ini.LoadSources(ini.LoadOptions{
+ IgnoreInlineComment: true,
+ }, conf.MustAsset("conf/app.ini"))
+ if err != nil {
+ return errors.Wrap(err, "parse 'conf/app.ini'")
+ }
+ File.NameMapper = ini.SnackCase
- HTTP struct {
- AccessControlAllowOrigin string
+ customConf, err = filepath.Abs(customConf)
+ if err != nil {
+ return errors.Wrap(err, "get absolute path")
+ }
+ if customConf == "" {
+ customConf = filepath.Join(CustomDir(), "conf/app.ini")
+ }
+ CustomConf = customConf
+
+ if osutil.IsFile(customConf) {
+ if err = File.Append(customConf); err != nil {
+ return errors.Wrapf(err, "append %q", customConf)
+ }
+ } else {
+ log.Warn("Custom config %q not found. Ignore this warning if you're running for the first time", customConf)
+ }
+
+ if err = File.Section(ini.DefaultSection).MapTo(&App); err != nil {
+ return errors.Wrap(err, "mapping default section")
+ }
+
+ // ***************************
+ // ----- Server settings -----
+ // ***************************
+
+ if err = File.Section("server").MapTo(&Server); err != nil {
+ return errors.Wrap(err, "mapping [server] section")
+ }
+
+ if !strings.HasSuffix(Server.ExternalURL, "/") {
+ Server.ExternalURL += "/"
+ }
+ Server.URL, err = url.Parse(Server.ExternalURL)
+ if err != nil {
+ return errors.Wrapf(err, "parse '[server] EXTERNAL_URL' %q", err)
+ }
+
+ // Subpath should start with '/' and end without '/', i.e. '/{subpath}'.
+ Server.Subpath = strings.TrimRight(Server.URL.Path, "/")
+ Server.SubpathDepth = strings.Count(Server.Subpath, "/")
+
+ unixSocketMode, err := strconv.ParseUint(Server.UnixSocketPermission, 8, 32)
+ if err != nil {
+ return errors.Wrapf(err, "parse '[server] UNIX_SOCKET_PERMISSION' %q", Server.UnixSocketPermission)
+ }
+ if unixSocketMode > 0777 {
+ unixSocketMode = 0666
+ }
+ Server.UnixSocketMode = os.FileMode(unixSocketMode)
+
+ // ************************
+ // ----- SSH settings -----
+ // ************************
+
+ if err = File.Section("server").MapTo(&SSH); err != nil {
+ return errors.Wrap(err, "mapping SSH settings from [server] section")
+ }
+
+ if !SSH.Disabled {
+ if !SSH.StartBuiltinServer {
+ SSH.RootPath = filepath.Join(HomeDir(), ".ssh")
+ SSH.KeyTestPath = os.TempDir()
+
+ if err := os.MkdirAll(SSH.RootPath, 0700); err != nil {
+ return errors.Wrap(err, "create SSH root directory")
+ } else if err = os.MkdirAll(SSH.KeyTestPath, 0644); err != nil {
+ return errors.Wrap(err, "create SSH key test directory")
+ }
+ } else {
+ SSH.RewriteAuthorizedKeysAtStart = false
+ }
+
+ // Check if server is eligible for minimum key size check when user choose to enable.
+ // Windows server and OpenSSH version lower than 5.1 are forced to be disabled because
+ // the "ssh-keygen" in Windows does not print key type.
+ // See https://github.com/gogs/gogs/issues/4507.
+ if SSH.MinimumKeySizeCheck {
+ sshVersion, err := openSSHVersion()
+ if err != nil {
+ return errors.Wrap(err, "get OpenSSH version")
+ }
+
+ if IsWindowsRuntime() || version.Compare(sshVersion, "5.1", "<") {
+ log.Warn(`SSH minimum key size check is forced to be disabled because server is not eligible:
+ 1. Windows server
+ 2. OpenSSH version is lower than 5.1`)
+ } else {
+ SSH.MinimumKeySizes = map[string]int{}
+ for _, key := range File.Section("ssh.minimum_key_sizes").Keys() {
+ if key.MustInt() != -1 {
+ SSH.MinimumKeySizes[strings.ToLower(key.Name())] = key.MustInt()
+ }
+ }
+ }
+ }
}
- SSH struct {
- Disabled bool `ini:"DISABLE_SSH"`
- StartBuiltinServer bool `ini:"START_SSH_SERVER"`
- Domain string `ini:"SSH_DOMAIN"`
- Port int `ini:"SSH_PORT"`
- ListenHost string `ini:"SSH_LISTEN_HOST"`
- ListenPort int `ini:"SSH_LISTEN_PORT"`
- RootPath string `ini:"SSH_ROOT_PATH"`
- RewriteAuthorizedKeysAtStart bool `ini:"REWRITE_AUTHORIZED_KEYS_AT_START"`
- ServerCiphers []string `ini:"SSH_SERVER_CIPHERS"`
- KeyTestPath string `ini:"SSH_KEY_TEST_PATH"`
- KeygenPath string `ini:"SSH_KEYGEN_PATH"`
- MinimumKeySizeCheck bool `ini:"MINIMUM_KEY_SIZE_CHECK"`
- MinimumKeySizes map[string]int `ini:"-"`
+ transferDeprecated()
+
+ // TODO
+
+ sec := File.Section("security")
+ InstallLock = sec.Key("INSTALL_LOCK").MustBool()
+ SecretKey = sec.Key("SECRET_KEY").String()
+ LoginRememberDays = sec.Key("LOGIN_REMEMBER_DAYS").MustInt()
+ CookieUserName = sec.Key("COOKIE_USERNAME").String()
+ CookieRememberName = sec.Key("COOKIE_REMEMBER_NAME").String()
+ CookieSecure = sec.Key("COOKIE_SECURE").MustBool(false)
+ ReverseProxyAuthUser = sec.Key("REVERSE_PROXY_AUTHENTICATION_USER").MustString("X-WEBAUTH-USER")
+ EnableLoginStatusCookie = sec.Key("ENABLE_LOGIN_STATUS_COOKIE").MustBool(false)
+ LoginStatusCookieName = sec.Key("LOGIN_STATUS_COOKIE_NAME").MustString("login_status")
+
+ // Does not check run user when the install lock is off.
+ if InstallLock {
+ currentUser, match := IsRunUserMatchCurrentUser(App.RunUser)
+ if !match {
+ log.Fatal("The user configured to run Gogs is %q, but the current user is %q", App.RunUser, currentUser)
+ }
+ }
+
+ sec = File.Section("attachment")
+ AttachmentPath = sec.Key("PATH").MustString(filepath.Join(Server.AppDataPath, "attachments"))
+ if !filepath.IsAbs(AttachmentPath) {
+ AttachmentPath = path.Join(workDir, AttachmentPath)
+ }
+ AttachmentAllowedTypes = strings.Replace(sec.Key("ALLOWED_TYPES").MustString("image/jpeg,image/png"), "|", ",", -1)
+ AttachmentMaxSize = sec.Key("MAX_SIZE").MustInt64(4)
+ AttachmentMaxFiles = sec.Key("MAX_FILES").MustInt(5)
+ AttachmentEnabled = sec.Key("ENABLED").MustBool(true)
+
+ TimeFormat = map[string]string{
+ "ANSIC": time.ANSIC,
+ "UnixDate": time.UnixDate,
+ "RubyDate": time.RubyDate,
+ "RFC822": time.RFC822,
+ "RFC822Z": time.RFC822Z,
+ "RFC850": time.RFC850,
+ "RFC1123": time.RFC1123,
+ "RFC1123Z": time.RFC1123Z,
+ "RFC3339": time.RFC3339,
+ "RFC3339Nano": time.RFC3339Nano,
+ "Kitchen": time.Kitchen,
+ "Stamp": time.Stamp,
+ "StampMilli": time.StampMilli,
+ "StampMicro": time.StampMicro,
+ "StampNano": time.StampNano,
+ }[File.Section("time").Key("FORMAT").MustString("RFC1123")]
+
+ // Determine and create root git repository path.
+ sec = File.Section("repository")
+ RepoRootPath = sec.Key("ROOT").MustString(filepath.Join(HomeDir(), "gogs-repositories"))
+ if !filepath.IsAbs(RepoRootPath) {
+ RepoRootPath = path.Join(workDir, RepoRootPath)
+ } else {
+ RepoRootPath = path.Clean(RepoRootPath)
+ }
+ ScriptType = sec.Key("SCRIPT_TYPE").MustString("bash")
+ if err = File.Section("repository").MapTo(&Repository); err != nil {
+ log.Fatal("Failed to map Repository settings: %v", err)
+ } else if err = File.Section("repository.editor").MapTo(&Repository.Editor); err != nil {
+ log.Fatal("Failed to map Repository.Editor settings: %v", err)
+ } else if err = File.Section("repository.upload").MapTo(&Repository.Upload); err != nil {
+ log.Fatal("Failed to map Repository.Upload settings: %v", err)
+ }
+
+ if !filepath.IsAbs(Repository.Upload.TempPath) {
+ Repository.Upload.TempPath = path.Join(workDir, Repository.Upload.TempPath)
+ }
+
+ sec = File.Section("picture")
+ AvatarUploadPath = sec.Key("AVATAR_UPLOAD_PATH").MustString(filepath.Join(Server.AppDataPath, "avatars"))
+ if !filepath.IsAbs(AvatarUploadPath) {
+ AvatarUploadPath = path.Join(workDir, AvatarUploadPath)
+ }
+ RepositoryAvatarUploadPath = sec.Key("REPOSITORY_AVATAR_UPLOAD_PATH").MustString(filepath.Join(Server.AppDataPath, "repo-avatars"))
+ if !filepath.IsAbs(RepositoryAvatarUploadPath) {
+ RepositoryAvatarUploadPath = path.Join(workDir, RepositoryAvatarUploadPath)
+ }
+ switch source := sec.Key("GRAVATAR_SOURCE").MustString("gravatar"); source {
+ case "duoshuo":
+ GravatarSource = "http://gravatar.duoshuo.com/avatar/"
+ case "gravatar":
+ GravatarSource = "https://secure.gravatar.com/avatar/"
+ case "libravatar":
+ GravatarSource = "https://seccdn.libravatar.org/avatar/"
+ default:
+ GravatarSource = source
+ }
+ DisableGravatar = sec.Key("DISABLE_GRAVATAR").MustBool()
+ EnableFederatedAvatar = sec.Key("ENABLE_FEDERATED_AVATAR").MustBool(true)
+ if Server.OfflineMode {
+ DisableGravatar = true
+ EnableFederatedAvatar = false
+ }
+ if DisableGravatar {
+ EnableFederatedAvatar = false
+ }
+
+ if EnableFederatedAvatar {
+ LibravatarService = libravatar.New()
+ parts := strings.Split(GravatarSource, "/")
+ if len(parts) >= 3 {
+ if parts[0] == "https:" {
+ LibravatarService.SetUseHTTPS(true)
+ LibravatarService.SetSecureFallbackHost(parts[2])
+ } else {
+ LibravatarService.SetUseHTTPS(false)
+ LibravatarService.SetFallbackHost(parts[2])
+ }
+ }
+ }
+
+ if err = File.Section("http").MapTo(&HTTP); err != nil {
+ log.Fatal("Failed to map HTTP settings: %v", err)
+ } else if err = File.Section("webhook").MapTo(&Webhook); err != nil {
+ log.Fatal("Failed to map Webhook settings: %v", err)
+ } else if err = File.Section("release.attachment").MapTo(&Release.Attachment); err != nil {
+ log.Fatal("Failed to map Release.Attachment settings: %v", err)
+ } else if err = File.Section("markdown").MapTo(&Markdown); err != nil {
+ log.Fatal("Failed to map Markdown settings: %v", err)
+ } else if err = File.Section("smartypants").MapTo(&Smartypants); err != nil {
+ log.Fatal("Failed to map Smartypants settings: %v", err)
+ } else if err = File.Section("admin").MapTo(&Admin); err != nil {
+ log.Fatal("Failed to map Admin settings: %v", err)
+ } else if err = File.Section("cron").MapTo(&Cron); err != nil {
+ log.Fatal("Failed to map Cron settings: %v", err)
+ } else if err = File.Section("git").MapTo(&Git); err != nil {
+ log.Fatal("Failed to map Git settings: %v", err)
+ } else if err = File.Section("mirror").MapTo(&Mirror); err != nil {
+ log.Fatal("Failed to map Mirror settings: %v", err)
+ } else if err = File.Section("api").MapTo(&API); err != nil {
+ log.Fatal("Failed to map API settings: %v", err)
+ } else if err = File.Section("ui").MapTo(&UI); err != nil {
+ log.Fatal("Failed to map UI settings: %v", err)
+ } else if err = File.Section("prometheus").MapTo(&Prometheus); err != nil {
+ log.Fatal("Failed to map Prometheus settings: %v", err)
+ }
+
+ if Mirror.DefaultInterval <= 0 {
+ Mirror.DefaultInterval = 24
+ }
+
+ Langs = File.Section("i18n").Key("LANGS").Strings(",")
+ Names = File.Section("i18n").Key("NAMES").Strings(",")
+ dateLangs = File.Section("i18n.datelang").KeysHash()
+
+ ShowFooterBranding = File.Section("other").Key("SHOW_FOOTER_BRANDING").MustBool()
+ ShowFooterTemplateLoadTime = File.Section("other").Key("SHOW_FOOTER_TEMPLATE_LOAD_TIME").MustBool()
+
+ HasRobotsTxt = osutil.IsFile(path.Join(CustomDir(), "robots.txt"))
+ return nil
+}
+
+// MustInit panics if configuration initialization failed.
+func MustInit(customConf string) {
+ err := Init(customConf)
+ if err != nil {
+ panic(err)
+ }
+}
+
+// TODO
+
+var (
+ HTTP struct {
+ AccessControlAllowOrigin string
}
// Security settings
@@ -316,12 +556,6 @@ var (
ShowFooterTemplateLoadTime bool
// Global setting objects
- Cfg *ini.File
- CustomPath string // Custom directory path
- CustomConf string
- ProdMode bool
- RunUser string
- IsWindows bool
HasRobotsTxt bool
)
@@ -334,59 +568,12 @@ func DateLang(lang string) string {
return "en"
}
-// execPath returns the executable path.
-func execPath() (string, error) {
- file, err := exec.LookPath(os.Args[0])
- if err != nil {
- return "", err
- }
- return filepath.Abs(file)
-}
-
-func init() {
- IsWindows = runtime.GOOS == "windows"
-
- err := log.NewConsole()
- if err != nil {
- panic("init console logger: " + err.Error())
- }
-
- AppPath, err = execPath()
- if err != nil {
- log.Fatal("Failed to get executable path: %v", err)
- }
-
- // NOTE: we don't use path.Dir here because it does not handle case
- // which path starts with two "/" in Windows: "//psf/Home/..."
- AppPath = strings.Replace(AppPath, "\\", "/", -1)
-}
-
-// WorkDir returns absolute path of work directory.
-func WorkDir() (string, error) {
- wd := os.Getenv("GOGS_WORK_DIR")
- if len(wd) > 0 {
- return wd, nil
- }
-
- i := strings.LastIndex(AppPath, "/")
- if i == -1 {
- return AppPath, nil
- }
- return AppPath[:i], nil
-}
-
-func forcePathSeparator(path string) {
- if strings.Contains(path, "\\") {
- log.Fatal("Do not use '\\' or '\\\\' in paths, please use '/' in all places")
- }
-}
-
// IsRunUserMatchCurrentUser returns false if configured run user does not match
// actual user that runs the app. The first return value is the actual user name.
// This check is ignored under Windows since SSH remote login is not the main
// method to login on Windows.
func IsRunUserMatchCurrentUser(runUser string) (string, bool) {
- if IsWindows {
+ if IsWindowsRuntime() {
return "", true
}
@@ -394,351 +581,17 @@ func IsRunUserMatchCurrentUser(runUser string) (string, bool) {
return currentUser, runUser == currentUser
}
-// getOpenSSHVersion parses and returns string representation of OpenSSH version
-// returned by command "ssh -V".
-func getOpenSSHVersion() string {
- // NOTE: Somehow the version is printed to stderr.
- _, stderr, err := process.Exec("setting.getOpenSSHVersion", "ssh", "-V")
- if err != nil {
- log.Fatal("Failed to get OpenSSH version: %v - %s", err, stderr)
- }
-
- // Trim unused information: https://github.com/gogs/gogs/issues/4507#issuecomment-305150441
- version := strings.TrimRight(strings.Fields(stderr)[0], ",1234567890")
- version = strings.TrimSuffix(strings.TrimPrefix(version, "OpenSSH_"), "p")
- return version
-}
-
-// Init initializes configuration by loading from sources.
-// ⚠️ WARNING: Do not print anything in this function other than wanrings or errors.
-func Init() {
- workDir, err := WorkDir()
- if err != nil {
- log.Fatal("Failed to get work directory: %v", err)
- return
- }
-
- Cfg, err = ini.LoadSources(ini.LoadOptions{
- IgnoreInlineComment: true,
- }, conf.MustAsset("conf/app.ini"))
- if err != nil {
- log.Fatal("Failed to parse 'conf/app.ini': %v", err)
- return
- }
-
- CustomPath = os.Getenv("GOGS_CUSTOM")
- if len(CustomPath) == 0 {
- CustomPath = workDir + "/custom"
- }
-
- if len(CustomConf) == 0 {
- CustomConf = CustomPath + "/conf/app.ini"
- }
-
- if com.IsFile(CustomConf) {
- if err = Cfg.Append(CustomConf); err != nil {
- log.Fatal("Failed to load custom conf %q: %v", CustomConf, err)
- return
- }
- } else {
- log.Warn("Custom config '%s' not found, ignore this warning if you're running the first time", CustomConf)
- }
- Cfg.NameMapper = ini.SnackCase
-
- homeDir, err := com.HomeDir()
- if err != nil {
- log.Fatal("Failed to get home directory: %v", err)
- return
- }
- homeDir = strings.Replace(homeDir, "\\", "/", -1)
-
- LogRootPath = Cfg.Section("log").Key("ROOT_PATH").MustString(path.Join(workDir, "log"))
- forcePathSeparator(LogRootPath)
-
- sec := Cfg.Section("server")
- AppName = Cfg.Section("").Key("APP_NAME").MustString("Gogs")
- AppURL = sec.Key("ROOT_URL").MustString("http://localhost:3000/")
- if AppURL[len(AppURL)-1] != '/' {
- AppURL += "/"
- }
-
- // Check if has app suburl.
- url, err := url.Parse(AppURL)
- if err != nil {
- log.Fatal("Failed to parse ROOT_URL %q: %s", AppURL, err)
- return
- }
- // Suburl should start with '/' and end without '/', such as '/{subpath}'.
- // This value is empty if site does not have sub-url.
- AppSubURL = strings.TrimSuffix(url.Path, "/")
- AppSubURLDepth = strings.Count(AppSubURL, "/")
- HostAddress = url.Host
-
- Protocol = SCHEME_HTTP
- if sec.Key("PROTOCOL").String() == "https" {
- Protocol = SCHEME_HTTPS
- CertFile = sec.Key("CERT_FILE").String()
- KeyFile = sec.Key("KEY_FILE").String()
- TLSMinVersion = sec.Key("TLS_MIN_VERSION").String()
- } else if sec.Key("PROTOCOL").String() == "fcgi" {
- Protocol = SCHEME_FCGI
- } else if sec.Key("PROTOCOL").String() == "unix" {
- Protocol = SCHEME_UNIX_SOCKET
- UnixSocketPermissionRaw := sec.Key("UNIX_SOCKET_PERMISSION").MustString("666")
- UnixSocketPermissionParsed, err := strconv.ParseUint(UnixSocketPermissionRaw, 8, 32)
- if err != nil || UnixSocketPermissionParsed > 0777 {
- log.Fatal("Failed to parse unixSocketPermission %q: %v", UnixSocketPermissionRaw, err)
- return
- }
- UnixSocketPermission = uint32(UnixSocketPermissionParsed)
- }
- Domain = sec.Key("DOMAIN").MustString("localhost")
- HTTPAddr = sec.Key("HTTP_ADDR").MustString("0.0.0.0")
- HTTPPort = sec.Key("HTTP_PORT").MustString("3000")
- LocalURL = sec.Key("LOCAL_ROOT_URL").MustString(string(Protocol) + "://localhost:" + HTTPPort + "/")
- OfflineMode = sec.Key("OFFLINE_MODE").MustBool()
- DisableRouterLog = sec.Key("DISABLE_ROUTER_LOG").MustBool()
- LoadAssetsFromDisk = sec.Key("LOAD_ASSETS_FROM_DISK").MustBool()
- StaticRootPath = sec.Key("STATIC_ROOT_PATH").MustString(workDir)
- AppDataPath = sec.Key("APP_DATA_PATH").MustString("data")
- EnableGzip = sec.Key("ENABLE_GZIP").MustBool()
-
- switch sec.Key("LANDING_PAGE").MustString("home") {
- case "explore":
- LandingPageURL = LANDING_PAGE_EXPLORE
- default:
- LandingPageURL = LANDING_PAGE_HOME
- }
-
- SSH.RootPath = path.Join(homeDir, ".ssh")
- SSH.RewriteAuthorizedKeysAtStart = sec.Key("REWRITE_AUTHORIZED_KEYS_AT_START").MustBool()
- SSH.ServerCiphers = sec.Key("SSH_SERVER_CIPHERS").Strings(",")
- SSH.KeyTestPath = os.TempDir()
- if err = Cfg.Section("server").MapTo(&SSH); err != nil {
- log.Fatal("Failed to map SSH settings: %v", err)
- return
- }
- if SSH.Disabled {
- SSH.StartBuiltinServer = false
- SSH.MinimumKeySizeCheck = false
- }
-
- if !SSH.Disabled && !SSH.StartBuiltinServer {
- if err := os.MkdirAll(SSH.RootPath, 0700); err != nil {
- log.Fatal("Failed to create '%s': %v", SSH.RootPath, err)
- return
- } else if err = os.MkdirAll(SSH.KeyTestPath, 0644); err != nil {
- log.Fatal("Failed to create '%s': %v", SSH.KeyTestPath, err)
- return
- }
- }
-
- if SSH.StartBuiltinServer {
- SSH.RewriteAuthorizedKeysAtStart = false
- }
-
- // Check if server is eligible for minimum key size check when user choose to enable.
- // Windows server and OpenSSH version lower than 5.1 (https://gogs.io/gogs/issues/4507)
- // are forced to be disabled because the "ssh-keygen" in Windows does not print key type.
- if SSH.MinimumKeySizeCheck &&
- (IsWindows || version.Compare(getOpenSSHVersion(), "5.1", "<")) {
- SSH.MinimumKeySizeCheck = false
- log.Warn(`SSH minimum key size check is forced to be disabled because server is not eligible:
-1. Windows server
-2. OpenSSH version is lower than 5.1`)
- }
-
- if SSH.MinimumKeySizeCheck {
- SSH.MinimumKeySizes = map[string]int{}
- for _, key := range Cfg.Section("ssh.minimum_key_sizes").Keys() {
- if key.MustInt() != -1 {
- SSH.MinimumKeySizes[strings.ToLower(key.Name())] = key.MustInt()
- }
- }
- }
-
- sec = Cfg.Section("security")
- InstallLock = sec.Key("INSTALL_LOCK").MustBool()
- SecretKey = sec.Key("SECRET_KEY").String()
- LoginRememberDays = sec.Key("LOGIN_REMEMBER_DAYS").MustInt()
- CookieUserName = sec.Key("COOKIE_USERNAME").String()
- CookieRememberName = sec.Key("COOKIE_REMEMBER_NAME").String()
- CookieSecure = sec.Key("COOKIE_SECURE").MustBool(false)
- ReverseProxyAuthUser = sec.Key("REVERSE_PROXY_AUTHENTICATION_USER").MustString("X-WEBAUTH-USER")
- EnableLoginStatusCookie = sec.Key("ENABLE_LOGIN_STATUS_COOKIE").MustBool(false)
- LoginStatusCookieName = sec.Key("LOGIN_STATUS_COOKIE_NAME").MustString("login_status")
-
- sec = Cfg.Section("attachment")
- AttachmentPath = sec.Key("PATH").MustString(path.Join(AppDataPath, "attachments"))
- if !filepath.IsAbs(AttachmentPath) {
- AttachmentPath = path.Join(workDir, AttachmentPath)
- }
- AttachmentAllowedTypes = strings.Replace(sec.Key("ALLOWED_TYPES").MustString("image/jpeg,image/png"), "|", ",", -1)
- AttachmentMaxSize = sec.Key("MAX_SIZE").MustInt64(4)
- AttachmentMaxFiles = sec.Key("MAX_FILES").MustInt(5)
- AttachmentEnabled = sec.Key("ENABLED").MustBool(true)
-
- TimeFormat = map[string]string{
- "ANSIC": time.ANSIC,
- "UnixDate": time.UnixDate,
- "RubyDate": time.RubyDate,
- "RFC822": time.RFC822,
- "RFC822Z": time.RFC822Z,
- "RFC850": time.RFC850,
- "RFC1123": time.RFC1123,
- "RFC1123Z": time.RFC1123Z,
- "RFC3339": time.RFC3339,
- "RFC3339Nano": time.RFC3339Nano,
- "Kitchen": time.Kitchen,
- "Stamp": time.Stamp,
- "StampMilli": time.StampMilli,
- "StampMicro": time.StampMicro,
- "StampNano": time.StampNano,
- }[Cfg.Section("time").Key("FORMAT").MustString("RFC1123")]
-
- RunUser = Cfg.Section("").Key("RUN_USER").String()
- // Does not check run user when the install lock is off.
- if InstallLock {
- currentUser, match := IsRunUserMatchCurrentUser(RunUser)
- if !match {
- log.Fatal("The user configured to run Gogs is %q, but the current user is %q", RunUser, currentUser)
- return
- }
- }
-
- ProdMode = Cfg.Section("").Key("RUN_MODE").String() == "prod"
-
- // Determine and create root git repository path.
- sec = Cfg.Section("repository")
- RepoRootPath = sec.Key("ROOT").MustString(path.Join(homeDir, "gogs-repositories"))
- forcePathSeparator(RepoRootPath)
- if !filepath.IsAbs(RepoRootPath) {
- RepoRootPath = path.Join(workDir, RepoRootPath)
- } else {
- RepoRootPath = path.Clean(RepoRootPath)
- }
- ScriptType = sec.Key("SCRIPT_TYPE").MustString("bash")
- if err = Cfg.Section("repository").MapTo(&Repository); err != nil {
- log.Fatal("Failed to map Repository settings: %v", err)
- return
- } else if err = Cfg.Section("repository.editor").MapTo(&Repository.Editor); err != nil {
- log.Fatal("Failed to map Repository.Editor settings: %v", err)
- return
- } else if err = Cfg.Section("repository.upload").MapTo(&Repository.Upload); err != nil {
- log.Fatal("Failed to map Repository.Upload settings: %v", err)
- return
- }
-
- if !filepath.IsAbs(Repository.Upload.TempPath) {
- Repository.Upload.TempPath = path.Join(workDir, Repository.Upload.TempPath)
- }
-
- sec = Cfg.Section("picture")
- AvatarUploadPath = sec.Key("AVATAR_UPLOAD_PATH").MustString(path.Join(AppDataPath, "avatars"))
- forcePathSeparator(AvatarUploadPath)
- if !filepath.IsAbs(AvatarUploadPath) {
- AvatarUploadPath = path.Join(workDir, AvatarUploadPath)
- }
- RepositoryAvatarUploadPath = sec.Key("REPOSITORY_AVATAR_UPLOAD_PATH").MustString(path.Join(AppDataPath, "repo-avatars"))
- forcePathSeparator(RepositoryAvatarUploadPath)
- if !filepath.IsAbs(RepositoryAvatarUploadPath) {
- RepositoryAvatarUploadPath = path.Join(workDir, RepositoryAvatarUploadPath)
- }
- switch source := sec.Key("GRAVATAR_SOURCE").MustString("gravatar"); source {
- case "duoshuo":
- GravatarSource = "http://gravatar.duoshuo.com/avatar/"
- case "gravatar":
- GravatarSource = "https://secure.gravatar.com/avatar/"
- case "libravatar":
- GravatarSource = "https://seccdn.libravatar.org/avatar/"
- default:
- GravatarSource = source
- }
- DisableGravatar = sec.Key("DISABLE_GRAVATAR").MustBool()
- EnableFederatedAvatar = sec.Key("ENABLE_FEDERATED_AVATAR").MustBool(true)
- if OfflineMode {
- DisableGravatar = true
- EnableFederatedAvatar = false
- }
- if DisableGravatar {
- EnableFederatedAvatar = false
- }
-
- if EnableFederatedAvatar {
- LibravatarService = libravatar.New()
- parts := strings.Split(GravatarSource, "/")
- if len(parts) >= 3 {
- if parts[0] == "https:" {
- LibravatarService.SetUseHTTPS(true)
- LibravatarService.SetSecureFallbackHost(parts[2])
- } else {
- LibravatarService.SetUseHTTPS(false)
- LibravatarService.SetFallbackHost(parts[2])
- }
- }
- }
-
- if err = Cfg.Section("http").MapTo(&HTTP); err != nil {
- log.Fatal("Failed to map HTTP settings: %v", err)
- return
- } else if err = Cfg.Section("webhook").MapTo(&Webhook); err != nil {
- log.Fatal("Failed to map Webhook settings: %v", err)
- return
- } else if err = Cfg.Section("release.attachment").MapTo(&Release.Attachment); err != nil {
- log.Fatal("Failed to map Release.Attachment settings: %v", err)
- return
- } else if err = Cfg.Section("markdown").MapTo(&Markdown); err != nil {
- log.Fatal("Failed to map Markdown settings: %v", err)
- return
- } else if err = Cfg.Section("smartypants").MapTo(&Smartypants); err != nil {
- log.Fatal("Failed to map Smartypants settings: %v", err)
- return
- } else if err = Cfg.Section("admin").MapTo(&Admin); err != nil {
- log.Fatal("Failed to map Admin settings: %v", err)
- return
- } else if err = Cfg.Section("cron").MapTo(&Cron); err != nil {
- log.Fatal("Failed to map Cron settings: %v", err)
- return
- } else if err = Cfg.Section("git").MapTo(&Git); err != nil {
- log.Fatal("Failed to map Git settings: %v", err)
- return
- } else if err = Cfg.Section("mirror").MapTo(&Mirror); err != nil {
- log.Fatal("Failed to map Mirror settings: %v", err)
- return
- } else if err = Cfg.Section("api").MapTo(&API); err != nil {
- log.Fatal("Failed to map API settings: %v", err)
- return
- } else if err = Cfg.Section("ui").MapTo(&UI); err != nil {
- log.Fatal("Failed to map UI settings: %v", err)
- return
- } else if err = Cfg.Section("prometheus").MapTo(&Prometheus); err != nil {
- log.Fatal("Failed to map Prometheus settings: %v", err)
- return
- }
-
- if Mirror.DefaultInterval <= 0 {
- Mirror.DefaultInterval = 24
- }
-
- Langs = Cfg.Section("i18n").Key("LANGS").Strings(",")
- Names = Cfg.Section("i18n").Key("NAMES").Strings(",")
- dateLangs = Cfg.Section("i18n.datelang").KeysHash()
-
- ShowFooterBranding = Cfg.Section("other").Key("SHOW_FOOTER_BRANDING").MustBool()
- ShowFooterTemplateLoadTime = Cfg.Section("other").Key("SHOW_FOOTER_TEMPLATE_LOAD_TIME").MustBool()
-
- HasRobotsTxt = com.IsFile(path.Join(CustomPath, "robots.txt"))
-}
-
-// InitLogging initializes the logging infrastructure of the application.
+// InitLogging initializes the logging service of the application.
func InitLogging() {
+ LogRootPath = File.Section("log").Key("ROOT_PATH").MustString(filepath.Join(WorkDir(), "log"))
+
// Because we always create a console logger as the primary logger at init time,
// we need to remove it in case the user doesn't configure to use it after the
- // logging infrastructure is initalized.
+ // logging service is initalized.
hasConsole := false
// Iterate over [log.*] sections to initialize individual logger.
- LogModes = strings.Split(Cfg.Section("log").Key("MODE").MustString("console"), ",")
+ LogModes = strings.Split(File.Section("log").Key("MODE").MustString("console"), ",")
LogConfigs = make([]interface{}, len(LogModes))
levelMappings := map[string]log.Level{
"trace": log.LevelTrace,
@@ -755,7 +608,7 @@ func InitLogging() {
for i, mode := range LogModes {
mode = strings.ToLower(strings.TrimSpace(mode))
secName := "log." + mode
- sec, err := Cfg.GetSection(secName)
+ sec, err := File.GetSection(secName)
if err != nil {
log.Fatal("Missing configuration section [%s] for %q logger", secName, mode)
return
@@ -852,7 +705,7 @@ var Service struct {
}
func newService() {
- sec := Cfg.Section("service")
+ sec := File.Section("service")
Service.ActiveCodeLives = sec.Key("ACTIVE_CODE_LIVE_MINUTES").MustInt(180)
Service.ResetPwdCodeLives = sec.Key("RESET_PASSWD_CODE_LIVE_MINUTES").MustInt(180)
Service.DisableRegistration = sec.Key("DISABLE_REGISTRATION").MustBool()
@@ -864,12 +717,12 @@ func newService() {
}
func newCacheService() {
- CacheAdapter = Cfg.Section("cache").Key("ADAPTER").In("memory", []string{"memory", "redis", "memcache"})
+ CacheAdapter = File.Section("cache").Key("ADAPTER").In("memory", []string{"memory", "redis", "memcache"})
switch CacheAdapter {
case "memory":
- CacheInterval = Cfg.Section("cache").Key("INTERVAL").MustInt(60)
+ CacheInterval = File.Section("cache").Key("INTERVAL").MustInt(60)
case "redis", "memcache":
- CacheConn = strings.Trim(Cfg.Section("cache").Key("HOST").String(), "\" ")
+ CacheConn = strings.Trim(File.Section("cache").Key("HOST").String(), "\" ")
default:
log.Fatal("Unrecognized cache adapter %q", CacheAdapter)
return
@@ -879,15 +732,15 @@ func newCacheService() {
}
func newSessionService() {
- SessionConfig.Provider = Cfg.Section("session").Key("PROVIDER").In("memory",
+ SessionConfig.Provider = File.Section("session").Key("PROVIDER").In("memory",
[]string{"memory", "file", "redis", "mysql"})
- SessionConfig.ProviderConfig = strings.Trim(Cfg.Section("session").Key("PROVIDER_CONFIG").String(), "\" ")
- SessionConfig.CookieName = Cfg.Section("session").Key("COOKIE_NAME").MustString("i_like_gogs")
- SessionConfig.CookiePath = AppSubURL
- SessionConfig.Secure = Cfg.Section("session").Key("COOKIE_SECURE").MustBool()
- SessionConfig.Gclifetime = Cfg.Section("session").Key("GC_INTERVAL_TIME").MustInt64(3600)
- SessionConfig.Maxlifetime = Cfg.Section("session").Key("SESSION_LIFE_TIME").MustInt64(86400)
- CSRFCookieName = Cfg.Section("session").Key("CSRF_COOKIE_NAME").MustString("_csrf")
+ SessionConfig.ProviderConfig = strings.Trim(File.Section("session").Key("PROVIDER_CONFIG").String(), "\" ")
+ SessionConfig.CookieName = File.Section("session").Key("COOKIE_NAME").MustString("i_like_gogs")
+ SessionConfig.CookiePath = Server.Subpath
+ SessionConfig.Secure = File.Section("session").Key("COOKIE_SECURE").MustBool()
+ SessionConfig.Gclifetime = File.Section("session").Key("GC_INTERVAL_TIME").MustInt64(3600)
+ SessionConfig.Maxlifetime = File.Section("session").Key("SESSION_LIFE_TIME").MustInt64(86400)
+ CSRFCookieName = File.Section("session").Key("CSRF_COOKIE_NAME").MustString("_csrf")
log.Trace("Session service is enabled")
}
@@ -916,14 +769,14 @@ var (
// newMailService initializes mail service options from configuration.
// No non-error log will be printed in hook mode.
func newMailService() {
- sec := Cfg.Section("mailer")
+ sec := File.Section("mailer")
if !sec.Key("ENABLED").MustBool() {
return
}
MailService = &Mailer{
QueueLength: sec.Key("SEND_BUFFER_LEN").MustInt(100),
- SubjectPrefix: sec.Key("SUBJECT_PREFIX").MustString("[" + AppName + "] "),
+ SubjectPrefix: sec.Key("SUBJECT_PREFIX").MustString("[" + App.BrandName + "] "),
Host: sec.Key("HOST").String(),
User: sec.Key("USER").String(),
Passwd: sec.Key("PASSWD").String(),
@@ -954,7 +807,7 @@ func newMailService() {
}
func newRegisterMailService() {
- if !Cfg.Section("service").Key("REGISTER_EMAIL_CONFIRM").MustBool() {
+ if !File.Section("service").Key("REGISTER_EMAIL_CONFIRM").MustBool() {
return
} else if MailService == nil {
log.Warn("Email confirmation is not enabled due to the mail service is not available")
@@ -967,7 +820,7 @@ func newRegisterMailService() {
// newNotifyMailService initializes notification email service options from configuration.
// No non-error log will be printed in hook mode.
func newNotifyMailService() {
- if !Cfg.Section("service").Key("ENABLE_NOTIFY_MAIL").MustBool() {
+ if !File.Section("service").Key("ENABLE_NOTIFY_MAIL").MustBool() {
return
} else if MailService == nil {
log.Warn("Email notification is not enabled due to the mail service is not available")
diff --git a/internal/conf/static.go b/internal/conf/static.go
new file mode 100644
index 00000000..91f49ea2
--- /dev/null
+++ b/internal/conf/static.go
@@ -0,0 +1,107 @@
+// Copyright 2020 The Gogs Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package conf
+
+import (
+ "net/url"
+ "os"
+)
+
+// ℹ️ README: This file contains static values that should only be set at initialization time.
+
+// HasMinWinSvc is whether the application is built with Windows Service support.
+var HasMinWinSvc bool
+
+// Build information should only be set by -ldflags.
+var (
+ BuildTime string
+ BuildCommit string
+)
+
+// CustomConf returns the absolute path of custom configuration file that is used.
+var CustomConf string
+
+var (
+ // Application settings
+ App struct {
+ // ⚠️ WARNING: Should only be set by gogs.go.
+ Version string `ini:"-"`
+
+ BrandName string
+ RunUser string
+ RunMode string
+
+ // Deprecated: Use BrandName instead, will be removed in 0.13.
+ AppName string
+ }
+
+ // Server settings
+ Server struct {
+ ExternalURL string `ini:"EXTERNAL_URL"`
+ Domain string
+ Protocol string
+ HTTPAddr string `ini:"HTTP_ADDR"`
+ HTTPPort string `ini:"HTTP_PORT"`
+ CertFile string
+ KeyFile string
+ TLSMinVersion string `ini:"TLS_MIN_VERSION"`
+ UnixSocketPermission string
+ LocalRootURL string `ini:"LOCAL_ROOT_URL"`
+
+ OfflineMode bool
+ DisableRouterLog bool
+ EnableGzip bool
+
+ AppDataPath string
+ LoadAssetsFromDisk bool
+
+ LandingURL string `ini:"LANDING_URL"`
+
+ // Derived from other static values
+ URL *url.URL `ini:"-"` // Parsed URL object of ExternalURL.
+ Subpath string `ini:"-"` // Subpath found the ExternalURL. Should be empty when not found.
+ SubpathDepth int `ini:"-"` // The number of slashes found in the Subpath.
+ UnixSocketMode os.FileMode `ini:"-"` // Parsed file mode of UnixSocketPermission.
+
+ // Deprecated: Use ExternalURL instead, will be removed in 0.13.
+ RootURL string `ini:"ROOT_URL"`
+ // Deprecated: Use LandingURL instead, will be removed in 0.13.
+ LangdingPage string `ini:"LANDING_PAGE"`
+ }
+
+ // SSH settings
+ SSH struct {
+ Disabled bool `ini:"DISABLE_SSH"`
+ Domain string `ini:"SSH_DOMAIN"`
+ Port int `ini:"SSH_PORT"`
+ RootPath string `ini:"SSH_ROOT_PATH"`
+ KeygenPath string `ini:"SSH_KEYGEN_PATH"`
+ KeyTestPath string `ini:"SSH_KEY_TEST_PATH"`
+ StartBuiltinServer bool `ini:"START_SSH_SERVER"`
+ ListenHost string `ini:"SSH_LISTEN_HOST"`
+ ListenPort int `ini:"SSH_LISTEN_PORT"`
+ ServerCiphers []string `ini:"SSH_SERVER_CIPHERS"`
+ MinimumKeySizeCheck bool `ini:"MINIMUM_KEY_SIZE_CHECK"`
+ MinimumKeySizes map[string]int `ini:"-"` // Load from [ssh.minimum_key_sizes]
+ RewriteAuthorizedKeysAtStart bool `ini:"REWRITE_AUTHORIZED_KEYS_AT_START"`
+ }
+)
+
+// transferDeprecated transfers deprecated values to the new ones when set.
+func transferDeprecated() {
+ if App.AppName != "" {
+ App.BrandName = App.AppName
+ App.AppName = ""
+ }
+
+ if Server.RootURL != "" {
+ Server.ExternalURL = Server.RootURL
+ Server.RootURL = ""
+ }
+ if Server.LangdingPage == "explore" {
+ Server.LandingURL = "/explore"
+ Server.LangdingPage = ""
+ }
+}
diff --git a/internal/setting/computed_minwinsvc.go b/internal/conf/static_minwinsvc.go
index 27d0ce87..aebfaf6d 100644
--- a/internal/setting/computed_minwinsvc.go
+++ b/internal/conf/static_minwinsvc.go
@@ -4,12 +4,12 @@
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
-package setting
+package conf
import (
_ "github.com/gogs/minwinsvc"
)
func init() {
- supportWindowsService = true
+ HasMinWinSvc = true
}
diff --git a/internal/conf/utils.go b/internal/conf/utils.go
new file mode 100644
index 00000000..ad716018
--- /dev/null
+++ b/internal/conf/utils.go
@@ -0,0 +1,27 @@
+// Copyright 2020 The Gogs Authors. All rights reserved.
+// Use of this source code is governed by a MIT-style
+// license that can be found in the LICENSE file.
+
+package conf
+
+import (
+ "strings"
+
+ "github.com/pkg/errors"
+
+ "gogs.io/gogs/internal/process"
+)
+
+// openSSHVersion returns string representation of OpenSSH version via command "ssh -V".
+func openSSHVersion() (string, error) {
+ // NOTE: Somehow the version is printed to stderr.
+ _, stderr, err := process.Exec("conf.openSSHVersion", "ssh", "-V")
+ if err != nil {
+ return "", errors.Wrap(err, stderr)
+ }
+
+ // Trim unused information, see https://github.com/gogs/gogs/issues/4507#issuecomment-305150441.
+ v := strings.TrimRight(strings.Fields(stderr)[0], ",1234567890")
+ v = strings.TrimSuffix(strings.TrimPrefix(v, "OpenSSH_"), "p")
+ return v, nil
+}
diff --git a/internal/context/api.go b/internal/context/api.go
index 153997d3..881e9aa8 100644
--- a/internal/context/api.go
+++ b/internal/context/api.go
@@ -13,7 +13,7 @@ import (
"gopkg.in/macaron.v1"
log "unknwon.dev/clog/v2"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
type APIContext struct {
@@ -79,16 +79,16 @@ func (c *APIContext) SetLinkHeader(total, pageSize int) {
page := paginater.New(total, pageSize, c.QueryInt("page"), 0)
links := make([]string, 0, 4)
if page.HasNext() {
- links = append(links, fmt.Sprintf("<%s%s?page=%d>; rel=\"next\"", setting.AppURL, c.Req.URL.Path[1:], page.Next()))
+ links = append(links, fmt.Sprintf("<%s%s?page=%d>; rel=\"next\"", conf.Server.ExternalURL, c.Req.URL.Path[1:], page.Next()))
}
if !page.IsLast() {
- links = append(links, fmt.Sprintf("<%s%s?page=%d>; rel=\"last\"", setting.AppURL, c.Req.URL.Path[1:], page.TotalPages()))
+ links = append(links, fmt.Sprintf("<%s%s?page=%d>; rel=\"last\"", conf.Server.ExternalURL, c.Req.URL.Path[1:], page.TotalPages()))
}
if !page.IsFirst() {
- links = append(links, fmt.Sprintf("<%s%s?page=1>; rel=\"first\"", setting.AppURL, c.Req.URL.Path[1:]))
+ links = append(links, fmt.Sprintf("<%s%s?page=1>; rel=\"first\"", conf.Server.ExternalURL, c.Req.URL.Path[1:]))
}
if page.HasPrevious() {
- links = append(links, fmt.Sprintf("<%s%s?page=%d>; rel=\"prev\"", setting.AppURL, c.Req.URL.Path[1:], page.Previous()))
+ links = append(links, fmt.Sprintf("<%s%s?page=%d>; rel=\"prev\"", conf.Server.ExternalURL, c.Req.URL.Path[1:], page.Previous()))
}
if len(links) > 0 {
@@ -100,7 +100,7 @@ func APIContexter() macaron.Handler {
return func(ctx *Context) {
c := &APIContext{
Context: ctx,
- BaseURL: setting.AppURL + "api/v1",
+ BaseURL: conf.Server.ExternalURL + "api/v1",
}
ctx.Map(c)
}
diff --git a/internal/context/auth.go b/internal/context/auth.go
index cc6c804c..b0ddfc6f 100644
--- a/internal/context/auth.go
+++ b/internal/context/auth.go
@@ -13,7 +13,7 @@ import (
"gopkg.in/macaron.v1"
"gogs.io/gogs/internal/auth"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/tool"
)
@@ -27,8 +27,8 @@ type ToggleOptions struct {
func Toggle(options *ToggleOptions) macaron.Handler {
return func(c *Context) {
// Cannot view any page before installation.
- if !setting.InstallLock {
- c.Redirect(setting.AppSubURL + "/install")
+ if !conf.InstallLock {
+ c.Redirect(conf.Server.Subpath + "/install")
return
}
@@ -40,14 +40,14 @@ func Toggle(options *ToggleOptions) macaron.Handler {
}
// Check non-logged users landing page.
- if !c.IsLogged && c.Req.RequestURI == "/" && setting.LandingPageURL != setting.LANDING_PAGE_HOME {
- c.Redirect(setting.AppSubURL + string(setting.LandingPageURL))
+ if !c.IsLogged && c.Req.RequestURI == "/" && conf.Server.LandingURL != "/" {
+ c.Redirect(conf.Server.LandingURL)
return
}
// Redirect to dashboard if user tries to visit any non-login page.
if options.SignOutRequired && c.IsLogged && c.Req.RequestURI != "/" {
- c.Redirect(setting.AppSubURL + "/")
+ c.Redirect(conf.Server.Subpath + "/")
return
}
@@ -68,10 +68,10 @@ func Toggle(options *ToggleOptions) macaron.Handler {
return
}
- c.SetCookie("redirect_to", url.QueryEscape(setting.AppSubURL+c.Req.RequestURI), 0, setting.AppSubURL)
- c.Redirect(setting.AppSubURL + "/user/login")
+ c.SetCookie("redirect_to", url.QueryEscape(conf.Server.Subpath+c.Req.RequestURI), 0, conf.Server.Subpath)
+ c.Redirect(conf.Server.Subpath + "/user/login")
return
- } else if !c.User.IsActive && setting.Service.RegisterEmailConfirm {
+ } else if !c.User.IsActive && conf.Service.RegisterEmailConfirm {
c.Data["Title"] = c.Tr("auth.active_your_account")
c.HTML(200, "user/auth/activate")
return
@@ -80,9 +80,9 @@ func Toggle(options *ToggleOptions) macaron.Handler {
// Redirect to log in page if auto-signin info is provided and has not signed in.
if !options.SignOutRequired && !c.IsLogged && !auth.IsAPIPath(c.Req.URL.Path) &&
- len(c.GetCookie(setting.CookieUserName)) > 0 {
- c.SetCookie("redirect_to", url.QueryEscape(setting.AppSubURL+c.Req.RequestURI), 0, setting.AppSubURL)
- c.Redirect(setting.AppSubURL + "/user/login")
+ len(c.GetCookie(conf.CookieUserName)) > 0 {
+ c.SetCookie("redirect_to", url.QueryEscape(conf.Server.Subpath+c.Req.RequestURI), 0, conf.Server.Subpath)
+ c.Redirect(conf.Server.Subpath + "/user/login")
return
}
diff --git a/internal/context/context.go b/internal/context/context.go
index de70e75c..65614362 100644
--- a/internal/context/context.go
+++ b/internal/context/context.go
@@ -21,10 +21,10 @@ import (
log "unknwon.dev/clog/v2"
"gogs.io/gogs/internal/auth"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/form"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/template"
)
@@ -151,9 +151,9 @@ func (c *Context) Redirect(location string, status ...int) {
}
// SubURLRedirect responses redirection wtih given location and status.
-// It prepends setting.AppSubURL to the location string.
+// It prepends setting.Server.Subpath to the location string.
func (c *Context) SubURLRedirect(location string, status ...int) {
- c.Redirect(setting.AppSubURL+location, status...)
+ c.Redirect(conf.Server.Subpath+location, status...)
}
// RenderWithErr used for page has form validation but need to prompt error to users.
@@ -174,7 +174,7 @@ func (c *Context) Handle(status int, msg string, err error) {
case http.StatusInternalServerError:
c.Data["Title"] = "Internal Server Error"
log.Error("%s: %v", msg, err)
- if !setting.ProdMode || (c.IsLogged && c.User.IsAdmin) {
+ if !conf.IsProdMode() || (c.IsLogged && c.User.IsAdmin) {
c.Data["ErrorMsg"] = err
}
}
@@ -233,7 +233,7 @@ func Contexter() macaron.Handler {
csrf: x,
Flash: f,
Session: sess,
- Link: setting.AppSubURL + strings.TrimSuffix(ctx.Req.URL.Path, "/"),
+ Link: conf.Server.Subpath + strings.TrimSuffix(ctx.Req.URL.Path, "/"),
Repo: &Repository{
PullRequest: &PullRequest{},
},
@@ -263,9 +263,9 @@ func Contexter() macaron.Handler {
branchName = repo.DefaultBranch
}
- prefix := setting.AppURL + path.Join(ownerName, repoName, "src", branchName)
+ prefix := conf.Server.ExternalURL + path.Join(ownerName, repoName, "src", branchName)
insecureFlag := ""
- if !strings.HasPrefix(setting.AppURL, "https://") {
+ if !strings.HasPrefix(conf.Server.ExternalURL, "https://") {
insecureFlag = "--insecure "
}
c.PlainText(http.StatusOK, []byte(com.Expand(`<!doctype html>
@@ -279,7 +279,7 @@ func Contexter() macaron.Handler {
</body>
</html>
`, map[string]string{
- "GoGetImport": path.Join(setting.HostAddress, setting.AppSubURL, repo.FullName()),
+ "GoGetImport": path.Join(conf.Server.URL.Host, conf.Server.Subpath, repo.FullName()),
"CloneLink": db.ComposeHTTPSCloneURL(ownerName, repoName),
"GoDocDirectory": prefix + "{/dir}",
"GoDocFile": prefix + "{/dir}/{file}#L{line}",
@@ -288,8 +288,8 @@ func Contexter() macaron.Handler {
return
}
- if len(setting.HTTP.AccessControlAllowOrigin) > 0 {
- c.Header().Set("Access-Control-Allow-Origin", setting.HTTP.AccessControlAllowOrigin)
+ if len(conf.HTTP.AccessControlAllowOrigin) > 0 {
+ c.Header().Set("Access-Control-Allow-Origin", conf.HTTP.AccessControlAllowOrigin)
c.Header().Set("'Access-Control-Allow-Credentials' ", "true")
c.Header().Set("Access-Control-Max-Age", "3600")
c.Header().Set("Access-Control-Allow-Headers", "Content-Type, Access-Control-Allow-Headers, Authorization, X-Requested-With")
@@ -312,7 +312,7 @@ func Contexter() macaron.Handler {
// If request sends files, parse them here otherwise the Query() can't be parsed and the CsrfToken will be invalid.
if c.Req.Method == "POST" && strings.Contains(c.Req.Header.Get("Content-Type"), "multipart/form-data") {
- if err := c.Req.ParseMultipartForm(setting.AttachmentMaxSize << 20); err != nil && !strings.Contains(err.Error(), "EOF") { // 32MB max size
+ if err := c.Req.ParseMultipartForm(conf.AttachmentMaxSize << 20); err != nil && !strings.Contains(err.Error(), "EOF") { // 32MB max size
c.ServerError("ParseMultipartForm", err)
return
}
@@ -323,8 +323,8 @@ func Contexter() macaron.Handler {
log.Trace("Session ID: %s", sess.ID())
log.Trace("CSRF Token: %v", c.Data["CSRFToken"])
- c.Data["ShowRegistrationButton"] = setting.Service.ShowRegistrationButton
- c.Data["ShowFooterBranding"] = setting.ShowFooterBranding
+ c.Data["ShowRegistrationButton"] = conf.Service.ShowRegistrationButton
+ c.Data["ShowFooterBranding"] = conf.ShowFooterBranding
c.renderNoticeBanner()
diff --git a/internal/context/notice.go b/internal/context/notice.go
index dea72043..6f825fd8 100644
--- a/internal/context/notice.go
+++ b/internal/context/notice.go
@@ -6,20 +6,20 @@ package context
import (
"os"
- "path"
+ "path/filepath"
"github.com/unknwon/com"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/markup"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
// renderNoticeBanner checks if a notice banner file exists and loads the message to display
// on all pages.
func (c *Context) renderNoticeBanner() {
- fpath := path.Join(setting.CustomPath, "notice", "banner.md")
+ fpath := filepath.Join(conf.CustomDir(), "notice", "banner.md")
if !com.IsExist(fpath) {
return
}
diff --git a/internal/context/org.go b/internal/context/org.go
index df9becd2..02e154ca 100644
--- a/internal/context/org.go
+++ b/internal/context/org.go
@@ -9,9 +9,9 @@ import (
"gopkg.in/macaron.v1"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
)
type Organization struct {
@@ -91,7 +91,7 @@ func HandleOrgAssignment(c *Context, args ...bool) {
c.Data["IsOrganizationOwner"] = c.Org.IsOwner
c.Data["IsOrganizationMember"] = c.Org.IsMember
- c.Org.OrgLink = setting.AppSubURL + "/org/" + org.Name
+ c.Org.OrgLink = conf.Server.Subpath + "/org/" + org.Name
c.Data["OrgLink"] = c.Org.OrgLink
// Team.
diff --git a/internal/context/repo.go b/internal/context/repo.go
index 6e4a3bc1..7d030458 100644
--- a/internal/context/repo.go
+++ b/internal/context/repo.go
@@ -17,7 +17,7 @@ import (
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
type PullRequest struct {
@@ -248,8 +248,8 @@ func RepoAssignment(pages ...bool) macaron.Handler {
c.Data["IsRepositoryAdmin"] = c.Repo.IsAdmin()
c.Data["IsRepositoryWriter"] = c.Repo.IsWriter()
- c.Data["DisableSSH"] = setting.SSH.Disabled
- c.Data["DisableHTTP"] = setting.Repository.DisableHTTPGit
+ c.Data["DisableSSH"] = conf.SSH.Disabled
+ c.Data["DisableHTTP"] = conf.Repository.DisableHTTPGit
c.Data["CloneLink"] = repo.CloneLink()
c.Data["WikiCloneLink"] = repo.WikiCloneLink()
diff --git a/internal/cron/cron.go b/internal/cron/cron.go
index f056ca70..9d45cd15 100644
--- a/internal/cron/cron.go
+++ b/internal/cron/cron.go
@@ -12,7 +12,7 @@ import (
"github.com/gogs/cron"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
var c = cron.New()
@@ -22,45 +22,45 @@ func NewContext() {
entry *cron.Entry
err error
)
- if setting.Cron.UpdateMirror.Enabled {
- entry, err = c.AddFunc("Update mirrors", setting.Cron.UpdateMirror.Schedule, db.MirrorUpdate)
+ if conf.Cron.UpdateMirror.Enabled {
+ entry, err = c.AddFunc("Update mirrors", conf.Cron.UpdateMirror.Schedule, db.MirrorUpdate)
if err != nil {
log.Fatal("Cron.(update mirrors): %v", err)
}
- if setting.Cron.UpdateMirror.RunAtStart {
+ if conf.Cron.UpdateMirror.RunAtStart {
entry.Prev = time.Now()
entry.ExecTimes++
go db.MirrorUpdate()
}
}
- if setting.Cron.RepoHealthCheck.Enabled {
- entry, err = c.AddFunc("Repository health check", setting.Cron.RepoHealthCheck.Schedule, db.GitFsck)
+ if conf.Cron.RepoHealthCheck.Enabled {
+ entry, err = c.AddFunc("Repository health check", conf.Cron.RepoHealthCheck.Schedule, db.GitFsck)
if err != nil {
log.Fatal("Cron.(repository health check): %v", err)
}
- if setting.Cron.RepoHealthCheck.RunAtStart {
+ if conf.Cron.RepoHealthCheck.RunAtStart {
entry.Prev = time.Now()
entry.ExecTimes++
go db.GitFsck()
}
}
- if setting.Cron.CheckRepoStats.Enabled {
- entry, err = c.AddFunc("Check repository statistics", setting.Cron.CheckRepoStats.Schedule, db.CheckRepoStats)
+ if conf.Cron.CheckRepoStats.Enabled {
+ entry, err = c.AddFunc("Check repository statistics", conf.Cron.CheckRepoStats.Schedule, db.CheckRepoStats)
if err != nil {
log.Fatal("Cron.(check repository statistics): %v", err)
}
- if setting.Cron.CheckRepoStats.RunAtStart {
+ if conf.Cron.CheckRepoStats.RunAtStart {
entry.Prev = time.Now()
entry.ExecTimes++
go db.CheckRepoStats()
}
}
- if setting.Cron.RepoArchiveCleanup.Enabled {
- entry, err = c.AddFunc("Repository archive cleanup", setting.Cron.RepoArchiveCleanup.Schedule, db.DeleteOldRepositoryArchives)
+ if conf.Cron.RepoArchiveCleanup.Enabled {
+ entry, err = c.AddFunc("Repository archive cleanup", conf.Cron.RepoArchiveCleanup.Schedule, db.DeleteOldRepositoryArchives)
if err != nil {
log.Fatal("Cron.(repository archive cleanup): %v", err)
}
- if setting.Cron.RepoArchiveCleanup.RunAtStart {
+ if conf.Cron.RepoArchiveCleanup.RunAtStart {
entry.Prev = time.Now()
entry.ExecTimes++
go db.DeleteOldRepositoryArchives()
diff --git a/internal/db/action.go b/internal/db/action.go
index e177f250..3fe56dd1 100644
--- a/internal/db/action.go
+++ b/internal/db/action.go
@@ -19,9 +19,9 @@ import (
"github.com/gogs/git-module"
api "github.com/gogs/go-gogs-client"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/lazyregexp"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -134,8 +134,8 @@ func (a *Action) ShortRepoPath() string {
}
func (a *Action) GetRepoLink() string {
- if len(setting.AppSubURL) > 0 {
- return path.Join(setting.AppSubURL, a.GetRepoPath())
+ if conf.Server.Subpath != "" {
+ return path.Join(conf.Server.Subpath, a.GetRepoPath())
}
return "/" + a.GetRepoPath()
}
@@ -495,8 +495,8 @@ func CommitRepoAction(opts CommitRepoActionOptions) error {
}
}
- if len(opts.Commits.Commits) > setting.UI.FeedMaxCommitNum {
- opts.Commits.Commits = opts.Commits.Commits[:setting.UI.FeedMaxCommitNum]
+ if len(opts.Commits.Commits) > conf.UI.FeedMaxCommitNum {
+ opts.Commits.Commits = opts.Commits.Commits[:conf.UI.FeedMaxCommitNum]
}
data, err := jsoniter.Marshal(opts.Commits)
@@ -540,7 +540,7 @@ func CommitRepoAction(opts CommitRepoActionOptions) error {
return nil
}
- compareURL := setting.AppURL + opts.Commits.CompareURL
+ compareURL := conf.Server.ExternalURL + opts.Commits.CompareURL
if isNewRef {
compareURL = ""
if err = PrepareWebhooks(repo, HOOK_EVENT_CREATE, &api.CreatePayload{
@@ -692,8 +692,8 @@ type MirrorSyncPushActionOptions struct {
// MirrorSyncPushAction adds new action for mirror synchronization of pushed commits.
func MirrorSyncPushAction(repo *Repository, opts MirrorSyncPushActionOptions) error {
- if len(opts.Commits.Commits) > setting.UI.FeedMaxCommitNum {
- opts.Commits.Commits = opts.Commits.Commits[:setting.UI.FeedMaxCommitNum]
+ if len(opts.Commits.Commits) > conf.UI.FeedMaxCommitNum {
+ opts.Commits.Commits = opts.Commits.Commits[:conf.UI.FeedMaxCommitNum]
}
apiCommits, err := opts.Commits.ToApiPayloadCommits(repo.RepoPath(), repo.HTMLURL())
@@ -707,7 +707,7 @@ func MirrorSyncPushAction(repo *Repository, opts MirrorSyncPushActionOptions) er
Ref: opts.RefName,
Before: opts.OldCommitID,
After: opts.NewCommitID,
- CompareURL: setting.AppURL + opts.Commits.CompareURL,
+ CompareURL: conf.Server.ExternalURL + opts.Commits.CompareURL,
Commits: apiCommits,
Repo: repo.APIFormat(nil),
Pusher: apiPusher,
@@ -738,8 +738,8 @@ func MirrorSyncDeleteAction(repo *Repository, refName string) error {
// actorID is the user who's requesting, ctxUserID is the user/org that is requested.
// actorID can be -1 when isProfile is true or to skip the permission check.
func GetFeeds(ctxUser *User, actorID, afterID int64, isProfile bool) ([]*Action, error) {
- actions := make([]*Action, 0, setting.UI.User.NewsFeedPagingNum)
- sess := x.Limit(setting.UI.User.NewsFeedPagingNum).Where("user_id = ?", ctxUser.ID).Desc("id")
+ actions := make([]*Action, 0, conf.UI.User.NewsFeedPagingNum)
+ sess := x.Limit(conf.UI.User.NewsFeedPagingNum).Where("user_id = ?", ctxUser.ID).Desc("id")
if afterID > 0 {
sess.And("id < ?", afterID)
}
diff --git a/internal/db/attachment.go b/internal/db/attachment.go
index 1494002d..8d84d8a7 100644
--- a/internal/db/attachment.go
+++ b/internal/db/attachment.go
@@ -15,7 +15,7 @@ import (
gouuid "github.com/satori/go.uuid"
"xorm.io/xorm"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
// Attachment represent a attachment of issue/comment/release.
@@ -44,7 +44,7 @@ func (a *Attachment) AfterSet(colName string, _ xorm.Cell) {
// AttachmentLocalPath returns where attachment is stored in local file system based on given UUID.
func AttachmentLocalPath(uuid string) string {
- return path.Join(setting.AttachmentPath, uuid[0:1], uuid[1:2], uuid)
+ return path.Join(conf.AttachmentPath, uuid[0:1], uuid[1:2], uuid)
}
// LocalPath returns where attachment is stored in local file system.
diff --git a/internal/db/git_diff.go b/internal/db/git_diff.go
index 040c472b..a8b43554 100644
--- a/internal/db/git_diff.go
+++ b/internal/db/git_diff.go
@@ -17,7 +17,7 @@ import (
"github.com/gogs/git-module"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/template/highlight"
"gogs.io/gogs/internal/tool"
)
@@ -69,7 +69,7 @@ func init() {
// ComputedInlineDiffFor computes inline diff for the given line.
func (diffSection *DiffSection) ComputedInlineDiffFor(diffLine *git.DiffLine) template.HTML {
- if setting.Git.DisableDiffHighlight {
+ if conf.Git.DisableDiffHighlight {
return template.HTML(html.EscapeString(diffLine.Content[1:]))
}
var (
diff --git a/internal/db/issue.go b/internal/db/issue.go
index a35e2d89..092395d8 100644
--- a/internal/db/issue.go
+++ b/internal/db/issue.go
@@ -16,7 +16,7 @@ import (
api "github.com/gogs/go-gogs-client"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/tool"
)
@@ -969,9 +969,9 @@ func Issues(opts *IssuesOptions) ([]*Issue, error) {
return make([]*Issue, 0), nil
}
- sess.Limit(setting.UI.IssuePagingNum, (opts.Page-1)*setting.UI.IssuePagingNum)
+ sess.Limit(conf.UI.IssuePagingNum, (opts.Page-1)*conf.UI.IssuePagingNum)
- issues := make([]*Issue, 0, setting.UI.IssuePagingNum)
+ issues := make([]*Issue, 0, conf.UI.IssuePagingNum)
if err := sess.Find(&issues); err != nil {
return nil, fmt.Errorf("Find: %v", err)
}
diff --git a/internal/db/issue_mail.go b/internal/db/issue_mail.go
index 31643f3a..5219572f 100644
--- a/internal/db/issue_mail.go
+++ b/internal/db/issue_mail.go
@@ -12,7 +12,7 @@ import (
"gogs.io/gogs/internal/mailer"
"gogs.io/gogs/internal/markup"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
func (issue *Issue) MailSubject() string {
@@ -95,7 +95,7 @@ func NewMailerIssue(issue *Issue) mailer.Issue {
// 1. Repository watchers, users who participated in comments and the assignee.
// 2. Users who are not in 1. but get mentioned in current issue/comment.
func mailIssueCommentToParticipants(issue *Issue, doer *User, mentions []string) error {
- if !setting.Service.EnableNotifyMail {
+ if !conf.Service.EnableNotifyMail {
return nil
}
diff --git a/internal/db/login_source.go b/internal/db/login_source.go
index 383e8b46..22b53a62 100644
--- a/internal/db/login_source.go
+++ b/internal/db/login_source.go
@@ -11,7 +11,7 @@ import (
"net/smtp"
"net/textproto"
"os"
- "path"
+ "path/filepath"
"strings"
"sync"
"time"
@@ -27,8 +27,8 @@ import (
"gogs.io/gogs/internal/auth/github"
"gogs.io/gogs/internal/auth/ldap"
"gogs.io/gogs/internal/auth/pam"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
)
type LoginType int
@@ -462,7 +462,7 @@ var localLoginSources = &LocalLoginSources{}
// LoadAuthSources loads authentication sources from local files
// and converts them into login sources.
func LoadAuthSources() {
- authdPath := path.Join(setting.CustomPath, "conf/auth.d")
+ authdPath := filepath.Join(conf.CustomDir(), "conf", "auth.d")
if !com.IsDir(authdPath) {
return
}
diff --git a/internal/db/migrations/v15.go b/internal/db/migrations/v15.go
index 0ef77555..72d24143 100644
--- a/internal/db/migrations/v15.go
+++ b/internal/db/migrations/v15.go
@@ -15,8 +15,8 @@ import (
log "unknwon.dev/clog/v2"
"xorm.io/xorm"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/osutil"
- "gogs.io/gogs/internal/setting"
)
func generateAndMigrateGitHooks(x *xorm.Engine) (err error) {
@@ -32,18 +32,18 @@ func generateAndMigrateGitHooks(x *xorm.Engine) (err error) {
var (
hookNames = []string{"pre-receive", "update", "post-receive"}
hookTpls = []string{
- fmt.Sprintf("#!/usr/bin/env %s\n\"%s\" hook --config='%s' pre-receive\n", setting.ScriptType, setting.AppPath, setting.CustomConf),
- fmt.Sprintf("#!/usr/bin/env %s\n\"%s\" hook --config='%s' update $1 $2 $3\n", setting.ScriptType, setting.AppPath, setting.CustomConf),
- fmt.Sprintf("#!/usr/bin/env %s\n\"%s\" hook --config='%s' post-receive\n", setting.ScriptType, setting.AppPath, setting.CustomConf),
+ fmt.Sprintf("#!/usr/bin/env %s\n\"%s\" hook --config='%s' pre-receive\n", conf.ScriptType, conf.AppPath(), conf.CustomConf),
+ fmt.Sprintf("#!/usr/bin/env %s\n\"%s\" hook --config='%s' update $1 $2 $3\n", conf.ScriptType, conf.AppPath(), conf.CustomConf),
+ fmt.Sprintf("#!/usr/bin/env %s\n\"%s\" hook --config='%s' post-receive\n", conf.ScriptType, conf.AppPath(), conf.CustomConf),
}
)
// Cleanup old update.log and http.log files.
- filepath.Walk(setting.LogRootPath, func(path string, info os.FileInfo, err error) error {
+ _ = filepath.Walk(conf.LogRootPath, func(path string, info os.FileInfo, err error) error {
if !info.IsDir() &&
(strings.HasPrefix(filepath.Base(path), "update.log") ||
strings.HasPrefix(filepath.Base(path), "http.log")) {
- os.Remove(path)
+ _ = os.Remove(path)
}
return nil
})
@@ -63,7 +63,7 @@ func generateAndMigrateGitHooks(x *xorm.Engine) (err error) {
return nil
}
- repoBase := filepath.Join(setting.RepoRootPath, strings.ToLower(user.Name), strings.ToLower(repo.Name))
+ repoBase := filepath.Join(conf.RepoRootPath, strings.ToLower(user.Name), strings.ToLower(repo.Name))
repoPath := repoBase + ".git"
wikiPath := repoBase + ".wiki.git"
log.Trace("[%04d]: %s", idx, repoPath)
@@ -82,7 +82,7 @@ func generateAndMigrateGitHooks(x *xorm.Engine) (err error) {
// In case user runs this migration multiple times, and custom hook exists,
// we assume it's been migrated already.
if hookName != "update" && osutil.IsFile(oldHookPath) && !com.IsExist(customHookDir) {
- os.MkdirAll(customHookDir, os.ModePerm)
+ _ = os.MkdirAll(customHookDir, os.ModePerm)
if err = os.Rename(oldHookPath, newHookPath); err != nil {
return fmt.Errorf("move hook file to custom directory '%s' -> '%s': %v", oldHookPath, newHookPath, err)
}
@@ -93,7 +93,7 @@ func generateAndMigrateGitHooks(x *xorm.Engine) (err error) {
}
if com.IsDir(wikiPath) {
- os.MkdirAll(wikiHookDir, os.ModePerm)
+ _ = os.MkdirAll(wikiHookDir, os.ModePerm)
wikiHookPath := filepath.Join(wikiHookDir, hookName)
if err = ioutil.WriteFile(wikiHookPath, []byte(hookTpls[i]), os.ModePerm); err != nil {
return fmt.Errorf("write wiki hook file '%s': %v", wikiHookPath, err)
diff --git a/internal/db/migrations/v16.go b/internal/db/migrations/v16.go
index b2eb813b..91bf4925 100644
--- a/internal/db/migrations/v16.go
+++ b/internal/db/migrations/v16.go
@@ -14,7 +14,7 @@ import (
"github.com/gogs/git-module"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
func updateRepositorySizes(x *xorm.Engine) (err error) {
@@ -60,7 +60,7 @@ func updateRepositorySizes(x *xorm.Engine) (err error) {
continue
}
- repoPath := filepath.Join(setting.RepoRootPath, strings.ToLower(user.Name), strings.ToLower(repo.Name)) + ".git"
+ repoPath := filepath.Join(conf.RepoRootPath, strings.ToLower(user.Name), strings.ToLower(repo.Name)) + ".git"
countObject, err := git.GetRepoSize(repoPath)
if err != nil {
log.Warn("GetRepoSize: %v", err)
diff --git a/internal/db/migrations/v18.go b/internal/db/migrations/v18.go
index 9ebb46ed..ceeb5c7a 100644
--- a/internal/db/migrations/v18.go
+++ b/internal/db/migrations/v18.go
@@ -9,7 +9,7 @@ import (
"xorm.io/xorm"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
func updateRepositoryDescriptionField(x *xorm.Engine) error {
@@ -20,13 +20,13 @@ func updateRepositoryDescriptionField(x *xorm.Engine) error {
return nil
}
switch {
- case setting.UseMySQL:
+ case conf.UseMySQL:
_, err = x.Exec("ALTER TABLE `repository` MODIFY `description` VARCHAR(512);")
- case setting.UseMSSQL:
+ case conf.UseMSSQL:
_, err = x.Exec("ALTER TABLE `repository` ALTER COLUMN `description` VARCHAR(512);")
- case setting.UsePostgreSQL:
+ case conf.UsePostgreSQL:
_, err = x.Exec("ALTER TABLE `repository` ALTER COLUMN `description` TYPE VARCHAR(512);")
- case setting.UseSQLite3:
+ case conf.UseSQLite3:
// Sqlite3 uses TEXT type by default for any string type field.
// Keep this comment to mention that we don't missed any option.
}
diff --git a/internal/db/milestone.go b/internal/db/milestone.go
index 507c0e89..77f52f92 100644
--- a/internal/db/milestone.go
+++ b/internal/db/milestone.go
@@ -13,7 +13,7 @@ import (
api "github.com/gogs/go-gogs-client"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
// Milestone represents a milestone of repository.
@@ -157,10 +157,10 @@ func GetMilestonesByRepoID(repoID int64) ([]*Milestone, error) {
// GetMilestones returns a list of milestones of given repository and status.
func GetMilestones(repoID int64, page int, isClosed bool) ([]*Milestone, error) {
- miles := make([]*Milestone, 0, setting.UI.IssuePagingNum)
+ miles := make([]*Milestone, 0, conf.UI.IssuePagingNum)
sess := x.Where("repo_id = ? AND is_closed = ?", repoID, isClosed)
if page > 0 {
- sess = sess.Limit(setting.UI.IssuePagingNum, (page-1)*setting.UI.IssuePagingNum)
+ sess = sess.Limit(conf.UI.IssuePagingNum, (page-1)*conf.UI.IssuePagingNum)
}
return miles, sess.Find(&miles)
}
diff --git a/internal/db/mirror.go b/internal/db/mirror.go
index 33c837fb..8a7a7b3a 100644
--- a/internal/db/mirror.go
+++ b/internal/db/mirror.go
@@ -20,11 +20,11 @@ import (
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/process"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/sync"
)
-var MirrorQueue = sync.NewUniqueQueue(setting.Repository.MirrorQueueLength)
+var MirrorQueue = sync.NewUniqueQueue(conf.Repository.MirrorQueueLength)
// Mirror represents mirror information of a repository.
type Mirror struct {
@@ -258,7 +258,7 @@ func parseRemoteUpdateOutput(output string) []*mirrorSyncResult {
func (m *Mirror) runSync() ([]*mirrorSyncResult, bool) {
repoPath := m.Repo.RepoPath()
wikiPath := m.Repo.WikiPath()
- timeout := time.Duration(setting.Git.Timeout.Mirror) * time.Second
+ timeout := time.Duration(conf.Git.Timeout.Mirror) * time.Second
// Do a fast-fail testing against on repository URL to ensure it is accessible under
// good condition to prevent long blocking on URL resolution without syncing anything.
diff --git a/internal/db/models.go b/internal/db/models.go
index 403c04ff..9d4f2209 100644
--- a/internal/db/models.go
+++ b/internal/db/models.go
@@ -24,8 +24,8 @@ import (
"xorm.io/core"
"xorm.io/xorm"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db/migrations"
- "gogs.io/gogs/internal/setting"
)
// Engine represents a XORM engine or session.
@@ -75,17 +75,17 @@ func init() {
}
func LoadConfigs() {
- sec := setting.Cfg.Section("database")
+ sec := conf.File.Section("database")
DbCfg.Type = sec.Key("DB_TYPE").String()
switch DbCfg.Type {
case "sqlite3":
- setting.UseSQLite3 = true
+ conf.UseSQLite3 = true
case "mysql":
- setting.UseMySQL = true
+ conf.UseMySQL = true
case "postgres":
- setting.UsePostgreSQL = true
+ conf.UsePostgreSQL = true
case "mssql":
- setting.UseMSSQL = true
+ conf.UseMSSQL = true
}
DbCfg.Host = sec.Key("HOST").String()
DbCfg.Name = sec.Key("NAME").String()
@@ -189,8 +189,8 @@ func SetEngine() (err error) {
// WARNING: for serv command, MUST remove the output to os.stdout,
// so use log file to instead print to stdout.
- sec := setting.Cfg.Section("log.xorm")
- logger, err := log.NewFileWriter(path.Join(setting.LogRootPath, "xorm.log"),
+ sec := conf.File.Section("log.xorm")
+ logger, err := log.NewFileWriter(path.Join(conf.LogRootPath, "xorm.log"),
log.FileRotationConfig{
Rotate: sec.Key("ROTATE").MustBool(true),
Daily: sec.Key("ROTATE_DAILY").MustBool(true),
@@ -206,7 +206,7 @@ func SetEngine() (err error) {
x.SetMaxIdleConns(0)
x.SetConnMaxLifetime(time.Second)
- if setting.ProdMode {
+ if conf.IsProdMode() {
x.SetLogger(xorm.NewSimpleLogger3(logger, xorm.DEFAULT_LOG_PREFIX, xorm.DEFAULT_LOG_FLAG, core.LOG_WARNING))
} else {
x.SetLogger(xorm.NewSimpleLogger(logger))
@@ -389,7 +389,7 @@ func ImportDatabase(dirPath string, verbose bool) (err error) {
}
// PostgreSQL needs manually reset table sequence for auto increment keys
- if setting.UsePostgreSQL {
+ if conf.UsePostgreSQL {
rawTableName := snakeMapper.Obj2Table(tableName)
seqName := rawTableName + "_id_seq"
if _, err = x.Exec(fmt.Sprintf(`SELECT setval('%s', COALESCE((SELECT MAX(id)+1 FROM "%s"), 1), false);`, seqName, rawTableName)); err != nil {
diff --git a/internal/db/pull.go b/internal/db/pull.go
index 268927eb..b617a8c7 100644
--- a/internal/db/pull.go
+++ b/internal/db/pull.go
@@ -8,6 +8,7 @@ import (
"fmt"
"os"
"path"
+ "path/filepath"
"strings"
"time"
@@ -18,14 +19,14 @@ import (
"github.com/gogs/git-module"
api "github.com/gogs/go-gogs-client"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/osutil"
"gogs.io/gogs/internal/process"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/sync"
)
-var PullRequestQueue = sync.NewUniqueQueue(setting.Repository.PullRequestQueueLength)
+var PullRequestQueue = sync.NewUniqueQueue(conf.Repository.PullRequestQueueLength)
type PullRequestType int
@@ -218,9 +219,9 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository, mergeStyle
// Create temporary directory to store temporary copy of the base repository,
// and clean it up when operation finished regardless of succeed or not.
- tmpBasePath := path.Join(setting.AppDataPath, "tmp/repos", com.ToStr(time.Now().Nanosecond())+".git")
- os.MkdirAll(path.Dir(tmpBasePath), os.ModePerm)
- defer os.RemoveAll(path.Dir(tmpBasePath))
+ tmpBasePath := filepath.Join(conf.Server.AppDataPath, "tmp", "repos", com.ToStr(time.Now().Nanosecond())+".git")
+ os.MkdirAll(filepath.Dir(tmpBasePath), os.ModePerm)
+ defer os.RemoveAll(filepath.Dir(tmpBasePath))
// Clone the base repository to the defined temporary directory,
// and checks out to base branch directly.
@@ -378,7 +379,7 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository, mergeStyle
Ref: git.BRANCH_PREFIX + pr.BaseBranch,
Before: pr.MergeBase,
After: mergeCommit.ID.String(),
- CompareURL: setting.AppURL + pr.BaseRepo.ComposeCompareURL(pr.MergeBase, pr.MergedCommitID),
+ CompareURL: conf.Server.ExternalURL + pr.BaseRepo.ComposeCompareURL(pr.MergeBase, pr.MergedCommitID),
Commits: commits,
Repo: pr.BaseRepo.APIFormat(nil),
Pusher: pr.HeadRepo.MustOwner().APIFormat(),
diff --git a/internal/db/repo.go b/internal/db/repo.go
index 7c6d9e36..6377c2a4 100644
--- a/internal/db/repo.go
+++ b/internal/db/repo.go
@@ -30,13 +30,12 @@ import (
"github.com/gogs/git-module"
api "github.com/gogs/go-gogs-client"
- "gogs.io/gogs/internal/assets/conf"
"gogs.io/gogs/internal/avatar"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/markup"
"gogs.io/gogs/internal/osutil"
"gogs.io/gogs/internal/process"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/sync"
)
@@ -61,7 +60,7 @@ func LoadRepoConfig() {
if err != nil {
log.Fatal("Failed to get %s files: %v", t, err)
}
- customPath := path.Join(setting.CustomPath, "conf", t)
+ customPath := filepath.Join(conf.CustomDir(), "conf", t)
if com.IsDir(customPath) {
customFiles, err := com.StatDir(customPath)
if err != nil {
@@ -88,13 +87,13 @@ func LoadRepoConfig() {
// Filter out invalid names and promote preferred licenses.
sortedLicenses := make([]string, 0, len(Licenses))
- for _, name := range setting.Repository.PreferredLicenses {
+ for _, name := range conf.Repository.PreferredLicenses {
if com.IsSliceContainsStr(Licenses, name) {
sortedLicenses = append(sortedLicenses, name)
}
}
for _, name := range Licenses {
- if !com.IsSliceContainsStr(setting.Repository.PreferredLicenses, name) {
+ if !com.IsSliceContainsStr(conf.Repository.PreferredLicenses, name) {
sortedLicenses = append(sortedLicenses, name)
}
}
@@ -111,18 +110,18 @@ func NewRepoContext() {
// Check Git version.
var err error
- setting.Git.Version, err = git.BinVersion()
+ conf.Git.Version, err = git.BinVersion()
if err != nil {
log.Fatal("Failed to get Git version: %v", err)
}
- log.Trace("Git version: %s", setting.Git.Version)
- if version.Compare("1.8.3", setting.Git.Version, ">") {
+ log.Trace("Git version: %s", conf.Git.Version)
+ if version.Compare("1.8.3", conf.Git.Version, ">") {
log.Fatal("Gogs requires Git version greater or equal to 1.8.3")
}
git.HookDir = "custom_hooks"
git.HookSampleDir = "hooks"
- git.DefaultCommitsPageSize = setting.UI.User.CommitsPagingNum
+ git.DefaultCommitsPageSize = conf.UI.User.CommitsPagingNum
// Git requires setting user.name and user.email in order to commit changes.
for configKey, defaultValue := range map[string]string{"user.name": "Gogs", "user.email": "gogs@fake.local"} {
@@ -145,7 +144,7 @@ func NewRepoContext() {
log.Fatal("Failed to execute 'git config --global core.quotepath false': %v - %s", err, stderr)
}
- RemoveAllWithNotice("Clean up repository temporary data", filepath.Join(setting.AppDataPath, "tmp"))
+ RemoveAllWithNotice("Clean up repository temporary data", filepath.Join(conf.Server.AppDataPath, "tmp"))
}
// Repository contains information of a repository.
@@ -292,12 +291,12 @@ func (repo *Repository) FullName() string {
}
func (repo *Repository) HTMLURL() string {
- return setting.AppURL + repo.FullName()
+ return conf.Server.ExternalURL + repo.FullName()
}
// CustomAvatarPath returns repository custom avatar file path.
func (repo *Repository) CustomAvatarPath() string {
- return filepath.Join(setting.RepositoryAvatarUploadPath, com.ToStr(repo.ID))
+ return filepath.Join(conf.RepositoryAvatarUploadPath, com.ToStr(repo.ID))
}
// RelAvatarLink returns relative avatar link to the site domain,
@@ -308,14 +307,14 @@ func (repo *Repository) RelAvatarLink() string {
if !com.IsExist(repo.CustomAvatarPath()) {
return defaultImgUrl
}
- return fmt.Sprintf("%s/%s/%d", setting.AppSubURL, REPO_AVATAR_URL_PREFIX, repo.ID)
+ return fmt.Sprintf("%s/%s/%d", conf.Server.Subpath, REPO_AVATAR_URL_PREFIX, repo.ID)
}
// AvatarLink returns repository avatar absolute link.
func (repo *Repository) AvatarLink() string {
link := repo.RelAvatarLink()
if link[0] == '/' && link[1] != '/' {
- return setting.AppURL + strings.TrimPrefix(link, setting.AppSubURL)[1:]
+ return conf.Server.ExternalURL + strings.TrimPrefix(link, conf.Server.Subpath)[1:]
}
return link
}
@@ -328,7 +327,7 @@ func (repo *Repository) UploadAvatar(data []byte) error {
return fmt.Errorf("decode image: %v", err)
}
- os.MkdirAll(setting.RepositoryAvatarUploadPath, os.ModePerm)
+ _ = os.MkdirAll(conf.RepositoryAvatarUploadPath, os.ModePerm)
fw, err := os.Create(repo.CustomAvatarPath())
if err != nil {
return fmt.Errorf("create custom avatar directory: %v", err)
@@ -546,7 +545,7 @@ func (repo *Repository) RelLink() string {
}
func (repo *Repository) Link() string {
- return setting.AppSubURL + "/" + repo.FullName()
+ return conf.Server.Subpath + "/" + repo.FullName()
}
func (repo *Repository) ComposeCompareURL(oldCommitID, newCommitID string) string {
@@ -593,7 +592,7 @@ func (repo *Repository) NextIssueIndex() int64 {
}
func (repo *Repository) LocalCopyPath() string {
- return path.Join(setting.AppDataPath, "tmp/local-repo", com.ToStr(repo.ID))
+ return filepath.Join(conf.Server.AppDataPath, "tmp", "local-repo", com.ToStr(repo.ID))
}
// UpdateLocalCopy fetches latest changes of given branch from repoPath to localPath.
@@ -609,7 +608,7 @@ func UpdateLocalCopyBranch(repoPath, localPath, branch string, isWiki bool) (err
branch = ""
}
if err = git.Clone(repoPath, localPath, git.CloneRepoOptions{
- Timeout: time.Duration(setting.Git.Timeout.Clone) * time.Second,
+ Timeout: time.Duration(conf.Git.Timeout.Clone) * time.Second,
Branch: branch,
}); err != nil {
return fmt.Errorf("git clone %s: %v", branch, err)
@@ -685,7 +684,7 @@ type CloneLink struct {
// ComposeHTTPSCloneURL returns HTTPS clone URL based on given owner and repository name.
func ComposeHTTPSCloneURL(owner, repo string) string {
- return fmt.Sprintf("%s%s/%s.git", setting.AppURL, owner, repo)
+ return fmt.Sprintf("%s%s/%s.git", conf.Server.ExternalURL, owner, repo)
}
func (repo *Repository) cloneLink(isWiki bool) *CloneLink {
@@ -696,10 +695,10 @@ func (repo *Repository) cloneLink(isWiki bool) *CloneLink {
repo.Owner = repo.MustOwner()
cl := new(CloneLink)
- if setting.SSH.Port != 22 {
- cl.SSH = fmt.Sprintf("ssh://%s@%s:%d/%s/%s.git", setting.RunUser, setting.SSH.Domain, setting.SSH.Port, repo.Owner.Name, repoName)
+ if conf.SSH.Port != 22 {
+ cl.SSH = fmt.Sprintf("ssh://%s@%s:%d/%s/%s.git", conf.App.RunUser, conf.SSH.Domain, conf.SSH.Port, repo.Owner.Name, repoName)
} else {
- cl.SSH = fmt.Sprintf("%s@%s:%s/%s.git", setting.RunUser, setting.SSH.Domain, repo.Owner.Name, repoName)
+ cl.SSH = fmt.Sprintf("%s@%s:%s/%s.git", conf.App.RunUser, conf.SSH.Domain, repo.Owner.Name, repoName)
}
cl.HTTPS = ComposeHTTPSCloneURL(repo.Owner.Name, repoName)
return cl
@@ -764,7 +763,7 @@ func MigrateRepository(doer, owner *User, opts MigrateRepoOptions) (*Repository,
repo.NumWatches = 1
}
- migrateTimeout := time.Duration(setting.Git.Timeout.Migrate) * time.Second
+ migrateTimeout := time.Duration(conf.Git.Timeout.Migrate) * time.Second
RemoveAllWithNotice("Repository path erase before creation", repoPath)
if err = git.Clone(opts.RemoteAddr, repoPath, git.CloneRepoOptions{
@@ -820,9 +819,9 @@ func MigrateRepository(doer, owner *User, opts MigrateRepoOptions) (*Repository,
if opts.IsMirror {
if _, err = x.InsertOne(&Mirror{
RepoID: repo.ID,
- Interval: setting.Mirror.DefaultInterval,
+ Interval: conf.Mirror.DefaultInterval,
EnablePrune: true,
- NextSync: time.Now().Add(time.Duration(setting.Mirror.DefaultInterval) * time.Hour),
+ NextSync: time.Now().Add(time.Duration(conf.Mirror.DefaultInterval) * time.Hour),
}); err != nil {
return repo, fmt.Errorf("InsertOne: %v", err)
}
@@ -858,7 +857,7 @@ func createDelegateHooks(repoPath string) (err error) {
for _, name := range git.HookNames {
hookPath := filepath.Join(repoPath, "hooks", name)
if err = ioutil.WriteFile(hookPath,
- []byte(fmt.Sprintf(hooksTpls[name], setting.ScriptType, setting.AppPath, setting.CustomConf)),
+ []byte(fmt.Sprintf(hooksTpls[name], conf.ScriptType, conf.AppPath(), conf.CustomConf)),
os.ModePerm); err != nil {
return fmt.Errorf("create delegate hook '%s': %v", hookPath, err)
}
@@ -929,7 +928,7 @@ func getRepoInitFile(tp, name string) ([]byte, error) {
relPath := path.Join("conf", tp, strings.TrimLeft(path.Clean("/"+name), "/"))
// Use custom file when available.
- customPath := path.Join(setting.CustomPath, relPath)
+ customPath := filepath.Join(conf.CustomDir(), relPath)
if osutil.IsFile(customPath) {
return ioutil.ReadFile(customPath)
}
@@ -1768,7 +1767,7 @@ func DeleteOldRepositoryArchives() {
log.Trace("Doing: DeleteOldRepositoryArchives")
formats := []string{"zip", "targz"}
- oldestTime := time.Now().Add(-setting.Cron.RepoArchiveCleanup.OlderThan)
+ oldestTime := time.Now().Add(-conf.Cron.RepoArchiveCleanup.OlderThan)
if err := x.Where("id > 0").Iterate(new(Repository),
func(idx int, bean interface{}) error {
repo := bean.(*Repository)
@@ -1931,7 +1930,7 @@ func GitFsck() {
func(idx int, bean interface{}) error {
repo := bean.(*Repository)
repoPath := repo.RepoPath()
- if err := git.Fsck(repoPath, setting.Cron.RepoHealthCheck.Timeout, setting.Cron.RepoHealthCheck.Args...); err != nil {
+ if err := git.Fsck(repoPath, conf.Cron.RepoHealthCheck.Timeout, conf.Cron.RepoHealthCheck.Args...); err != nil {
desc := fmt.Sprintf("Failed to perform health check on repository '%s': %v", repoPath, err)
log.Warn(desc)
if err = CreateRepositoryNotice(desc); err != nil {
@@ -1945,7 +1944,7 @@ func GitFsck() {
}
func GitGcRepos() error {
- args := append([]string{"gc"}, setting.Git.GCArgs...)
+ args := append([]string{"gc"}, conf.Git.GCArgs...)
return x.Where("id > 0").Iterate(new(Repository),
func(idx int, bean interface{}) error {
repo := bean.(*Repository)
@@ -1953,7 +1952,7 @@ func GitGcRepos() error {
return err
}
_, stderr, err := process.ExecDir(
- time.Duration(setting.Git.Timeout.GC)*time.Second,
+ time.Duration(conf.Git.Timeout.GC)*time.Second,
RepoPath(repo.Owner.Name, repo.Name), "Repository garbage collection",
"git", args...)
if err != nil {
@@ -2235,7 +2234,7 @@ func GetWatchers(repoID int64) ([]*Watch, error) {
func (repo *Repository) GetWatchers(page int) ([]*User, error) {
users := make([]*User, 0, ItemsPerPage)
sess := x.Limit(ItemsPerPage, (page-1)*ItemsPerPage).Where("watch.repo_id=?", repo.ID)
- if setting.UsePostgreSQL {
+ if conf.UsePostgreSQL {
sess = sess.Join("LEFT", "watch", `"user".id=watch.user_id`)
} else {
sess = sess.Join("LEFT", "watch", "user.id=watch.user_id")
@@ -2326,7 +2325,7 @@ func IsStaring(userID, repoID int64) bool {
func (repo *Repository) GetStargazers(page int) ([]*User, error) {
users := make([]*User, 0, ItemsPerPage)
sess := x.Limit(ItemsPerPage, (page-1)*ItemsPerPage).Where("star.repo_id=?", repo.ID)
- if setting.UsePostgreSQL {
+ if conf.UsePostgreSQL {
sess = sess.Join("LEFT", "star", `"user".id=star.uid`)
} else {
sess = sess.Join("LEFT", "star", "user.id=star.uid")
diff --git a/internal/db/repo_editor.go b/internal/db/repo_editor.go
index ebd4be47..38fea3f4 100644
--- a/internal/db/repo_editor.go
+++ b/internal/db/repo_editor.go
@@ -24,7 +24,7 @@ import (
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/osutil"
"gogs.io/gogs/internal/process"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/tool"
)
@@ -95,7 +95,7 @@ func (repo *Repository) DiscardLocalRepoBranchChanges(branch string) error {
// checkoutNewBranch checks out to a new branch from the a branch name.
func checkoutNewBranch(repoPath, localPath, oldBranch, newBranch string) error {
if err := git.Checkout(localPath, git.CheckoutOptions{
- Timeout: time.Duration(setting.Git.Timeout.Pull) * time.Second,
+ Timeout: time.Duration(conf.Git.Timeout.Pull) * time.Second,
Branch: newBranch,
OldBranch: oldBranch,
}); err != nil {
@@ -231,7 +231,7 @@ func (repo *Repository) GetDiffPreview(branch, treePath, content string) (diff *
pid := process.Add(fmt.Sprintf("GetDiffPreview [repo_path: %s]", repo.RepoPath()), cmd)
defer process.Remove(pid)
- diff, err = ParsePatch(setting.Git.MaxGitDiffLines, setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles, stdout)
+ diff, err = ParsePatch(conf.Git.MaxGitDiffLines, conf.Git.MaxGitDiffLineCharacters, conf.Git.MaxGitDiffFiles, stdout)
if err != nil {
return nil, fmt.Errorf("parse path: %v", err)
}
@@ -318,7 +318,7 @@ type Upload struct {
// UploadLocalPath returns where uploads is stored in local file system based on given UUID.
func UploadLocalPath(uuid string) string {
- return path.Join(setting.Repository.Upload.TempPath, uuid[0:1], uuid[1:2], uuid)
+ return path.Join(conf.Repository.Upload.TempPath, uuid[0:1], uuid[1:2], uuid)
}
// LocalPath returns where uploads are temporarily stored in local file system.
diff --git a/internal/db/ssh_key.go b/internal/db/ssh_key.go
index d4189cff..b31c0da1 100644
--- a/internal/db/ssh_key.go
+++ b/internal/db/ssh_key.go
@@ -23,8 +23,8 @@ import (
log "unknwon.dev/clog/v2"
"xorm.io/xorm"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/process"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -84,7 +84,7 @@ func (k *PublicKey) OmitEmail() string {
// AuthorizedString returns formatted public key string for authorized_keys file.
func (k *PublicKey) AuthorizedString() string {
- return fmt.Sprintf(_TPL_PUBLICK_KEY, setting.AppPath, k.ID, setting.CustomConf, k.Content)
+ return fmt.Sprintf(_TPL_PUBLICK_KEY, conf.AppPath(), k.ID, conf.CustomConf, k.Content)
}
// IsDeployKey returns true if the public key is used as deploy key.
@@ -179,7 +179,7 @@ func parseKeyString(content string) (string, error) {
// writeTmpKeyFile writes key content to a temporary file
// and returns the name of that file, along with any possible errors.
func writeTmpKeyFile(content string) (string, error) {
- tmpFile, err := ioutil.TempFile(setting.SSH.KeyTestPath, "gogs_keytest")
+ tmpFile, err := ioutil.TempFile(conf.SSH.KeyTestPath, "gogs_keytest")
if err != nil {
return "", fmt.Errorf("TempFile: %v", err)
}
@@ -199,7 +199,7 @@ func SSHKeyGenParsePublicKey(key string) (string, int, error) {
}
defer os.Remove(tmpName)
- stdout, stderr, err := process.Exec("SSHKeyGenParsePublicKey", setting.SSH.KeygenPath, "-lf", tmpName)
+ stdout, stderr, err := process.Exec("SSHKeyGenParsePublicKey", conf.SSH.KeygenPath, "-lf", tmpName)
if err != nil {
return "", 0, fmt.Errorf("fail to parse public key: %s - %s", err, stderr)
}
@@ -274,7 +274,7 @@ func SSHNativeParsePublicKey(keyLine string) (string, int, error) {
// CheckPublicKeyString checks if the given public key string is recognized by SSH.
// It returns the actual public key line on success.
func CheckPublicKeyString(content string) (_ string, err error) {
- if setting.SSH.Disabled {
+ if conf.SSH.Disabled {
return "", errors.New("SSH is disabled")
}
@@ -291,7 +291,7 @@ func CheckPublicKeyString(content string) (_ string, err error) {
// Remove any unnecessary whitespace
content = strings.TrimSpace(content)
- if !setting.SSH.MinimumKeySizeCheck {
+ if !conf.SSH.MinimumKeySizeCheck {
return content, nil
}
@@ -300,7 +300,7 @@ func CheckPublicKeyString(content string) (_ string, err error) {
keyType string
length int
)
- if setting.SSH.StartBuiltinServer {
+ if conf.SSH.StartBuiltinServer {
fnName = "SSHNativeParsePublicKey"
keyType, length, err = SSHNativeParsePublicKey(content)
} else {
@@ -310,9 +310,9 @@ func CheckPublicKeyString(content string) (_ string, err error) {
if err != nil {
return "", fmt.Errorf("%s: %v", fnName, err)
}
- log.Trace("Key info [native: %v]: %s-%d", setting.SSH.StartBuiltinServer, keyType, length)
+ log.Trace("Key info [native: %v]: %s-%d", conf.SSH.StartBuiltinServer, keyType, length)
- if minLen, found := setting.SSH.MinimumKeySizes[keyType]; found && length >= minLen {
+ if minLen, found := conf.SSH.MinimumKeySizes[keyType]; found && length >= minLen {
return content, nil
} else if found && length < minLen {
return "", fmt.Errorf("key length is not enough: got %d, needs %d", length, minLen)
@@ -325,7 +325,7 @@ func appendAuthorizedKeysToFile(keys ...*PublicKey) error {
sshOpLocker.Lock()
defer sshOpLocker.Unlock()
- fpath := filepath.Join(setting.SSH.RootPath, "authorized_keys")
+ fpath := filepath.Join(conf.SSH.RootPath, "authorized_keys")
f, err := os.OpenFile(fpath, os.O_CREATE|os.O_WRONLY|os.O_APPEND, 0600)
if err != nil {
return err
@@ -333,7 +333,7 @@ func appendAuthorizedKeysToFile(keys ...*PublicKey) error {
defer f.Close()
// Note: chmod command does not support in Windows.
- if !setting.IsWindows {
+ if !conf.IsWindowsRuntime() {
fi, err := f.Stat()
if err != nil {
return err
@@ -375,12 +375,12 @@ func addKey(e Engine, key *PublicKey) (err error) {
// Calculate fingerprint.
tmpPath := strings.Replace(path.Join(os.TempDir(), fmt.Sprintf("%d", time.Now().Nanosecond()),
"id_rsa.pub"), "\\", "/", -1)
- os.MkdirAll(path.Dir(tmpPath), os.ModePerm)
+ _ = os.MkdirAll(path.Dir(tmpPath), os.ModePerm)
if err = ioutil.WriteFile(tmpPath, []byte(key.Content), 0644); err != nil {
return err
}
- stdout, stderr, err := process.Exec("AddPublicKey", setting.SSH.KeygenPath, "-lf", tmpPath)
+ stdout, stderr, err := process.Exec("AddPublicKey", conf.SSH.KeygenPath, "-lf", tmpPath)
if err != nil {
return fmt.Errorf("fail to parse public key: %s - %s", err, stderr)
} else if len(stdout) < 2 {
@@ -394,7 +394,7 @@ func addKey(e Engine, key *PublicKey) (err error) {
}
// Don't need to rewrite this file if builtin SSH server is enabled.
- if setting.SSH.StartBuiltinServer {
+ if conf.SSH.StartBuiltinServer {
return nil
}
return appendAuthorizedKeysToFile(key)
@@ -523,8 +523,8 @@ func RewriteAuthorizedKeys() error {
log.Trace("Doing: RewriteAuthorizedKeys")
- os.MkdirAll(setting.SSH.RootPath, os.ModePerm)
- fpath := filepath.Join(setting.SSH.RootPath, "authorized_keys")
+ _ = os.MkdirAll(conf.SSH.RootPath, os.ModePerm)
+ fpath := filepath.Join(conf.SSH.RootPath, "authorized_keys")
tmpPath := fpath + ".tmp"
f, err := os.OpenFile(tmpPath, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0600)
if err != nil {
@@ -536,7 +536,7 @@ func RewriteAuthorizedKeys() error {
_, err = f.WriteString((bean.(*PublicKey)).AuthorizedString())
return err
})
- f.Close()
+ _ = f.Close()
if err != nil {
return err
}
diff --git a/internal/db/ssh_key_test.go b/internal/db/ssh_key_test.go
index 616347fb..9bf49413 100644
--- a/internal/db/ssh_key_test.go
+++ b/internal/db/ssh_key_test.go
@@ -11,11 +11,11 @@ import (
. "github.com/smartystreets/goconvey/convey"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
func init() {
- setting.Init()
+ conf.MustInit("")
}
func Test_SSHParsePublicKey(t *testing.T) {
diff --git a/internal/db/two_factor.go b/internal/db/two_factor.go
index cb539ef6..ae17bef5 100644
--- a/internal/db/two_factor.go
+++ b/internal/db/two_factor.go
@@ -16,7 +16,7 @@ import (
"xorm.io/xorm"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/tool"
)
@@ -47,7 +47,7 @@ func (t *TwoFactor) ValidateTOTP(passcode string) (bool, error) {
if err != nil {
return false, fmt.Errorf("DecodeString: %v", err)
}
- decryptSecret, err := com.AESGCMDecrypt(tool.MD5Bytes(setting.SecretKey), secret)
+ decryptSecret, err := com.AESGCMDecrypt(tool.MD5Bytes(conf.SecretKey), secret)
if err != nil {
return false, fmt.Errorf("AESGCMDecrypt: %v", err)
}
@@ -85,7 +85,7 @@ func NewTwoFactor(userID int64, secret string) error {
}
// Encrypt secret
- encryptSecret, err := com.AESGCMEncrypt(tool.MD5Bytes(setting.SecretKey), []byte(secret))
+ encryptSecret, err := com.AESGCMEncrypt(tool.MD5Bytes(conf.SecretKey), []byte(secret))
if err != nil {
return fmt.Errorf("AESGCMEncrypt: %v", err)
}
diff --git a/internal/db/user.go b/internal/db/user.go
index ad6448aa..feea7b37 100644
--- a/internal/db/user.go
+++ b/internal/db/user.go
@@ -30,8 +30,8 @@ import (
api "github.com/gogs/go-gogs-client"
"gogs.io/gogs/internal/avatar"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -152,23 +152,23 @@ func (u *User) HasForkedRepo(repoID int64) bool {
func (u *User) RepoCreationNum() int {
if u.MaxRepoCreation <= -1 {
- return setting.Repository.MaxCreationLimit
+ return conf.Repository.MaxCreationLimit
}
return u.MaxRepoCreation
}
func (u *User) CanCreateRepo() bool {
if u.MaxRepoCreation <= -1 {
- if setting.Repository.MaxCreationLimit <= -1 {
+ if conf.Repository.MaxCreationLimit <= -1 {
return true
}
- return u.NumRepos < setting.Repository.MaxCreationLimit
+ return u.NumRepos < conf.Repository.MaxCreationLimit
}
return u.NumRepos < u.MaxRepoCreation
}
func (u *User) CanCreateOrganization() bool {
- return !setting.Admin.DisableRegularOrgCreation || u.IsAdmin
+ return !conf.Admin.DisableRegularOrgCreation || u.IsAdmin
}
// CanEditGitHook returns true if user can edit Git hooks.
@@ -178,31 +178,31 @@ func (u *User) CanEditGitHook() bool {
// CanImportLocal returns true if user can migrate repository by local path.
func (u *User) CanImportLocal() bool {
- return setting.Repository.EnableLocalPathMigration && (u.IsAdmin || u.AllowImportLocal)
+ return conf.Repository.EnableLocalPathMigration && (u.IsAdmin || u.AllowImportLocal)
}
// DashboardLink returns the user dashboard page link.
func (u *User) DashboardLink() string {
if u.IsOrganization() {
- return setting.AppSubURL + "/org/" + u.Name + "/dashboard/"
+ return conf.Server.Subpath + "/org/" + u.Name + "/dashboard/"
}
- return setting.AppSubURL + "/"
+ return conf.Server.Subpath + "/"
}
// HomeLink returns the user or organization home page link.
func (u *User) HomeLink() string {
- return setting.AppSubURL + "/" + u.Name
+ return conf.Server.Subpath + "/" + u.Name
}
func (u *User) HTMLURL() string {
- return setting.AppURL + u.Name
+ return conf.Server.ExternalURL + u.Name
}
// GenerateEmailActivateCode generates an activate code based on user information and given e-mail.
func (u *User) GenerateEmailActivateCode(email string) string {
code := tool.CreateTimeLimitCode(
com.ToStr(u.ID)+email+u.LowerName+u.Passwd+u.Rands,
- setting.Service.ActiveCodeLives, nil)
+ conf.Service.ActiveCodeLives, nil)
// Add tail hex username
code += hex.EncodeToString([]byte(u.LowerName))
@@ -216,7 +216,7 @@ func (u *User) GenerateActivateCode() string {
// CustomAvatarPath returns user custom avatar file path.
func (u *User) CustomAvatarPath() string {
- return filepath.Join(setting.AvatarUploadPath, com.ToStr(u.ID))
+ return filepath.Join(conf.AvatarUploadPath, com.ToStr(u.ID))
}
// GenerateRandomAvatar generates a random avatar for user.
@@ -251,7 +251,7 @@ func (u *User) GenerateRandomAvatar() error {
// which includes app sub-url as prefix. However, it is possible
// to return full URL if user enables Gravatar-like service.
func (u *User) RelAvatarLink() string {
- defaultImgUrl := setting.AppSubURL + "/img/avatar_default.png"
+ defaultImgUrl := conf.Server.Subpath + "/img/avatar_default.png"
if u.ID == -1 {
return defaultImgUrl
}
@@ -261,15 +261,15 @@ func (u *User) RelAvatarLink() string {
if !com.IsExist(u.CustomAvatarPath()) {
return defaultImgUrl
}
- return fmt.Sprintf("%s/%s/%d", setting.AppSubURL, USER_AVATAR_URL_PREFIX, u.ID)
- case setting.DisableGravatar, setting.OfflineMode:
+ return fmt.Sprintf("%s/%s/%d", conf.Server.Subpath, USER_AVATAR_URL_PREFIX, u.ID)
+ case conf.DisableGravatar:
if !com.IsExist(u.CustomAvatarPath()) {
if err := u.GenerateRandomAvatar(); err != nil {
log.Error("GenerateRandomAvatar: %v", err)
}
}
- return fmt.Sprintf("%s/%s/%d", setting.AppSubURL, USER_AVATAR_URL_PREFIX, u.ID)
+ return fmt.Sprintf("%s/%s/%d", conf.Server.Subpath, USER_AVATAR_URL_PREFIX, u.ID)
}
return tool.AvatarLink(u.AvatarEmail)
}
@@ -278,7 +278,7 @@ func (u *User) RelAvatarLink() string {
func (u *User) AvatarLink() string {
link := u.RelAvatarLink()
if link[0] == '/' && link[1] != '/' {
- return setting.AppURL + strings.TrimPrefix(link, setting.AppSubURL)[1:]
+ return conf.Server.ExternalURL + strings.TrimPrefix(link, conf.Server.Subpath)[1:]
}
return link
}
@@ -287,7 +287,7 @@ func (u *User) AvatarLink() string {
func (u *User) GetFollowers(page int) ([]*User, error) {
users := make([]*User, 0, ItemsPerPage)
sess := x.Limit(ItemsPerPage, (page-1)*ItemsPerPage).Where("follow.follow_id=?", u.ID)
- if setting.UsePostgreSQL {
+ if conf.UsePostgreSQL {
sess = sess.Join("LEFT", "follow", `"user".id=follow.user_id`)
} else {
sess = sess.Join("LEFT", "follow", "user.id=follow.user_id")
@@ -303,7 +303,7 @@ func (u *User) IsFollowing(followID int64) bool {
func (u *User) GetFollowing(page int) ([]*User, error) {
users := make([]*User, 0, ItemsPerPage)
sess := x.Limit(ItemsPerPage, (page-1)*ItemsPerPage).Where("follow.user_id=?", u.ID)
- if setting.UsePostgreSQL {
+ if conf.UsePostgreSQL {
sess = sess.Join("LEFT", "follow", `"user".id=follow.follow_id`)
} else {
sess = sess.Join("LEFT", "follow", "user.id=follow.follow_id")
@@ -341,7 +341,7 @@ func (u *User) UploadAvatar(data []byte) error {
return fmt.Errorf("decode image: %v", err)
}
- os.MkdirAll(setting.AvatarUploadPath, os.ModePerm)
+ _ = os.MkdirAll(conf.AvatarUploadPath, os.ModePerm)
fw, err := os.Create(u.CustomAvatarPath())
if err != nil {
return fmt.Errorf("create custom avatar directory: %v", err)
@@ -617,7 +617,7 @@ func parseUserFromCode(code string) (user *User) {
// verify active code when active account
func VerifyUserActiveCode(code string) (user *User) {
- minutes := setting.Service.ActiveCodeLives
+ minutes := conf.Service.ActiveCodeLives
if user = parseUserFromCode(code); user != nil {
// time limit code
@@ -633,7 +633,7 @@ func VerifyUserActiveCode(code string) (user *User) {
// verify active code when active account
func VerifyActiveEmailCode(code, email string) *EmailAddress {
- minutes := setting.Service.ActiveCodeLives
+ minutes := conf.Service.ActiveCodeLives
if user := parseUserFromCode(code); user != nil {
// time limit code
@@ -877,7 +877,7 @@ func DeleteInactivateUsers() (err error) {
// UserPath returns the path absolute path of user repositories.
func UserPath(userName string) string {
- return filepath.Join(setting.RepoRootPath, strings.ToLower(userName))
+ return filepath.Join(conf.RepoRootPath, strings.ToLower(userName))
}
func GetUserByKeyID(keyID int64) (*User, error) {
@@ -1049,8 +1049,8 @@ func SearchUserByName(opts *SearchUserOptions) (users []*User, _ int64, _ error)
}
opts.Keyword = strings.ToLower(opts.Keyword)
- if opts.PageSize <= 0 || opts.PageSize > setting.UI.ExplorePagingNum {
- opts.PageSize = setting.UI.ExplorePagingNum
+ if opts.PageSize <= 0 || opts.PageSize > conf.UI.ExplorePagingNum {
+ opts.PageSize = conf.UI.ExplorePagingNum
}
if opts.Page <= 0 {
opts.Page = 1
diff --git a/internal/db/webhook.go b/internal/db/webhook.go
index 7bbdac0e..7484aed1 100644
--- a/internal/db/webhook.go
+++ b/internal/db/webhook.go
@@ -21,13 +21,13 @@ import (
api "github.com/gogs/go-gogs-client"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/httplib"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/sync"
)
-var HookQueue = sync.NewUniqueQueue(setting.Webhook.QueueLength)
+var HookQueue = sync.NewUniqueQueue(conf.Webhook.QueueLength)
type HookContentType int
@@ -99,7 +99,7 @@ type Webhook struct {
ContentType HookContentType
Secret string `xorm:"TEXT"`
Events string `xorm:"TEXT"`
- *HookEvent `xorm:"-"` // LEGACY [1.0]: Cannot ignore JSON here, it breaks old backup archive
+ *HookEvent `xorm:"-"` // LEGACY [1.0]: Cannot ignore JSON (i.e. json:"-") here, it breaks old backup archive
IsSSL bool `xorm:"is_ssl"`
IsActive bool
HookTaskType HookTaskType
@@ -482,8 +482,8 @@ func (t *HookTask) MarshalJSON(v interface{}) string {
// HookTasks returns a list of hook tasks by given conditions.
func HookTasks(hookID int64, page int) ([]*HookTask, error) {
- tasks := make([]*HookTask, 0, setting.Webhook.PagingNum)
- return tasks, x.Limit(setting.Webhook.PagingNum, (page-1)*setting.Webhook.PagingNum).Where("hook_id=?", hookID).Desc("id").Find(&tasks)
+ tasks := make([]*HookTask, 0, conf.Webhook.PagingNum)
+ return tasks, x.Limit(conf.Webhook.PagingNum, (page-1)*conf.Webhook.PagingNum).Where("hook_id=?", hookID).Desc("id").Find(&tasks)
}
// createHookTask creates a new hook task,
@@ -652,14 +652,14 @@ func TestWebhook(repo *Repository, event HookEventType, p api.Payloader, webhook
func (t *HookTask) deliver() {
t.IsDelivered = true
- timeout := time.Duration(setting.Webhook.DeliverTimeout) * time.Second
+ timeout := time.Duration(conf.Webhook.DeliverTimeout) * time.Second
req := httplib.Post(t.URL).SetTimeout(timeout, timeout).
Header("X-Github-Delivery", t.UUID).
Header("X-Github-Event", string(t.EventType)).
Header("X-Gogs-Delivery", t.UUID).
Header("X-Gogs-Signature", t.Signature).
Header("X-Gogs-Event", string(t.EventType)).
- SetTLSClientConfig(&tls.Config{InsecureSkipVerify: setting.Webhook.SkipTLSVerify})
+ SetTLSClientConfig(&tls.Config{InsecureSkipVerify: conf.Webhook.SkipTLSVerify})
switch t.ContentType {
case JSON:
diff --git a/internal/db/webhook_discord.go b/internal/db/webhook_discord.go
index 35b7d9b1..7442a557 100644
--- a/internal/db/webhook_discord.go
+++ b/internal/db/webhook_discord.go
@@ -14,7 +14,7 @@ import (
"github.com/gogs/git-module"
api "github.com/gogs/go-gogs-client"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
type DiscordEmbedFooterObject struct {
@@ -78,7 +78,7 @@ func getDiscordCreatePayload(p *api.CreatePayload) (*DiscordPayload, error) {
return &DiscordPayload{
Embeds: []*DiscordEmbedObject{{
Description: content,
- URL: setting.AppURL + p.Sender.UserName,
+ URL: conf.Server.ExternalURL + p.Sender.UserName,
Author: &DiscordEmbedAuthorObject{
Name: p.Sender.UserName,
IconURL: p.Sender.AvatarUrl,
@@ -95,7 +95,7 @@ func getDiscordDeletePayload(p *api.DeletePayload) (*DiscordPayload, error) {
return &DiscordPayload{
Embeds: []*DiscordEmbedObject{{
Description: content,
- URL: setting.AppURL + p.Sender.UserName,
+ URL: conf.Server.ExternalURL + p.Sender.UserName,
Author: &DiscordEmbedAuthorObject{
Name: p.Sender.UserName,
IconURL: p.Sender.AvatarUrl,
@@ -112,7 +112,7 @@ func getDiscordForkPayload(p *api.ForkPayload) (*DiscordPayload, error) {
return &DiscordPayload{
Embeds: []*DiscordEmbedObject{{
Description: content,
- URL: setting.AppURL + p.Sender.UserName,
+ URL: conf.Server.ExternalURL + p.Sender.UserName,
Author: &DiscordEmbedAuthorObject{
Name: p.Sender.UserName,
IconURL: p.Sender.AvatarUrl,
@@ -160,7 +160,7 @@ func getDiscordPushPayload(p *api.PushPayload, slack *SlackMeta) (*DiscordPayloa
AvatarURL: slack.IconURL,
Embeds: []*DiscordEmbedObject{{
Description: content,
- URL: setting.AppURL + p.Sender.UserName,
+ URL: conf.Server.ExternalURL + p.Sender.UserName,
Color: int(color),
Author: &DiscordEmbedAuthorObject{
Name: p.Sender.UserName,
@@ -361,7 +361,7 @@ func getDiscordReleasePayload(p *api.ReleasePayload) (*DiscordPayload, error) {
return &DiscordPayload{
Embeds: []*DiscordEmbedObject{{
Description: content,
- URL: setting.AppURL + p.Sender.UserName,
+ URL: conf.Server.ExternalURL + p.Sender.UserName,
Author: &DiscordEmbedAuthorObject{
Name: p.Sender.UserName,
IconURL: p.Sender.AvatarUrl,
diff --git a/internal/db/webhook_slack.go b/internal/db/webhook_slack.go
index ae547dd7..c18b630f 100644
--- a/internal/db/webhook_slack.go
+++ b/internal/db/webhook_slack.go
@@ -13,7 +13,7 @@ import (
"github.com/gogs/git-module"
api "github.com/gogs/go-gogs-client"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
type SlackMeta struct {
@@ -147,7 +147,7 @@ func getSlackPushPayload(p *api.PushPayload, slack *SlackMeta) (*SlackPayload, e
}
func getSlackIssuesPayload(p *api.IssuesPayload, slack *SlackMeta) (*SlackPayload, error) {
- senderLink := SlackLinkFormatter(setting.AppURL+p.Sender.UserName, p.Sender.UserName)
+ senderLink := SlackLinkFormatter(conf.Server.ExternalURL+p.Sender.UserName, p.Sender.UserName)
titleLink := SlackLinkFormatter(fmt.Sprintf("%s/issues/%d", p.Repository.HTMLURL, p.Index),
fmt.Sprintf("#%d %s", p.Index, p.Issue.Title))
var text, title, attachmentText string
@@ -165,7 +165,7 @@ func getSlackIssuesPayload(p *api.IssuesPayload, slack *SlackMeta) (*SlackPayloa
attachmentText = SlackTextFormatter(p.Issue.Body)
case api.HOOK_ISSUE_ASSIGNED:
text = fmt.Sprintf("[%s] Issue assigned to %s: %s by %s", p.Repository.FullName,
- SlackLinkFormatter(setting.AppURL+p.Issue.Assignee.UserName, p.Issue.Assignee.UserName),
+ SlackLinkFormatter(conf.Server.ExternalURL+p.Issue.Assignee.UserName, p.Issue.Assignee.UserName),
titleLink, senderLink)
case api.HOOK_ISSUE_UNASSIGNED:
text = fmt.Sprintf("[%s] Issue unassigned: %s by %s", p.Repository.FullName, titleLink, senderLink)
@@ -193,7 +193,7 @@ func getSlackIssuesPayload(p *api.IssuesPayload, slack *SlackMeta) (*SlackPayloa
}
func getSlackIssueCommentPayload(p *api.IssueCommentPayload, slack *SlackMeta) (*SlackPayload, error) {
- senderLink := SlackLinkFormatter(setting.AppURL+p.Sender.UserName, p.Sender.UserName)
+ senderLink := SlackLinkFormatter(conf.Server.ExternalURL+p.Sender.UserName, p.Sender.UserName)
titleLink := SlackLinkFormatter(fmt.Sprintf("%s/issues/%d#%s", p.Repository.HTMLURL, p.Issue.Index, CommentHashTag(p.Comment.ID)),
fmt.Sprintf("#%d %s", p.Issue.Index, p.Issue.Title))
var text, title, attachmentText string
@@ -227,7 +227,7 @@ func getSlackIssueCommentPayload(p *api.IssueCommentPayload, slack *SlackMeta) (
}
func getSlackPullRequestPayload(p *api.PullRequestPayload, slack *SlackMeta) (*SlackPayload, error) {
- senderLink := SlackLinkFormatter(setting.AppURL+p.Sender.UserName, p.Sender.UserName)
+ senderLink := SlackLinkFormatter(conf.Server.ExternalURL+p.Sender.UserName, p.Sender.UserName)
titleLink := SlackLinkFormatter(fmt.Sprintf("%s/pulls/%d", p.Repository.HTMLURL, p.Index),
fmt.Sprintf("#%d %s", p.Index, p.PullRequest.Title))
var text, title, attachmentText string
@@ -249,7 +249,7 @@ func getSlackPullRequestPayload(p *api.PullRequestPayload, slack *SlackMeta) (*S
attachmentText = SlackTextFormatter(p.PullRequest.Body)
case api.HOOK_ISSUE_ASSIGNED:
text = fmt.Sprintf("[%s] Pull request assigned to %s: %s by %s", p.Repository.FullName,
- SlackLinkFormatter(setting.AppURL+p.PullRequest.Assignee.UserName, p.PullRequest.Assignee.UserName),
+ SlackLinkFormatter(conf.Server.ExternalURL+p.PullRequest.Assignee.UserName, p.PullRequest.Assignee.UserName),
titleLink, senderLink)
case api.HOOK_ISSUE_UNASSIGNED:
text = fmt.Sprintf("[%s] Pull request unassigned: %s by %s", p.Repository.FullName, titleLink, senderLink)
diff --git a/internal/db/wiki.go b/internal/db/wiki.go
index a7e27418..85005e7b 100644
--- a/internal/db/wiki.go
+++ b/internal/db/wiki.go
@@ -17,7 +17,7 @@ import (
"github.com/gogs/git-module"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/sync"
)
@@ -71,7 +71,7 @@ func (repo *Repository) InitWiki() error {
}
func (repo *Repository) LocalWikiPath() string {
- return path.Join(setting.AppDataPath, "tmp/local-wiki", com.ToStr(repo.ID))
+ return filepath.Join(conf.Server.AppDataPath, "tmp", "local-wiki", com.ToStr(repo.ID))
}
// UpdateLocalWiki makes sure the local copy of repository wiki is up-to-date.
diff --git a/internal/mailer/mail.go b/internal/mailer/mail.go
index f4bf9414..835f1905 100644
--- a/internal/mailer/mail.go
+++ b/internal/mailer/mail.go
@@ -7,7 +7,7 @@ package mailer
import (
"fmt"
"html/template"
- "path"
+ "path/filepath"
"sync"
"time"
@@ -16,8 +16,8 @@ import (
log "unknwon.dev/clog/v2"
"gogs.io/gogs/internal/assets/templates"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/markup"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -41,15 +41,15 @@ var (
func render(tpl string, data map[string]interface{}) (string, error) {
tplRenderOnce.Do(func() {
opt := &macaron.RenderOptions{
- Directory: path.Join(setting.StaticRootPath, "templates/mail"),
- AppendDirectories: []string{path.Join(setting.CustomPath, "templates/mail")},
+ Directory: filepath.Join(conf.WorkDir(), "templates", "mail"),
+ AppendDirectories: []string{filepath.Join(conf.CustomDir(), "templates", "mail")},
Extensions: []string{".tmpl", ".html"},
Funcs: []template.FuncMap{map[string]interface{}{
"AppName": func() string {
- return setting.AppName
+ return conf.App.BrandName
},
"AppURL": func() string {
- return setting.AppURL
+ return conf.Server.ExternalURL
},
"Year": func() int {
return time.Now().Year()
@@ -59,7 +59,7 @@ func render(tpl string, data map[string]interface{}) (string, error) {
},
}},
}
- if !setting.LoadAssetsFromDisk {
+ if !conf.Server.LoadAssetsFromDisk {
opt.TemplateFileSystem = templates.NewTemplateFileSystem("mail", opt.AppendDirectories[0])
}
@@ -105,8 +105,8 @@ type Issue interface {
func SendUserMail(c *macaron.Context, u User, tpl, code, subject, info string) {
data := map[string]interface{}{
"Username": u.DisplayName(),
- "ActiveCodeLives": setting.Service.ActiveCodeLives / 60,
- "ResetPwdCodeLives": setting.Service.ResetPwdCodeLives / 60,
+ "ActiveCodeLives": conf.Service.ActiveCodeLives / 60,
+ "ResetPwdCodeLives": conf.Service.ResetPwdCodeLives / 60,
"Code": code,
}
body, err := render(tpl, data)
@@ -133,7 +133,7 @@ func SendResetPasswordMail(c *macaron.Context, u User) {
func SendActivateEmailMail(c *macaron.Context, u User, email string) {
data := map[string]interface{}{
"Username": u.DisplayName(),
- "ActiveCodeLives": setting.Service.ActiveCodeLives / 60,
+ "ActiveCodeLives": conf.Service.ActiveCodeLives / 60,
"Code": u.GenerateEmailActivateCode(email),
"Email": email,
}
@@ -204,7 +204,7 @@ func composeIssueMessage(issue Issue, repo Repository, doer User, tplName string
if err != nil {
log.Error("HTMLString (%s): %v", tplName, err)
}
- from := gomail.NewMessage().FormatAddress(setting.MailService.FromEmail, doer.DisplayName())
+ from := gomail.NewMessage().FormatAddress(conf.MailService.FromEmail, doer.DisplayName())
msg := NewMessageFrom(tos, from, subject, content)
msg.Info = fmt.Sprintf("Subject: %s, %s", subject, info)
return msg
diff --git a/internal/mailer/mailer.go b/internal/mailer/mailer.go
index 40b2b5a8..8a54bd41 100644
--- a/internal/mailer/mailer.go
+++ b/internal/mailer/mailer.go
@@ -18,7 +18,7 @@ import (
"gopkg.in/gomail.v2"
log "unknwon.dev/clog/v2"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
type Message struct {
@@ -34,13 +34,13 @@ func NewMessageFrom(to []string, from, subject, htmlBody string) *Message {
msg := gomail.NewMessage()
msg.SetHeader("From", from)
msg.SetHeader("To", to...)
- msg.SetHeader("Subject", setting.MailService.SubjectPrefix+subject)
+ msg.SetHeader("Subject", conf.MailService.SubjectPrefix+subject)
msg.SetDateHeader("Date", time.Now())
contentType := "text/html"
body := htmlBody
switchedToPlaintext := false
- if setting.MailService.UsePlainText || setting.MailService.AddPlainTextAlt {
+ if conf.MailService.UsePlainText || conf.MailService.AddPlainTextAlt {
plainBody, err := html2text.FromString(htmlBody)
if err != nil {
log.Error("html2text.FromString: %v", err)
@@ -51,7 +51,7 @@ func NewMessageFrom(to []string, from, subject, htmlBody string) *Message {
}
}
msg.SetBody(contentType, body)
- if switchedToPlaintext && setting.MailService.AddPlainTextAlt && !setting.MailService.UsePlainText {
+ if switchedToPlaintext && conf.MailService.AddPlainTextAlt && !conf.MailService.UsePlainText {
// The AddAlternative method name is confusing - adding html as an "alternative" will actually cause mail
// clients to show it as first priority, and the text "main body" is the 2nd priority fallback.
// See: https://godoc.org/gopkg.in/gomail.v2#Message.AddAlternative
@@ -65,7 +65,7 @@ func NewMessageFrom(to []string, from, subject, htmlBody string) *Message {
// NewMessage creates new mail message object with default From header.
func NewMessage(to []string, subject, body string) *Message {
- return NewMessageFrom(to, setting.MailService.From, subject, body)
+ return NewMessageFrom(to, conf.MailService.From, subject, body)
}
type loginAuth struct {
@@ -99,7 +99,7 @@ type Sender struct {
}
func (s *Sender) Send(from string, to []string, msg io.WriterTo) error {
- opts := setting.MailService
+ opts := conf.MailService
host, port, err := net.SplitHostPort(opts.Host)
if err != nil {
@@ -225,11 +225,11 @@ func NewContext() {
// Need to check if mailQueue is nil because in during reinstall (user had installed
// before but swithed install lock off), this function will be called again
// while mail queue is already processing tasks, and produces a race condition.
- if setting.MailService == nil || mailQueue != nil {
+ if conf.MailService == nil || mailQueue != nil {
return
}
- mailQueue = make(chan *Message, setting.MailService.QueueLength)
+ mailQueue = make(chan *Message, conf.MailService.QueueLength)
go processMailQueue()
}
@@ -239,7 +239,7 @@ func NewContext() {
func Send(msg *Message) {
mailQueue <- msg
- if setting.HookMode {
+ if conf.HookMode {
<-msg.confirmChan
return
}
diff --git a/internal/markup/markdown.go b/internal/markup/markdown.go
index 6606d2b5..0d4cdd2a 100644
--- a/internal/markup/markdown.go
+++ b/internal/markup/markdown.go
@@ -13,15 +13,15 @@ import (
"github.com/russross/blackfriday"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/lazyregexp"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
// IsMarkdownFile reports whether name looks like a Markdown file based on its extension.
func IsMarkdownFile(name string) bool {
extension := strings.ToLower(filepath.Ext(name))
- for _, ext := range setting.Markdown.FileExtensions {
+ for _, ext := range conf.Markdown.FileExtensions {
if strings.ToLower(ext) == extension {
return true
}
@@ -63,7 +63,7 @@ func (r *MarkdownRenderer) AutoLink(out *bytes.Buffer, link []byte, kind int) {
// Since this method could only possibly serve one link at a time,
// we do not need to find all.
- if bytes.HasPrefix(link, []byte(setting.AppURL)) {
+ if bytes.HasPrefix(link, []byte(conf.Server.ExternalURL)) {
m := CommitPattern.Find(link)
if m != nil {
m = bytes.TrimSpace(m)
@@ -86,14 +86,14 @@ func (r *MarkdownRenderer) AutoLink(out *bytes.Buffer, link []byte, kind int) {
}
index := string(m[i+7 : j])
- fullRepoURL := setting.AppURL + strings.TrimPrefix(r.urlPrefix, "/")
+ fullRepoURL := conf.Server.ExternalURL + strings.TrimPrefix(r.urlPrefix, "/")
var link string
if strings.HasPrefix(string(m), fullRepoURL) {
// Use a short issue reference if the URL refers to this repository
link = fmt.Sprintf(`<a href="%s">#%s</a>`, m, index)
} else {
// Use a cross-repository issue reference if the URL refers to a different repository
- repo := string(m[len(setting.AppURL) : i-1])
+ repo := string(m[len(conf.Server.ExternalURL) : i-1])
link = fmt.Sprintf(`<a href="%s">%s#%s</a>`, m, repo, index)
}
out.WriteString(link)
@@ -122,18 +122,18 @@ func RawMarkdown(body []byte, urlPrefix string) []byte {
htmlFlags |= blackfriday.HTML_SKIP_STYLE
htmlFlags |= blackfriday.HTML_OMIT_CONTENTS
- if setting.Smartypants.Enabled {
+ if conf.Smartypants.Enabled {
htmlFlags |= blackfriday.HTML_USE_SMARTYPANTS
- if setting.Smartypants.Fractions {
+ if conf.Smartypants.Fractions {
htmlFlags |= blackfriday.HTML_SMARTYPANTS_FRACTIONS
}
- if setting.Smartypants.Dashes {
+ if conf.Smartypants.Dashes {
htmlFlags |= blackfriday.HTML_SMARTYPANTS_DASHES
}
- if setting.Smartypants.LatexDashes {
+ if conf.Smartypants.LatexDashes {
htmlFlags |= blackfriday.HTML_SMARTYPANTS_LATEX_DASHES
}
- if setting.Smartypants.AngledQuotes {
+ if conf.Smartypants.AngledQuotes {
htmlFlags |= blackfriday.HTML_SMARTYPANTS_ANGLED_QUOTES
}
}
@@ -153,7 +153,7 @@ func RawMarkdown(body []byte, urlPrefix string) []byte {
extensions |= blackfriday.EXTENSION_SPACE_HEADERS
extensions |= blackfriday.EXTENSION_NO_EMPTY_LINE_BEFORE_BLOCK
- if setting.Markdown.EnableHardLineBreak {
+ if conf.Markdown.EnableHardLineBreak {
extensions |= blackfriday.EXTENSION_HARD_LINE_BREAK
}
diff --git a/internal/markup/markdown_test.go b/internal/markup/markdown_test.go
index e748adc7..2715a322 100644
--- a/internal/markup/markdown_test.go
+++ b/internal/markup/markdown_test.go
@@ -12,12 +12,12 @@ import (
"github.com/russross/blackfriday"
. "github.com/smartystreets/goconvey/convey"
+ "gogs.io/gogs/internal/conf"
. "gogs.io/gogs/internal/markup"
- "gogs.io/gogs/internal/setting"
)
func Test_IsMarkdownFile(t *testing.T) {
- setting.Markdown.FileExtensions = strings.Split(".md,.markdown,.mdown,.mkd", ",")
+ conf.Markdown.FileExtensions = strings.Split(".md,.markdown,.mdown,.mkd", ",")
Convey("Detect Markdown file extension", t, func() {
testCases := []struct {
ext string
@@ -40,7 +40,7 @@ func Test_IsMarkdownFile(t *testing.T) {
func Test_Markdown(t *testing.T) {
Convey("Rendering an issue URL", t, func() {
- setting.AppURL = "http://localhost:3000/"
+ conf.Server.ExternalURL = "http://localhost:3000/"
htmlFlags := 0
htmlFlags |= blackfriday.HTML_SKIP_STYLE
htmlFlags |= blackfriday.HTML_OMIT_CONTENTS
@@ -82,7 +82,7 @@ func Test_Markdown(t *testing.T) {
})
Convey("Rendering a commit URL", t, func() {
- setting.AppURL = "http://localhost:3000/"
+ conf.Server.ExternalURL = "http://localhost:3000/"
htmlFlags := 0
htmlFlags |= blackfriday.HTML_SKIP_STYLE
htmlFlags |= blackfriday.HTML_OMIT_CONTENTS
diff --git a/internal/markup/markup.go b/internal/markup/markup.go
index 2bb56603..65b14865 100644
--- a/internal/markup/markup.go
+++ b/internal/markup/markup.go
@@ -13,8 +13,8 @@ import (
"github.com/unknwon/com"
"golang.org/x/net/html"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/lazyregexp"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -78,7 +78,7 @@ func cutoutVerbosePrefix(prefix string) string {
if prefix[i] == '/' {
count++
}
- if count >= 3+setting.AppSubURLDepth {
+ if count >= 3+conf.Server.SubpathDepth {
return prefix[:i]
}
}
@@ -133,7 +133,7 @@ func RenderCrossReferenceIssueIndexPattern(rawBytes []byte, urlPrefix string, me
repo := string(m[:delimIdx])
index := string(m[delimIdx+1:])
- link := fmt.Sprintf(`<a href="%s%s/issues/%s">%s</a>`, setting.AppURL, repo, index, m)
+ link := fmt.Sprintf(`<a href="%s%s/issues/%s">%s</a>`, conf.Server.ExternalURL, repo, index, m)
rawBytes = bytes.Replace(rawBytes, m, []byte(link), 1)
}
return rawBytes
@@ -155,7 +155,7 @@ func RenderSpecialLink(rawBytes []byte, urlPrefix string, metas map[string]strin
for _, m := range ms {
m = m[bytes.Index(m, []byte("@")):]
rawBytes = bytes.Replace(rawBytes, m,
- []byte(fmt.Sprintf(`<a href="%s/%s">%s</a>`, setting.AppSubURL, m[1:], m)), -1)
+ []byte(fmt.Sprintf(`<a href="%s/%s">%s</a>`, conf.Server.Subpath, m[1:], m)), -1)
}
rawBytes = RenderIssueIndexPattern(rawBytes, urlPrefix, metas)
diff --git a/internal/markup/markup_test.go b/internal/markup/markup_test.go
index 0e3beb76..be19047b 100644
--- a/internal/markup/markup_test.go
+++ b/internal/markup/markup_test.go
@@ -10,8 +10,8 @@ import (
. "github.com/smartystreets/goconvey/convey"
+ "gogs.io/gogs/internal/conf"
. "gogs.io/gogs/internal/markup"
- "gogs.io/gogs/internal/setting"
)
func Test_IsReadmeFile(t *testing.T) {
@@ -62,7 +62,7 @@ func Test_RenderIssueIndexPattern(t *testing.T) {
urlPrefix = "/prefix"
metas map[string]string = nil
)
- setting.AppSubURLDepth = 0
+ conf.Server.SubpathDepth = 0
Convey("To the internal issue tracker", func() {
Convey("It should not render anything when there are no mentions", func() {
diff --git a/internal/markup/sanitizer.go b/internal/markup/sanitizer.go
index 981e1c73..4a8f6c28 100644
--- a/internal/markup/sanitizer.go
+++ b/internal/markup/sanitizer.go
@@ -10,7 +10,7 @@ import (
"github.com/microcosm-cc/bluemonday"
"gogs.io/gogs/internal/lazyregexp"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
// Sanitizer is a protection wrapper of *bluemonday.Policy which does not allow
@@ -40,7 +40,7 @@ func NewSanitizer() {
sanitizer.policy.AllowURLSchemes("data")
// Custom URL-Schemes
- sanitizer.policy.AllowURLSchemes(setting.Markdown.CustomURLSchemes...)
+ sanitizer.policy.AllowURLSchemes(conf.Markdown.CustomURLSchemes...)
})
}
diff --git a/internal/route/admin/admin.go b/internal/route/admin/admin.go
index f7188bf2..c50933a8 100644
--- a/internal/route/admin/admin.go
+++ b/internal/route/admin/admin.go
@@ -14,12 +14,12 @@ import (
"github.com/unknwon/com"
"gopkg.in/macaron.v1"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/cron"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/mailer"
"gogs.io/gogs/internal/process"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -168,10 +168,10 @@ func Dashboard(c *context.Context) {
return
}
- c.Data["GitVersion"] = setting.Git.Version
+ c.Data["GitVersion"] = conf.Git.Version
c.Data["GoVersion"] = runtime.Version()
- c.Data["BuildTime"] = setting.BuildTime
- c.Data["BuildCommit"] = setting.BuildCommit
+ c.Data["BuildTime"] = conf.BuildTime
+ c.Data["BuildCommit"] = conf.BuildCommit
c.Data["Stats"] = db.GetStatistic()
// FIXME: update periodically
@@ -189,7 +189,7 @@ func SendTestMail(c *context.Context) {
c.Flash.Info(c.Tr("admin.config.test_mail_sent", email))
}
- c.Redirect(setting.AppSubURL + "/admin/config")
+ c.Redirect(conf.Server.Subpath + "/admin/config")
}
func Config(c *context.Context) {
@@ -197,54 +197,53 @@ func Config(c *context.Context) {
c.Data["PageIsAdmin"] = true
c.Data["PageIsAdminConfig"] = true
- c.Data["AppURL"] = setting.AppURL
- c.Data["Domain"] = setting.Domain
- c.Data["OfflineMode"] = setting.OfflineMode
- c.Data["DisableRouterLog"] = setting.DisableRouterLog
- c.Data["RunUser"] = setting.RunUser
+ c.Data["AppURL"] = conf.Server.ExternalURL
+ c.Data["Domain"] = conf.Server.Domain
+ c.Data["OfflineMode"] = conf.Server.OfflineMode
+ c.Data["DisableRouterLog"] = conf.Server.DisableRouterLog
+ c.Data["RunUser"] = conf.App.RunUser
c.Data["RunMode"] = strings.Title(macaron.Env)
- c.Data["StaticRootPath"] = setting.StaticRootPath
- c.Data["LogRootPath"] = setting.LogRootPath
- c.Data["ReverseProxyAuthUser"] = setting.ReverseProxyAuthUser
+ c.Data["LogRootPath"] = conf.LogRootPath
+ c.Data["ReverseProxyAuthUser"] = conf.ReverseProxyAuthUser
- c.Data["SSH"] = setting.SSH
+ c.Data["SSH"] = conf.SSH
- c.Data["RepoRootPath"] = setting.RepoRootPath
- c.Data["ScriptType"] = setting.ScriptType
- c.Data["Repository"] = setting.Repository
- c.Data["HTTP"] = setting.HTTP
+ c.Data["RepoRootPath"] = conf.RepoRootPath
+ c.Data["ScriptType"] = conf.ScriptType
+ c.Data["Repository"] = conf.Repository
+ c.Data["HTTP"] = conf.HTTP
c.Data["DbCfg"] = db.DbCfg
- c.Data["Service"] = setting.Service
- c.Data["Webhook"] = setting.Webhook
+ c.Data["Service"] = conf.Service
+ c.Data["Webhook"] = conf.Webhook
c.Data["MailerEnabled"] = false
- if setting.MailService != nil {
+ if conf.MailService != nil {
c.Data["MailerEnabled"] = true
- c.Data["Mailer"] = setting.MailService
+ c.Data["Mailer"] = conf.MailService
}
- c.Data["CacheAdapter"] = setting.CacheAdapter
- c.Data["CacheInterval"] = setting.CacheInterval
- c.Data["CacheConn"] = setting.CacheConn
+ c.Data["CacheAdapter"] = conf.CacheAdapter
+ c.Data["CacheInterval"] = conf.CacheInterval
+ c.Data["CacheConn"] = conf.CacheConn
- c.Data["SessionConfig"] = setting.SessionConfig
+ c.Data["SessionConfig"] = conf.SessionConfig
- c.Data["DisableGravatar"] = setting.DisableGravatar
- c.Data["EnableFederatedAvatar"] = setting.EnableFederatedAvatar
+ c.Data["DisableGravatar"] = conf.DisableGravatar
+ c.Data["EnableFederatedAvatar"] = conf.EnableFederatedAvatar
- c.Data["Git"] = setting.Git
+ c.Data["Git"] = conf.Git
type logger struct {
Mode, Config string
}
- loggers := make([]*logger, len(setting.LogModes))
- for i := range setting.LogModes {
+ loggers := make([]*logger, len(conf.LogModes))
+ for i := range conf.LogModes {
loggers[i] = &logger{
- Mode: strings.Title(setting.LogModes[i]),
+ Mode: strings.Title(conf.LogModes[i]),
}
- result, _ := jsoniter.MarshalIndent(setting.LogConfigs[i], "", " ")
+ result, _ := jsoniter.MarshalIndent(conf.LogConfigs[i], "", " ")
loggers[i].Config = string(result)
}
c.Data["Loggers"] = loggers
diff --git a/internal/route/admin/auths.go b/internal/route/admin/auths.go
index 378c4eee..9896b5b9 100644
--- a/internal/route/admin/auths.go
+++ b/internal/route/admin/auths.go
@@ -14,10 +14,10 @@ import (
"xorm.io/core"
"gogs.io/gogs/internal/auth/ldap"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/form"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -175,7 +175,7 @@ func NewAuthSourcePost(c *context.Context, f form.Authentication) {
log.Trace("Authentication created by admin(%s): %s", c.User.Name, f.Name)
c.Flash.Success(c.Tr("admin.auths.new_success", f.Name))
- c.Redirect(setting.AppSubURL + "/admin/auths")
+ c.Redirect(conf.Server.Subpath + "/admin/auths")
}
func EditAuthSource(c *context.Context) {
@@ -248,7 +248,7 @@ func EditAuthSourcePost(c *context.Context, f form.Authentication) {
log.Trace("Authentication changed by admin '%s': %d", c.User.Name, source.ID)
c.Flash.Success(c.Tr("admin.auths.update_success"))
- c.Redirect(setting.AppSubURL + "/admin/auths/" + com.ToStr(f.ID))
+ c.Redirect(conf.Server.Subpath + "/admin/auths/" + com.ToStr(f.ID))
}
func DeleteAuthSource(c *context.Context) {
@@ -265,7 +265,7 @@ func DeleteAuthSource(c *context.Context) {
c.Flash.Error(fmt.Sprintf("DeleteSource: %v", err))
}
c.JSONSuccess(map[string]interface{}{
- "redirect": setting.AppSubURL + "/admin/auths/" + c.Params(":authid"),
+ "redirect": conf.Server.Subpath + "/admin/auths/" + c.Params(":authid"),
})
return
}
@@ -273,6 +273,6 @@ func DeleteAuthSource(c *context.Context) {
c.Flash.Success(c.Tr("admin.auths.deletion_success"))
c.JSONSuccess(map[string]interface{}{
- "redirect": setting.AppSubURL + "/admin/auths",
+ "redirect": conf.Server.Subpath + "/admin/auths",
})
}
diff --git a/internal/route/admin/notice.go b/internal/route/admin/notice.go
index 6c591fb0..20ce1356 100644
--- a/internal/route/admin/notice.go
+++ b/internal/route/admin/notice.go
@@ -9,9 +9,9 @@ import (
"github.com/unknwon/paginater"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -28,9 +28,9 @@ func Notices(c *context.Context) {
if page <= 1 {
page = 1
}
- c.Data["Page"] = paginater.New(int(total), setting.UI.Admin.NoticePagingNum, page, 5)
+ c.Data["Page"] = paginater.New(int(total), conf.UI.Admin.NoticePagingNum, page, 5)
- notices, err := db.Notices(page, setting.UI.Admin.NoticePagingNum)
+ notices, err := db.Notices(page, conf.UI.Admin.NoticePagingNum)
if err != nil {
c.Handle(500, "Notices", err)
return
@@ -68,5 +68,5 @@ func EmptyNotices(c *context.Context) {
log.Trace("System notices deleted by admin (%s): [start: %d]", c.User.Name, 0)
c.Flash.Success(c.Tr("admin.notices.delete_success"))
- c.Redirect(setting.AppSubURL + "/admin/notices")
+ c.Redirect(conf.Server.Subpath + "/admin/notices")
}
diff --git a/internal/route/admin/orgs.go b/internal/route/admin/orgs.go
index e051a00e..a3762484 100644
--- a/internal/route/admin/orgs.go
+++ b/internal/route/admin/orgs.go
@@ -8,7 +8,7 @@ import (
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/route"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
const (
@@ -24,7 +24,7 @@ func Organizations(c *context.Context) {
Type: db.USER_TYPE_ORGANIZATION,
Counter: db.CountOrganizations,
Ranger: db.Organizations,
- PageSize: setting.UI.Admin.OrgPagingNum,
+ PageSize: conf.UI.Admin.OrgPagingNum,
OrderBy: "id ASC",
TplName: ORGS,
})
diff --git a/internal/route/admin/repos.go b/internal/route/admin/repos.go
index 97f4692b..f8f48541 100644
--- a/internal/route/admin/repos.go
+++ b/internal/route/admin/repos.go
@@ -8,9 +8,9 @@ import (
"github.com/unknwon/paginater"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -35,7 +35,7 @@ func Repos(c *context.Context) {
keyword := c.Query("q")
if len(keyword) == 0 {
- repos, err = db.Repositories(page, setting.UI.Admin.RepoPagingNum)
+ repos, err = db.Repositories(page, conf.UI.Admin.RepoPagingNum)
if err != nil {
c.Handle(500, "Repositories", err)
return
@@ -47,7 +47,7 @@ func Repos(c *context.Context) {
OrderBy: "id ASC",
Private: true,
Page: page,
- PageSize: setting.UI.Admin.RepoPagingNum,
+ PageSize: conf.UI.Admin.RepoPagingNum,
})
if err != nil {
c.Handle(500, "SearchRepositoryByName", err)
@@ -56,7 +56,7 @@ func Repos(c *context.Context) {
}
c.Data["Keyword"] = keyword
c.Data["Total"] = count
- c.Data["Page"] = paginater.New(int(count), setting.UI.Admin.RepoPagingNum, page, 5)
+ c.Data["Page"] = paginater.New(int(count), conf.UI.Admin.RepoPagingNum, page, 5)
if err = db.RepositoryList(repos).LoadAttributes(); err != nil {
c.Handle(500, "LoadAttributes", err)
@@ -82,6 +82,6 @@ func DeleteRepo(c *context.Context) {
c.Flash.Success(c.Tr("repo.settings.deletion_success"))
c.JSON(200, map[string]interface{}{
- "redirect": setting.AppSubURL + "/admin/repos?page=" + c.Query("page"),
+ "redirect": conf.Server.Subpath + "/admin/repos?page=" + c.Query("page"),
})
}
diff --git a/internal/route/admin/users.go b/internal/route/admin/users.go
index 4df40e7e..8c4e7ab2 100644
--- a/internal/route/admin/users.go
+++ b/internal/route/admin/users.go
@@ -10,12 +10,12 @@ import (
"github.com/unknwon/com"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/form"
"gogs.io/gogs/internal/mailer"
"gogs.io/gogs/internal/route"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -33,7 +33,7 @@ func Users(c *context.Context) {
Type: db.USER_TYPE_INDIVIDUAL,
Counter: db.CountUsers,
Ranger: db.Users,
- PageSize: setting.UI.Admin.UserPagingNum,
+ PageSize: conf.UI.Admin.UserPagingNum,
OrderBy: "id ASC",
TplName: USERS,
})
@@ -53,7 +53,7 @@ func NewUser(c *context.Context) {
}
c.Data["Sources"] = sources
- c.Data["CanSendEmail"] = setting.MailService != nil
+ c.Data["CanSendEmail"] = conf.MailService != nil
c.HTML(200, USER_NEW)
}
@@ -69,7 +69,7 @@ func NewUserPost(c *context.Context, f form.AdminCrateUser) {
}
c.Data["Sources"] = sources
- c.Data["CanSendEmail"] = setting.MailService != nil
+ c.Data["CanSendEmail"] = conf.MailService != nil
if c.HasError() {
c.HTML(200, USER_NEW)
@@ -115,12 +115,12 @@ func NewUserPost(c *context.Context, f form.AdminCrateUser) {
log.Trace("Account created by admin (%s): %s", c.User.Name, u.Name)
// Send email notification.
- if f.SendNotify && setting.MailService != nil {
+ if f.SendNotify && conf.MailService != nil {
mailer.SendRegisterNotifyMail(c.Context, db.NewMailerUser(u))
}
c.Flash.Success(c.Tr("admin.users.new_success", u.Name))
- c.Redirect(setting.AppSubURL + "/admin/users/" + com.ToStr(u.ID))
+ c.Redirect(conf.Server.Subpath + "/admin/users/" + com.ToStr(u.ID))
}
func prepareUserInfo(c *context.Context) *db.User {
@@ -155,7 +155,7 @@ func EditUser(c *context.Context) {
c.Data["Title"] = c.Tr("admin.users.edit_account")
c.Data["PageIsAdmin"] = true
c.Data["PageIsAdminUsers"] = true
- c.Data["EnableLocalPathMigration"] = setting.Repository.EnableLocalPathMigration
+ c.Data["EnableLocalPathMigration"] = conf.Repository.EnableLocalPathMigration
prepareUserInfo(c)
if c.Written() {
@@ -169,7 +169,7 @@ func EditUserPost(c *context.Context, f form.AdminEditUser) {
c.Data["Title"] = c.Tr("admin.users.edit_account")
c.Data["PageIsAdmin"] = true
c.Data["PageIsAdminUsers"] = true
- c.Data["EnableLocalPathMigration"] = setting.Repository.EnableLocalPathMigration
+ c.Data["EnableLocalPathMigration"] = conf.Repository.EnableLocalPathMigration
u := prepareUserInfo(c)
if c.Written() {
@@ -226,7 +226,7 @@ func EditUserPost(c *context.Context, f form.AdminEditUser) {
log.Trace("Account profile updated by admin (%s): %s", c.User.Name, u.Name)
c.Flash.Success(c.Tr("admin.users.update_profile_success"))
- c.Redirect(setting.AppSubURL + "/admin/users/" + c.Params(":userid"))
+ c.Redirect(conf.Server.Subpath + "/admin/users/" + c.Params(":userid"))
}
func DeleteUser(c *context.Context) {
@@ -241,12 +241,12 @@ func DeleteUser(c *context.Context) {
case db.IsErrUserOwnRepos(err):
c.Flash.Error(c.Tr("admin.users.still_own_repo"))
c.JSON(200, map[string]interface{}{
- "redirect": setting.AppSubURL + "/admin/users/" + c.Params(":userid"),
+ "redirect": conf.Server.Subpath + "/admin/users/" + c.Params(":userid"),
})
case db.IsErrUserHasOrgs(err):
c.Flash.Error(c.Tr("admin.users.still_has_org"))
c.JSON(200, map[string]interface{}{
- "redirect": setting.AppSubURL + "/admin/users/" + c.Params(":userid"),
+ "redirect": conf.Server.Subpath + "/admin/users/" + c.Params(":userid"),
})
default:
c.Handle(500, "DeleteUser", err)
@@ -257,6 +257,6 @@ func DeleteUser(c *context.Context) {
c.Flash.Success(c.Tr("admin.users.deletion_success"))
c.JSON(200, map[string]interface{}{
- "redirect": setting.AppSubURL + "/admin/users",
+ "redirect": conf.Server.Subpath + "/admin/users",
})
}
diff --git a/internal/route/api/v1/admin/user.go b/internal/route/api/v1/admin/user.go
index d159e6d7..8a78a991 100644
--- a/internal/route/api/v1/admin/user.go
+++ b/internal/route/api/v1/admin/user.go
@@ -16,7 +16,7 @@ import (
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/mailer"
"gogs.io/gogs/internal/route/api/v1/user"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
func parseLoginSource(c *context.APIContext, u *db.User, sourceID int64, loginName string) {
@@ -68,7 +68,7 @@ func CreateUser(c *context.APIContext, form api.CreateUserOption) {
log.Trace("Account created by admin %q: %s", c.User.Name, u.Name)
// Send email notification.
- if form.SendNotify && setting.MailService != nil {
+ if form.SendNotify && conf.MailService != nil {
mailer.SendRegisterNotifyMail(c.Context.Context, db.NewMailerUser(u))
}
diff --git a/internal/route/api/v1/convert/utils.go b/internal/route/api/v1/convert/utils.go
index 01b3f246..13668091 100644
--- a/internal/route/api/v1/convert/utils.go
+++ b/internal/route/api/v1/convert/utils.go
@@ -5,15 +5,15 @@
package convert
import (
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
// ToCorrectPageSize makes sure page size is in allowed range.
func ToCorrectPageSize(size int) int {
if size <= 0 {
size = 10
- } else if size > setting.API.MaxResponseItems {
- size = setting.API.MaxResponseItems
+ } else if size > conf.API.MaxResponseItems {
+ size = conf.API.MaxResponseItems
}
return size
}
diff --git a/internal/route/api/v1/repo/commits.go b/internal/route/api/v1/repo/commits.go
index 55bfc045..ddcd09b7 100644
--- a/internal/route/api/v1/repo/commits.go
+++ b/internal/route/api/v1/repo/commits.go
@@ -12,10 +12,10 @@ import (
"github.com/gogs/git-module"
api "github.com/gogs/go-gogs-client"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
)
func GetSingleCommit(c *context.APIContext) {
@@ -70,12 +70,12 @@ func GetSingleCommit(c *context.APIContext) {
c.JSONSuccess(&api.Commit{
CommitMeta: &api.CommitMeta{
- URL: setting.AppURL + c.Link[1:],
+ URL: conf.Server.ExternalURL + c.Link[1:],
SHA: commit.ID.String(),
},
HTMLURL: c.Repo.Repository.HTMLURL() + "/commits/" + commit.ID.String(),
RepoCommit: &api.RepoCommit{
- URL: setting.AppURL + c.Link[1:],
+ URL: conf.Server.ExternalURL + c.Link[1:],
Author: &api.CommitUser{
Name: commit.Author.Name,
Email: commit.Author.Email,
diff --git a/internal/route/api/v1/repo/issue.go b/internal/route/api/v1/repo/issue.go
index 5d32a00c..39977f91 100644
--- a/internal/route/api/v1/repo/issue.go
+++ b/internal/route/api/v1/repo/issue.go
@@ -14,7 +14,7 @@ import (
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
func listIssues(c *context.APIContext, opts *db.IssuesOptions) {
@@ -40,7 +40,7 @@ func listIssues(c *context.APIContext, opts *db.IssuesOptions) {
apiIssues[i] = issues[i].APIFormat()
}
- c.SetLinkHeader(int(count), setting.UI.IssuePagingNum)
+ c.SetLinkHeader(int(count), conf.UI.IssuePagingNum)
c.JSONSuccess(&apiIssues)
}
diff --git a/internal/route/api/v1/repo/key.go b/internal/route/api/v1/repo/key.go
index d47d4b46..d8012933 100644
--- a/internal/route/api/v1/repo/key.go
+++ b/internal/route/api/v1/repo/key.go
@@ -10,13 +10,13 @@ import (
api "github.com/gogs/go-gogs-client"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
)
func composeDeployKeysAPILink(repoPath string) string {
- return setting.AppURL + "api/v1/repos/" + repoPath + "/keys/"
+ return conf.Server.ExternalURL + "api/v1/repos/" + repoPath + "/keys/"
}
// https://github.com/gogs/go-gogs-client/wiki/Repositories-Deploy-Keys#list-deploy-keys
diff --git a/internal/route/api/v1/repo/repo.go b/internal/route/api/v1/repo/repo.go
index 6950ce9b..a8838ae7 100644
--- a/internal/route/api/v1/repo/repo.go
+++ b/internal/route/api/v1/repo/repo.go
@@ -18,7 +18,7 @@ import (
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/form"
"gogs.io/gogs/internal/route/api/v1/convert"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
func Search(c *context.APIContext) {
@@ -263,7 +263,7 @@ func Migrate(c *context.APIContext, f form.MigrateRepo) {
repo, err := db.MigrateRepository(c.User, ctxUser, db.MigrateRepoOptions{
Name: f.RepoName,
Description: f.Description,
- IsPrivate: f.Private || setting.Repository.ForcePrivate,
+ IsPrivate: f.Private || conf.Repository.ForcePrivate,
IsMirror: f.Mirror,
RemoteAddr: remoteAddr,
})
diff --git a/internal/route/api/v1/user/email.go b/internal/route/api/v1/user/email.go
index e4baaefa..b45c716d 100644
--- a/internal/route/api/v1/user/email.go
+++ b/internal/route/api/v1/user/email.go
@@ -12,7 +12,7 @@ import (
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
func ListEmails(c *context.APIContext) {
@@ -39,7 +39,7 @@ func AddEmail(c *context.APIContext, form api.CreateEmailOption) {
emails[i] = &db.EmailAddress{
UID: c.User.ID,
Email: form.Emails[i],
- IsActivated: !setting.Service.RegisterEmailConfirm,
+ IsActivated: !conf.Service.RegisterEmailConfirm,
}
}
diff --git a/internal/route/api/v1/user/key.go b/internal/route/api/v1/user/key.go
index 9cdb4e20..759f9008 100644
--- a/internal/route/api/v1/user/key.go
+++ b/internal/route/api/v1/user/key.go
@@ -10,10 +10,10 @@ import (
repo2 "gogs.io/gogs/internal/route/api/v1/repo"
"net/http"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
)
func GetUserByParamsName(c *context.APIContext, name string) *db.User {
@@ -31,7 +31,7 @@ func GetUserByParams(c *context.APIContext) *db.User {
}
func composePublicKeysAPILink() string {
- return setting.AppURL + "api/v1/user/keys/"
+ return conf.Server.ExternalURL + "api/v1/user/keys/"
}
func listPublicKeys(c *context.APIContext, uid int64) {
diff --git a/internal/route/dev/template.go b/internal/route/dev/template.go
index be1fe360..daa8e8f4 100644
--- a/internal/route/dev/template.go
+++ b/internal/route/dev/template.go
@@ -5,19 +5,19 @@
package dev
import (
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
)
func TemplatePreview(c *context.Context) {
c.Data["User"] = db.User{Name: "Unknown"}
- c.Data["AppName"] = setting.AppName
- c.Data["AppVersion"] = setting.AppVersion
- c.Data["AppURL"] = setting.AppURL
+ c.Data["AppName"] = conf.App.BrandName
+ c.Data["AppVersion"] = conf.App.Version
+ c.Data["AppURL"] = conf.Server.ExternalURL
c.Data["Code"] = "2014031910370000009fff6782aadb2162b4a997acb69d4400888e0b9274657374"
- c.Data["ActiveCodeLives"] = setting.Service.ActiveCodeLives / 60
- c.Data["ResetPwdCodeLives"] = setting.Service.ResetPwdCodeLives / 60
+ c.Data["ActiveCodeLives"] = conf.Service.ActiveCodeLives / 60
+ c.Data["ResetPwdCodeLives"] = conf.Service.ResetPwdCodeLives / 60
c.Data["CurDbValue"] = ""
c.HTML(200, (c.Params("*")))
diff --git a/internal/route/home.go b/internal/route/home.go
index f208bcb4..6e8e0a42 100644
--- a/internal/route/home.go
+++ b/internal/route/home.go
@@ -8,9 +8,9 @@ import (
"github.com/unknwon/paginater"
user2 "gogs.io/gogs/internal/route/user"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -22,7 +22,7 @@ const (
func Home(c *context.Context) {
if c.IsLogged {
- if !c.User.IsActive && setting.Service.RegisterEmailConfirm {
+ if !c.User.IsActive && conf.Service.RegisterEmailConfirm {
c.Data["Title"] = c.Tr("auth.active_your_account")
c.Success(user2.ACTIVATE)
} else {
@@ -32,9 +32,9 @@ func Home(c *context.Context) {
}
// Check auto-login.
- uname := c.GetCookie(setting.CookieUserName)
+ uname := c.GetCookie(conf.CookieUserName)
if len(uname) != 0 {
- c.Redirect(setting.AppSubURL + "/user/login")
+ c.Redirect(conf.Server.Subpath + "/user/login")
return
}
@@ -58,7 +58,7 @@ func ExploreRepos(c *context.Context) {
UserID: c.UserID(),
OrderBy: "updated_unix DESC",
Page: page,
- PageSize: setting.UI.ExplorePagingNum,
+ PageSize: conf.UI.ExplorePagingNum,
})
if err != nil {
c.ServerError("SearchRepositoryByName", err)
@@ -66,7 +66,7 @@ func ExploreRepos(c *context.Context) {
}
c.Data["Keyword"] = keyword
c.Data["Total"] = count
- c.Data["Page"] = paginater.New(int(count), setting.UI.ExplorePagingNum, page, 5)
+ c.Data["Page"] = paginater.New(int(count), conf.UI.ExplorePagingNum, page, 5)
if err = db.RepositoryList(repos).LoadAttributes(); err != nil {
c.ServerError("RepositoryList.LoadAttributes", err)
@@ -136,7 +136,7 @@ func ExploreUsers(c *context.Context) {
Type: db.USER_TYPE_INDIVIDUAL,
Counter: db.CountUsers,
Ranger: db.Users,
- PageSize: setting.UI.ExplorePagingNum,
+ PageSize: conf.UI.ExplorePagingNum,
OrderBy: "updated_unix DESC",
TplName: EXPLORE_USERS,
})
@@ -151,7 +151,7 @@ func ExploreOrganizations(c *context.Context) {
Type: db.USER_TYPE_ORGANIZATION,
Counter: db.CountOrganizations,
Ranger: db.Organizations,
- PageSize: setting.UI.ExplorePagingNum,
+ PageSize: conf.UI.ExplorePagingNum,
OrderBy: "updated_unix DESC",
TplName: EXPLORE_ORGANIZATIONS,
})
diff --git a/internal/route/install.go b/internal/route/install.go
index c145fc0b..0747ebf0 100644
--- a/internal/route/install.go
+++ b/internal/route/install.go
@@ -11,6 +11,7 @@ import (
"path/filepath"
"strings"
+ "github.com/pkg/errors"
"github.com/unknwon/com"
"gopkg.in/ini.v1"
"gopkg.in/macaron.v1"
@@ -19,13 +20,14 @@ import (
"github.com/gogs/git-module"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/cron"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/form"
"gogs.io/gogs/internal/mailer"
"gogs.io/gogs/internal/markup"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/osutil"
"gogs.io/gogs/internal/ssh"
"gogs.io/gogs/internal/template/highlight"
"gogs.io/gogs/internal/tool"
@@ -37,7 +39,7 @@ const (
)
func checkRunMode() {
- if setting.ProdMode {
+ if conf.IsProdMode() {
macaron.Env = macaron.PROD
macaron.ColorLog = false
} else {
@@ -47,20 +49,26 @@ func checkRunMode() {
}
// GlobalInit is for global configuration reload-able.
-func GlobalInit() {
- setting.Init()
- setting.InitLogging()
- log.Info("%s %s", setting.AppName, setting.AppVersion)
- log.Trace("Custom path: %s", setting.CustomPath)
- log.Trace("Log path: %s", setting.LogRootPath)
- log.Trace("Build time: %s", setting.BuildTime)
- log.Trace("Build commit: %s", setting.BuildCommit)
+func GlobalInit(customConf string) error {
+ err := conf.Init(customConf)
+ if err != nil {
+ return errors.Wrap(err, "init configuration")
+ }
+
+ conf.InitLogging()
+ log.Info("%s %s", conf.App.BrandName, conf.App.Version)
+ log.Trace("Work directory: %s", conf.WorkDir())
+ log.Trace("Custom path: %s", conf.CustomDir())
+ log.Trace("Custom config: %s", conf.CustomConf)
+ log.Trace("Log path: %s", conf.LogRootPath)
+ log.Trace("Build time: %s", conf.BuildTime)
+ log.Trace("Build commit: %s", conf.BuildCommit)
db.LoadConfigs()
- setting.NewServices()
+ conf.NewServices()
mailer.NewContext()
- if setting.InstallLock {
+ if conf.InstallLock {
highlight.NewContext()
markup.NewSanitizer()
if err := db.NewEngine(); err != nil {
@@ -81,33 +89,35 @@ func GlobalInit() {
if db.EnableSQLite3 {
log.Info("SQLite3 is supported")
}
- if setting.SupportWindowsService() {
+ if conf.HasMinWinSvc {
log.Info("Builtin Windows Service is supported")
}
- if setting.LoadAssetsFromDisk {
+ if conf.Server.LoadAssetsFromDisk {
log.Trace("Assets are loaded from disk")
}
checkRunMode()
- if !setting.InstallLock {
- return
+ if !conf.InstallLock {
+ return nil
}
- if setting.SSH.StartBuiltinServer {
- ssh.Listen(setting.SSH.ListenHost, setting.SSH.ListenPort, setting.SSH.ServerCiphers)
- log.Info("SSH server started on %s:%v", setting.SSH.ListenHost, setting.SSH.ListenPort)
- log.Trace("SSH server cipher list: %v", setting.SSH.ServerCiphers)
+ if conf.SSH.StartBuiltinServer {
+ ssh.Listen(conf.SSH.ListenHost, conf.SSH.ListenPort, conf.SSH.ServerCiphers)
+ log.Info("SSH server started on %s:%v", conf.SSH.ListenHost, conf.SSH.ListenPort)
+ log.Trace("SSH server cipher list: %v", conf.SSH.ServerCiphers)
}
- if setting.SSH.RewriteAuthorizedKeysAtStart {
+ if conf.SSH.RewriteAuthorizedKeysAtStart {
if err := db.RewriteAuthorizedKeys(); err != nil {
log.Warn("Failed to rewrite authorized_keys file: %v", err)
}
}
+
+ return nil
}
func InstallInit(c *context.Context) {
- if setting.InstallLock {
+ if conf.InstallLock {
c.NotFound()
return
}
@@ -144,40 +154,40 @@ func Install(c *context.Context) {
}
// Application general settings
- f.AppName = setting.AppName
- f.RepoRootPath = setting.RepoRootPath
+ f.AppName = conf.App.BrandName
+ f.RepoRootPath = conf.RepoRootPath
// Note(unknwon): it's hard for Windows users change a running user,
// so just use current one if config says default.
- if setting.IsWindows && setting.RunUser == "git" {
+ if conf.IsWindowsRuntime() && conf.App.RunUser == "git" {
f.RunUser = user.CurrentUsername()
} else {
- f.RunUser = setting.RunUser
+ f.RunUser = conf.App.RunUser
}
- f.Domain = setting.Domain
- f.SSHPort = setting.SSH.Port
- f.UseBuiltinSSHServer = setting.SSH.StartBuiltinServer
- f.HTTPPort = setting.HTTPPort
- f.AppUrl = setting.AppURL
- f.LogRootPath = setting.LogRootPath
+ f.Domain = conf.Server.Domain
+ f.SSHPort = conf.SSH.Port
+ f.UseBuiltinSSHServer = conf.SSH.StartBuiltinServer
+ f.HTTPPort = conf.Server.HTTPPort
+ f.AppUrl = conf.Server.ExternalURL
+ f.LogRootPath = conf.LogRootPath
// E-mail service settings
- if setting.MailService != nil {
- f.SMTPHost = setting.MailService.Host
- f.SMTPFrom = setting.MailService.From
- f.SMTPUser = setting.MailService.User
+ if conf.MailService != nil {
+ f.SMTPHost = conf.MailService.Host
+ f.SMTPFrom = conf.MailService.From
+ f.SMTPUser = conf.MailService.User
}
- f.RegisterConfirm = setting.Service.RegisterEmailConfirm
- f.MailNotify = setting.Service.EnableNotifyMail
+ f.RegisterConfirm = conf.Service.RegisterEmailConfirm
+ f.MailNotify = conf.Service.EnableNotifyMail
// Server and other services settings
- f.OfflineMode = setting.OfflineMode
- f.DisableGravatar = setting.DisableGravatar
- f.EnableFederatedAvatar = setting.EnableFederatedAvatar
- f.DisableRegistration = setting.Service.DisableRegistration
- f.EnableCaptcha = setting.Service.EnableCaptcha
- f.RequireSignInView = setting.Service.RequireSignInView
+ f.OfflineMode = conf.Server.OfflineMode
+ f.DisableGravatar = conf.DisableGravatar
+ f.EnableFederatedAvatar = conf.EnableFederatedAvatar
+ f.DisableRegistration = conf.Service.DisableRegistration
+ f.EnableCaptcha = conf.Service.EnableCaptcha
+ f.RequireSignInView = conf.Service.RequireSignInView
form.Assign(f, c.Data)
c.Success(INSTALL)
@@ -251,7 +261,7 @@ func InstallPost(c *context.Context, f form.Install) {
return
}
- currentUser, match := setting.IsRunUserMatchCurrentUser(f.RunUser)
+ currentUser, match := conf.IsRunUserMatchCurrentUser(f.RunUser)
if !match {
c.FormErr("RunUser")
c.RenderWithErr(c.Tr("install.run_user_not_match", f.RunUser, currentUser), INSTALL, &f)
@@ -300,10 +310,10 @@ func InstallPost(c *context.Context, f form.Install) {
// Save settings.
cfg := ini.Empty()
- if com.IsFile(setting.CustomConf) {
+ if osutil.IsFile(conf.CustomConf) {
// Keeps custom settings if there is already something.
- if err := cfg.Append(setting.CustomConf); err != nil {
- log.Error("Failed to load custom conf '%s': %v", setting.CustomConf, err)
+ if err := cfg.Append(conf.CustomConf); err != nil {
+ log.Error("Failed to load custom conf %q: %v", conf.CustomConf, err)
}
}
cfg.Section("database").Key("DB_TYPE").SetValue(db.DbCfg.Type)
@@ -368,13 +378,18 @@ func InstallPost(c *context.Context, f form.Install) {
}
cfg.Section("security").Key("SECRET_KEY").SetValue(secretKey)
- os.MkdirAll(filepath.Dir(setting.CustomConf), os.ModePerm)
- if err := cfg.SaveTo(setting.CustomConf); err != nil {
+ _ = os.MkdirAll(filepath.Dir(conf.CustomConf), os.ModePerm)
+ if err := cfg.SaveTo(conf.CustomConf); err != nil {
c.RenderWithErr(c.Tr("install.save_config_failed", err), INSTALL, &f)
return
}
- GlobalInit()
+ // NOTE: We reuse the current value because this handler does not have access to CLI flags.
+ err = GlobalInit(conf.CustomConf)
+ if err != nil {
+ c.RenderWithErr(c.Tr("install.init_failed", err), INSTALL, &f)
+ return
+ }
// Create admin account
if len(f.AdminName) > 0 {
@@ -387,7 +402,7 @@ func InstallPost(c *context.Context, f form.Install) {
}
if err := db.CreateUser(u); err != nil {
if !db.IsErrUserAlreadyExist(err) {
- setting.InstallLock = false
+ conf.InstallLock = false
c.FormErr("AdminName", "AdminEmail")
c.RenderWithErr(c.Tr("install.invalid_admin_setting", err), INSTALL, &f)
return
diff --git a/internal/route/org/members.go b/internal/route/org/members.go
index fc36bde1..fc22ad59 100644
--- a/internal/route/org/members.go
+++ b/internal/route/org/members.go
@@ -8,10 +8,10 @@ import (
"github.com/unknwon/com"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -87,7 +87,7 @@ func MembersAction(c *context.Context) {
if c.Params(":action") != "leave" {
c.Redirect(c.Org.OrgLink + "/members")
} else {
- c.Redirect(setting.AppSubURL + "/")
+ c.Redirect(conf.Server.Subpath + "/")
}
}
diff --git a/internal/route/org/org.go b/internal/route/org/org.go
index 13ec7a51..551dd3e8 100644
--- a/internal/route/org/org.go
+++ b/internal/route/org/org.go
@@ -7,10 +7,10 @@ package org
import (
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/form"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -52,5 +52,5 @@ func CreatePost(c *context.Context, f form.CreateOrg) {
}
log.Trace("Organization created: %s", org.Name)
- c.Redirect(setting.AppSubURL + "/org/" + f.OrgName + "/dashboard")
+ c.Redirect(conf.Server.Subpath + "/org/" + f.OrgName + "/dashboard")
}
diff --git a/internal/route/org/setting.go b/internal/route/org/setting.go
index 366a0f6b..aecd8643 100644
--- a/internal/route/org/setting.go
+++ b/internal/route/org/setting.go
@@ -9,12 +9,12 @@ import (
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/form"
"gogs.io/gogs/internal/route/user"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -63,7 +63,7 @@ func SettingsPost(c *context.Context, f form.UpdateOrgSetting) {
return
}
// reset c.org.OrgLink with new name
- c.Org.OrgLink = setting.AppSubURL + "/org/" + f.Name
+ c.Org.OrgLink = conf.Server.Subpath + "/org/" + f.Name
log.Trace("Organization name changed: %s -> %s", org.Name, f.Name)
}
// In case it's just a case change.
@@ -130,7 +130,7 @@ func SettingsDelete(c *context.Context) {
}
} else {
log.Trace("Organization deleted: %s", org.Name)
- c.Redirect(setting.AppSubURL + "/")
+ c.Redirect(conf.Server.Subpath + "/")
}
return
}
@@ -143,7 +143,7 @@ func Webhooks(c *context.Context) {
c.Data["PageIsSettingsHooks"] = true
c.Data["BaseLink"] = c.Org.OrgLink
c.Data["Description"] = c.Tr("org.settings.hooks_desc")
- c.Data["Types"] = setting.Webhook.Types
+ c.Data["Types"] = conf.Webhook.Types
ws, err := db.GetWebhooksByOrgID(c.Org.Organization.ID)
if err != nil {
diff --git a/internal/route/repo/commit.go b/internal/route/repo/commit.go
index e058afc4..95075fb6 100644
--- a/internal/route/repo/commit.go
+++ b/internal/route/repo/commit.go
@@ -10,9 +10,9 @@ import (
"github.com/gogs/git-module"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -135,8 +135,8 @@ func Diff(c *context.Context) {
}
diff, err := db.GetDiffCommit(db.RepoPath(userName, repoName),
- commitID, setting.Git.MaxGitDiffLines,
- setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles)
+ commitID, conf.Git.MaxGitDiffLines,
+ conf.Git.MaxGitDiffLineCharacters, conf.Git.MaxGitDiffFiles)
if err != nil {
c.NotFoundOrServerError("get diff commit", git.IsErrNotExist, err)
return
@@ -168,11 +168,11 @@ func Diff(c *context.Context) {
c.Data["Diff"] = diff
c.Data["Parents"] = parents
c.Data["DiffNotAvailable"] = diff.NumFiles() == 0
- c.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", commitID)
+ c.Data["SourcePath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "src", commitID)
if commit.ParentCount() > 0 {
- c.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", parents[0])
+ c.Data["BeforeSourcePath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "src", parents[0])
}
- c.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "raw", commitID)
+ c.Data["RawPath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "raw", commitID)
c.Success(DIFF)
}
@@ -202,8 +202,8 @@ func CompareDiff(c *context.Context) {
}
diff, err := db.GetDiffRange(db.RepoPath(userName, repoName), beforeCommitID,
- afterCommitID, setting.Git.MaxGitDiffLines,
- setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles)
+ afterCommitID, conf.Git.MaxGitDiffLines,
+ conf.Git.MaxGitDiffLineCharacters, conf.Git.MaxGitDiffFiles)
if err != nil {
c.Handle(404, "GetDiffRange", err)
return
@@ -229,8 +229,8 @@ func CompareDiff(c *context.Context) {
c.Data["Commit"] = commit
c.Data["Diff"] = diff
c.Data["DiffNotAvailable"] = diff.NumFiles() == 0
- c.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", afterCommitID)
- c.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", beforeCommitID)
- c.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "raw", afterCommitID)
+ c.Data["SourcePath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "src", afterCommitID)
+ c.Data["BeforeSourcePath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "src", beforeCommitID)
+ c.Data["RawPath"] = conf.Server.Subpath + "/" + path.Join(userName, repoName, "raw", afterCommitID)
c.HTML(200, DIFF)
}
diff --git a/internal/route/repo/download.go b/internal/route/repo/download.go
index 65c3c125..b75bcb9f 100644
--- a/internal/route/repo/download.go
+++ b/internal/route/repo/download.go
@@ -13,7 +13,7 @@ import (
"github.com/gogs/git-module"
"gogs.io/gogs/internal/context"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/tool"
)
@@ -35,7 +35,7 @@ func serveData(c *context.Context, name string, r io.Reader) error {
c.Resp.Header().Set("Content-Disposition", "attachment; filename=\""+name+"\"")
c.Resp.Header().Set("Content-Transfer-Encoding", "binary")
}
- } else if !setting.Repository.EnableRawFileRenderMode || !c.QueryBool("render") {
+ } else if !conf.Repository.EnableRawFileRenderMode || !c.QueryBool("render") {
c.Resp.Header().Set("Content-Type", "text/plain; charset=utf-8")
}
diff --git a/internal/route/repo/editor.go b/internal/route/repo/editor.go
index 75254a2e..7b7a0935 100644
--- a/internal/route/repo/editor.go
+++ b/internal/route/repo/editor.go
@@ -14,12 +14,12 @@ import (
log "unknwon.dev/clog/v2"
"github.com/gogs/git-module"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/form"
"gogs.io/gogs/internal/pathutil"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/template"
"gogs.io/gogs/internal/tool"
)
@@ -110,10 +110,10 @@ func editFile(c *context.Context, isNewFile bool) {
c.Data["commit_choice"] = "direct"
c.Data["new_branch_name"] = ""
c.Data["last_commit"] = c.Repo.Commit.ID
- c.Data["MarkdownFileExts"] = strings.Join(setting.Markdown.FileExtensions, ",")
- c.Data["LineWrapExtensions"] = strings.Join(setting.Repository.Editor.LineWrapExtensions, ",")
- c.Data["PreviewableFileModes"] = strings.Join(setting.Repository.Editor.PreviewableFileModes, ",")
- c.Data["EditorconfigURLPrefix"] = fmt.Sprintf("%s/api/v1/repos/%s/editorconfig/", setting.AppSubURL, c.Repo.Repository.FullName())
+ c.Data["MarkdownFileExts"] = strings.Join(conf.Markdown.FileExtensions, ",")
+ c.Data["LineWrapExtensions"] = strings.Join(conf.Repository.Editor.LineWrapExtensions, ",")
+ c.Data["PreviewableFileModes"] = strings.Join(conf.Repository.Editor.PreviewableFileModes, ",")
+ c.Data["EditorconfigURLPrefix"] = fmt.Sprintf("%s/api/v1/repos/%s/editorconfig/", conf.Server.Subpath, c.Repo.Repository.FullName())
c.Success(EDIT_FILE)
}
@@ -156,9 +156,9 @@ func editFilePost(c *context.Context, f form.EditRepoFile, isNewFile bool) {
c.Data["commit_choice"] = f.CommitChoice
c.Data["new_branch_name"] = branchName
c.Data["last_commit"] = f.LastCommit
- c.Data["MarkdownFileExts"] = strings.Join(setting.Markdown.FileExtensions, ",")
- c.Data["LineWrapExtensions"] = strings.Join(setting.Repository.Editor.LineWrapExtensions, ",")
- c.Data["PreviewableFileModes"] = strings.Join(setting.Repository.Editor.PreviewableFileModes, ",")
+ c.Data["MarkdownFileExts"] = strings.Join(conf.Markdown.FileExtensions, ",")
+ c.Data["LineWrapExtensions"] = strings.Join(conf.Repository.Editor.LineWrapExtensions, ",")
+ c.Data["PreviewableFileModes"] = strings.Join(conf.Repository.Editor.PreviewableFileModes, ",")
if c.HasError() {
c.Success(EDIT_FILE)
@@ -400,9 +400,9 @@ func DeleteFilePost(c *context.Context, f form.DeleteRepoFile) {
func renderUploadSettings(c *context.Context) {
c.RequireDropzone()
- c.Data["UploadAllowedTypes"] = strings.Join(setting.Repository.Upload.AllowedTypes, ",")
- c.Data["UploadMaxSize"] = setting.Repository.Upload.FileMaxSize
- c.Data["UploadMaxFiles"] = setting.Repository.Upload.MaxFiles
+ c.Data["UploadAllowedTypes"] = strings.Join(conf.Repository.Upload.AllowedTypes, ",")
+ c.Data["UploadMaxSize"] = conf.Repository.Upload.FileMaxSize
+ c.Data["UploadMaxFiles"] = conf.Repository.Upload.MaxFiles
}
func UploadFile(c *context.Context) {
@@ -533,9 +533,9 @@ func UploadFileToServer(c *context.Context) {
}
fileType := http.DetectContentType(buf)
- if len(setting.Repository.Upload.AllowedTypes) > 0 {
+ if len(conf.Repository.Upload.AllowedTypes) > 0 {
allowed := false
- for _, t := range setting.Repository.Upload.AllowedTypes {
+ for _, t := range conf.Repository.Upload.AllowedTypes {
t := strings.Trim(t, " ")
if t == "*/*" || t == fileType {
allowed = true
diff --git a/internal/route/repo/http.go b/internal/route/repo/http.go
index be80d379..9b780dde 100644
--- a/internal/route/repo/http.go
+++ b/internal/route/repo/http.go
@@ -23,7 +23,7 @@ import (
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/lazyregexp"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/tool"
)
@@ -44,9 +44,9 @@ func askCredentials(c *context.Context, status int, text string) {
func HTTPContexter() macaron.Handler {
return func(c *context.Context) {
- if len(setting.HTTP.AccessControlAllowOrigin) > 0 {
+ if len(conf.HTTP.AccessControlAllowOrigin) > 0 {
// Set CORS headers for browser-based git clients
- c.Resp.Header().Set("Access-Control-Allow-Origin", setting.HTTP.AccessControlAllowOrigin)
+ c.Resp.Header().Set("Access-Control-Allow-Origin", conf.HTTP.AccessControlAllowOrigin)
c.Resp.Header().Set("Access-Control-Allow-Headers", "Content-Type, Authorization, User-Agent")
// Handle preflight OPTIONS request
@@ -77,7 +77,7 @@ func HTTPContexter() macaron.Handler {
}
// Authentication is not required for pulling from public repositories.
- if isPull && !repo.IsPrivate && !setting.Service.RequireSignInView {
+ if isPull && !repo.IsPrivate && !conf.Service.RequireSignInView {
c.Map(&HTTPContext{
Context: c,
})
@@ -368,7 +368,7 @@ func getGitRepoPath(dir string) (string, error) {
dir += ".git"
}
- filename := path.Join(setting.RepoRootPath, dir)
+ filename := path.Join(conf.RepoRootPath, dir)
if _, err := os.Stat(filename); os.IsNotExist(err) {
return "", err
}
@@ -387,7 +387,7 @@ func HTTP(c *HTTPContext) {
// We perform check here because route matched in cmd/web.go is wider than needed,
// but we only want to output this message only if user is really trying to access
// Git HTTP endpoints.
- if setting.Repository.DisableHTTPGit {
+ if conf.Repository.DisableHTTPGit {
c.HandleText(http.StatusForbidden, "Interacting with repositories by HTTP protocol is not disabled")
return
}
diff --git a/internal/route/repo/issue.go b/internal/route/repo/issue.go
index 76c63363..2cc065e0 100644
--- a/internal/route/repo/issue.go
+++ b/internal/route/repo/issue.go
@@ -17,12 +17,12 @@ import (
"github.com/unknwon/paginater"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/form"
"gogs.io/gogs/internal/markup"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -116,8 +116,8 @@ func issues(c *context.Context, isPullList bool) {
// Must sign in to see issues about you.
if viewType != "all" && !c.IsLogged {
- c.SetCookie("redirect_to", "/"+url.QueryEscape(setting.AppSubURL+c.Req.RequestURI), 0, setting.AppSubURL)
- c.Redirect(setting.AppSubURL + "/user/login")
+ c.SetCookie("redirect_to", "/"+url.QueryEscape(conf.Server.Subpath+c.Req.RequestURI), 0, conf.Server.Subpath)
+ c.Redirect(conf.Server.Subpath + "/user/login")
return
}
@@ -167,7 +167,7 @@ func issues(c *context.Context, isPullList bool) {
} else {
total = int(issueStats.ClosedCount)
}
- pager := paginater.New(total, setting.UI.IssuePagingNum, page, 5)
+ pager := paginater.New(total, conf.UI.IssuePagingNum, page, 5)
c.Data["Page"] = pager
issues, err := db.Issues(&db.IssuesOptions{
@@ -256,10 +256,10 @@ func Pulls(c *context.Context) {
func renderAttachmentSettings(c *context.Context) {
c.Data["RequireDropzone"] = true
- c.Data["IsAttachmentEnabled"] = setting.AttachmentEnabled
- c.Data["AttachmentAllowedTypes"] = setting.AttachmentAllowedTypes
- c.Data["AttachmentMaxSize"] = setting.AttachmentMaxSize
- c.Data["AttachmentMaxFiles"] = setting.AttachmentMaxFiles
+ c.Data["IsAttachmentEnabled"] = conf.AttachmentEnabled
+ c.Data["AttachmentAllowedTypes"] = conf.AttachmentAllowedTypes
+ c.Data["AttachmentMaxSize"] = conf.AttachmentMaxSize
+ c.Data["AttachmentMaxFiles"] = conf.AttachmentMaxFiles
}
func RetrieveRepoMilestonesAndAssignees(c *context.Context, repo *db.Repository) {
@@ -429,7 +429,7 @@ func NewIssuePost(c *context.Context, f form.NewIssue) {
}
var attachments []string
- if setting.AttachmentEnabled {
+ if conf.AttachmentEnabled {
attachments = f.Files
}
@@ -493,12 +493,12 @@ func uploadAttachment(c *context.Context, allowedTypes []string) {
}
func UploadIssueAttachment(c *context.Context) {
- if !setting.AttachmentEnabled {
+ if !conf.AttachmentEnabled {
c.NotFound()
return
}
- uploadAttachment(c, strings.Split(setting.AttachmentAllowedTypes, ","))
+ uploadAttachment(c, strings.Split(conf.AttachmentAllowedTypes, ","))
}
func viewIssue(c *context.Context, isPullList bool) {
@@ -669,7 +669,7 @@ func viewIssue(c *context.Context, isPullList bool) {
c.Data["NumParticipants"] = len(participants)
c.Data["Issue"] = issue
c.Data["IsIssueOwner"] = c.Repo.IsWriter() || (c.IsLogged && issue.IsPoster(c.User.ID))
- c.Data["SignInLink"] = setting.AppSubURL + "/user/login?redirect_to=" + c.Data["Link"].(string)
+ c.Data["SignInLink"] = conf.Server.Subpath + "/user/login?redirect_to=" + c.Data["Link"].(string)
c.HTML(200, ISSUE_VIEW)
}
@@ -845,7 +845,7 @@ func NewComment(c *context.Context, f form.CreateComment) {
}
var attachments []string
- if setting.AttachmentEnabled {
+ if conf.AttachmentEnabled {
attachments = f.Files
}
@@ -1098,7 +1098,7 @@ func Milestones(c *context.Context) {
} else {
total = int(closedCount)
}
- c.Data["Page"] = paginater.New(total, setting.UI.IssuePagingNum, page, 5)
+ c.Data["Page"] = paginater.New(total, conf.UI.IssuePagingNum, page, 5)
miles, err := db.GetMilestones(c.Repo.Repository.ID, page, isShowClosed)
if err != nil {
@@ -1130,7 +1130,7 @@ func NewMilestone(c *context.Context) {
c.Data["PageIsIssueList"] = true
c.Data["PageIsMilestones"] = true
c.Data["RequireDatetimepicker"] = true
- c.Data["DateLang"] = setting.DateLang(c.Locale.Language())
+ c.Data["DateLang"] = conf.DateLang(c.Locale.Language())
c.HTML(200, MILESTONE_NEW)
}
@@ -1139,7 +1139,7 @@ func NewMilestonePost(c *context.Context, f form.CreateMilestone) {
c.Data["PageIsIssueList"] = true
c.Data["PageIsMilestones"] = true
c.Data["RequireDatetimepicker"] = true
- c.Data["DateLang"] = setting.DateLang(c.Locale.Language())
+ c.Data["DateLang"] = conf.DateLang(c.Locale.Language())
if c.HasError() {
c.HTML(200, MILESTONE_NEW)
@@ -1175,7 +1175,7 @@ func EditMilestone(c *context.Context) {
c.Data["PageIsMilestones"] = true
c.Data["PageIsEditMilestone"] = true
c.Data["RequireDatetimepicker"] = true
- c.Data["DateLang"] = setting.DateLang(c.Locale.Language())
+ c.Data["DateLang"] = conf.DateLang(c.Locale.Language())
m, err := db.GetMilestoneByRepoID(c.Repo.Repository.ID, c.ParamsInt64(":id"))
if err != nil {
@@ -1199,7 +1199,7 @@ func EditMilestonePost(c *context.Context, f form.CreateMilestone) {
c.Data["PageIsMilestones"] = true
c.Data["PageIsEditMilestone"] = true
c.Data["RequireDatetimepicker"] = true
- c.Data["DateLang"] = setting.DateLang(c.Locale.Language())
+ c.Data["DateLang"] = conf.DateLang(c.Locale.Language())
if c.HasError() {
c.HTML(200, MILESTONE_NEW)
diff --git a/internal/route/repo/pull.go b/internal/route/repo/pull.go
index d2cb52cb..52e7281a 100644
--- a/internal/route/repo/pull.go
+++ b/internal/route/repo/pull.go
@@ -14,11 +14,11 @@ import (
"github.com/gogs/git-module"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/form"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -354,8 +354,8 @@ func ViewPullFiles(c *context.Context) {
}
diff, err := db.GetDiffRange(diffRepoPath,
- startCommitID, endCommitID, setting.Git.MaxGitDiffLines,
- setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles)
+ startCommitID, endCommitID, conf.Git.MaxGitDiffLines,
+ conf.Git.MaxGitDiffLineCharacters, conf.Git.MaxGitDiffFiles)
if err != nil {
c.ServerError("GetDiffRange", err)
return
@@ -383,9 +383,9 @@ func ViewPullFiles(c *context.Context) {
c.Data["Reponame"] = pull.HeadRepo.Name
headTarget := path.Join(pull.HeadUserName, pull.HeadRepo.Name)
- c.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", endCommitID)
- c.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", startCommitID)
- c.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(headTarget, "raw", endCommitID)
+ c.Data["SourcePath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "src", endCommitID)
+ c.Data["BeforeSourcePath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "src", startCommitID)
+ c.Data["RawPath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "raw", endCommitID)
}
c.Data["RequireHighlightJS"] = true
@@ -570,8 +570,8 @@ func PrepareCompareDiff(
}
diff, err := db.GetDiffRange(db.RepoPath(headUser.Name, headRepo.Name),
- prInfo.MergeBase, headCommitID, setting.Git.MaxGitDiffLines,
- setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles)
+ prInfo.MergeBase, headCommitID, conf.Git.MaxGitDiffLines,
+ conf.Git.MaxGitDiffLineCharacters, conf.Git.MaxGitDiffFiles)
if err != nil {
c.ServerError("GetDiffRange", err)
return false
@@ -593,9 +593,9 @@ func PrepareCompareDiff(
c.Data["IsImageFile"] = headCommit.IsImageFile
headTarget := path.Join(headUser.Name, repo.Name)
- c.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", headCommitID)
- c.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(headTarget, "src", prInfo.MergeBase)
- c.Data["RawPath"] = setting.AppSubURL + "/" + path.Join(headTarget, "raw", headCommitID)
+ c.Data["SourcePath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "src", headCommitID)
+ c.Data["BeforeSourcePath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "src", prInfo.MergeBase)
+ c.Data["RawPath"] = conf.Server.Subpath + "/" + path.Join(headTarget, "raw", headCommitID)
return false
}
@@ -677,7 +677,7 @@ func CompareAndPullRequestPost(c *context.Context, f form.NewIssue) {
return
}
- if setting.AttachmentEnabled {
+ if conf.AttachmentEnabled {
attachments = f.Files
}
diff --git a/internal/route/repo/release.go b/internal/route/repo/release.go
index d7c5aec3..282aa053 100644
--- a/internal/route/repo/release.go
+++ b/internal/route/repo/release.go
@@ -14,7 +14,7 @@ import (
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/form"
"gogs.io/gogs/internal/markup"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
const (
@@ -151,10 +151,10 @@ func Releases(c *context.Context) {
func renderReleaseAttachmentSettings(c *context.Context) {
c.Data["RequireDropzone"] = true
- c.Data["IsAttachmentEnabled"] = setting.Release.Attachment.Enabled
- c.Data["AttachmentAllowedTypes"] = strings.Join(setting.Release.Attachment.AllowedTypes, ",")
- c.Data["AttachmentMaxSize"] = setting.Release.Attachment.MaxSize
- c.Data["AttachmentMaxFiles"] = setting.Release.Attachment.MaxFiles
+ c.Data["IsAttachmentEnabled"] = conf.Release.Attachment.Enabled
+ c.Data["AttachmentAllowedTypes"] = strings.Join(conf.Release.Attachment.AllowedTypes, ",")
+ c.Data["AttachmentMaxSize"] = conf.Release.Attachment.MaxSize
+ c.Data["AttachmentMaxFiles"] = conf.Release.Attachment.MaxFiles
}
func NewRelease(c *context.Context) {
@@ -203,7 +203,7 @@ func NewReleasePost(c *context.Context, f form.NewRelease) {
}
var attachments []string
- if setting.Release.Attachment.Enabled {
+ if conf.Release.Attachment.Enabled {
attachments = f.Files
}
@@ -295,7 +295,7 @@ func EditReleasePost(c *context.Context, f form.EditRelease) {
}
var attachments []string
- if setting.Release.Attachment.Enabled {
+ if conf.Release.Attachment.Enabled {
attachments = f.Files
}
@@ -312,11 +312,11 @@ func EditReleasePost(c *context.Context, f form.EditRelease) {
}
func UploadReleaseAttachment(c *context.Context) {
- if !setting.Release.Attachment.Enabled {
+ if !conf.Release.Attachment.Enabled {
c.NotFound()
return
}
- uploadAttachment(c, setting.Release.Attachment.AllowedTypes)
+ uploadAttachment(c, conf.Release.Attachment.AllowedTypes)
}
func DeleteRelease(c *context.Context) {
diff --git a/internal/route/repo/repo.go b/internal/route/repo/repo.go
index 7d906242..7f7c2bce 100644
--- a/internal/route/repo/repo.go
+++ b/internal/route/repo/repo.go
@@ -15,11 +15,11 @@ import (
"github.com/gogs/git-module"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/form"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -75,7 +75,7 @@ func Create(c *context.Context) {
c.Data["Readmes"] = db.Readmes
c.Data["readme"] = "Default"
c.Data["private"] = c.User.LastRepoVisibility
- c.Data["IsForcedPrivate"] = setting.Repository.ForcePrivate
+ c.Data["IsForcedPrivate"] = conf.Repository.ForcePrivate
ctxUser := checkContextUser(c, c.QueryInt64("org"))
if c.Written() {
@@ -128,12 +128,12 @@ func CreatePost(c *context.Context, f form.CreateRepo) {
Gitignores: f.Gitignores,
License: f.License,
Readme: f.Readme,
- IsPrivate: f.Private || setting.Repository.ForcePrivate,
+ IsPrivate: f.Private || conf.Repository.ForcePrivate,
AutoInit: f.AutoInit,
})
if err == nil {
log.Trace("Repository created [%d]: %s/%s", repo.ID, ctxUser.Name, repo.Name)
- c.Redirect(setting.AppSubURL + "/" + ctxUser.Name + "/" + repo.Name)
+ c.Redirect(conf.Server.Subpath + "/" + ctxUser.Name + "/" + repo.Name)
return
}
@@ -149,7 +149,7 @@ func CreatePost(c *context.Context, f form.CreateRepo) {
func Migrate(c *context.Context) {
c.Data["Title"] = c.Tr("new_migrate")
c.Data["private"] = c.User.LastRepoVisibility
- c.Data["IsForcedPrivate"] = setting.Repository.ForcePrivate
+ c.Data["IsForcedPrivate"] = conf.Repository.ForcePrivate
c.Data["mirror"] = c.Query("mirror") == "1"
ctxUser := checkContextUser(c, c.QueryInt64("org"))
@@ -199,13 +199,13 @@ func MigratePost(c *context.Context, f form.MigrateRepo) {
repo, err := db.MigrateRepository(c.User, ctxUser, db.MigrateRepoOptions{
Name: f.RepoName,
Description: f.Description,
- IsPrivate: f.Private || setting.Repository.ForcePrivate,
+ IsPrivate: f.Private || conf.Repository.ForcePrivate,
IsMirror: f.Mirror,
RemoteAddr: remoteAddr,
})
if err == nil {
log.Trace("Repository migrated [%d]: %s/%s", repo.ID, ctxUser.Name, f.RepoName)
- c.Redirect(setting.AppSubURL + "/" + ctxUser.Name + "/" + f.RepoName)
+ c.Redirect(conf.Server.Subpath + "/" + ctxUser.Name + "/" + f.RepoName)
return
}
diff --git a/internal/route/repo/setting.go b/internal/route/repo/setting.go
index f3f2432b..d3cc46bc 100644
--- a/internal/route/repo/setting.go
+++ b/internal/route/repo/setting.go
@@ -14,12 +14,12 @@ import (
"github.com/unknwon/com"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/form"
"gogs.io/gogs/internal/mailer"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -196,7 +196,7 @@ func SettingsPost(c *context.Context, f form.RepoSetting) {
}
log.Trace("Repository converted from mirror to regular: %s/%s", c.Repo.Owner.Name, repo.Name)
c.Flash.Success(c.Tr("repo.settings.convert_succeed"))
- c.Redirect(setting.AppSubURL + "/" + c.Repo.Owner.Name + "/" + repo.Name)
+ c.Redirect(conf.Server.Subpath + "/" + c.Repo.Owner.Name + "/" + repo.Name)
case "transfer":
if !c.Repo.IsOwner() {
@@ -235,7 +235,7 @@ func SettingsPost(c *context.Context, f form.RepoSetting) {
}
log.Trace("Repository transfered: %s/%s -> %s", c.Repo.Owner.Name, repo.Name, newOwner)
c.Flash.Success(c.Tr("repo.settings.transfer_succeed"))
- c.Redirect(setting.AppSubURL + "/" + newOwner + "/" + repo.Name)
+ c.Redirect(conf.Server.Subpath + "/" + newOwner + "/" + repo.Name)
case "delete":
if !c.Repo.IsOwner() {
@@ -371,7 +371,7 @@ func SettingsCollaboration(c *context.Context) {
func SettingsCollaborationPost(c *context.Context) {
name := strings.ToLower(c.Query("collaborator"))
if len(name) == 0 || c.Repo.Owner.LowerName == name {
- c.Redirect(setting.AppSubURL + c.Req.URL.Path)
+ c.Redirect(conf.Server.Subpath + c.Req.URL.Path)
return
}
@@ -379,7 +379,7 @@ func SettingsCollaborationPost(c *context.Context) {
if err != nil {
if errors.IsUserNotExist(err) {
c.Flash.Error(c.Tr("form.user_not_exist"))
- c.Redirect(setting.AppSubURL + c.Req.URL.Path)
+ c.Redirect(conf.Server.Subpath + c.Req.URL.Path)
} else {
c.Handle(500, "GetUserByName", err)
}
@@ -389,7 +389,7 @@ func SettingsCollaborationPost(c *context.Context) {
// Organization is not allowed to be added as a collaborator
if u.IsOrganization() {
c.Flash.Error(c.Tr("repo.settings.org_not_allowed_to_be_collaborator"))
- c.Redirect(setting.AppSubURL + c.Req.URL.Path)
+ c.Redirect(conf.Server.Subpath + c.Req.URL.Path)
return
}
@@ -398,12 +398,12 @@ func SettingsCollaborationPost(c *context.Context) {
return
}
- if setting.Service.EnableNotifyMail {
+ if conf.Service.EnableNotifyMail {
mailer.SendCollaboratorMail(db.NewMailerUser(u), db.NewMailerUser(c.User), db.NewMailerRepo(c.Repo.Repository))
}
c.Flash.Success(c.Tr("repo.settings.add_collaborator_success"))
- c.Redirect(setting.AppSubURL + c.Req.URL.Path)
+ c.Redirect(conf.Server.Subpath + c.Req.URL.Path)
}
func ChangeCollaborationAccessMode(c *context.Context) {
diff --git a/internal/route/repo/view.go b/internal/route/repo/view.go
index b03a2cc3..f493f190 100644
--- a/internal/route/repo/view.go
+++ b/internal/route/repo/view.go
@@ -20,7 +20,7 @@ import (
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/markup"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/template"
"gogs.io/gogs/internal/template/highlight"
"gogs.io/gogs/internal/tool"
@@ -47,7 +47,7 @@ func renderDirectory(c *context.Context, treeLink string) {
}
entries.Sort()
- c.Data["Files"], err = entries.GetCommitsInfoWithCustomConcurrency(c.Repo.Commit, c.Repo.TreePath, setting.Repository.CommitsFetchConcurrency)
+ c.Data["Files"], err = entries.GetCommitsInfoWithCustomConcurrency(c.Repo.Commit, c.Repo.TreePath, conf.Repository.CommitsFetchConcurrency)
if err != nil {
c.ServerError("GetCommitsInfoWithCustomConcurrency", err)
return
@@ -118,7 +118,7 @@ func renderDirectory(c *context.Context, treeLink string) {
if c.Repo.CanEnableEditor() {
c.Data["CanAddFile"] = true
- c.Data["CanUploadFile"] = setting.Repository.Upload.Enabled
+ c.Data["CanUploadFile"] = conf.Repository.Upload.Enabled
}
}
@@ -152,7 +152,7 @@ func renderFile(c *context.Context, entry *git.TreeEntry, treeLink, rawLink stri
canEnableEditor := c.Repo.CanEnableEditor()
switch {
case isTextFile:
- if blob.Size() >= setting.UI.MaxDisplayFileSize {
+ if blob.Size() >= conf.UI.MaxDisplayFileSize {
c.Data["IsFileTooLarge"] = true
break
}
diff --git a/internal/route/repo/webhook.go b/internal/route/repo/webhook.go
index 2983cbda..8931a056 100644
--- a/internal/route/repo/webhook.go
+++ b/internal/route/repo/webhook.go
@@ -18,7 +18,7 @@ import (
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/form"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
const (
@@ -32,7 +32,7 @@ func Webhooks(c *context.Context) {
c.Data["PageIsSettingsHooks"] = true
c.Data["BaseLink"] = c.Repo.RepoLink
c.Data["Description"] = c.Tr("repo.settings.hooks_desc", "https://github.com/gogs/docs-api/blob/master/Repositories/Webhooks.md")
- c.Data["Types"] = setting.Webhook.Types
+ c.Data["Types"] = conf.Webhook.Types
ws, err := db.GetWebhooksByRepoID(c.Repo.Repository.ID)
if err != nil {
@@ -76,7 +76,7 @@ func getOrgRepoCtx(c *context.Context) (*OrgRepoCtx, error) {
func checkHookType(c *context.Context) string {
hookType := strings.ToLower(c.Params(":type"))
- if !com.IsSliceContainsStr(setting.Webhook.Types, hookType) {
+ if !com.IsSliceContainsStr(conf.Webhook.Types, hookType) {
c.Handle(404, "checkHookType", nil)
return ""
}
diff --git a/internal/route/user/auth.go b/internal/route/user/auth.go
index d2fcee83..595a885d 100644
--- a/internal/route/user/auth.go
+++ b/internal/route/user/auth.go
@@ -11,12 +11,12 @@ import (
"github.com/go-macaron/captcha"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/form"
"gogs.io/gogs/internal/mailer"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -36,7 +36,7 @@ func AutoLogin(c *context.Context) (bool, error) {
return false, nil
}
- uname := c.GetCookie(setting.CookieUserName)
+ uname := c.GetCookie(conf.CookieUserName)
if len(uname) == 0 {
return false, nil
}
@@ -45,9 +45,9 @@ func AutoLogin(c *context.Context) (bool, error) {
defer func() {
if !isSucceed {
log.Trace("auto-login cookie cleared: %s", uname)
- c.SetCookie(setting.CookieUserName, "", -1, setting.AppSubURL)
- c.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubURL)
- c.SetCookie(setting.LoginStatusCookieName, "", -1, setting.AppSubURL)
+ c.SetCookie(conf.CookieUserName, "", -1, conf.Server.Subpath)
+ c.SetCookie(conf.CookieRememberName, "", -1, conf.Server.Subpath)
+ c.SetCookie(conf.LoginStatusCookieName, "", -1, conf.Server.Subpath)
}
}()
@@ -59,16 +59,16 @@ func AutoLogin(c *context.Context) (bool, error) {
return false, nil
}
- if val, ok := c.GetSuperSecureCookie(u.Rands+u.Passwd, setting.CookieRememberName); !ok || val != u.Name {
+ if val, ok := c.GetSuperSecureCookie(u.Rands+u.Passwd, conf.CookieRememberName); !ok || val != u.Name {
return false, nil
}
isSucceed = true
c.Session.Set("uid", u.ID)
c.Session.Set("uname", u.Name)
- c.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubURL)
- if setting.EnableLoginStatusCookie {
- c.SetCookie(setting.LoginStatusCookieName, "true", 0, setting.AppSubURL)
+ c.SetCookie(conf.CSRFCookieName, "", -1, conf.Server.Subpath)
+ if conf.EnableLoginStatusCookie {
+ c.SetCookie(conf.LoginStatusCookieName, "true", 0, conf.Server.Subpath)
}
return true, nil
}
@@ -85,7 +85,7 @@ func Login(c *context.Context) {
redirectTo := c.Query("redirect_to")
if len(redirectTo) > 0 {
- c.SetCookie("redirect_to", redirectTo, 0, setting.AppSubURL)
+ c.SetCookie("redirect_to", redirectTo, 0, conf.Server.Subpath)
} else {
redirectTo, _ = url.QueryUnescape(c.GetCookie("redirect_to"))
}
@@ -96,7 +96,7 @@ func Login(c *context.Context) {
} else {
c.SubURLRedirect("/")
}
- c.SetCookie("redirect_to", "", -1, setting.AppSubURL)
+ c.SetCookie("redirect_to", "", -1, conf.Server.Subpath)
return
}
@@ -119,9 +119,9 @@ func Login(c *context.Context) {
func afterLogin(c *context.Context, u *db.User, remember bool) {
if remember {
- days := 86400 * setting.LoginRememberDays
- c.SetCookie(setting.CookieUserName, u.Name, days, setting.AppSubURL, "", setting.CookieSecure, true)
- c.SetSuperSecureCookie(u.Rands+u.Passwd, setting.CookieRememberName, u.Name, days, setting.AppSubURL, "", setting.CookieSecure, true)
+ days := 86400 * conf.LoginRememberDays
+ c.SetCookie(conf.CookieUserName, u.Name, days, conf.Server.Subpath, "", conf.CookieSecure, true)
+ c.SetSuperSecureCookie(u.Rands+u.Passwd, conf.CookieRememberName, u.Name, days, conf.Server.Subpath, "", conf.CookieSecure, true)
}
c.Session.Set("uid", u.ID)
@@ -130,13 +130,13 @@ func afterLogin(c *context.Context, u *db.User, remember bool) {
c.Session.Delete("twoFactorUserID")
// Clear whatever CSRF has right now, force to generate a new one
- c.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubURL)
- if setting.EnableLoginStatusCookie {
- c.SetCookie(setting.LoginStatusCookieName, "true", 0, setting.AppSubURL)
+ c.SetCookie(conf.CSRFCookieName, "", -1, conf.Server.Subpath)
+ if conf.EnableLoginStatusCookie {
+ c.SetCookie(conf.LoginStatusCookieName, "true", 0, conf.Server.Subpath)
}
redirectTo, _ := url.QueryUnescape(c.GetCookie("redirect_to"))
- c.SetCookie("redirect_to", "", -1, setting.AppSubURL)
+ c.SetCookie("redirect_to", "", -1, conf.Server.Subpath)
if tool.IsSameSiteURLPath(redirectTo) {
c.Redirect(redirectTo)
return
@@ -283,18 +283,18 @@ func LoginTwoFactorRecoveryCodePost(c *context.Context) {
func SignOut(c *context.Context) {
c.Session.Flush()
c.Session.Destory(c.Context)
- c.SetCookie(setting.CookieUserName, "", -1, setting.AppSubURL)
- c.SetCookie(setting.CookieRememberName, "", -1, setting.AppSubURL)
- c.SetCookie(setting.CSRFCookieName, "", -1, setting.AppSubURL)
+ c.SetCookie(conf.CookieUserName, "", -1, conf.Server.Subpath)
+ c.SetCookie(conf.CookieRememberName, "", -1, conf.Server.Subpath)
+ c.SetCookie(conf.CSRFCookieName, "", -1, conf.Server.Subpath)
c.SubURLRedirect("/")
}
func SignUp(c *context.Context) {
c.Title("sign_up")
- c.Data["EnableCaptcha"] = setting.Service.EnableCaptcha
+ c.Data["EnableCaptcha"] = conf.Service.EnableCaptcha
- if setting.Service.DisableRegistration {
+ if conf.Service.DisableRegistration {
c.Data["DisableRegistration"] = true
c.Success(SIGNUP)
return
@@ -306,9 +306,9 @@ func SignUp(c *context.Context) {
func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) {
c.Title("sign_up")
- c.Data["EnableCaptcha"] = setting.Service.EnableCaptcha
+ c.Data["EnableCaptcha"] = conf.Service.EnableCaptcha
- if setting.Service.DisableRegistration {
+ if conf.Service.DisableRegistration {
c.Status(403)
return
}
@@ -318,7 +318,7 @@ func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) {
return
}
- if setting.Service.EnableCaptcha && !cpt.VerifyReq(c.Req) {
+ if conf.Service.EnableCaptcha && !cpt.VerifyReq(c.Req) {
c.FormErr("Captcha")
c.RenderWithErr(c.Tr("form.captcha_incorrect"), SIGNUP, &f)
return
@@ -334,7 +334,7 @@ func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) {
Name: f.UserName,
Email: f.Email,
Passwd: f.Password,
- IsActive: !setting.Service.RegisterEmailConfirm,
+ IsActive: !conf.Service.RegisterEmailConfirm,
}
if err := db.CreateUser(u); err != nil {
switch {
@@ -368,11 +368,11 @@ func SignUpPost(c *context.Context, cpt *captcha.Captcha, f form.Register) {
}
// Send confirmation email, no need for social account.
- if setting.Service.RegisterEmailConfirm && u.ID > 1 {
+ if conf.Service.RegisterEmailConfirm && u.ID > 1 {
mailer.SendActivateAccountMail(c.Context, db.NewMailerUser(u))
c.Data["IsSendRegisterMail"] = true
c.Data["Email"] = u.Email
- c.Data["Hours"] = setting.Service.ActiveCodeLives / 60
+ c.Data["Hours"] = conf.Service.ActiveCodeLives / 60
c.Success(ACTIVATE)
if err := c.Cache.Put(u.MailResendCacheKey(), 1, 180); err != nil {
@@ -393,11 +393,11 @@ func Activate(c *context.Context) {
return
}
// Resend confirmation email.
- if setting.Service.RegisterEmailConfirm {
+ if conf.Service.RegisterEmailConfirm {
if c.Cache.IsExist(c.User.MailResendCacheKey()) {
c.Data["ResendLimited"] = true
} else {
- c.Data["Hours"] = setting.Service.ActiveCodeLives / 60
+ c.Data["Hours"] = conf.Service.ActiveCodeLives / 60
mailer.SendActivateAccountMail(c.Context, db.NewMailerUser(c.User))
if err := c.Cache.Put(c.User.MailResendCacheKey(), 1, 180); err != nil {
@@ -457,7 +457,7 @@ func ActivateEmail(c *context.Context) {
func ForgotPasswd(c *context.Context) {
c.Title("auth.forgot_password")
- if setting.MailService == nil {
+ if conf.MailService == nil {
c.Data["IsResetDisable"] = true
c.Success(FORGOT_PASSWORD)
return
@@ -470,7 +470,7 @@ func ForgotPasswd(c *context.Context) {
func ForgotPasswdPost(c *context.Context) {
c.Title("auth.forgot_password")
- if setting.MailService == nil {
+ if conf.MailService == nil {
c.Status(403)
return
}
@@ -482,7 +482,7 @@ func ForgotPasswdPost(c *context.Context) {
u, err := db.GetUserByEmail(email)
if err != nil {
if errors.IsUserNotExist(err) {
- c.Data["Hours"] = setting.Service.ActiveCodeLives / 60
+ c.Data["Hours"] = conf.Service.ActiveCodeLives / 60
c.Data["IsResetSent"] = true
c.Success(FORGOT_PASSWORD)
return
@@ -509,7 +509,7 @@ func ForgotPasswdPost(c *context.Context) {
log.Error("Failed to put cache key 'mail resend': %v", err)
}
- c.Data["Hours"] = setting.Service.ActiveCodeLives / 60
+ c.Data["Hours"] = conf.Service.ActiveCodeLives / 60
c.Data["IsResetSent"] = true
c.Success(FORGOT_PASSWORD)
}
diff --git a/internal/route/user/home.go b/internal/route/user/home.go
index c411fae0..d2d23fba 100644
--- a/internal/route/user/home.go
+++ b/internal/route/user/home.go
@@ -11,10 +11,10 @@ import (
"github.com/unknwon/com"
"github.com/unknwon/paginater"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
- "gogs.io/gogs/internal/setting"
)
const (
@@ -110,7 +110,7 @@ func Dashboard(c *context.Context) {
// Only user can have collaborative repositories.
if !ctxUser.IsOrganization() {
- collaborateRepos, err := c.User.GetAccessibleRepositories(setting.UI.User.RepoPagingNum)
+ collaborateRepos, err := c.User.GetAccessibleRepositories(conf.UI.User.RepoPagingNum)
if err != nil {
c.Handle(500, "GetAccessibleRepositories", err)
return
@@ -125,7 +125,7 @@ func Dashboard(c *context.Context) {
var repos, mirrors []*db.Repository
var repoCount int64
if ctxUser.IsOrganization() {
- repos, repoCount, err = ctxUser.GetUserRepositories(c.User.ID, 1, setting.UI.User.RepoPagingNum)
+ repos, repoCount, err = ctxUser.GetUserRepositories(c.User.ID, 1, conf.UI.User.RepoPagingNum)
if err != nil {
c.Handle(500, "GetUserRepositories", err)
return
@@ -137,7 +137,7 @@ func Dashboard(c *context.Context) {
return
}
} else {
- if err = ctxUser.GetRepositories(1, setting.UI.User.RepoPagingNum); err != nil {
+ if err = ctxUser.GetRepositories(1, conf.UI.User.RepoPagingNum); err != nil {
c.Handle(500, "GetRepositories", err)
return
}
@@ -152,7 +152,7 @@ func Dashboard(c *context.Context) {
}
c.Data["Repos"] = repos
c.Data["RepoCount"] = repoCount
- c.Data["MaxShowRepoNum"] = setting.UI.User.RepoPagingNum
+ c.Data["MaxShowRepoNum"] = conf.UI.User.RepoPagingNum
if err := db.MirrorRepositoryList(mirrors).LoadAttributes(); err != nil {
c.Handle(500, "MirrorRepositoryList.LoadAttributes", err)
@@ -328,7 +328,7 @@ func Issues(c *context.Context) {
c.Data["Issues"] = issues
c.Data["Repos"] = showRepos
- c.Data["Page"] = paginater.New(total, setting.UI.IssuePagingNum, page, 5)
+ c.Data["Page"] = paginater.New(total, conf.UI.IssuePagingNum, page, 5)
c.Data["IssueStats"] = issueStats
c.Data["ViewType"] = string(filterMode)
c.Data["SortType"] = sortType
@@ -380,7 +380,7 @@ func showOrgProfile(c *context.Context) {
err error
)
if c.IsLogged && !c.User.IsAdmin {
- repos, count, err = org.GetUserRepositories(c.User.ID, page, setting.UI.User.RepoPagingNum)
+ repos, count, err = org.GetUserRepositories(c.User.ID, page, conf.UI.User.RepoPagingNum)
if err != nil {
c.Handle(500, "GetUserRepositories", err)
return
@@ -392,7 +392,7 @@ func showOrgProfile(c *context.Context) {
UserID: org.ID,
Private: showPrivate,
Page: page,
- PageSize: setting.UI.User.RepoPagingNum,
+ PageSize: conf.UI.User.RepoPagingNum,
})
if err != nil {
c.Handle(500, "GetRepositories", err)
@@ -401,7 +401,7 @@ func showOrgProfile(c *context.Context) {
c.Data["Repos"] = repos
count = db.CountUserRepositories(org.ID, showPrivate)
}
- c.Data["Page"] = paginater.New(int(count), setting.UI.User.RepoPagingNum, page, 5)
+ c.Data["Page"] = paginater.New(int(count), conf.UI.User.RepoPagingNum, page, 5)
if err := org.GetMembers(); err != nil {
c.Handle(500, "GetMembers", err)
@@ -420,5 +420,5 @@ func Email2User(c *context.Context) {
c.NotFoundOrServerError("GetUserByEmail", errors.IsUserNotExist, err)
return
}
- c.Redirect(setting.AppSubURL + "/user/" + u.Name)
+ c.Redirect(conf.Server.Subpath + "/user/" + u.Name)
}
diff --git a/internal/route/user/profile.go b/internal/route/user/profile.go
index 39d36ad0..d18b35f8 100644
--- a/internal/route/user/profile.go
+++ b/internal/route/user/profile.go
@@ -13,7 +13,7 @@ import (
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/tool"
)
@@ -70,7 +70,7 @@ func Profile(c *context.Context, puser *context.ParamsUser) {
UserID: puser.ID,
Private: showPrivate,
Page: page,
- PageSize: setting.UI.User.RepoPagingNum,
+ PageSize: conf.UI.User.RepoPagingNum,
})
if err != nil {
c.ServerError("GetRepositories", err)
@@ -78,7 +78,7 @@ func Profile(c *context.Context, puser *context.ParamsUser) {
}
count := db.CountUserRepositories(puser.ID, showPrivate)
- c.Data["Page"] = paginater.New(int(count), setting.UI.User.RepoPagingNum, page, 5)
+ c.Data["Page"] = paginater.New(int(count), conf.UI.User.RepoPagingNum, page, 5)
}
c.Success(PROFILE)
diff --git a/internal/route/user/setting.go b/internal/route/user/setting.go
index ef0bf5cc..1ec2db95 100644
--- a/internal/route/user/setting.go
+++ b/internal/route/user/setting.go
@@ -18,12 +18,12 @@ import (
"github.com/unknwon/com"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/context"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/db/errors"
"gogs.io/gogs/internal/form"
"gogs.io/gogs/internal/mailer"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -262,7 +262,7 @@ func SettingsEmailPost(c *context.Context, f form.AddEmail) {
email := &db.EmailAddress{
UID: c.User.ID,
Email: f.Email,
- IsActivated: !setting.Service.RegisterEmailConfirm,
+ IsActivated: !conf.Service.RegisterEmailConfirm,
}
if err := db.AddEmailAddress(email); err != nil {
if db.IsErrEmailAlreadyUsed(err) {
@@ -274,13 +274,13 @@ func SettingsEmailPost(c *context.Context, f form.AddEmail) {
}
// Send confirmation email
- if setting.Service.RegisterEmailConfirm {
+ if conf.Service.RegisterEmailConfirm {
mailer.SendActivateEmailMail(c.Context, db.NewMailerUser(c.User), email.Email)
if err := c.Cache.Put("MailResendLimit_"+c.User.LowerName, c.User.LowerName, 180); err != nil {
log.Error("Set cache 'MailResendLimit' failed: %v", err)
}
- c.Flash.Info(c.Tr("settings.add_email_confirmation_sent", email.Email, setting.Service.ActiveCodeLives/60))
+ c.Flash.Info(c.Tr("settings.add_email_confirmation_sent", email.Email, conf.Service.ActiveCodeLives/60))
} else {
c.Flash.Success(c.Tr("settings.add_email_success"))
}
@@ -299,7 +299,7 @@ func DeleteEmail(c *context.Context) {
c.Flash.Success(c.Tr("settings.email_deletion_success"))
c.JSONSuccess(map[string]interface{}{
- "redirect": setting.AppSubURL + "/user/settings/email",
+ "redirect": conf.Server.Subpath + "/user/settings/email",
})
}
@@ -371,7 +371,7 @@ func DeleteSSHKey(c *context.Context) {
}
c.JSONSuccess(map[string]interface{}{
- "redirect": setting.AppSubURL + "/user/settings/ssh",
+ "redirect": conf.Server.Subpath + "/user/settings/ssh",
})
}
@@ -406,7 +406,7 @@ func SettingsTwoFactorEnable(c *context.Context) {
}
if key == nil {
key, err = totp.Generate(totp.GenerateOpts{
- Issuer: setting.AppName,
+ Issuer: conf.App.BrandName,
AccountName: c.User.Email,
})
if err != nil {
@@ -506,7 +506,7 @@ func SettingsTwoFactorDisable(c *context.Context) {
c.Flash.Success(c.Tr("settings.two_factor_disable_success"))
c.JSONSuccess(map[string]interface{}{
- "redirect": setting.AppSubURL + "/user/settings/security",
+ "redirect": conf.Server.Subpath + "/user/settings/security",
})
}
@@ -542,7 +542,7 @@ func SettingsLeaveRepo(c *context.Context) {
c.Flash.Success(c.Tr("settings.repos.leave_success", repo.FullName()))
c.JSONSuccess(map[string]interface{}{
- "redirect": setting.AppSubURL + "/user/settings/repositories",
+ "redirect": conf.Server.Subpath + "/user/settings/repositories",
})
}
@@ -571,7 +571,7 @@ func SettingsLeaveOrganization(c *context.Context) {
}
c.JSONSuccess(map[string]interface{}{
- "redirect": setting.AppSubURL + "/user/settings/organizations",
+ "redirect": conf.Server.Subpath + "/user/settings/organizations",
})
}
@@ -632,7 +632,7 @@ func SettingsDeleteApplication(c *context.Context) {
}
c.JSONSuccess(map[string]interface{}{
- "redirect": setting.AppSubURL + "/user/settings/applications",
+ "redirect": conf.Server.Subpath + "/user/settings/applications",
})
}
@@ -654,16 +654,16 @@ func SettingsDelete(c *context.Context) {
switch {
case db.IsErrUserOwnRepos(err):
c.Flash.Error(c.Tr("form.still_own_repo"))
- c.Redirect(setting.AppSubURL + "/user/settings/delete")
+ c.Redirect(conf.Server.Subpath + "/user/settings/delete")
case db.IsErrUserHasOrgs(err):
c.Flash.Error(c.Tr("form.still_has_org"))
- c.Redirect(setting.AppSubURL + "/user/settings/delete")
+ c.Redirect(conf.Server.Subpath + "/user/settings/delete")
default:
c.ServerError("DeleteUser", err)
}
} else {
log.Trace("Account deleted: %s", c.User.Name)
- c.Redirect(setting.AppSubURL + "/")
+ c.Redirect(conf.Server.Subpath + "/")
}
return
}
diff --git a/internal/setting/computed.go b/internal/setting/computed.go
deleted file mode 100644
index 7bdee053..00000000
--- a/internal/setting/computed.go
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2020 The Gogs Authors. All rights reserved.
-// Use of this source code is governed by a MIT-style
-// license that can be found in the LICENSE file.
-
-package setting
-
-var supportWindowsService bool
-
-// SupportWindowsService returns true if running as Windows Service is supported.
-func SupportWindowsService() bool {
- return supportWindowsService
-}
diff --git a/internal/ssh/ssh.go b/internal/ssh/ssh.go
index d5fd0173..50f79fef 100644
--- a/internal/ssh/ssh.go
+++ b/internal/ssh/ssh.go
@@ -18,8 +18,8 @@ import (
"golang.org/x/crypto/ssh"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db"
- "gogs.io/gogs/internal/setting"
)
func cleanCommand(cmd string) string {
@@ -64,9 +64,9 @@ func handleServerConn(keyID string, chans <-chan ssh.NewChannel) {
cmdName := strings.TrimLeft(payload, "'()")
log.Trace("SSH: Payload: %v", cmdName)
- args := []string{"serv", "key-" + keyID, "--config=" + setting.CustomConf}
+ args := []string{"serv", "key-" + keyID, "--config=" + conf.CustomConf}
log.Trace("SSH: Arguments: %v", args)
- cmd := exec.Command(setting.AppPath, args...)
+ cmd := exec.Command(conf.AppPath(), args...)
cmd.Env = append(os.Environ(), "SSH_ORIGINAL_COMMAND="+cmdName)
stdout, err := cmd.StdoutPipe()
@@ -163,10 +163,10 @@ func Listen(host string, port int, ciphers []string) {
},
}
- keyPath := filepath.Join(setting.AppDataPath, "ssh/gogs.rsa")
+ keyPath := filepath.Join(conf.Server.AppDataPath, "ssh", "gogs.rsa")
if !com.IsExist(keyPath) {
os.MkdirAll(filepath.Dir(keyPath), os.ModePerm)
- _, stderr, err := com.ExecCmd(setting.SSH.KeygenPath, "-f", keyPath, "-t", "rsa", "-m", "PEM", "-N", "")
+ _, stderr, err := com.ExecCmd(conf.SSH.KeygenPath, "-f", keyPath, "-t", "rsa", "-m", "PEM", "-N", "")
if err != nil {
panic(fmt.Sprintf("Failed to generate private key: %v - %s", err, stderr))
}
diff --git a/internal/template/highlight/highlight.go b/internal/template/highlight/highlight.go
index bf87ec32..e7b3fe5d 100644
--- a/internal/template/highlight/highlight.go
+++ b/internal/template/highlight/highlight.go
@@ -8,7 +8,7 @@ import (
"path"
"strings"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
var (
@@ -72,7 +72,7 @@ var (
)
func NewContext() {
- keys := setting.Cfg.Section("highlight.mapping").Keys()
+ keys := conf.File.Section("highlight.mapping").Keys()
for i := range keys {
highlightMapping[keys[i].Name()] = keys[i].Value()
}
diff --git a/internal/template/template.go b/internal/template/template.go
index 2c169a4a..21c2c549 100644
--- a/internal/template/template.go
+++ b/internal/template/template.go
@@ -21,9 +21,9 @@ import (
"golang.org/x/text/transform"
log "unknwon.dev/clog/v2"
+ "gogs.io/gogs/internal/conf"
"gogs.io/gogs/internal/db"
"gogs.io/gogs/internal/markup"
- "gogs.io/gogs/internal/setting"
"gogs.io/gogs/internal/tool"
)
@@ -40,28 +40,28 @@ func FuncMap() []template.FuncMap {
return time.Now().Year()
},
"UseHTTPS": func() bool {
- return strings.HasPrefix(setting.AppURL, "https")
+ return conf.Server.URL.Scheme == "https"
},
"AppName": func() string {
- return setting.AppName
+ return conf.App.BrandName
},
"AppSubURL": func() string {
- return setting.AppSubURL
+ return conf.Server.Subpath
},
"AppURL": func() string {
- return setting.AppURL
+ return conf.Server.ExternalURL
},
"AppVer": func() string {
- return setting.AppVersion
+ return conf.App.Version
},
"AppDomain": func() string {
- return setting.Domain
+ return conf.Server.Domain
},
"DisableGravatar": func() bool {
- return setting.DisableGravatar
+ return conf.DisableGravatar
},
"ShowFooterTemplateLoadTime": func() bool {
- return setting.ShowFooterTemplateLoadTime
+ return conf.ShowFooterTemplateLoadTime
},
"LoadTimes": func(startTime time.Time) string {
return fmt.Sprint(time.Since(startTime).Nanoseconds()/1e6) + "ms"
@@ -111,7 +111,7 @@ func FuncMap() []template.FuncMap {
"EscapePound": EscapePound,
"RenderCommitMessage": RenderCommitMessage,
"ThemeColorMetaTag": func() string {
- return setting.UI.ThemeColorMetaTag
+ return conf.UI.ThemeColorMetaTag
},
"FilenameIsImage": func(filename string) bool {
mimeType := mime.TypeByExtension(filepath.Ext(filename))
diff --git a/internal/tool/tool.go b/internal/tool/tool.go
index 5f01cbb2..4bab87fe 100644
--- a/internal/tool/tool.go
+++ b/internal/tool/tool.go
@@ -24,7 +24,7 @@ import (
"github.com/gogs/chardet"
- "gogs.io/gogs/internal/setting"
+ "gogs.io/gogs/internal/conf"
)
// MD5Bytes encodes string to MD5 bytes.
@@ -62,9 +62,9 @@ func DetectEncoding(content []byte) (string, error) {
}
result, err := chardet.NewTextDetector().DetectBest(content)
- if result.Charset != "UTF-8" && len(setting.Repository.AnsiCharset) > 0 {
- log.Trace("Using default AnsiCharset: %s", setting.Repository.AnsiCharset)
- return setting.Repository.AnsiCharset, err
+ if result.Charset != "UTF-8" && len(conf.Repository.AnsiCharset) > 0 {
+ log.Trace("Using default AnsiCharset: %s", conf.Repository.AnsiCharset)
+ return conf.Repository.AnsiCharset, err
}
log.Trace("Detected encoding: %s", result.Charset)
@@ -170,7 +170,7 @@ func CreateTimeLimitCode(data string, minutes int, startInf interface{}) string
// create sha1 encode string
sh := sha1.New()
- sh.Write([]byte(data + setting.SecretKey + startStr + endStr + com.ToStr(minutes)))
+ _, _ = sh.Write([]byte(data + conf.SecretKey + startStr + endStr + com.ToStr(minutes)))
encoded := hex.EncodeToString(sh.Sum(nil))
code := fmt.Sprintf("%s%06d%s", startStr, minutes, encoded)
@@ -190,19 +190,19 @@ func HashEmail(email string) string {
// which includes app sub-url as prefix. However, it is possible
// to return full URL if user enables Gravatar-like service.
func AvatarLink(email string) (url string) {
- if setting.EnableFederatedAvatar && setting.LibravatarService != nil &&
+ if conf.EnableFederatedAvatar && conf.LibravatarService != nil &&
strings.Contains(email, "@") {
var err error
- url, err = setting.LibravatarService.FromEmail(email)
+ url, err = conf.LibravatarService.FromEmail(email)
if err != nil {
log.Warn("AvatarLink.LibravatarService.FromEmail [%s]: %v", email, err)
}
}
- if len(url) == 0 && !setting.DisableGravatar {
- url = setting.GravatarSource + HashEmail(email) + "?d=identicon"
+ if len(url) == 0 && !conf.DisableGravatar {
+ url = conf.GravatarSource + HashEmail(email) + "?d=identicon"
}
if len(url) == 0 {
- url = setting.AppSubURL + "/img/avatar_default.png"
+ url = conf.Server.Subpath + "/img/avatar_default.png"
}
return url
}
@@ -360,7 +360,7 @@ func RawTimeSince(t time.Time, lang string) string {
// TimeSince calculates the time interval and generate user-friendly string.
func TimeSince(t time.Time, lang string) template.HTML {
- return template.HTML(fmt.Sprintf(`<span class="time-since" title="%s">%s</span>`, t.Format(setting.TimeFormat), timeSince(t, lang)))
+ return template.HTML(fmt.Sprintf(`<span class="time-since" title="%s">%s</span>`, t.Format(conf.TimeFormat), timeSince(t, lang)))
}
// Subtract deals with subtraction of all types of number.