From f2ecfdc96a338815ffb2be898b3114031f0da48c Mon Sep 17 00:00:00 2001
From: Unknwon
Date: Thu, 12 Apr 2018 09:55:58 -0400
Subject: [PATCH] auth: support authentication source config file (#3142)
---
Makefile | 2 +-
conf/auth.d/ldap_bind_dn.conf.example | 29 ++
conf/auth.d/ldap_simple_auth.conf.example | 30 ++
conf/auth.d/pam.conf.example | 10 +
conf/auth.d/smtp.conf.example | 16 +
conf/locale/locale_en-US.ini | 4 +-
models/error.go | 13 -
models/errors/login_source.go | 27 ++
models/login_source.go | 343 +++++++++++++++++-----
pkg/auth/auth.go | 4 +-
pkg/auth/ldap/ldap.go | 17 +-
pkg/bindata/bindata.go | 4 +-
pkg/form/user.go | 7 +-
routes/admin/auths.go | 62 ++--
routes/api/v1/admin/user.go | 3 +-
routes/install.go | 1 +
routes/org/setting.go | 12 +-
routes/repo/http.go | 4 +-
routes/user/auth.go | 40 ++-
routes/user/setting.go | 4 +-
templates/admin/auth/edit.tmpl | 4 +-
templates/admin/auth/list.tmpl | 8 +-
templates/admin/auth/new.tmpl | 8 -
templates/user/auth/login.tmpl | 18 ++
24 files changed, 504 insertions(+), 166 deletions(-)
create mode 100644 conf/auth.d/ldap_bind_dn.conf.example
create mode 100644 conf/auth.d/ldap_simple_auth.conf.example
create mode 100644 conf/auth.d/pam.conf.example
create mode 100644 conf/auth.d/smtp.conf.example
diff --git a/Makefile b/Makefile
index 90c85d360..bc20ae5e5 100644
--- a/Makefile
+++ b/Makefile
@@ -56,7 +56,7 @@ release: build pack
bindata: pkg/bindata/bindata.go
pkg/bindata/bindata.go: $(DATA_FILES)
- go-bindata -o=$@ -ignore="\\.DS_Store|README.md|TRANSLATORS" -pkg=bindata conf/...
+ go-bindata -o=$@ -ignore="\\.DS_Store|README.md|TRANSLATORS|auth.d" -pkg=bindata conf/...
less: public/css/gogs.css
diff --git a/conf/auth.d/ldap_bind_dn.conf.example b/conf/auth.d/ldap_bind_dn.conf.example
new file mode 100644
index 000000000..d2400f070
--- /dev/null
+++ b/conf/auth.d/ldap_bind_dn.conf.example
@@ -0,0 +1,29 @@
+# This is an example of LDAP (BindDN) authentication
+#
+id = 101
+type = ldap_bind_dn
+name = LDAP BindDN
+is_activated = true
+
+[config]
+host = mydomain.com
+port = 636
+# 0 - Unencrypted, 1 - LDAPS, 2 - StartTLS
+security_protocol = 0
+skip_verify = false
+bind_dn =
+bind_password =
+user_base = ou=Users,dc=mydomain,dc=com
+attribute_username =
+attribute_name =
+attribute_surname =
+attribute_mail = mail
+attributes_in_bind = false
+filter = (&(objectClass=posixAccount)(cn=%s))
+admin_filter =
+group_enabled = false
+group_dn =
+group_filter =
+group_member_uid =
+user_uid =
+
diff --git a/conf/auth.d/ldap_simple_auth.conf.example b/conf/auth.d/ldap_simple_auth.conf.example
new file mode 100644
index 000000000..5e50a74c5
--- /dev/null
+++ b/conf/auth.d/ldap_simple_auth.conf.example
@@ -0,0 +1,30 @@
+# This is an example of LDAP (simple auth) authentication
+#
+id = 102
+type = ldap_simple_auth
+name = LDAP Simple Auth
+is_activated = true
+
+[config]
+host = mydomain.com
+port = 636
+# 0 - Unencrypted, 1 - LDAPS, 2 - StartTLS
+security_protocol = 0
+skip_verify = false
+bind_dn =
+bind_password =
+user_base =
+user_dn = cn=%s,ou=Users,dc=mydomain,dc=com
+attribute_username =
+attribute_name =
+attribute_surname =
+attribute_mail = mail
+attributes_in_bind = false
+filter = (&(objectClass=posixAccount)(cn=%s))
+admin_filter =
+group_enabled = false
+group_dn =
+group_filter =
+group_member_uid =
+user_uid =
+
diff --git a/conf/auth.d/pam.conf.example b/conf/auth.d/pam.conf.example
new file mode 100644
index 000000000..12f8d58f1
--- /dev/null
+++ b/conf/auth.d/pam.conf.example
@@ -0,0 +1,10 @@
+# This is an example of PAM authentication
+#
+id = 104
+type = pam
+name = System Auth
+is_activated = true
+
+[config]
+service_name = system-auth
+
diff --git a/conf/auth.d/smtp.conf.example b/conf/auth.d/smtp.conf.example
new file mode 100644
index 000000000..b8881daea
--- /dev/null
+++ b/conf/auth.d/smtp.conf.example
@@ -0,0 +1,16 @@
+# This is an example of SMTP authentication
+#
+id = 103
+type = smtp
+name = GMail
+is_activated = true
+
+[config]
+# Either "PLAIN" or "LOGIN"
+auth = PLAIN
+host = smtp.gmail.com
+port = 587
+allowed_domains =
+tls = true
+skip_verify = false
+
diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini
index 294284180..e2c791de4 100644
--- a/conf/locale/locale_en-US.ini
+++ b/conf/locale/locale_en-US.ini
@@ -151,6 +151,8 @@ register_hepler_msg = Already have an account? Sign in now!
social_register_hepler_msg = Already have an account? Bind now!
disable_register_prompt = Sorry, registration has been disabled. Please contact the site administrator.
disable_register_mail = Sorry, email services are disabled. Please contact the site administrator.
+auth_source = Authentication Source
+local = Local
remember_me = Remember Me
forgot_password= Forgot Password
forget_password = Forgot password?
@@ -229,6 +231,7 @@ org_name_been_taken = Organization name has already been taken.
team_name_been_taken = Team name has already been taken.
email_been_used = Email address has already been used.
username_password_incorrect = Username or password is not correct.
+auth_source_mismatch = The authentication source selected is not associated with the user.
enterred_invalid_repo_name = Please make sure that the repository name you entered is correct.
enterred_invalid_owner_name = Please make sure that the owner name you entered is correct.
enterred_invalid_password = Please make sure the that password you entered is correct.
@@ -1128,7 +1131,6 @@ auths.enable_tls = Enable TLS Encryption
auths.skip_tls_verify = Skip TLS Verify
auths.pam_service_name = PAM Service Name
auths.enable_auto_register = Enable Auto Registration
-auths.tips = Tips
auths.edit = Edit Authentication Setting
auths.activated = This authentication is activated
auths.new_success = New authentication '%s' has been added successfully.
diff --git a/models/error.go b/models/error.go
index 410a5a7e9..63e06f6e0 100644
--- a/models/error.go
+++ b/models/error.go
@@ -505,19 +505,6 @@ func (err ErrAttachmentNotExist) Error() string {
// |_______ \____/\___ /|__|___| / /_______ /\____/|____/ |__| \___ >___ >
// \/ /_____/ \/ \/ \/ \/
-type ErrLoginSourceNotExist struct {
- ID int64
-}
-
-func IsErrLoginSourceNotExist(err error) bool {
- _, ok := err.(ErrLoginSourceNotExist)
- return ok
-}
-
-func (err ErrLoginSourceNotExist) Error() string {
- return fmt.Sprintf("login source does not exist [id: %d]", err.ID)
-}
-
type ErrLoginSourceAlreadyExist struct {
Name string
}
diff --git a/models/errors/login_source.go b/models/errors/login_source.go
index db0cd1f9d..dd18664eb 100644
--- a/models/errors/login_source.go
+++ b/models/errors/login_source.go
@@ -6,6 +6,19 @@ package errors
import "fmt"
+type LoginSourceNotExist struct {
+ ID int64
+}
+
+func IsLoginSourceNotExist(err error) bool {
+ _, ok := err.(LoginSourceNotExist)
+ return ok
+}
+
+func (err LoginSourceNotExist) Error() string {
+ return fmt.Sprintf("login source does not exist [id: %d]", err.ID)
+}
+
type LoginSourceNotActivated struct {
SourceID int64
}
@@ -31,3 +44,17 @@ func IsInvalidLoginSourceType(err error) bool {
func (err InvalidLoginSourceType) Error() string {
return fmt.Sprintf("invalid login source type [type: %v]", err.Type)
}
+
+type LoginSourceMismatch struct {
+ Expect int64
+ Actual int64
+}
+
+func IsLoginSourceMismatch(err error) bool {
+ _, ok := err.(LoginSourceMismatch)
+ return ok
+}
+
+func (err LoginSourceMismatch) Error() string {
+ return fmt.Sprintf("login source mismatch [expect: %d, actual: %d]", err.Expect, err.Actual)
+}
diff --git a/models/login_source.go b/models/login_source.go
index 12db78648..3a1162ec2 100644
--- a/models/login_source.go
+++ b/models/login_source.go
@@ -10,7 +10,10 @@ import (
"fmt"
"net/smtp"
"net/textproto"
+ "os"
+ "path"
"strings"
+ "sync"
"time"
"github.com/Unknwon/com"
@@ -18,10 +21,12 @@ import (
"github.com/go-xorm/core"
"github.com/go-xorm/xorm"
log "gopkg.in/clog.v1"
+ "gopkg.in/ini.v1"
"github.com/gogits/gogs/models/errors"
"github.com/gogits/gogs/pkg/auth/ldap"
"github.com/gogits/gogs/pkg/auth/pam"
+ "github.com/gogits/gogs/pkg/setting"
)
type LoginType int
@@ -57,7 +62,7 @@ var (
)
type LDAPConfig struct {
- *ldap.Source
+ *ldap.Source `ini:"config"`
}
func (cfg *LDAPConfig) FromDB(bs []byte) error {
@@ -77,7 +82,7 @@ type SMTPConfig struct {
Host string
Port int
AllowedDomains string `xorm:"TEXT"`
- TLS bool
+ TLS bool `ini:"tls"`
SkipVerify bool
}
@@ -90,7 +95,7 @@ func (cfg *SMTPConfig) ToDB() ([]byte, error) {
}
type PAMConfig struct {
- ServiceName string // pam service (e.g. system-auth)
+ ServiceName string // PAM service (e.g. system-auth)
}
func (cfg *PAMConfig) FromDB(bs []byte) error {
@@ -101,6 +106,27 @@ func (cfg *PAMConfig) ToDB() ([]byte, error) {
return json.Marshal(cfg)
}
+// AuthSourceFile contains information of an authentication source file.
+type AuthSourceFile struct {
+ abspath string
+ file *ini.File
+}
+
+// SetGeneral sets new value to the given key in the general (default) section.
+func (f *AuthSourceFile) SetGeneral(name, value string) {
+ f.file.Section("").Key(name).SetValue(value)
+}
+
+// SetConfig sets new values to the "config" section.
+func (f *AuthSourceFile) SetConfig(cfg core.Conversion) error {
+ return f.file.Section("config").ReflectFrom(cfg)
+}
+
+// Save writes updates into file system.
+func (f *AuthSourceFile) Save() error {
+ return f.file.SaveTo(f.abspath)
+}
+
// LoginSource represents an external way for authorizing users.
type LoginSource struct {
ID int64
@@ -113,6 +139,8 @@ type LoginSource struct {
CreatedUnix int64
Updated time.Time `xorm:"-"`
UpdatedUnix int64
+
+ LocalFile *AuthSourceFile `xorm:"-"`
}
func (s *LoginSource) BeforeInsert() {
@@ -135,16 +163,16 @@ func Cell2Int64(val xorm.Cell) int64 {
return (*val).(int64)
}
-func (source *LoginSource) BeforeSet(colName string, val xorm.Cell) {
+func (s *LoginSource) BeforeSet(colName string, val xorm.Cell) {
switch colName {
case "type":
switch LoginType(Cell2Int64(val)) {
case LOGIN_LDAP, LOGIN_DLDAP:
- source.Cfg = new(LDAPConfig)
+ s.Cfg = new(LDAPConfig)
case LOGIN_SMTP:
- source.Cfg = new(SMTPConfig)
+ s.Cfg = new(SMTPConfig)
case LOGIN_PAM:
- source.Cfg = new(PAMConfig)
+ s.Cfg = new(PAMConfig)
default:
panic("unrecognized login source type: " + com.ToStr(*val))
}
@@ -160,65 +188,66 @@ func (s *LoginSource) AfterSet(colName string, _ xorm.Cell) {
}
}
-func (source *LoginSource) TypeName() string {
- return LoginNames[source.Type]
+func (s *LoginSource) TypeName() string {
+ return LoginNames[s.Type]
}
-func (source *LoginSource) IsLDAP() bool {
- return source.Type == LOGIN_LDAP
+func (s *LoginSource) IsLDAP() bool {
+ return s.Type == LOGIN_LDAP
}
-func (source *LoginSource) IsDLDAP() bool {
- return source.Type == LOGIN_DLDAP
+func (s *LoginSource) IsDLDAP() bool {
+ return s.Type == LOGIN_DLDAP
}
-func (source *LoginSource) IsSMTP() bool {
- return source.Type == LOGIN_SMTP
+func (s *LoginSource) IsSMTP() bool {
+ return s.Type == LOGIN_SMTP
}
-func (source *LoginSource) IsPAM() bool {
- return source.Type == LOGIN_PAM
+func (s *LoginSource) IsPAM() bool {
+ return s.Type == LOGIN_PAM
}
-func (source *LoginSource) HasTLS() bool {
- return ((source.IsLDAP() || source.IsDLDAP()) &&
- source.LDAP().SecurityProtocol > ldap.SECURITY_PROTOCOL_UNENCRYPTED) ||
- source.IsSMTP()
+func (s *LoginSource) HasTLS() bool {
+ return ((s.IsLDAP() || s.IsDLDAP()) &&
+ s.LDAP().SecurityProtocol > ldap.SECURITY_PROTOCOL_UNENCRYPTED) ||
+ s.IsSMTP()
}
-func (source *LoginSource) UseTLS() bool {
- switch source.Type {
+func (s *LoginSource) UseTLS() bool {
+ switch s.Type {
case LOGIN_LDAP, LOGIN_DLDAP:
- return source.LDAP().SecurityProtocol != ldap.SECURITY_PROTOCOL_UNENCRYPTED
+ return s.LDAP().SecurityProtocol != ldap.SECURITY_PROTOCOL_UNENCRYPTED
case LOGIN_SMTP:
- return source.SMTP().TLS
+ return s.SMTP().TLS
}
return false
}
-func (source *LoginSource) SkipVerify() bool {
- switch source.Type {
+func (s *LoginSource) SkipVerify() bool {
+ switch s.Type {
case LOGIN_LDAP, LOGIN_DLDAP:
- return source.LDAP().SkipVerify
+ return s.LDAP().SkipVerify
case LOGIN_SMTP:
- return source.SMTP().SkipVerify
+ return s.SMTP().SkipVerify
}
return false
}
-func (source *LoginSource) LDAP() *LDAPConfig {
- return source.Cfg.(*LDAPConfig)
+func (s *LoginSource) LDAP() *LDAPConfig {
+ return s.Cfg.(*LDAPConfig)
}
-func (source *LoginSource) SMTP() *SMTPConfig {
- return source.Cfg.(*SMTPConfig)
+func (s *LoginSource) SMTP() *SMTPConfig {
+ return s.Cfg.(*SMTPConfig)
}
-func (source *LoginSource) PAM() *PAMConfig {
- return source.Cfg.(*PAMConfig)
+func (s *LoginSource) PAM() *PAMConfig {
+ return s.Cfg.(*PAMConfig)
}
+
func CreateLoginSource(source *LoginSource) error {
has, err := x.Get(&LoginSource{Name: source.Name})
if err != nil {
@@ -231,9 +260,23 @@ func CreateLoginSource(source *LoginSource) error {
return err
}
+// LoginSources returns all login sources defined.
func LoginSources() ([]*LoginSource, error) {
- auths := make([]*LoginSource, 0, 5)
- return auths, x.Find(&auths)
+ sources := make([]*LoginSource, 0, 2)
+ if err := x.Find(&sources); err != nil {
+ return nil, err
+ }
+
+ return append(sources, localLoginSources.List()...), nil
+}
+
+// ActivatedLoginSources returns login sources that are currently activated.
+func ActivatedLoginSources() ([]*LoginSource, error) {
+ sources := make([]*LoginSource, 0, 2)
+ if err := x.Where("is_actived = ?", true).Find(&sources); err != nil {
+ return nil, fmt.Errorf("find activated login sources: %v", err)
+ }
+ return append(sources, localLoginSources.ActivatedList()...), nil
}
// GetLoginSourceByID returns login source by given ID.
@@ -243,14 +286,28 @@ func GetLoginSourceByID(id int64) (*LoginSource, error) {
if err != nil {
return nil, err
} else if !has {
- return nil, ErrLoginSourceNotExist{id}
+ return localLoginSources.GetLoginSourceByID(id)
}
return source, nil
}
-func UpdateSource(source *LoginSource) error {
- _, err := x.Id(source.ID).AllCols().Update(source)
- return err
+// UpdateLoginSource updates information of login source to database or local file.
+func UpdateLoginSource(source *LoginSource) error {
+ if source.LocalFile == nil {
+ _, err := x.Id(source.ID).AllCols().Update(source)
+ return err
+ }
+
+ source.LocalFile.SetGeneral("name", source.Name)
+ source.LocalFile.SetGeneral("is_activated", com.ToStr(source.IsActived))
+ if err := source.LocalFile.SetConfig(source.Cfg); err != nil {
+ return fmt.Errorf("LocalFile.SetConfig: %v", err)
+ } else if err = source.LocalFile.Save(); err != nil {
+ return fmt.Errorf("LocalFile.Save: %v", err)
+ }
+
+ localLoginSources.UpdateLoginSource(source)
+ return nil
}
func DeleteSource(source *LoginSource) error {
@@ -264,10 +321,151 @@ func DeleteSource(source *LoginSource) error {
return err
}
-// CountLoginSources returns number of login sources.
+// CountLoginSources returns total number of login sources.
func CountLoginSources() int64 {
count, _ := x.Count(new(LoginSource))
- return count
+ return count + int64(localLoginSources.Len())
+}
+
+// LocalLoginSources contains authentication sources configured and loaded from local files.
+// Calling its methods is thread-safe; otherwise, please maintain the mutex accordingly.
+type LocalLoginSources struct {
+ sync.RWMutex
+ sources []*LoginSource
+}
+
+func (s *LocalLoginSources) Len() int {
+ return len(s.sources)
+}
+
+// List returns full clone of login sources.
+func (s *LocalLoginSources) List() []*LoginSource {
+ s.RLock()
+ defer s.RUnlock()
+
+ list := make([]*LoginSource, s.Len())
+ for i := range s.sources {
+ list[i] = &LoginSource{}
+ *list[i] = *s.sources[i]
+ }
+ return list
+}
+
+// ActivatedList returns clone of activated login sources.
+func (s *LocalLoginSources) ActivatedList() []*LoginSource {
+ s.RLock()
+ defer s.RUnlock()
+
+ list := make([]*LoginSource, 0, 2)
+ for i := range s.sources {
+ if !s.sources[i].IsActived {
+ continue
+ }
+
+ source := &LoginSource{}
+ *source = *s.sources[i]
+ list = append(list, source)
+ }
+ return list
+}
+
+// GetLoginSourceByID returns a clone of login source by given ID.
+func (s *LocalLoginSources) GetLoginSourceByID(id int64) (*LoginSource, error) {
+ s.RLock()
+ defer s.RUnlock()
+
+ for i := range s.sources {
+ if s.sources[i].ID == id {
+ source := &LoginSource{}
+ *source = *s.sources[i]
+ return source, nil
+ }
+ }
+
+ return nil, errors.LoginSourceNotExist{id}
+}
+
+// UpdateLoginSource updates in-memory copy of the authentication source.
+func (s *LocalLoginSources) UpdateLoginSource(source *LoginSource) {
+ s.Lock()
+ defer s.Unlock()
+
+ source.Updated = time.Now()
+ for i := range s.sources {
+ if s.sources[i].ID == source.ID {
+ *s.sources[i] = *source
+ break
+ }
+ }
+}
+
+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")
+ if !com.IsDir(authdPath) {
+ return
+ }
+
+ paths, err := com.GetFileListBySuffix(authdPath, ".conf")
+ if err != nil {
+ log.Fatal(2, "Failed to list authentication sources: %v", err)
+ }
+
+ localLoginSources.sources = make([]*LoginSource, 0, len(paths))
+
+ for _, fpath := range paths {
+ authSource, err := ini.Load(fpath)
+ if err != nil {
+ log.Fatal(2, "Failed to load authentication source: %v", err)
+ }
+ authSource.NameMapper = ini.TitleUnderscore
+
+ // Set general attributes
+ s := authSource.Section("")
+ loginSource := &LoginSource{
+ ID: s.Key("id").MustInt64(),
+ Name: s.Key("name").String(),
+ IsActived: s.Key("is_activated").MustBool(),
+ LocalFile: &AuthSourceFile{
+ abspath: fpath,
+ file: authSource,
+ },
+ }
+
+ fi, err := os.Stat(fpath)
+ if err != nil {
+ log.Fatal(2, "Failed to load authentication source: %v", err)
+ }
+ loginSource.Updated = fi.ModTime()
+
+ // Parse authentication source file
+ authType := s.Key("type").String()
+ switch authType {
+ case "ldap_bind_dn":
+ loginSource.Type = LOGIN_LDAP
+ loginSource.Cfg = &LDAPConfig{}
+ case "ldap_simple_auth":
+ loginSource.Type = LOGIN_DLDAP
+ loginSource.Cfg = &LDAPConfig{}
+ case "smtp":
+ loginSource.Type = LOGIN_SMTP
+ loginSource.Cfg = &SMTPConfig{}
+ case "pam":
+ loginSource.Type = LOGIN_PAM
+ loginSource.Cfg = &PAMConfig{}
+ default:
+ log.Fatal(2, "Failed to load authentication source: unknown type '%s'", authType)
+ }
+
+ if err = authSource.Section("config").MapTo(loginSource.Cfg); err != nil {
+ log.Fatal(2, "Failed to parse authentication source 'config': %v", err)
+ }
+
+ localLoginSources.sources = append(localLoginSources.sources, loginSource)
+ }
}
// .____ ________ _____ __________
@@ -497,7 +695,7 @@ func LoginViaPAM(user *User, login, password string, sourceID int64, cfg *PAMCon
return user, CreateUser(user)
}
-func ExternalUserLogin(user *User, login, password string, source *LoginSource, autoRegister bool) (*User, error) {
+func remoteUserLogin(user *User, login, password string, source *LoginSource, autoRegister bool) (*User, error) {
if !source.IsActived {
return nil, errors.LoginSourceNotActivated{source.ID}
}
@@ -514,8 +712,9 @@ func ExternalUserLogin(user *User, login, password string, source *LoginSource,
return nil, errors.InvalidLoginSourceType{source.Type}
}
-// UserSignIn validates user name and password.
-func UserSignIn(username, password string) (*User, error) {
+// UserLogin validates user name and password via given login source ID.
+// If the loginSourceID is negative, it will abort login process if user is not found.
+func UserLogin(username, password string, loginSourceID int64) (*User, error) {
var user *User
if strings.Contains(username, "@") {
user = &User{Email: strings.ToLower(username)}
@@ -525,44 +724,44 @@ func UserSignIn(username, password string) (*User, error) {
hasUser, err := x.Get(user)
if err != nil {
- return nil, err
+ return nil, fmt.Errorf("get user record: %v", err)
}
if hasUser {
- switch user.LoginType {
- case LOGIN_NOTYPE, LOGIN_PLAIN:
+ // Note: This check is unnecessary but to reduce user confusion at login page
+ // and make it more consistent at user's perspective.
+ if loginSourceID >= 0 && user.LoginSource != loginSourceID {
+ return nil, errors.LoginSourceMismatch{loginSourceID, user.LoginSource}
+ }
+
+ // Validate password hash fetched from database for local accounts
+ if user.LoginType == LOGIN_NOTYPE ||
+ user.LoginType == LOGIN_PLAIN {
if user.ValidatePassword(password) {
return user, nil
}
return nil, errors.UserNotExist{user.ID, user.Name}
-
- default:
- var source LoginSource
- hasSource, err := x.Id(user.LoginSource).Get(&source)
- if err != nil {
- return nil, err
- } else if !hasSource {
- return nil, ErrLoginSourceNotExist{user.LoginSource}
- }
-
- return ExternalUserLogin(user, user.LoginName, password, &source, false)
}
+
+ // Remote login to the login source the user is associated with
+ source, err := GetLoginSourceByID(user.LoginSource)
+ if err != nil {
+ return nil, err
+ }
+
+ return remoteUserLogin(user, user.LoginName, password, source, false)
}
- sources := make([]*LoginSource, 0, 3)
- if err = x.UseBool().Find(&sources, &LoginSource{IsActived: true}); err != nil {
+ // Non-local login source is always greater than 0
+ if loginSourceID <= 0 {
+ return nil, errors.UserNotExist{-1, username}
+ }
+
+ source, err := GetLoginSourceByID(loginSourceID)
+ if err != nil {
return nil, err
}
- for _, source := range sources {
- authUser, err := ExternalUserLogin(nil, username, password, source, true)
- if err == nil {
- return authUser, nil
- }
-
- log.Warn("Failed to login '%s' via '%s': %v", username, source.Name, err)
- }
-
- return nil, errors.UserNotExist{user.ID, user.Name}
+ return remoteUserLogin(nil, username, password, source, true)
}
diff --git a/pkg/auth/auth.go b/pkg/auth/auth.go
index ba9ccce10..2489aff07 100644
--- a/pkg/auth/auth.go
+++ b/pkg/auth/auth.go
@@ -127,10 +127,10 @@ func SignedInUser(ctx *macaron.Context, sess session.Store) (*models.User, bool)
if len(auths) == 2 && auths[0] == "Basic" {
uname, passwd, _ := tool.BasicAuthDecode(auths[1])
- u, err := models.UserSignIn(uname, passwd)
+ u, err := models.UserLogin(uname, passwd, -1)
if err != nil {
if !errors.IsUserNotExist(err) {
- log.Error(4, "UserSignIn: %v", err)
+ log.Error(4, "UserLogin: %v", err)
}
return nil, false
}
diff --git a/pkg/auth/ldap/ldap.go b/pkg/auth/ldap/ldap.go
index 63b2bc39b..3120b0ee9 100644
--- a/pkg/auth/ldap/ldap.go
+++ b/pkg/auth/ldap/ldap.go
@@ -26,15 +26,14 @@ const (
// Basic LDAP authentication service
type Source struct {
- Name string // canonical name (ie. corporate.ad)
Host string // LDAP host
Port int // port number
SecurityProtocol SecurityProtocol
SkipVerify bool
- BindDN string // DN to bind with
- BindPassword string // Bind DN password
- UserBase string // Base search path for users
- UserDN string // Template for the DN of the user for simple auth
+ BindDN string `ini:"bind_dn,omitempty"` // DN to bind with
+ BindPassword string `ini:",omitempty"` // Bind DN password
+ UserBase string `ini:",omitempty"` // Base search path for users
+ UserDN string `ini:"user_dn,omitempty"` // Template for the DN of the user for simple auth
AttributeUsername string // Username attribute
AttributeName string // First name attribute
AttributeSurname string // Surname attribute
@@ -43,11 +42,10 @@ type Source struct {
Filter string // Query filter to validate entry
AdminFilter string // Query filter to check if user is admin
GroupEnabled bool // if the group checking is enabled
- GroupDN string // Group Search Base
+ GroupDN string `ini:"group_dn"` // Group Search Base
GroupFilter string // Group Name Filter
- GroupMemberUID string // Group Attribute containing array of UserUID
- UserUID string // User Attribute listed in Group
- Enabled bool // if this source is disabled
+ GroupMemberUID string `ini:"group_member_uid"` // Group Attribute containing array of UserUID
+ UserUID string `ini:"user_uid"` // User Attribute listed in Group
}
func (ls *Source) sanitizedUserQuery(username string) (string, bool) {
@@ -186,7 +184,6 @@ func (ls *Source) SearchEntry(name, passwd string, directBind bool) (string, str
l, err := dial(ls)
if err != nil {
log.Error(2, "LDAP connect failed for '%s': %v", ls.Host, err)
- ls.Enabled = false
return "", "", "", "", false, false
}
defer l.Close()
diff --git a/pkg/bindata/bindata.go b/pkg/bindata/bindata.go
index 8e65db383..5f5ac786a 100644
--- a/pkg/bindata/bindata.go
+++ b/pkg/bindata/bindata.go
@@ -4439,7 +4439,7 @@ func confLocaleLocale_enGbIni() (*asset, error) {
return a, nil
}
-var _confLocaleLocale_enUsIni = []byte("\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\x18\xfb\x3b\xdf\x6e\x4c\x88\xf2\x72\xa8\xd1\xe5\x1c\x4a\xa2\x49\xca\xfe\xce\x6a\x15\x35\xe8\x2a\x74\x37\xcc\x6a\xa0\x5d\x40\xb1\xd5\xe3\xf0\x1b\xec\x03\xec\xf3\xed\x93\x6c\xe4\x05\xb7\xaa\x6a\x4a\x1a\x9f\xfd\x43\x76\x01\x89\xc4\x3d\x91\x99\x48\x64\xca\xdd\xae\x6e\x95\x6b\xc4\x99\x38\x17\x3b\xa9\x4d\xa7\x9c\x13\x4e\x75\xab\x27\x1b\xeb\xbc\x6a\xc5\x2b\xed\x85\x53\xfd\xbd\x6e\x54\x55\x6d\xec\x56\x89\x33\xf1\xda\x6e\x55\xd5\x4a\xb7\x59\x5a\xd9\xb7\xe2\x4c\xbc\x08\xbf\x2b\xf5\x79\xd7\xd9\x1e\x80\x7e\xa1\x5f\xd5\x46\x75\x3b\x28\xa3\xba\x5d\xe5\xf4\xda\xd4\xda\x88\x33\x71\xa3\xd7\x46\xbc\x31\x94\x62\x07\x1f\x92\xde\x0f\x9e\xd2\x86\x5d\x48\xfa\xb0\xab\x7a\xb5\xd6\xce\xab\x5e\x9c\x89\x6b\xfe\x59\xed\xd5\xd2\x69\x0f\x35\xfd\x95\x7e\x55\xf7\xaa\x77\xda\x02\xf6\xbf\xd0\xaf\x6a\x27\xd7\x00\x70\x25\xd7\xaa\xf2\x6a\xbb\xeb\x24\x16\xb8\xe5\x9f\x55\x27\xcd\x7a\x20\x98\x4b\xfe\x59\x35\xbd\x92\x5e\xd5\x46\xed\xc5\x99\xb8\xc0\x8f\xc5\x62\x51\x0d\x4e\xf5\xf5\xae\xb7\x2b\xdd\xa9\x5a\x9a\xb6\xde\x52\x37\x3f\x38\xd5\x0b\x4e\x17\xd2\xb4\x02\xd2\xb1\x0b\xaa\xad\xb5\xa9\xa5\xe3\x7e\xa8\x56\x68\x23\xa4\xab\x10\x95\x91\xdb\x50\x1a\x7e\x56\x6a\x2b\x75\x07\xa3\x06\xff\xab\x9d\x74\x6e\x6f\x71\x68\xaf\xf8\x67\xd5\xab\xda\x1f\x76\x0a\x87\xe0\xc9\xed\x61\xa7\xaa\x46\xee\x7c\xb3\x91\xd0\x4c\xfa\x55\x55\xbd\xda\x59\xa7\xbd\xed\x0f\x08\x17\x3e\x2a\xdb\xaf\xa5\xd1\xbf\x49\x4f\xe3\xf3\x3e\xfb\xac\xb6\xba\xef\x2d\x0c\xed\x5b\xfc\x51\x19\xb5\xaf\x01\x8f\x38\x13\xef\xd4\x3e\xc7\x02\x39\x5b\xbd\xee\x69\x14\x21\xf3\x2d\x7e\x01\x16\xca\x63\x4c\x94\x15\xb1\xad\x6c\x7f\xc7\xa9\x2f\xe1\xe7\x08\xa5\xed\xd7\x9c\x5b\xb6\x4b\x1a\xb9\x56\x9c\xfb\x16\x3f\x0a\x00\x57\xc9\x76\xab\x4d\xbd\x93\x46\xc1\xd0\x9d\xc3\x97\xb8\x82\xaf\x4a\x36\x8d\x1d\x8c\xaf\x9d\xf2\x5e\x9b\x35\xcc\xc1\x39\x25\x89\x1b\x4e\xaa\xb2\xbc\x98\x76\xb0\x43\x9c\x65\x71\x26\xfe\xcb\x0e\xbd\xb8\xa2\x4f\xca\xcb\x0a\x61\x66\x2c\x59\xc9\xc6\xeb\x7b\xed\xb5\xa2\xca\xc2\x47\xb5\x1b\xba\xae\xee\xd5\xdf\x07\xe5\x3c\x64\x5d\x0d\x5d\x27\xae\xf9\xbb\xd2\xce\x0d\x58\xe2\x0d\xfe\xa8\xaa\x46\x9a\x06\xbb\x73\x81\x3f\xaa\xea\xa3\x36\xce\xcb\xae\xfb\x54\xf1\x0f\x00\xa6\x5f\x34\x4e\x5e\x7b\x6c\x2c\x27\x8a\x1b\xaf\x76\x0e\x06\x5a\xbc\xd4\xbd\xf3\x4f\xbc\xde\x2a\x71\x3d\x98\xaa\xb5\xcd\x9d\xea\x6b\xd8\x90\xb8\x95\xde\xac\xc4\xc1\x0e\x8f\x7b\x25\xfa\xc1\x18\x6d\xd6\xe2\x95\x5d\x3b\xa1\x8d\xd3\xad\x12\x2f\x10\xfa\x54\xec\x3a\x25\x9d\x12\xbd\x92\xad\x78\x26\x85\x97\xfd\x5a\xf9\xb3\x47\xf5\xb2\x93\xe6\xee\x91\xd8\xf4\x6a\x75\xf6\xe8\xc4\x3d\x7a\xfe\x6a\xd0\xad\xea\xb4\x51\xee\xd9\x53\xf9\x5c\x34\xb2\x57\xab\xa1\xeb\x0e\x62\xa9\x56\xb0\x57\x0e\x76\x10\xcd\x46\x9a\x35\xec\x93\x83\xdf\x40\x85\xda\x08\xbf\xd1\x4e\xc0\x46\xfd\xae\x82\x51\xd2\x5e\xd5\xed\x32\x10\x25\x6c\x10\x26\xf7\xca\x89\xb7\x87\x9b\x3f\x5f\x9e\x8a\x2b\xeb\xfc\xba\x57\xf8\xfb\xe6\xcf\x97\xda\xab\x3f\x9e\x8a\xb7\x37\x37\x7f\xbe\x14\xb6\x17\xb7\xfa\xc5\xcf\x8b\xaa\x5d\xd6\x61\x5c\x5e\x48\x2f\x97\xd0\x85\x38\x57\x90\x49\x5b\x29\xe6\xe1\x86\x02\x92\x87\xe4\xcd\x79\xdc\xa4\xbc\x41\x67\xb7\x63\xbb\xac\x79\x0f\x47\x1c\xef\x60\x23\xb7\xcb\x34\xc0\x57\x34\x74\x83\x53\xe2\xcd\xbb\x77\xef\x5f\xfc\x2c\x94\x59\x6b\xa3\xc4\x5e\xfb\x8d\x18\xfc\xea\x7f\xaf\xd7\xca\xa8\x5e\x76\x75\xa3\x61\x6c\x7a\xa7\xbc\x58\xd9\x9e\x7a\xba\xa8\x9c\xeb\xea\xad\x6d\xa1\x96\x9b\x9b\x4b\xf1\xd6\xb6\xaa\xda\x49\xbf\xc1\x86\xf8\x4d\xe5\xfe\xde\xc1\x78\xc5\x0a\x6f\x37\x4a\xe0\xd2\x45\x20\xbb\x0a\xc3\x23\x5a\x6e\xe3\x42\x3c\x5b\xf6\xcf\xb3\x76\xc9\xa5\xb3\xdd\xe0\xb9\xc4\x7e\xa3\x0c\xce\x93\xf3\xb2\xf7\x42\xba\x40\xfa\x17\x95\xea\xfb\x5a\x6d\x77\xfe\x00\xb3\xc3\x6d\x18\x63\x27\x24\x8d\x34\xc6\x7a\xb1\x54\x02\xe1\x17\x95\xb1\x35\xed\x54\x20\x9b\xad\x76\x72\xd9\xa9\x9a\x48\x7a\x1f\x28\xd2\x7f\xc1\xe2\xa0\x82\x0c\x21\x0a\x08\x18\x31\x38\x26\x90\x3a\xc3\xca\x91\x46\x20\x52\xc1\x5b\x3d\x6f\x61\xa0\x0b\x71\xd6\x88\x34\xc4\x84\x49\x0b\xab\x30\x0d\x61\xcd\x9c\xef\x76\x9d\x6e\xa8\xea\x57\x94\x97\x96\x0f\x1c\x9a\x3c\xf7\x39\x1c\x4e\x7f\xc8\xcb\x16\xc1\xe0\x61\x48\x7b\x51\xd0\x60\x2c\xbf\x51\xbd\x12\x9b\x61\x4d\x07\x47\x67\x87\xf6\x3b\xa4\xe0\x61\x7c\x13\x9d\x14\xd7\xd6\x7a\x9a\xf3\x08\x90\xaa\x38\xef\x3a\x3c\xa7\x7b\xb5\xb5\x1e\x06\x8e\x8b\x01\x2d\xda\xeb\xae\x83\x9e\x3a\x79\xaf\x5a\xe1\x2d\xed\xb7\x56\xf7\xaa\x01\xc4\x8b\xaa\x1f\x4c\xcd\x8b\xfd\x7a\x30\xb4\xe0\x43\x5a\xb9\xb2\x10\x6a\x3b\x38\x2f\x36\xf2\x5e\xc1\xc0\x03\xb3\xe0\xed\x6c\x3b\xb1\x4b\xfd\x60\x70\x0b\x2f\xaa\xd6\x6e\x25\x1e\xfc\x2f\xf0\x07\x7f\xe7\xf8\xb5\x13\x72\xb5\x52\x8d\x77\xe2\xe6\xe6\xb5\x68\x3a\x6b\x94\xf8\x70\x7d\xe9\x60\x1b\x6c\xea\x9d\xed\x91\x49\xb8\x79\x2d\xae\x6c\xef\x63\x5a\x36\xd0\x00\x61\x86\xed\x52\xf5\x62\xbf\xd1\xcd\x86\x86\x1d\x4a\xc0\x2a\x56\xbd\xd0\x4e\x0c\x4e\x9b\xf5\xa9\xe8\x14\xf4\x40\x7b\x5a\x00\xd0\x87\xb0\xea\x00\x7c\xa5\xa4\x1f\x7a\x85\x87\x7e\xbd\x1c\x74\xe7\xb5\xa9\xa1\x42\xc6\x83\x64\x41\xfc\x4c\x19\x58\xe2\x06\x33\x8e\xc0\xd7\x3b\xbb\x23\x76\x06\x77\xd5\x32\x2b\xc7\x08\x61\xcb\xc3\x04\xda\x9d\xa2\xf5\xee\xb8\x49\xb0\xe0\x06\xed\x36\x62\xd5\xdb\xad\x70\x07\xe7\xd5\x16\x0b\xb6\x52\x6d\xad\x59\x54\x1b\xef\x77\x61\x6c\x5e\xdf\xde\x5e\xd1\xe0\xc4\xd4\x87\x46\x47\x66\x6b\x17\x57\x49\x07\x8c\x95\x11\x80\x16\x96\xf1\xd0\x77\xa3\x15\xfe\xe1\xfa\x32\xe4\x1c\x99\x39\x68\xc2\x53\xf8\x73\x93\x26\x10\x57\x82\xb3\x5b\xb5\xc7\xf5\xae\x8d\x40\x66\x67\x51\x75\x76\x5d\xf7\xd6\xfa\xb0\xdc\x2f\xed\x9a\x96\x78\x91\x91\x6a\x7a\x11\x16\x2d\x0c\xce\xbe\x07\xe6\xaf\xb3\x6b\x24\x78\x30\x5e\x8b\x4a\x19\x24\x2d\x8d\x35\xce\x76\x2a\x50\xce\x5f\x30\x55\x5c\x50\x2a\x11\xd1\x19\xc8\x38\x4b\x6f\x80\xb2\xb4\x1a\x7b\xec\x2d\xd1\x53\x00\x38\x15\xb2\x73\x56\xec\x7a\x6d\x3c\x54\x8c\x73\xc4\x18\x16\x55\x65\x77\x50\x22\xa3\x21\xef\x39\x21\x11\x0e\xec\x77\xcc\x47\x56\x0f\x57\x8e\x6e\xb2\xc3\xc9\x6d\xfd\xae\xe6\x93\xe8\xe6\xed\xed\x15\x1d\x47\x98\x8a\x8b\xe0\x4c\xbc\xec\xed\x36\x25\xa4\xf1\x79\x0b\xf8\x10\x46\xb6\x6d\xaf\x9c\x3b\x15\xd7\x2f\x2f\xc4\xbf\xff\xf1\x0f\x7f\x58\x88\x37\x1e\xc8\x1e\x50\x82\xbf\xc1\x0e\x96\x3c\x0b\x09\xd4\xf6\xc2\x6f\x94\x78\x04\x64\xec\x91\x78\x86\xb9\xff\x87\xfa\x2c\xb7\xbb\x4e\x2d\x1a\xbb\x7d\x0e\xab\x74\x2b\xfd\xa2\x82\x1c\xd5\x07\xa2\x71\xa3\x4c\xab\x7a\x66\x5c\x39\x2b\x23\xbd\x9c\x9d\xb1\xb1\xc4\xbf\xc3\xd8\xaf\x74\xbf\x4d\x13\x14\x38\x7b\x98\x29\xc8\x09\x5c\xa0\xee\x6a\x63\xbd\x5e\x1d\x12\x28\xf6\xf4\x1d\x24\xf2\xd2\xac\x78\xa7\xf1\x71\x15\xc7\x98\xf6\x25\xae\xc0\xf7\x7e\xa3\xfa\x30\xdc\x2e\x8d\xb7\x5d\xad\x80\x69\x19\xad\x96\xf7\x94\x4a\xab\x25\x07\x89\xcb\xe4\x05\x13\x8c\x8b\x17\xef\x84\xba\x57\x06\x16\xf6\xae\xb7\xed\xd0\xe0\xca\x09\x2b\xa6\x13\xbd\x72\x76\xe8\x1b\xc5\x0b\x35\x12\x64\x68\x1a\x50\xfd\x46\x76\xdd\x61\x51\x85\x83\x71\xdd\xcb\x7b\xe9\x65\x9f\x55\xf1\x2a\x24\x71\xeb\x27\xb0\x93\x46\xc5\x12\xd0\xf3\x66\x70\x1e\xa8\x07\xb6\xc2\x51\xa3\x28\xdb\x09\xd9\x2b\x31\xec\x3a\x2b\x5b\xd5\x8a\xe5\x01\x69\xbc\x83\xb5\xd0\xaa\x95\x1c\x3a\xbf\xa8\x56\xaa\x05\xa2\xa4\xda\x9a\xeb\xea\xac\xbd\xc3\xca\x78\xa8\x5e\x06\x00\x71\xce\x48\x2f\x11\xe2\x58\xc9\xd8\x58\x2e\x1f\xc1\x62\xa3\xb8\x06\x6f\x91\x45\x49\xf9\x76\xa7\x0c\x77\x23\x30\x26\x02\xf8\x8e\x56\x58\x23\x3a\xbd\xe4\x4e\xa7\xb1\x1c\x31\x19\x61\x74\x6e\x40\xbe\xcd\xf3\x66\x0b\x4c\x06\x15\x17\xbc\x1b\x97\x3d\x15\xd6\x74\x07\x66\x46\x60\x8b\x91\x00\x19\xf8\x12\x97\xc8\x52\x14\xd7\x02\x45\x62\xa9\xad\xcc\x8f\xd5\x5e\x13\xdb\x2b\xee\x65\xa7\x5b\xc0\x18\x10\xc0\x69\x31\xdf\x96\x45\xc5\xbc\x72\xcd\x92\x76\x7d\xaf\x51\x8e\x8d\x5b\x8c\x50\xb2\xf4\x0d\x23\xfc\x17\x00\x00\x01\xd9\xcd\x96\x8d\xad\x79\x0f\x9d\x74\x51\x8e\xa5\x75\x02\xdd\xc5\x1a\x80\x7f\x77\xa7\xe2\x5e\x23\x1b\xc0\x8b\x1c\xc7\x65\x09\x3c\x66\xa7\xa0\x2a\xa7\x14\x62\x10\xda\x3c\x1d\x76\x54\x66\xc1\x42\x1c\xcb\x55\x81\xef\x07\x76\xb0\xb5\x02\xb8\x34\xe4\x35\x80\xd2\xf2\xb0\x8e\xf8\x3e\xd1\xeb\xf5\xc6\x0b\x63\xf7\xa7\x34\x28\xfb\x8d\x55\xb0\xe7\xdf\xbc\x38\xfb\x91\xda\xb1\x06\xce\x23\x16\x02\x9e\x45\x0e\xde\x02\x7d\xe1\xad\x47\x4d\x88\xbc\x1f\x42\x4e\xc4\x45\x02\x1a\xcb\xed\x13\x56\x33\x12\x3a\xa6\x6f\x79\x1e\x13\xb6\x04\x43\xa5\x83\xec\x4f\x15\x13\x21\x65\x59\xaf\x5e\x5b\x94\x35\x83\x6c\x07\xcc\x54\xe5\x95\xf3\xf5\x5a\xfb\x7a\x05\xd4\x16\x10\xbf\x04\x04\xc0\xdb\x29\xe7\xc5\xe3\xb5\xf6\x8f\x45\x63\xb7\x5b\x69\xda\x9f\xc4\xc9\x3d\x8b\x09\x7f\x04\x32\x0a\x5b\x51\x77\x38\x23\x2c\xc1\xf6\x8a\xa4\x81\xa0\x3d\x69\xad\x72\x38\xf0\x6e\xd8\x21\x63\x11\x45\x2c\x96\x04\x5b\xbb\x37\x40\x30\xf0\xb8\xb0\xab\x95\x6e\xb4\xec\xc4\x52\x1b\xd9\x1f\x22\x16\x3c\x86\x4e\xdc\xa9\x78\xf7\xfe\x16\x01\xd7\x16\xf8\x9e\x36\x00\x2c\x2a\x6d\x70\x61\x83\x38\xc1\x93\x9f\xcb\x52\x21\x49\x53\x5b\x1a\xdb\xc3\xd9\x8f\xbd\x09\x05\x8f\x70\xca\xc0\x38\x90\x20\xa2\x41\x96\x45\x58\x2c\x17\x99\x5a\x18\x86\xad\xf4\xcd\x86\x59\x5e\x5c\x36\xda\x99\xc7\x1e\x5b\xda\x0c\x7d\xaf\x8c\xc7\xe4\x9f\xc4\x89\x13\x4f\x9e\x8b\x93\xec\x5c\xae\xb7\xda\x01\x17\x19\x59\xd2\x70\x48\x43\x85\x9c\x27\x30\x0f\x97\x1d\x1e\xaf\xa9\xbb\xf9\x41\x8e\x25\xe1\x34\x17\x2b\xad\xba\x36\x74\x36\x35\x19\x98\x76\x3a\x28\xd7\xd3\xc9\x86\x4c\x41\x99\x03\x6d\xff\x62\x78\x8a\x7d\x15\x57\x57\xd8\x35\xd9\xf8\xe6\x63\x14\x96\x9d\x1b\x68\xa3\x9c\x89\xbf\xaa\xae\xb1\x5b\xf5\x9d\xf8\xab\x7a\xdc\x2b\xb1\xee\x70\xe2\xa5\x67\x71\xde\x3a\x85\x8b\xf2\x94\xf6\xe9\x6a\x30\x78\xe4\x78\x79\xa7\x50\x03\x90\x3a\x3e\xc7\xed\x1d\x9d\xab\xea\xe3\xc6\x6e\xd5\xa7\x6a\x20\x59\xca\x76\x6d\x94\xc6\x71\x07\xda\x9e\xd8\x97\x28\x9a\x27\x98\xb8\xb9\xdc\x5e\xfb\x66\x53\x47\x3d\x25\x0c\xa4\x57\x9f\x71\xca\x30\x2b\xa9\x2d\x61\x67\x42\x56\xb5\x3d\xe0\xb2\x82\x8e\xbf\x3d\xa4\x55\xa5\x95\xab\xdc\xc6\xee\x51\xe9\x17\x21\x6e\x36\x76\x8f\xea\xbe\x42\xe2\x5a\x2c\x16\x55\x63\xbb\x4e\x2e\x2d\xcc\xca\x7d\x82\xbf\xc8\x53\x4b\xe4\xdb\x43\x6d\xfb\x35\x57\x5b\x2a\xb9\xb6\x07\xd6\xab\x71\x2e\xe9\xd5\x5c\x85\xd4\x99\x15\xb2\x48\xc4\x4f\x5c\xc5\xea\xa4\x85\x36\x35\x6a\xab\x42\xcd\x6f\x0c\xc9\x42\x79\x3b\xab\xea\x23\x2b\x6b\x3f\x55\x01\xae\x68\x13\x91\x78\x1a\x74\x57\x68\x10\xdd\x48\x85\xe8\x2a\xa7\x64\x8f\xfb\xe9\x06\x7f\x54\xd5\x47\x39\xf8\xcd\xa7\x4c\x99\x5a\x87\x95\x17\x94\xaa\xa8\xf0\x63\x2a\x9b\xb8\xc2\x8d\xda\x01\x03\xb9\x75\xb8\x64\xbb\x5e\xc9\xf6\xc0\xe2\x66\x5c\xbc\x7f\xa2\xf3\x4b\x1b\xa0\xfa\xdf\x55\xce\x02\x01\xaa\xbf\x11\xc5\xcf\xda\xb4\x54\xbe\x3c\xfb\x49\xcb\xbb\xdd\xe1\x32\xb1\x7d\x7f\x38\x2d\x15\x11\x1b\xe9\xc4\x52\x29\x13\x04\xc6\x76\x11\xd4\x3c\xb0\xbc\x64\x43\x34\x04\x35\xd3\xb8\x03\xa9\xa4\x9d\x30\x25\xd0\x42\x22\xfb\x5c\x0b\x9d\x02\x2e\xf0\xa7\xc0\x98\x7d\x73\x15\xbd\xda\x2a\x90\xf0\xea\x2d\xe9\x89\xe9\x4b\xbc\x55\xd5\xca\xf6\x6b\xdc\x7b\xb4\x39\xce\xc4\x4b\x4c\x48\xbb\x05\x00\x94\xcf\x4f\x2b\x86\x08\x29\x7f\x0a\x7a\xf9\xda\xd8\x3d\xea\x6b\x81\x63\x1b\x4f\xca\xb0\x83\x41\x5d\x84\xd3\x8f\x18\x29\xe4\xe1\x9d\x32\x3e\x0d\xed\xb9\x30\x6a\x2f\x72\x28\x1e\x80\x38\xbe\x00\x0f\x64\xee\xd9\xf2\xf9\x89\x7b\xf6\x74\xf9\x3c\x1e\x40\xcd\x46\x35\x77\xb4\xa0\xb5\x59\xda\xcf\xa8\x1c\x42\x4d\xa2\x12\x06\x36\xf8\x49\x2b\x36\x76\xe8\x59\x40\x03\x01\xc6\x2b\xcc\x2d\x66\x72\xd7\xdb\x06\x49\x33\x6a\x6e\x15\xed\x98\xb4\x4a\x51\x85\x0b\xeb\x14\x4f\xc9\xb0\x50\x77\xbd\xdd\xe8\xa5\xf6\x40\xce\x50\x9f\x71\x89\xff\xaf\x38\x59\xb5\x23\x88\x8c\xa1\xe9\x23\xf1\xd5\x4e\xec\x62\x01\x68\x24\x82\xa6\xfe\xf1\x2c\xa7\x19\x86\x99\xc5\xf1\xeb\xf4\x56\xfb\xc9\x02\x05\x52\x2c\x79\xa1\xb3\xa6\x39\xcc\x0d\xf6\x21\x8d\x6e\xaf\x1a\x65\x7c\x77\x88\x2b\x6a\x2f\xb5\x17\x7f\x14\x5b\x6d\x06\x0f\x52\xf4\x46\x19\xe1\xfb\x83\x90\xc0\x34\x2d\xaa\x8d\x74\xf5\x60\x78\x9a\x54\x1b\x96\xec\x6b\x8d\x67\x3b\xd4\x1b\x36\x56\x06\x55\x4a\x96\xe2\xfb\x38\x83\x3f\x2c\x58\xe7\x8c\xa5\xe0\xbc\x85\xf6\x68\x10\x83\xe4\xdc\x5a\xb0\xbd\x30\x8a\x46\x08\xfb\x0f\x60\xb0\x6c\xac\x51\x69\xb0\x3a\xdd\xdc\x01\xff\x0f\xf3\xbb\x1c\xbc\xb7\x20\xe4\x76\xb0\x06\xa9\x4c\x68\xf3\x05\x02\xa2\x0a\x22\xe1\x3b\xd0\xb4\x94\xa3\x54\x61\x31\x80\xf0\xf3\x85\xbf\xef\xd5\x0f\xa9\x78\xdc\x32\x58\x82\x51\x50\xe9\x6c\x37\x5d\x63\x26\x5d\x28\x84\x3d\x17\x8e\xc6\x86\x55\xbc\x71\x36\xfb\x72\x34\x30\x1f\x36\x86\xfa\xbc\xd3\x3d\x88\x3b\x7d\x62\x14\x16\xa3\xba\x92\x3e\x60\xda\x63\x5f\xb6\x38\x9d\x9e\xde\xda\xda\x6d\x88\x9f\x09\xcd\x13\x9d\x32\xeb\x42\x9f\x8b\x97\x83\xb8\x44\xfe\xe7\xa2\x32\xd6\xd4\x28\xbc\x66\x7b\xe6\x9d\x35\x4f\x30\x2d\x4a\x3f\xa1\x34\x2b\xfe\x43\x85\x80\xa6\xb7\xc3\x7a\xc3\xea\xc1\x8a\x36\x8b\xdf\xdb\x7a\x25\x1b\x8f\x97\x48\xb7\x7b\xfb\x84\x3f\xce\x07\xa8\xd5\x07\x61\x7f\x0c\x8c\x7d\xe7\x41\x2c\x41\xb1\x33\x90\x33\x2d\xa3\x0c\xd0\xe0\x5e\x35\xf6\x5e\xf5\x87\x30\x07\xbf\x40\xaa\x90\xc2\xa7\xca\x03\x88\x98\xc7\x13\xb3\x8b\x16\x5f\x73\xea\x71\xf8\x50\x63\x80\x14\x17\x0f\x34\x33\xeb\xe0\x4c\x0b\x77\x47\x3b\x99\x78\xe5\x23\x95\xc6\xa5\x85\x34\x77\x70\xb4\xb8\xa2\x0c\xc0\x2b\xac\xfa\x08\x8b\xfa\x53\xc5\x3b\x45\x65\x53\xce\x74\x24\xe4\x84\x1d\x45\xd4\x32\xc2\x07\x11\xe7\x2f\xaa\xd7\xab\x03\x01\x15\x54\xe2\xd8\x86\x29\xd7\x6b\x3c\x3a\x13\x7f\x7a\x9d\x93\x74\x4e\x5e\x0d\xdd\xa9\xd8\x13\xe3\x9a\xca\x44\x25\x12\xb3\xb4\x40\x34\xe8\xd2\xba\xfa\xb8\xb5\xad\xec\x3e\x55\x07\xbc\x8a\xfb\x2f\xe5\x2a\x83\xd7\x9f\xb6\xda\xda\x96\x0a\xbd\xc5\x1f\x55\xf5\x71\x65\xfb\xed\xa7\x0a\x98\xa2\x77\x23\x59\x10\xb8\x27\x4e\xcb\xe4\x11\xcc\xfa\x25\xbf\xde\x8d\x7d\xbe\x9a\x11\x1b\xaf\x55\xba\xe5\xc5\x5f\xb1\xf3\x37\x37\xaf\x6f\x83\x5a\xeb\xe6\xb5\xb8\x53\x8c\xfb\xb5\xf7\x3b\xf7\x01\x95\xb5\xa4\x79\xfd\x70\x7d\x59\x5d\xc9\x03\xc8\x68\x94\xcc\x1f\x98\x71\xab\xe4\x96\x1b\x09\x3f\x09\x05\x6c\x1a\x4e\x84\x9f\xb6\xcf\xaf\x29\x2a\x94\x1c\x7e\x29\x84\x54\x22\x72\xd5\x3b\xb5\xff\xb9\x97\xa6\x09\x85\x81\xa5\x5b\x62\x02\x95\xbc\xb0\xdb\xad\xf6\x37\xc3\x76\x2b\x71\x83\xd0\xb7\x70\x94\xc0\xd9\x6f\x95\x73\x74\x07\xcf\xd9\x5b\x4a\xe0\xec\x8b\x8d\xd5\x4d\x96\xdb\xe0\x77\x75\xdb\x2b\xc5\xb5\xbe\x0c\x37\x5e\x15\xb2\xf1\xc4\x63\xd2\xaf\x2a\x2a\x35\x14\x5f\x4d\xff\x3a\xb9\xfd\xf9\xb5\x92\xdd\x6e\x23\x51\x50\xc8\xc0\xf0\xa2\x63\xc9\xea\x17\x81\x20\x48\x77\x87\xad\xea\x75\x83\xbb\x44\xba\xcd\xf7\x4f\xea\x1f\xf0\xe6\x4e\x36\x5e\xf5\xae\x44\xd6\x5a\xff\xfb\x10\xe2\x16\xf4\x0f\xe2\x75\xdd\xef\x6e\xee\x04\x3b\xa4\x20\x3e\x05\x15\x39\xfd\x5b\x18\xae\x02\x33\xa4\x8b\x13\x80\x40\xc1\x32\x41\x45\x20\x64\x5c\x40\xc8\xf4\x02\xa8\x82\x07\xe1\xb9\xe8\xc3\x56\x7e\xfe\x52\xc1\xad\x9d\x29\x47\x8a\xf3\x54\x88\x05\x65\xc9\xbd\x2d\x28\xc9\xe2\xd7\x6a\xe8\x1f\x00\xfe\x70\x7d\xb9\xf8\xb5\xd2\xa6\xe9\x86\xf6\x68\x43\xdc\xb0\x74\xbe\x07\x01\xf9\xf1\x89\x7b\x0c\x28\xcd\x9d\xb1\x7b\x13\xe1\x3f\xd0\xb7\xc0\xef\x9f\x82\x29\x46\xad\x0d\x6b\x2a\x92\x51\x86\x68\x75\x0b\xac\x0e\x6a\x1c\x16\xe9\xc8\xcd\xb5\x10\x91\x10\xa0\xba\x96\xb5\x44\x91\x16\x82\x28\x80\x0a\x19\xb9\x55\x8b\x64\x3e\x52\x03\xc9\xae\x41\xd2\x36\xb9\x68\x0c\xc4\x3c\x30\x83\x48\xd4\x11\x62\x41\xf7\x86\xd3\x72\x23\x4a\x75\xb4\xb8\xed\xd7\x33\xa5\xdf\x4f\xef\x34\x8f\x94\xf7\x4a\x6e\x67\x10\x44\x1a\x74\xb4\x20\xcd\x3d\x16\xc2\xe3\x69\x44\x44\xa7\xe5\x00\x6a\x91\x46\x29\x0e\x78\x3e\x37\xb9\x22\x21\x8e\x73\xa9\x6b\x5a\x54\x78\xf4\xf6\x68\xc6\x93\x69\x9c\x58\x03\xc8\xe7\xde\x56\xde\x29\xe1\x06\x60\xb1\x36\xd2\xb3\x90\x51\x8e\x28\xf0\xbb\x88\x4a\x61\x15\xc7\xd1\xdb\xbd\x81\x63\xea\x4b\xf8\x11\xec\x1b\x51\xe7\x0a\xca\x29\x62\x46\x1e\x81\x8e\xa1\x8d\xda\x33\xf5\x59\xe3\xfd\xd4\x2b\x7d\xaf\x58\x7f\x16\x59\x06\xcc\x5b\x54\x9d\x74\xbe\x86\x45\x43\xcd\x45\x69\xd4\xde\xc3\x8e\x82\xfa\x20\x97\xca\xd1\x7d\x15\x77\x0a\x16\x09\x6b\xe2\x64\xd7\xd9\xbd\x6a\x4f\x85\x44\x96\xb3\x57\xb4\x41\x65\xb7\x97\x07\x87\x5a\xe5\x40\x64\xac\x09\x63\x02\x14\xc4\x1c\xc4\x1a\x5b\x95\x2b\x2c\x16\x55\xd2\xbf\xb9\x4d\x0d\x47\x67\x64\xb7\xf7\xa8\xd7\x42\x0a\xc1\x7a\xea\xfb\x8c\x49\xe1\x93\xf6\x27\x71\xe2\xaa\x81\xf4\xf4\x94\x9d\x21\x42\x23\x15\x3e\x55\x66\xca\x9e\x82\x58\x22\xf6\x4a\x48\xe7\x86\x2d\x8f\xb5\x46\x29\x10\x9b\x94\x29\x56\x87\x65\xa7\x9e\x90\x78\xab\xfd\xa2\x92\x83\xdf\x24\xbd\xdf\x88\xb3\xa5\x74\xd2\x96\x39\xaf\xbb\x0e\x46\x3a\x18\x6e\x15\xe2\x26\xe6\xe2\x3e\xc1\x61\x72\x1b\xbd\x13\x16\xaf\xc5\xf2\x21\x4c\xcb\x36\x13\xec\xbc\x15\xad\x42\xf1\xd9\xf6\xc2\xf7\xd2\xb8\x95\xc2\x7b\xc2\xad\x58\xe9\x1e\xe6\x99\xaa\x06\x39\x91\x0c\xb5\x8e\xd4\x4c\x9a\x08\xac\x3a\x3f\x20\x70\xee\xb2\x89\x2a\xab\xa6\x5b\x7a\xbc\x8c\xc2\x36\xe0\xa8\x26\x4c\x2e\xb4\x01\x96\xd9\x64\x08\xf0\x5e\xba\xb0\xb9\x98\x1d\x87\x55\xa1\x14\xa3\xfa\x71\xa5\x7d\xa1\xdf\x15\x19\x42\xd5\xc4\xee\x14\xbb\xe2\x16\x73\x02\x23\x34\xde\x18\xd5\x47\x58\xf7\x9f\x2a\x92\x88\xea\x78\xd9\x77\x41\x12\x12\xf1\xcf\x98\x58\xfd\xcd\x6a\x53\xe3\xcd\xd5\x7f\x58\x6d\xf0\x9a\xab\x2a\x8c\x3b\x46\x1a\x3b\x36\x41\x3b\xa0\xd5\xc9\xb2\xd3\x4d\xb0\x43\x3b\x54\x2b\x8b\xfb\x09\x15\x7a\x2f\xc3\xef\xca\x79\x09\x64\x82\x4d\x13\xe0\x57\xa1\x21\xa4\x42\xa4\x3e\x7e\x19\x7e\x73\x6a\x4c\xaa\x06\x13\x53\x3e\xf0\xcf\xaa\x02\x2e\x79\x81\xf4\x17\x18\x7b\xbc\xe9\xcc\xa8\x2e\x1c\xaa\xb0\xfe\x43\xde\x22\x83\xdf\x49\xef\x55\x6f\xe8\xb2\x82\x88\x40\x5e\x94\xb3\x23\x0a\xdc\xb8\x04\x06\x63\x1b\xec\xf3\x3e\x55\xc9\x8a\x2f\x18\xf0\xcd\xdd\xd2\xc4\xe1\xa7\xbb\xcb\x8a\x77\xb5\x63\x26\xfb\x3f\xd5\xc1\x55\x4e\x35\x43\x4f\xc3\x7a\xc3\x3f\xe7\x35\xa6\xac\xc2\x1d\x19\x29\x26\x03\x0a\x57\xda\x53\xb8\x8a\xd7\xd8\x99\x78\x41\x3f\x82\x96\xa9\xda\xe1\xf4\x65\x96\x88\x3c\x9f\xb1\x2b\x6c\x88\x9a\x6b\x97\x4a\xad\x8b\x76\x82\x90\x20\x4f\x11\x2e\x9d\xf1\x04\x5d\xd9\x1e\xe9\x64\xbc\x41\x53\x1d\x5e\xaf\x9a\xec\x42\xdd\x9d\x62\x39\x00\xdb\xab\x65\xb8\x65\x4d\xe6\x29\x5b\xd9\x2a\x71\xaf\x65\x54\x45\x66\x9c\x4d\x3c\x7a\x83\xfe\xb2\xd0\x0c\xa0\x50\x43\xba\xe5\xc0\xd8\x84\x69\xf6\x36\xe8\x09\xfc\x46\x69\xba\xe4\x34\xc8\xf4\xac\x86\xae\x0b\x27\xe3\xcb\xa1\xeb\xc8\xd8\x6a\x6a\x02\x0c\x55\xf0\x65\xef\x25\xff\xac\x86\x5d\x0b\x22\x68\x1a\xcb\x0f\x98\x10\xc7\xb2\xcc\xcf\x44\x4b\x1c\xd5\x50\x2c\xc9\xc8\x08\xde\x66\xb2\x66\x77\x58\x84\xdd\x3c\x63\xda\xcb\x1b\xbb\x1d\x83\x24\x2d\x1e\x52\x2a\xee\x38\x4e\x14\x59\xd3\xe0\xd0\xee\xe5\x41\x6c\xec\x5e\x74\xda\xdc\x39\x9e\x29\x18\xa7\x5c\xcc\x46\x6d\xab\xd7\x66\x50\x2c\xf8\xc0\xcf\xa9\x21\x29\xdf\xbe\xf3\x5d\xfc\xf2\x10\x74\x5b\x74\x5b\xcf\x1b\x40\x2c\x0f\x02\x65\xbb\xe3\xd7\xfe\xe3\xfb\xfe\x70\xdd\x1f\xae\xb1\xd1\xda\x20\xd1\xb5\x0f\x4e\x89\x0b\xb2\x40\xe0\x3d\xd6\x6c\xac\x75\x7c\x29\x90\xa8\x1f\xa4\xa1\x76\x8f\x89\x1f\x4f\x4b\xc2\x43\xb3\x76\x1e\x2c\x21\x70\x9f\xf3\x0e\xaa\xf9\xce\x2e\x41\xf3\x86\xba\xe0\xbb\xbc\xf3\x80\x93\x2c\x1d\x42\x9f\x90\xc6\xd4\x7a\x4b\xe2\xe7\x87\x60\x07\x81\x13\x1e\xc5\x06\xcc\x5e\x94\xed\x19\xaf\x12\xae\x37\xdc\xaa\x7d\x61\xb1\x84\xa5\x90\x5f\x0d\xd3\xf4\x47\xba\x64\xbb\x82\x69\x0b\xfd\x88\xf9\x30\x78\x59\xfe\x3b\xbc\xc4\x8f\x5a\x12\xd8\x63\xf5\x08\x84\x15\x0b\x05\xe4\x2c\x6f\x1c\xea\x3a\xca\x17\x8f\x5a\x3f\xd9\x31\xa1\xdc\x5e\xba\xa2\xe3\xbc\xc6\xdb\x45\xb0\xf6\x14\xc6\xee\xc9\x22\x00\xcd\xf2\xc8\x34\xd1\xa0\x39\x01\xa1\xc8\x88\x0a\x57\xfa\xaf\x92\x94\x84\x99\x04\x0b\x17\xe5\x89\x73\x22\x9c\xca\x05\xc3\xf3\x98\xcf\xb6\xe7\x05\x7d\x55\xc1\x9a\x2b\xa7\xc0\xbb\x5e\xa3\xa2\xa3\xa4\xc4\x13\xda\x5b\xd0\x59\x24\xb3\x16\x6d\x93\x12\x79\x5d\x54\x01\x15\x9c\x5e\xf8\x2b\xa4\x44\x55\xda\x8d\x42\x03\x5d\x4e\x0e\x1b\x21\xe4\xd2\xfa\x8f\x6d\xec\x14\x53\x45\xea\xeb\x0b\x4e\x18\xe5\x87\xce\x50\x76\x98\x90\x99\xde\xf4\xc0\xcb\xab\x78\x70\x68\x43\xa6\x61\xf1\xe2\xbf\xa0\x4e\xe2\x05\x92\x2b\xb1\x97\x74\xa1\x13\x88\xd5\x9f\xc6\xb5\xa7\x75\xf4\x4b\x79\x15\x44\x7d\x2b\x77\xd1\x77\x95\x6c\x5b\x5c\xe3\xc9\x7c\xa2\xc5\xc5\x53\xea\x15\x01\x2a\x87\x20\xf3\x8a\x98\x5a\x17\x17\x55\x8e\x94\x47\x5f\x7f\x39\x05\x5c\xc8\x7f\xc3\xbd\x54\x51\x55\xba\x97\x8a\x8d\x1c\xed\xb0\x49\x2f\xa7\x5b\x4d\xb6\x2d\x32\x44\xbc\x96\x33\xb6\x86\x57\x73\xe4\x6e\xa0\x16\x92\x63\x60\x78\xfe\x53\x1d\x90\x07\xe2\x95\x80\x47\x93\x76\x42\xa2\x71\x28\x5a\x94\x93\x50\xe3\x40\x9a\xb1\x8d\xc6\xf9\x47\x73\xf6\x72\xce\xcf\x51\x6a\x73\x8a\x61\x91\x3f\x94\xe6\x00\xfc\x7e\xd8\xeb\x6a\x0b\xe3\x40\xc6\x39\xd1\x94\x78\x72\x4d\x7d\xca\xa2\xd2\x46\xaf\x37\xdd\x41\xe8\xed\xce\xf6\x1e\x57\x52\x30\x42\x48\x92\x2c\x7c\xf5\xaa\xb1\x6b\xa3\x7f\xc3\x81\xdd\x92\xed\x70\xbc\x11\x79\xe6\x7c\x6f\xcd\xfa\xf9\x0b\x0b\x22\xe6\x1d\x90\x9f\x8d\xdd\xff\xe9\xd9\x53\x4e\x17\x17\x38\x85\x76\xf0\xe2\x95\xf6\xaf\x87\xe5\x63\x27\xd6\x83\x6e\xf1\xc8\x7d\x26\xb3\xc7\x0e\x6c\x8d\x44\x86\xdd\x7b\x13\x87\x05\x9f\x3e\xd8\x5e\x38\xdb\xdd\xab\x51\x11\xbb\xdd\xd2\xf4\x2e\x3b\xb5\x25\x48\x6c\x3f\x1a\x30\x29\x83\x23\xa7\x7a\x1e\x9f\x9b\x9b\xd7\x8b\xb8\xc4\xd3\xfc\xf0\xb4\x05\x3e\xb5\xd0\x8b\x30\x8f\x08\xc0\x0d\x2b\x42\x0b\xcd\xfe\x22\x96\x42\xfe\x63\x5a\x0a\xe7\xd1\x01\xcf\x32\xd1\xc8\xa0\xf0\x02\x28\x42\x71\x71\x06\xed\x20\x3e\x0c\xd2\x9a\x89\xea\x95\x17\x56\xb6\x78\xe1\xec\x09\xaa\x6b\xe4\xdf\x63\xf3\x70\xb9\x8e\xf6\x37\x53\x34\xea\x3b\xd3\xb3\xd0\x81\x8c\xa2\xf1\x88\x24\x9a\x36\x86\x29\xa8\x9a\x22\x9a\x16\x5a\x91\x53\x33\xb2\xd5\x24\x8a\x46\x0b\x52\x39\xa4\xd7\x5f\x49\xcd\x26\xf5\xa6\x8e\x87\xea\xbe\x82\xa2\x61\x9f\xce\x71\x38\xac\x21\x2d\x0a\x4f\xd4\x25\xeb\x4c\x30\xc3\xd8\x3a\x93\xf6\xde\x59\xbe\xd9\x15\x21\x11\xe7\xc4\x79\xe0\x58\xf2\xad\x0c\x8d\x40\x2b\x78\xb2\xe2\x43\x35\xcc\xff\x26\x5a\x79\x70\x95\xb7\x77\xca\xcc\x14\xc1\xf4\x63\x85\xaa\xaf\xbc\xb1\xcb\xae\xa4\xa0\x86\xc1\x91\xc8\xe9\x07\xf7\x53\x9e\x47\x8f\xd3\x0a\x70\xbb\x5a\x41\xda\x6a\x55\x15\x97\x62\x6c\xc1\x46\x76\x8d\x79\x56\xb0\xe3\x8f\x66\x9b\x79\x26\xda\xcc\x14\x77\x61\x2e\x58\xcf\xa0\x91\xba\x2c\xf7\x2c\xec\x5a\x26\x48\xd9\x75\x19\xed\x5c\xa0\x5a\xc2\xc9\x95\x12\xbb\x4e\x36\x2a\xf1\x34\x83\x23\xd2\x83\x87\x73\xb8\xb6\xd3\x74\xed\xdd\x59\xa7\xc6\xc4\x4e\x96\x6a\x9d\x4c\x5c\x5c\xe4\x4d\xdf\x78\xbf\x23\xa3\x8c\xdc\xc8\x3e\xb1\x0c\x6c\x05\x80\xec\x8f\xe8\xac\x59\xab\x3e\x2a\xb4\xa0\x49\xbb\x4e\xb2\xd9\x26\xee\x5e\xe8\x6e\xe4\x85\xa2\x79\x49\x30\xb1\x6c\xb1\x48\x1a\x89\x8f\x3f\x7e\x72\x27\x1f\xff\xf0\xc9\x3d\x7a\x7e\xa5\x7a\x87\x56\xed\xe7\xd4\x8d\x5b\x58\x1e\x38\x22\xd2\xf1\xd5\x75\xaf\x5a\xe8\x90\xec\x4e\x85\x5a\xac\x17\xe2\x19\x0c\xc1\xf3\x93\x8f\x7f\xfc\xe4\x9e\x3d\xc5\xdf\x8b\xe9\x64\x26\xb3\x78\x9a\xdb\xaf\x5b\x4b\x8d\x34\xf5\xdf\x47\x4f\xad\xbe\x30\xaa\x68\x3a\x07\x13\x05\x07\x2f\xf2\xf6\xe5\x12\x0c\x57\xae\x4e\x35\xbd\xf2\x28\xce\x93\x32\x94\x44\x5d\x4c\x2d\x4a\x40\x45\xd3\x6b\xda\xdb\x8d\x32\x5c\x2e\xa4\x16\xa5\x58\x51\x18\xae\x44\xab\x99\x4b\xdb\x12\x5b\x5a\x4c\x23\xf5\x6c\xbc\xa7\x8d\x8c\x48\x34\xe0\xf8\x6e\x66\x9c\xc3\x0d\xc6\x74\x9c\xe5\x51\x05\xe3\x14\x4b\xa2\x6d\xc7\x11\xa0\xc5\x82\x21\x76\x7d\x4c\x47\x47\x94\xef\xd8\xfd\xb8\x8b\xcb\xe2\xe8\x7a\x28\x2f\xd0\xdd\x03\xa8\x98\xaa\x15\x77\xdf\x6c\x01\x0f\xa4\x2d\x3e\x7e\xf3\x0a\x98\x0c\xd9\xeb\xee\xf0\xad\x3b\x56\xfc\x22\x9b\x4d\x49\x2e\x90\x28\x04\x53\x68\x26\xdf\x8d\x3a\x15\xcf\x96\xcf\x79\xba\xee\x94\xda\x31\xb7\x44\x4d\x1a\xd1\x96\x67\x4f\x97\xe5\x8e\xe9\x15\xbd\x57\xf3\x6a\x4a\xcc\xae\x63\xde\x83\x03\x73\x04\x41\x5c\x1d\x19\x9a\x92\xf8\x1d\x59\x16\xc7\x31\x96\xc7\xff\x08\x59\x3c\x10\x43\xe9\xf1\x91\x38\xa5\xec\xe9\x5d\x27\x53\xfa\xaf\xa2\x14\xa1\xf0\x9c\x39\x56\xd4\xef\x75\xea\x5e\x75\xc4\x13\xb4\xb0\xcf\xd1\xb0\x61\x05\x5b\x38\x8a\x9d\xfe\xd8\x6a\x7f\x80\x31\x98\x69\xc6\xd7\x6e\x9f\x58\x6f\x39\x2a\x81\xad\xa7\x85\x59\xd3\x11\x1d\x59\xfb\x59\x12\xed\xaa\x38\x41\xc0\x51\x86\x22\xaf\xc2\x2c\xc3\xe4\x20\x20\x31\x02\x71\xb7\x50\xe1\xa4\x96\x4f\x13\x85\x0c\x38\xbf\x29\xc2\x75\xed\x6d\xdc\x29\x1b\xb2\x0a\x16\xe7\x57\x6f\xdc\xa2\x8a\x15\x06\xa4\xb8\x4b\xa8\x09\x7b\xd2\xc9\xa3\xed\x70\xd7\x4d\xb6\x5a\xd0\x70\x51\x71\x66\x3c\xb1\x4d\xc4\x7a\xc6\x4e\x4d\x3a\x44\x9d\x29\xf3\x69\xdc\x95\xcb\x56\x00\xd5\x86\x2d\x19\xcb\x50\xb1\xab\xdf\x89\xb7\xe9\xb6\x0c\x66\x76\x77\x00\xa9\x24\x7b\x79\x40\x67\x9f\xd8\xa3\x5c\x31\x7a\xf2\xa0\x3d\x11\x63\x01\xac\x65\x1f\xf9\xda\xd0\x60\xe6\x6c\xf3\xa9\xcc\xd9\xdb\xd9\xc9\x4c\xcc\xee\x6c\xb1\x39\x8e\x77\x17\xf0\x94\x7d\xfe\x12\xff\x6b\x57\x25\x7d\x3b\xba\xc8\xf3\x5e\x65\xcb\xfb\x6a\xb6\xda\xb8\xed\xa9\xea\xd1\xf2\x16\x24\x9e\x91\x45\x2a\xf2\x2f\xa4\xfa\xa3\x15\x91\x9d\xe4\xd2\x89\xbd\xea\xba\x45\x85\x9a\xf7\x85\x01\xe9\x92\xde\x8e\x44\x35\x10\x5f\x17\x61\x3f\xcc\xa1\xb8\x0f\x72\x0b\x2a\x86\xb7\x4c\x91\xaa\x5c\xf2\x9d\x53\xe6\x88\x20\x83\xca\x9e\xa7\xd0\x93\xc9\xf2\x78\xa0\x21\xcc\x2e\x68\xd0\x16\x5e\xc9\xad\x63\x3a\x82\x4c\xa0\x5a\xf1\x45\x6e\x7e\x43\x79\x7c\x64\xe9\xae\x81\x1a\x10\x1a\x98\xa7\x8d\x9a\x9e\xee\xf1\x0a\xa0\x2f\xb4\x7c\x74\x71\x5d\xb6\xf6\x81\xc6\xe5\x55\x14\x5a\x0a\xda\xd3\xd8\xd7\x0c\x2f\x4a\x7d\x23\x5a\xc6\x2b\x27\x99\x94\xf1\xb2\x2d\xec\x6e\x19\x28\xd3\x99\xab\xc4\xfc\x06\x92\x9d\x2e\x09\x03\xb2\x9d\xea\xb7\xd2\xa0\xc9\x2b\x5d\x68\x04\x0d\xc0\xc5\xf9\xbb\x77\xef\x6f\x93\xe0\x0f\x34\xcc\xb4\xd6\xa8\xef\xe2\xc3\x9d\x49\xbb\xc2\xf3\x9d\xb8\xf9\x4a\x88\xf4\x80\x88\x4b\x1c\x83\xcb\xa5\xab\xcc\x24\x78\x6d\x51\x2f\x62\xa1\x2d\x41\x3e\x2c\xda\xdf\x1e\x5d\x21\x1f\x61\x88\x3f\x55\xe1\xaa\xfd\x3d\xfc\xaf\x72\x6b\x85\xcc\xca\x03\xc9\x66\x32\x06\x49\x8f\xc8\xc5\xda\xda\x76\x62\xbd\x80\x82\xdf\x20\x51\x7d\x6b\xb7\x3b\x8b\x0c\xcc\x4a\xa0\xb1\xe8\x29\xec\x2e\xdb\x23\xb1\x43\xa1\xc1\xe8\xbf\x0f\xa8\xf2\x41\x1b\xcf\x45\x75\xaf\x9d\x5e\xea\x8e\x84\xd4\xbf\xc4\x0f\x4a\x87\x5f\xa3\x67\xc4\x59\xe5\xda\x89\x67\x6e\x27\x8d\x68\x3a\xe9\xdc\xd9\xa3\x41\x0b\xe0\x77\xbd\xfa\xec\x1f\x3d\xbf\xea\xd1\xac\xf0\xd9\x53\x80\x78\x3e\x41\x57\xaf\x6c\xdf\xd0\xb5\x66\x34\xa1\x46\x9a\xc3\xe9\xb0\x4d\x0d\x32\x23\xd9\x56\xa5\x81\xff\x1d\x75\xae\x6c\x7f\x97\xfa\xf1\x3d\x6b\xf2\xed\x8a\xe8\xee\xbd\xec\x86\xf2\x5a\x07\x6a\x87\x32\xee\x87\x0a\xdf\x48\xa7\xb2\x68\x52\x8f\xfe\x72\x20\x43\x9b\xf5\x9f\x70\xd0\xfc\xc3\x7e\x37\x5e\xab\x6e\x07\x02\xd8\x77\x15\xb6\x84\xaf\xbf\xc7\x8e\x56\x30\x2f\x3c\x20\x86\x3c\x7c\x45\x8c\xa9\x33\xb3\x91\xb9\x63\x90\x5d\x90\x7d\xb2\xd9\x04\x72\x8a\x9d\xc8\xaf\x8c\x0f\x6c\x64\x14\x4f\x1f\xd7\xf4\x1a\x1f\x41\x53\x7a\x27\xf1\x26\x39\x7a\xda\xc1\xc4\xb5\xf6\x7a\x6d\x6c\x9f\x0d\xc3\x8d\xea\x60\x9c\x16\x31\x4b\x04\xdf\x3d\xae\xea\x74\xa3\x8c\x43\x6a\x47\xbf\x42\xca\xa4\xb8\x14\x01\x16\x6f\xf9\x7a\x25\x5b\xde\x0a\xf0\x83\xbf\x67\x4a\x31\x60\xa8\xb2\x92\x83\xb7\xb5\x36\xda\xe3\x3b\x1a\x0d\x72\x2d\x69\x17\xcb\xf5\x4a\xba\x33\x44\xc2\x37\x48\x81\xfa\x33\x1e\x7e\x0a\xc3\xd3\xc3\x6f\x60\xb2\x09\xe2\x07\xb7\x6c\x50\x80\xe3\x87\x09\x82\x2c\x2c\xd9\x4d\x4f\xbd\xeb\x07\x43\x97\xda\x83\x51\x45\x62\x92\x6f\xe8\x38\x37\x07\x76\x08\xf1\xc4\xf7\xb2\xb9\x03\xe2\xd2\xab\x95\xea\x95\x69\xd0\xd2\x5f\xfa\x4c\x55\x40\xb6\x0b\x6c\x46\x4f\xc5\x02\x72\x0d\xa2\xe6\xbd\xec\xa2\x87\x20\xf1\x26\xa4\x7c\xbf\xb1\x43\xff\x43\x00\x0c\xca\xe8\x08\xc7\x57\x2a\xa3\xfc\xd0\x4e\x16\xd9\xd9\x12\x4f\x18\x05\x87\x82\xec\xe9\x0d\x72\xa6\x45\x70\x82\x75\xe8\xf1\x2d\x1d\xe3\x43\xe5\x98\x3b\x98\x26\xa9\xc7\x6e\xf0\xab\xda\x4b\xdf\x6c\xc8\xd8\xe1\xaf\xfc\x13\x6d\x1d\xd6\xf2\x37\x4a\xbd\x89\x1f\xb8\x05\x1c\x6f\x0a\xc7\x86\x0b\xbd\x92\xcd\x86\x1f\x5b\xd8\x55\x4d\x4e\x47\x90\x1d\xbb\x8d\x06\x58\x40\x4f\x10\x4e\xb5\x62\x2b\x3f\xeb\xed\xb0\x15\x11\x10\x8b\xc2\x2e\x39\x29\x4d\x2a\x16\xf3\x86\x11\x63\x23\xbc\x6f\xb7\x8f\x18\x63\x78\xd8\x4c\xc2\x28\xd5\xd6\x20\x6e\x04\xa2\x53\x58\xfd\x56\xec\xe3\x29\x38\xc9\x89\x4e\x9e\xc8\x4b\x4e\x9e\x7b\x9c\x7e\x87\x5b\x2f\x59\x92\x54\x7c\x80\xb7\xec\x06\xf5\xe8\x39\xcd\x62\xa0\xa7\x01\x2b\xef\x8f\xb7\xec\x66\x2a\xdb\x20\x0c\xb1\x20\xa2\x99\x16\xdb\x05\x3a\x9a\x48\x6b\x6d\x06\xaa\x38\x72\x59\x64\x91\x99\x1e\xed\xe9\xab\x37\xb7\x68\x18\xfa\x40\xf1\x9a\xae\x1e\xe8\xcd\x03\x91\xc8\xc7\xbd\x22\x9f\x10\xd9\x6d\x63\xf0\x8f\x25\xf3\xc1\x58\x1e\xe8\x9d\x7f\xf0\xf7\xb1\x93\x7e\x93\xea\x82\x43\x5e\x3b\x47\x8c\xbb\xd1\x38\x9f\x05\x13\x9b\xb0\x53\x1b\x18\x59\xb9\xb0\x02\xb6\xf4\xde\xb2\x91\x5d\x78\x6c\xf9\x86\x12\xb9\x20\x24\xe2\xbd\x4a\x69\x9b\x14\x9e\x95\xc8\xdc\x3d\x4c\x40\x1b\xcd\xd0\xd2\x6a\xc8\x2d\xd0\x78\x4b\xf2\x01\xc3\x8e\xc0\xec\xaa\xa2\x33\x22\xa4\xf3\x89\x01\x5f\x15\x48\x51\x75\xa7\xcd\x1d\x72\x56\xbb\x43\x4a\xc8\x18\xc9\x0b\xbb\xd3\xaa\xfd\x2e\xcb\x0b\x0a\x8a\x2b\x9c\xfd\xff\xf7\xff\xfe\x7f\x9e\x5c\x40\xbb\x2f\x7c\xdf\x3d\xb9\x08\xd2\x19\xc0\xd3\x38\x12\x02\xf1\xfe\x3f\xab\xc1\xec\xd9\xda\xf6\x03\xfd\xaa\xc2\x37\x92\x88\x6a\x30\x8e\x0d\x0d\xf0\x47\xc5\x5f\x40\x29\x2a\x76\x60\x06\x24\xa2\xaa\x4c\x3c\xe1\xde\xd9\xe2\x90\xfb\xfb\xa0\x9b\xbb\x9a\xee\x8b\xce\xc4\x9f\xe1\x4b\xa0\x53\x2c\x3e\xe7\xe1\xc8\x88\xf4\x1f\x17\xed\xe8\x10\xc9\x9f\x4b\xe2\xe1\xc8\x8f\xb8\xd3\x79\x21\x4b\xbe\xe5\x10\x28\x76\x00\xec\xb4\x51\xd5\x6e\x70\x1b\x32\x46\x0b\xb5\x5d\x0d\x6e\x83\x2e\x3f\x3e\x93\x4b\x99\x1c\x03\x4e\xcd\x04\xc7\x52\xf6\xaa\xde\x46\xcb\xfc\xf1\xee\x8e\x0b\x87\x9f\x7f\xa5\x1b\xa7\x83\xf2\x8b\xaa\xa2\xf3\x8f\x4c\xf3\x5d\x15\x8f\x34\x3e\xca\x7c\xaf\x10\x69\xaf\x14\x40\x7a\xd5\x07\x33\x3a\x69\xda\xda\xcb\x35\x95\x04\xbe\x83\x8b\xda\x5e\x78\xb9\x66\x44\x88\xf9\x67\xfe\x59\x79\x89\x46\x57\xb7\x72\x3d\xf5\xa6\xb6\x1b\xba\x6e\xea\x73\xad\x93\x4b\x85\xc9\x97\xf8\xa3\xda\x42\x23\xbd\x35\x8a\x8e\xae\xf0\x51\x35\xf8\xe0\xc0\xc5\xa7\x07\xae\x5a\xeb\x70\x3e\x97\x6d\xe0\x37\xf4\xa4\x7f\xa3\x9f\x38\x04\x75\x2f\xf7\x90\x26\xf7\xf4\xb9\xd1\x8e\x7d\xf3\xbd\xa6\x5f\x94\x4c\xd7\x12\x08\x8a\x77\x11\x11\x1e\xd9\x7f\xde\x23\x57\xe1\x37\x65\x79\x0b\x0c\x55\x9f\x66\x27\x18\xad\x78\x6b\x05\x65\x10\x47\xeb\x36\x76\x6f\xaa\x7b\xdd\x2a\x8b\x67\x06\x3f\xeb\x27\xef\x84\xcb\xde\xee\x5d\xe0\xf8\x60\xb4\xe9\x13\xa6\x17\x44\xf0\xe0\x02\xe0\xf5\xed\xdb\xcb\x7f\x17\x88\x03\xe6\x61\x51\xc5\x99\x58\xd8\x7b\xd5\xb3\x93\x89\xf7\xfc\x33\x65\xf2\xcb\xca\x6c\xc8\xd0\x20\x51\xa5\x91\x8b\xa0\xce\xcb\xae\x80\xbc\x81\x84\x19\x40\xf2\x80\x77\xde\x75\x33\x79\x6c\x6e\x53\x2f\x0f\xd1\x60\xa8\x15\x78\x7b\x01\x24\x18\x6f\x30\x12\x70\xb0\x28\x19\xf3\x5d\xcc\xc0\x8f\xd8\xaf\x4a\xb5\xb0\xf4\x17\xe8\xcf\x90\xec\xc8\xde\xa9\x3d\xf1\x96\x9c\x45\xd6\x45\x75\xb4\x32\xc3\x37\x37\x39\x00\xfc\x0b\xd9\xbf\xb4\xda\x17\x99\xbb\x5e\xe1\x3a\xa0\x66\x39\x22\x71\x38\xb2\xd4\x20\x17\x00\x89\x2f\xaf\x11\x99\xb1\xa6\x86\x23\xb5\x0e\x1b\xee\x82\x98\x76\xc8\x14\xc6\x9a\x27\x78\xde\x62\x66\xd1\x08\x24\x45\x79\x4b\x7c\x58\x42\x01\x6c\x3b\x38\x5f\x2f\x55\x6d\x4d\x2d\xd3\xd8\xfc\x57\xb0\x8e\x5d\xe2\xf3\x29\x19\xf6\x27\x1c\x7c\xf2\x8e\xcc\xe9\x7b\x0b\x52\xa2\x08\xfd\x08\x2e\xc7\x72\xe4\x28\x76\x90\x5b\x40\xec\x47\x8e\x19\x69\xed\x98\xbb\x66\x17\x82\x00\x1b\x4c\xc8\x73\x7c\x41\xf9\x94\xf5\x2a\xd7\x7d\x4d\xfa\x05\x54\xab\x46\x0f\x52\xac\x42\xcd\x1b\x80\x24\x8d\xdc\x4b\x25\xfd\xc8\x37\xf5\x8e\x2c\x33\xb1\x49\xe9\x28\xc3\x57\x4a\xe5\xad\xf7\xfc\x2d\x70\x58\x68\xc0\xec\xe1\x9b\xe4\xb0\xdc\xd8\xe2\xbf\xc7\xca\x16\x8b\x45\x5e\x5f\x94\xe5\x51\x3d\x0a\xac\x72\x3a\xc4\x4f\xc9\xe5\x13\x72\x73\xda\xd3\xd5\x1f\x9e\x9e\x4f\x17\x00\x1b\xd4\x7f\x79\x81\xb5\x0d\x4a\xa1\xa5\x5a\x6b\x72\x0e\x89\x12\xad\x62\x57\x15\x09\xc9\x52\x36\x77\x6e\x27\xd1\x47\x20\xb5\x07\xcf\x67\xdb\x67\xeb\xb5\x51\x5d\x8d\x26\xc7\xe2\x4c\xd0\x67\xcc\x44\xca\x9a\x2d\x7a\x7e\xe5\x35\x5a\xf3\xb2\x6d\x6b\xbf\xdd\x05\x23\x9e\xc7\x27\xee\xe9\xb3\xd0\xed\xe7\x8f\x33\xa8\x04\xf0\x38\x6d\xcb\x96\x1c\x96\xb2\x05\x61\x9e\x37\x36\xc0\xcd\xf3\xb8\x69\x7c\x08\x46\x37\xb9\x2d\xbe\xac\x0e\xde\xbe\x84\xfa\xec\x95\x69\x55\x2b\xda\xc4\x09\x64\x73\xc3\x48\x68\x68\xbb\x43\xed\x2d\xad\xd2\x44\x6d\xa8\xbf\x01\x20\x0c\x3b\xeb\xa9\x02\xdb\x4c\xe0\x4f\xa0\xbb\x8f\xf0\x31\x75\xd4\x5b\x61\x46\xaa\x2e\x31\x10\xa9\x86\xc0\x3a\x04\xdd\x97\x89\xaf\xf4\x12\x9e\x15\xba\xff\xc2\xc7\x1e\xd8\x1e\xbc\x0e\x27\x27\x90\x02\x4e\xd1\xf0\xae\x7c\x91\xd3\xc1\x60\xfb\x8e\xb6\xbe\xcc\x12\x95\x2f\x00\xf3\x91\x18\xd9\xa3\x8e\x17\x2f\x93\xb5\xa5\x22\x27\x8e\xbc\x63\x50\x98\x99\xf8\x6b\xe4\xb2\x81\x69\x20\x1b\x15\x62\x79\xd2\xb9\x4c\x9b\xad\x30\x60\x71\xd1\xe1\x68\xae\xb4\x08\x6b\x21\x2c\xff\x5a\xbb\x5a\x46\xea\x68\x7c\xd0\x5b\xb2\x18\xba\x93\x6c\x1e\x49\x6e\x4b\x24\x9d\xbc\x23\xc6\xf9\xa1\x8a\x90\x3e\x60\x1d\xee\xb0\xe5\xd3\x3d\x7a\xee\x0c\x02\x9b\x14\x21\x33\xdc\xb3\xf0\x10\xe0\x8b\x54\xcd\x5c\x34\xd9\x08\xab\xa5\x60\xd4\x93\x51\xc5\x6a\x52\xab\x52\x45\x85\x9c\x99\xb3\x86\x5f\xdf\x05\xa6\xc6\xb5\xb1\x35\x69\x11\xd2\x0c\x94\xdd\x09\x96\x09\x81\x7c\x8f\xd4\x0e\x51\xc0\x3f\x56\x11\xdb\x8d\xd6\xfb\x4d\x56\x6d\x20\xa9\x13\x53\x27\x86\x16\x4e\x9b\x46\x25\x6f\xa6\xaa\x0d\xf5\x2f\x1e\xd6\xa7\xa5\x67\xf3\x68\xd6\xc0\xb7\x38\x7b\x98\x05\x3c\x1a\x8a\x4a\x6c\x1f\xb7\x15\x91\xc3\xb0\x7f\xd6\x52\x9b\xb4\xbd\xbc\xc5\x17\x37\x74\xaa\xf8\x4d\x76\x82\x94\x3d\x9d\x2c\xe5\x73\x1a\x46\xd4\x2e\xa5\x29\xfb\xfa\x45\x6d\x6c\xa0\xad\x40\x7a\x80\x17\xa4\xd9\x01\xc9\x95\x6c\x45\xb2\x93\x0c\xb2\x53\x7b\xd0\x57\xa1\xad\xd9\xee\x99\xb7\xc3\x4b\x12\x03\xe3\xa5\xcc\x53\xb6\x19\x49\x93\x8d\x4d\xa5\x67\x91\x20\x19\x66\x04\xdc\x0d\xcb\x56\xf7\x4c\x43\xe9\x83\xa5\xcc\x44\x25\xf8\x8d\x15\xd6\x1b\xb9\x29\x37\xaa\x38\x32\x56\x2e\xd8\x60\x1e\xa9\x35\xc7\x01\x38\xa9\xfa\x0f\x33\x08\xaa\xc0\xed\x07\x8a\x9d\x58\x75\xa6\xd0\x81\x63\x2f\xe1\x72\xe9\x20\xe4\x8c\x9c\xe1\xf0\x92\x48\xf9\x2b\x8d\x22\xdd\x4b\x6d\xda\x98\x26\x51\x01\x13\xdf\x5f\xc7\xf4\x24\x82\xf1\x33\xe9\x98\xc3\x87\xda\x0b\xd4\x2d\x72\x5a\xf0\x81\xf4\x1e\xfe\xc7\x54\xa3\xf6\xac\x5e\xde\xab\x3e\xfa\x08\x22\x07\xe7\x40\xaf\x51\x58\xca\x92\x17\x63\x01\x29\xcb\x82\xbd\x0e\x89\x24\xfd\x62\x7e\x9e\xdd\x74\x4a\xf6\x75\x2c\x7f\x01\x9f\xa2\x9b\x60\x89\x12\x57\x2e\x70\x8d\xaa\xc9\x61\xde\xd9\x79\x30\xaa\x2e\x87\xa4\x1a\xb7\x73\xc0\x76\xa7\x4c\x01\xfb\x7e\xa7\x4c\x2e\xef\x15\x88\xad\x53\xed\x08\x33\xde\x7d\xcc\xc3\x4b\x87\xae\xf1\xf0\xf6\x87\x7f\x4e\xdb\x99\x01\x51\x33\xe5\x0c\xa8\xb1\x39\xdc\x3b\x3b\x01\xe2\x0d\x17\xcf\xf5\xf1\xec\xa5\xf9\x51\xfb\xc9\x04\x51\x66\x8d\x66\x25\xd1\x63\x16\x02\xc5\xe3\xba\xa8\x26\x22\xe3\xca\x0a\x7c\x84\x2b\xea\xe6\x17\xf1\x1e\x12\x76\x97\x04\xf6\xb0\x55\x2b\x7c\xb7\xe6\x14\x2a\x43\xcb\x85\x30\x2e\xae\xcd\xca\xe6\xc4\x09\x5f\x81\x9a\x03\x97\x42\xc5\x42\x34\xb2\x2b\xbc\xbe\x3c\x8a\x3d\x7d\x14\x3c\xc0\xc8\xa5\x2d\xbc\x06\xd2\x3b\x43\xf2\x78\x3d\x6e\x18\x7b\x8b\x39\xd2\xaa\x99\x6b\x05\x1c\x12\xa7\xfc\xb1\x22\x83\xe3\xf7\x3f\x44\x95\xbf\x08\x1f\x28\x6d\x2e\x3d\x26\x72\x87\xb4\x8a\x70\xc4\x10\x06\x91\xda\x92\xd3\x36\x42\x8b\xeb\xdb\xcb\xa5\x38\x13\x27\x2d\x2e\xee\x38\x97\xb0\x74\x53\x16\xad\xe4\x90\xc9\x0a\x98\x30\xd1\xc5\x0c\xe7\x79\x70\xcc\xd3\xfd\x06\xad\xcb\x78\xd7\xd1\xcd\x94\x78\x70\x83\x8f\x61\x8e\x62\x9e\x6c\x63\x2e\xf9\xc0\x6e\x4b\x10\x6b\x6d\xd4\x71\xd4\x47\xca\xb1\xc6\x1b\xf5\xdc\xd3\x9c\x85\xec\xba\x3a\xea\x98\xce\xbb\x4e\xd0\xc7\x2c\xa8\xe3\x18\x10\xde\x82\x14\x97\x9a\xda\xb2\x71\xcb\x5c\x21\x5a\xad\x6d\xbd\x3c\x70\x19\xda\x76\xe8\x99\xf5\x48\x91\xad\x32\x20\x72\x00\x1f\x46\x45\xde\xc6\x84\x99\x22\x8e\x5d\x16\xda\xde\xcf\xe4\x2c\x70\x3d\x7a\x3e\x2a\xdc\x2c\x08\x10\x0d\x04\x79\x8f\x3f\xe6\x40\xc8\x14\x39\x8a\x5d\xd7\xec\x73\x2a\x3c\x86\x9a\xad\x58\x49\x97\x4a\x5c\xe2\xdb\xe0\xfe\x2b\xca\x6d\xad\xf3\x70\xcc\x91\xe5\xf9\x5b\x8b\x2e\x1c\xf0\xf3\x81\x7a\x52\x01\xaa\x68\x52\x02\x76\x52\xd0\x22\xd1\xef\xa4\x44\xca\x8c\x62\xd1\x1e\x96\xcd\x5a\xe5\xf3\x49\xe1\x7a\x25\xef\xd4\x0c\x06\x52\x43\x31\x34\x6a\x7d\xec\x10\xd5\x3d\x76\xc8\xce\x95\xcf\x34\x15\x9f\x7d\xb9\xc5\xa3\x7f\xe9\xd1\x0e\x6f\x63\x56\xb9\xc3\xcd\xb0\xad\xb9\x8f\x8e\x28\x40\xf8\x8a\xc5\xc3\x08\xd4\x12\xaa\xfc\x35\x7e\xa7\xee\xfe\x1b\xb0\xc6\x27\xd8\xd3\x5f\x43\xb1\xf0\xf8\x8e\xa0\x33\x8f\xce\xe7\xfc\x18\x23\xbe\xca\x08\x36\x0b\x6d\xa6\x95\xe1\x62\x7f\x8a\xcd\xb4\xd9\x23\x02\x3a\x05\xf0\xe2\xaa\x54\x2d\x17\x24\x0d\x3f\x42\x7f\xcb\xac\xd0\xa8\x08\xc2\x93\x8e\x1e\x36\x72\xf0\x5e\xe1\xa8\x06\xb8\x6b\xfc\x1c\x65\x3e\x84\xac\x2f\x0a\xf0\xb1\x99\x96\x18\x83\x8e\x26\x8a\x87\x99\x58\x8a\x67\x52\xe8\x96\xad\xac\x1f\xc5\xe1\xc6\xaf\xe7\xb8\x58\x8a\x41\xa7\xfa\x22\x8e\xf0\xf9\x8d\x58\x98\xcb\xed\xd5\x2a\xe2\xe1\xab\xe1\x96\x66\x87\xba\xca\xde\x19\x58\xa8\xf9\xb6\x2a\x76\x96\x43\xf6\x5c\xe1\x8f\x54\x73\xf0\x82\x89\xfc\xee\x45\xf6\x19\x97\x79\x61\xc7\xc2\x89\xc1\x2b\x71\x70\xe8\xc3\x0a\x87\xe2\x89\x0d\xfb\x85\x0c\x72\xdb\xdf\x6c\x90\x8c\x1a\x6b\xee\x55\xef\xd8\xac\x9e\x31\xb2\xe6\xf1\x97\x56\xa7\xe9\x19\x29\x29\x42\xdd\x64\x7a\x75\x23\xef\xd5\xe8\x10\x0f\x2c\x4f\x64\xa1\xca\xfc\xc6\x76\x36\xb1\x58\xf8\x35\x06\x20\xdb\xa2\x93\x76\x96\x3b\x4a\x4b\x93\x77\x2e\xba\xc0\x2e\x4f\x1d\x82\x9c\xe9\x0c\x65\x8c\x54\x5c\x65\x66\x74\x6f\x45\x0d\x44\x27\x57\xc1\x7a\x76\x8a\x85\x1f\x56\x23\x68\x34\x6e\x9a\x05\x9b\x7f\x49\x48\x3c\x46\x6e\x73\xa8\x51\x7a\x4d\xaf\x07\xb5\x29\xcc\x10\x19\xf7\x71\xf3\xb3\xf9\xca\x93\xd2\x95\xda\xfa\x05\x85\x6b\x46\x26\x77\xb2\xf7\xba\xd1\x3b\x19\x49\xe5\x55\x96\x12\x20\xa5\xf7\xb2\xd9\xc0\xb6\xce\x99\xae\x5f\x49\x71\xc0\xfa\x02\x58\x8f\x64\xc8\x0d\x82\x96\x97\xcb\x5f\x67\x4a\x47\x57\xca\x79\xe9\x98\x08\x28\x7e\xad\xe8\x12\x2b\x13\xd7\xf2\xcb\x2c\xce\x6c\xec\x76\x27\x7b\x55\xaa\x51\x21\x25\xea\x51\x67\xe1\xc2\x2c\x05\x60\xbf\xb7\x22\xde\xc0\x60\x2c\x2b\x38\xc1\x4a\x05\x20\x6a\x0a\xa3\xee\xa2\x44\x8b\x9e\x9b\xcf\xd0\x59\xc0\xb8\x42\xae\xe1\x4c\xf0\x2f\xce\x2f\x6e\xff\xc6\xb7\x7e\xa1\xe7\xb6\xee\x95\x1b\x3a\x9c\x11\x7c\xe9\x44\x1f\x2b\x3b\x98\x76\x11\x81\x30\xa0\x10\x70\x5b\xa9\xae\xec\x10\xa1\x70\x43\xfc\xee\x12\x72\x97\xaa\x91\xc0\xa8\x63\x9b\xa1\xaf\x1b\x25\xdb\xac\xf7\xbd\x42\xaf\xfe\x63\xfc\x5b\xd5\xaf\x63\x47\xbf\x06\x7f\x31\xa6\x1b\x72\xd9\x4c\x2f\x3f\xbb\x83\x68\xf5\x0a\xa9\xae\x17\xac\x6e\x08\xd5\x6d\xa4\xab\xf3\xc0\x51\xb0\x40\x62\x6d\x41\xfb\x33\x9a\x98\xa5\xf2\x7b\xf4\x9b\x84\x2f\x09\xa0\x5e\xd2\x71\xb9\x9f\x46\x2f\x79\x9e\x62\x1d\x4f\x81\x73\x69\x99\x70\xff\x1b\x7e\x10\xf9\xe6\x99\x1b\x89\x99\x33\xab\x0e\x89\x5f\x58\x43\x7b\xdc\x32\xde\x0a\x1c\x21\xe4\x76\xda\xa0\xf9\xa0\x63\x24\x3c\x03\xfa\x43\x7c\x06\x24\xb4\xf1\x76\xe6\x79\x10\xe3\x47\x4c\xcc\xd4\x84\x6a\x28\xed\x5f\x43\x2f\x4e\x3e\xfe\x8f\x4f\x61\x4b\x78\xb9\xac\xf3\xd3\x81\xec\x3c\xe3\x67\x01\x35\x56\xf8\xa4\xbc\xe2\xbe\x3b\x28\x07\x39\x9f\x79\x08\x6f\x69\xf1\x24\xcb\x27\xca\x60\xf3\xec\x7c\x26\xbd\x15\x3b\xd5\x03\x55\xe4\xd1\x8c\x96\xae\x8b\x62\x68\x90\xdb\xef\x53\x4d\xb0\x6a\x62\xce\xed\x04\x6d\x24\x83\x0c\x53\x52\x41\x42\xd1\x4a\x2f\xeb\x65\x1f\x6c\xd3\xa5\x97\xd1\x92\x71\x1e\x17\xc3\xb6\x43\x72\x16\x04\xa3\x68\x57\x74\x91\x97\x11\xf7\xd0\x76\xed\x6a\x7c\x29\x4d\x3a\xdc\x5b\x7e\xfe\xdc\xe9\xc6\x8b\x98\xae\x1d\x7b\xeb\xa1\xa0\x1a\x6b\x0a\x51\x12\x43\x91\xad\x7a\xe5\x36\x18\x40\x00\x00\x56\x6a\x2f\xb6\x16\x19\xda\x48\x91\xa4\xa9\xd1\x70\x8f\xf6\x6b\x6e\xfe\x53\x74\x83\x6d\x81\x78\x40\x46\x61\x01\x22\x2a\x34\xb5\xfa\x3a\x6c\x64\xfe\x3f\x87\x2f\x51\x84\xa8\x7d\x0d\xfd\x76\xc7\xeb\x1a\xc7\x12\xa3\xf5\xb0\x95\x86\x4c\x72\xb5\x11\xb6\x6f\x55\xcf\x0e\x5e\xf1\xd1\xb1\xdf\xcc\x61\x26\xbe\x94\x90\x32\x3b\x97\x5d\x0d\x11\x5a\x4a\x8f\xcb\x16\xa8\x5c\xb8\xa5\x05\x00\x9a\xb0\x6b\x4c\x0f\x37\xb2\x9c\x9e\x2f\xcb\x31\xe1\xc2\x25\x3a\x47\x3f\x70\x5b\x0c\x86\xb7\x39\x96\x8a\x7a\xef\x5f\x59\xd3\xf3\xd8\xc7\xad\xc0\xdb\x25\x59\x7d\x97\x03\x9a\x13\x46\x43\x7c\x52\x31\x39\xdf\xff\xdb\x49\xfb\x03\xc7\x51\x92\x5b\x35\xb5\xdd\x84\x44\x1a\x87\x9c\x23\x81\xa3\x41\x3b\xf4\x93\x0c\xfd\x87\xd3\x8f\xfb\xbc\x08\xa4\x92\xc5\xa0\xcc\x70\x13\x39\xae\x9f\xf3\x43\xac\x80\x41\x77\x59\x46\xed\x33\x92\xc2\x57\x56\xe9\x9a\x27\xb0\x2a\xa1\x93\x9a\xf6\x1c\x39\x26\xa0\x52\x64\xa4\x8f\x4d\x36\x8d\x5a\x54\x99\x21\x4b\xc6\x2e\x24\xf5\x4b\x96\x3d\xa3\x2b\xca\x72\xe7\xf5\x45\x63\x80\x36\x29\x45\x4f\x5c\x51\xb7\xad\xdb\x41\xd5\x2c\xcc\xbf\xb3\x48\x1c\xe0\x6b\xdc\x82\x20\xc4\x8e\x31\x47\x89\xae\xec\x50\xed\x86\x25\x9c\xd2\xe4\xdc\x98\x96\x6e\x66\xbb\xe3\x6d\x78\x51\xc1\xd7\xe4\xcc\x6f\x15\xe8\x47\xa7\xda\xec\xe0\xc4\x27\x87\xf0\x3f\xcf\x98\x31\x6c\xce\x73\x53\x9f\x5f\x0c\x0a\x15\xf3\xe2\xfb\x70\x4f\xfc\x43\xd9\x49\x45\x4e\x6f\xe0\x7f\x9e\x11\x63\x62\x30\xaa\x9a\xd6\x21\x63\x44\xe4\x9c\x92\xe2\x25\x9c\x46\x83\x8c\xc7\x87\xc3\xe1\xf0\x64\xbb\x7d\xd2\xb6\x8f\x67\x7a\x9d\xb1\xc5\xb1\xdb\x23\x83\x04\xd6\x3f\x8d\x4e\x86\x0c\x53\x26\x65\xcc\x8f\x1d\x5a\x97\xe4\xf3\xf4\x01\x55\xae\x4b\xe5\xf1\x19\x5d\x1a\x39\xda\x49\x69\xf6\x1c\x9c\x79\x76\xd7\xa9\xf4\x88\x0a\x88\x18\xf9\x2d\xc8\xfb\x32\x92\xd0\xb2\xac\x91\xaf\xde\x07\x1b\x18\x0d\x0c\x99\x63\xb6\xab\xd4\x98\xd1\xa0\x50\xe4\xbc\xa3\x43\x92\x49\x46\x69\x58\xa3\x74\x34\x03\x38\x2f\x1b\xa5\xda\xff\x3b\xe5\xa3\xb9\xea\xe7\x96\xc1\x17\x24\xa4\x6a\xaf\xef\xb4\x38\x13\x7f\xd5\x77\x1a\x7f\x2f\xd8\xbb\x72\xe6\x4d\xd9\x5b\xcc\xfe\xae\xc8\x0f\x7d\x85\x1c\x34\x4e\xdb\xf0\x9b\x56\x41\xc1\xe0\xe8\xd1\xdc\xd0\xb5\xa2\xd3\x77\xc4\x41\xd8\x66\x40\xd5\xc9\x81\xbd\x6f\xfd\x0d\x5d\x61\xd9\xb5\x42\x1f\x39\x51\x2a\xd1\x9e\x17\xd5\x82\x2a\xe4\x35\x8e\xde\xf9\x6a\x8e\xfb\xcb\x9b\x9c\xac\x56\x7a\xe7\x91\x63\x20\xf0\x3c\x32\x30\x26\xb0\x24\xc2\xe9\x2c\x87\x24\x78\x72\xa6\x94\x63\x7d\xc7\x71\x93\x28\x3f\x58\x91\x95\x46\x23\xd0\x73\x32\x24\x02\x11\x41\x09\xb9\xb4\x03\xdb\x5a\xb1\xb2\x33\x11\x08\xee\x07\x86\x7c\xe1\x9a\x6e\x40\x5c\x48\x75\xa0\xbd\x3b\x57\xc0\x97\x25\x27\x0e\x2f\xb5\x83\xd2\x06\xcb\x9d\x38\x02\xc7\x95\x0e\x29\x35\x5f\x8a\xb0\x76\xa0\xe8\x4f\xca\x1b\xf7\x87\xde\x5b\x15\x20\x7c\xb0\xcd\x43\x19\xeb\x75\xa3\xea\x1f\x03\x67\x94\xbf\xc9\x22\xb3\x89\xb5\x62\x66\x1c\x04\xdb\xe0\x09\x20\x30\x36\xb0\xdf\x55\xef\x31\xea\x40\x9c\xa1\xe9\x7d\x38\x2e\x24\x44\x35\x72\x56\x52\x5e\x89\x67\x38\x1c\x4f\xb3\xcb\x06\x31\xb8\xe5\x0a\x4e\x35\x82\xa5\xa0\xab\x66\xa3\x02\x87\xb4\x05\x4d\x96\x8b\xc1\xfd\xb2\xac\x2c\xe4\x0b\x0b\x11\xd9\xf7\x11\xb0\x05\xbd\x4c\x62\xa7\xda\xc7\x80\xc8\x68\x80\x57\xd2\x31\x20\x0c\xcf\x4b\x8f\x5b\x8e\x81\x0c\x26\xdc\x7a\x9d\x89\x0f\xe1\x77\x02\x9e\xb3\x6b\x9d\x64\xd6\x4b\x92\xac\xb3\xf7\x41\xf4\x14\x39\xc9\xb8\x40\xd7\x11\x2a\xb3\x46\x08\x93\xbc\x1b\xdc\x06\x43\x41\x46\x9d\x6e\xf0\x22\x1a\x2a\xfa\xd2\x2b\x98\x23\x80\x89\x27\x57\x21\x72\x5d\x30\x43\x22\xed\x9f\xd3\x2d\xfa\x4b\xc0\xfb\x42\x60\x60\x1f\x85\x7c\xd4\x67\xe0\x3b\x7d\x62\xab\x4e\x0b\xb6\x91\xfd\x73\x19\x0c\x06\x18\xec\x47\x52\x2b\x46\xb6\x65\xe3\x8c\x91\x71\x69\x3d\x98\x68\x7d\x9b\x0c\x4d\xa7\xed\xcd\xa2\x6f\xd1\xdd\x0f\xbe\xa7\xd6\x3e\x46\xd7\xb2\x86\x5f\x12\x4c\x9a\x32\xae\x31\x11\xfb\x17\x65\x35\x41\xaa\xcb\xd8\xe0\x07\xbd\xd6\x7d\x97\x6a\xda\xf5\xd6\xe3\x2d\x5a\x6e\xae\x7b\x15\x12\x67\x56\xcf\xb4\x40\x7c\x03\x44\x39\xd9\xea\xc1\x68\x58\xb6\x6f\x68\xb1\x60\xb0\x56\xd9\x34\xba\x55\xc6\xcb\x2e\xc9\x97\xe8\xd4\x72\xa3\xbd\x42\xbf\x54\xd9\xfc\xa1\xc7\xf0\x6c\x0b\x90\xaf\x41\x99\x9b\xf7\xa2\xa7\xc1\x60\xba\xba\x58\x2c\xc6\xcb\xbc\xe6\xf6\xd2\x46\x66\xce\xfc\x2a\xa6\x3d\x00\x3e\x7a\xda\x44\x95\x0b\xce\x17\x81\x7a\xe0\x0e\x21\xac\x31\x34\xca\x62\x32\x5a\x23\x3b\xc1\x30\x52\x38\x69\xcb\xd1\x66\x98\x29\x12\xb9\x0c\xf6\x92\x90\xc6\x94\x75\x7b\xbb\x5e\xdd\xe3\x0e\x84\x11\x0f\xe3\x3a\xd3\x8c\xa0\x6f\x1f\x49\x75\x21\x94\x60\x21\x63\x69\xe3\x3c\x10\x22\xb2\xec\x09\x33\xf8\x75\x38\xa3\x6f\x00\xf2\x4b\x82\xfd\xa4\x11\xcb\xc3\xf3\x96\x98\xa3\xf9\x2d\xcf\x65\xd0\xcc\x44\x0f\xc2\x4b\xee\x32\x39\x27\x30\xe4\x67\xcf\x58\xf3\x24\x2e\xc9\x30\x13\xc8\x58\x90\xd8\x5e\x22\x8d\x91\x4a\x4a\x33\xc8\x49\x9f\xe2\x6a\xac\xd3\x42\x04\xaa\x1d\x17\xe9\x7e\x63\x51\xdf\x80\x44\xb0\xac\xe3\xeb\xb0\xe5\x26\xa8\xcc\x2b\xdb\x9e\x9f\x97\x7b\x9b\x6d\x07\xbb\xca\xc7\x69\x32\x48\x18\xd0\x0b\x58\xc9\x54\x82\x5e\x6b\x1d\x76\xd2\xc5\x70\xeb\x23\xd5\xc6\x46\x35\x77\x0f\xf6\xba\x08\x17\xf6\x7b\x3b\x4b\xa6\x53\x11\x17\x1b\x50\xe1\xe7\x43\xc5\x68\x0c\xc8\x9b\x3c\xed\x2f\x0a\x71\xcc\xbe\xa2\xd9\x74\x79\xfb\x2f\xb4\x28\xd4\xc0\x2d\xc2\xcf\x09\xed\x0d\xa5\x27\xb4\xf7\x6a\x86\x02\xe4\x4b\xec\x6b\x29\xef\xc6\xda\x3b\x0a\xca\xb7\xc4\x9f\x29\x67\xad\x7d\xc8\x84\x83\xe2\x75\x99\xbb\x94\x4e\x37\x75\xc6\xda\xfc\x0c\x09\x33\x0c\x0e\x3f\xe3\xca\x20\xf9\x29\xe7\x14\xd4\x1d\x4c\xc3\x91\xe9\x60\x5c\x0e\xa6\x11\xef\xec\x7e\x8a\x0a\xc0\xb4\xa9\x83\x16\x2f\xa1\x84\x9c\x18\x82\xf0\xcb\x5a\x3e\xe2\x9d\x25\x87\xaa\xca\x96\x22\xbb\x00\x7e\x1f\x22\x51\xde\xe8\x99\x83\x38\xeb\x11\x9b\x81\x4f\x7b\xc4\x0f\x42\xe0\x44\xfc\x3a\x07\xbd\x73\x8e\x79\xc7\x76\xac\x11\xbb\x6c\xef\x41\x62\x6d\xf3\xa6\x9c\x73\xda\x4c\x63\x80\x59\x1d\x91\x44\x14\xc2\x28\x06\x78\xd6\x3f\xa7\xe8\x85\xae\x91\x5d\xcd\x62\x1a\xc8\xdc\x21\xca\x38\x24\x65\x8d\xe8\x3a\xbb\xaf\xd9\xbb\x74\x5e\xc5\x39\x7a\x68\x0c\x1e\xa3\xe3\xb3\x07\x44\x88\x8e\x91\xca\xa7\xf9\x3b\x7a\x0c\x5f\x36\x43\x7d\x9e\x36\x23\xa4\x8d\xda\x51\x80\x72\xa4\xf1\x5f\x02\x28\xf2\xf8\x1f\xae\x2f\x1f\x00\x0f\xcd\xfe\x4b\x11\x70\x76\x09\x43\x4f\x94\x8f\xc8\xf8\x87\xeb\x4b\x6a\xbd\xdf\xa8\x43\x69\x34\xe6\xe5\x32\x9b\x1c\x12\xa4\x47\xe3\x4d\x57\xe0\xf8\x78\x5a\xf5\x47\x46\x1c\x61\x6a\x86\x19\x0d\x7d\xa7\xd7\x1b\xbf\x57\xe8\x25\xe6\x08\xae\x62\x3e\xca\x46\x1c\x99\x11\xbe\x0c\xfe\xe6\x39\x99\x6b\x68\x9c\x9c\x23\xad\x8b\x85\x39\x67\x3c\x51\x68\x7a\x28\x6e\x19\xe7\xfc\x8c\x65\x45\xff\xbb\x27\x2d\x47\x1d\x15\x65\xc7\x1b\x27\x5e\x22\xcc\xb4\x3c\x0d\x8d\xf3\x07\x32\xf8\x9f\x47\xf0\x4e\x6e\xd1\x2d\x27\x40\xfd\xf4\x20\x8e\x45\x88\xb9\x73\x26\xde\xd1\xaf\x87\xc1\x31\x56\x4f\x2a\x73\x9e\x7d\x3e\xd4\xd7\xdc\xa3\x4b\xf0\x3b\x98\xdb\x75\x92\xa8\xfd\x0f\x38\x3b\xff\x29\xfe\x01\x4b\xe5\x9f\xe2\x1f\xda\xb4\xea\xf3\x3f\xc3\x3d\x58\x0c\x24\x0d\xe4\xee\x74\xe2\xfa\x83\x54\xdf\x30\x08\x58\x2c\x3f\xfd\x87\xae\x1b\xef\x96\x52\x6a\x62\x5f\x50\x3b\x1f\x56\x30\x08\x7c\xbd\x5e\x0e\x23\xb1\x99\xaf\x84\xc8\x03\x04\x9e\xba\xf8\x96\x48\x9c\x89\x37\xe4\xfa\x21\x5c\x69\x07\x76\x05\xb3\xc7\xe5\x69\x1b\xf1\x8d\x45\xb8\x65\xa3\x0d\x34\xe0\x51\x82\x57\x16\xf1\x72\x32\x18\x64\x27\x61\x52\xe2\xf3\x85\xdf\xc8\x60\xf1\x05\x7e\x89\xff\xd3\x9a\x5c\xdc\xa6\xab\x19\x7c\xb9\xe6\x6d\xed\xe0\x80\x08\x76\x2a\x99\x34\x8c\x97\x5e\xc5\xdb\x6f\xd8\xb3\xde\x09\xdb\xeb\xb5\x86\x65\x85\x85\xb2\xb1\x34\x6a\xcf\x91\x5f\x36\xd2\x11\xde\x18\xc1\x82\x1c\xa2\x53\x35\x32\x46\x32\x75\x65\x05\xa5\x22\x64\x31\x12\x3e\x22\xd3\x8b\x7e\xf4\x33\xd5\x80\xb9\x57\xbd\x8f\xb7\x9d\x5e\xdc\x5a\x71\xad\xd6\x43\x27\xfb\xfc\xd1\xfd\xb8\xc0\x78\xd5\x05\x3c\xac\xc3\xc4\x83\x1d\xe6\x5e\xf4\x8c\x2b\xd7\x02\x84\xe7\xf7\x7c\xc5\x01\x02\x48\x4f\x7e\x69\xc7\xb5\x90\x32\xc9\xa1\x36\xe9\x09\x87\xf2\x28\xbd\xfd\x14\x15\x67\xa3\xc1\x6d\xc0\xab\xdf\xb9\x56\x90\x01\x58\x6c\x03\x39\xfd\x99\x69\x41\x32\x66\x0b\x6e\x7f\xf8\x5a\x78\xa4\xce\x21\x68\xf2\x2b\x36\x72\xc4\x90\xd4\xea\x04\x15\x22\x59\x52\x93\xd0\xd4\xb4\xf4\x0b\x9f\xef\x76\x8a\x38\x72\x06\xf4\x87\x7e\xbe\x0f\x31\x4b\xa6\x60\x51\xfb\x91\x02\x95\x94\x83\x92\x09\x3f\xb8\xdf\x79\x92\xca\x20\x39\xbc\xc5\x9a\x4d\x16\xd7\x13\xf5\x53\xe8\xe7\xcc\xcd\x34\x6f\x34\x4d\xb3\xbe\xa5\xf4\x2a\x5b\xc3\xf8\xae\x49\x9b\x56\xdf\xeb\x76\x90\x1d\x36\xe6\x21\xbc\x7f\x28\xf1\x36\xd6\xa0\xda\xe3\x28\xee\x51\x87\x90\x80\xa1\xe7\xd5\xc7\x3d\xdb\x80\xaf\x52\x08\xa5\xd9\x1e\x01\x6d\x8d\x56\x5d\xbc\x93\xc8\x8b\x67\x0a\x86\x92\x2b\xe4\x49\xdb\x8e\xeb\x83\x7c\x41\x87\x55\xfa\xd3\x84\x95\x63\x33\xac\x5f\x7a\xc0\x89\x3c\xce\x0b\xe9\xe5\x2c\x58\x98\xd0\xf7\xe1\x05\x93\xc2\x42\xc8\x57\xb5\xd2\xcb\x74\xe5\x69\x2c\xfb\x8d\x5a\xca\xe6\x6e\x56\x99\x3a\x8b\x7f\x66\x7f\xe5\xfa\x5a\x18\xb8\x20\x71\xe3\x0b\x33\xa8\x18\x4e\x8b\x93\x29\x87\x3a\xb9\x55\xb8\xce\x49\x53\x68\x70\x7a\x39\x85\x5d\x19\x47\x44\xc8\xd4\x7a\xe5\x83\x4c\x6c\xda\x1c\x3d\x3a\x32\x50\xa1\x03\x45\x38\xa3\xdf\x33\x5a\xc7\x07\x2a\x11\xa2\x2f\x3a\x13\x3b\x8e\xef\x0f\x47\x09\x5b\xe6\xf2\x2b\xf4\x06\xe8\xe4\x81\x2c\x8c\xa6\x4f\xbd\x4e\xd9\x83\x0e\xe4\x82\xe8\x07\xc3\x7d\xca\x6c\xe2\x69\xb4\xf4\xe5\xc8\x72\x99\xe9\x25\xed\xa1\xe3\x2d\xc4\x93\x8e\xba\x7d\x1e\x3c\x56\x05\x8e\x0d\x2f\x7c\x80\x29\xd8\x29\xd3\xa2\x21\x2c\x79\xc9\x9c\x6a\x91\x1e\x5e\x1f\x5f\xb8\x76\x3a\x26\xc4\xcd\x23\x0b\xc2\xf5\x17\x82\x6f\x4c\xf7\x7c\x38\xc6\xdf\xa9\x3d\x9b\x9c\x26\x21\x56\xde\x21\xd3\x1c\xa8\x31\xfa\x81\x0c\x64\x76\x06\xd5\xec\x39\x90\xa2\x4d\xc5\xa6\x85\x02\xfd\xf1\xe6\x95\x6e\xe8\xe6\xdc\xcf\x65\xa2\x65\x5b\x8f\xcc\x6a\xcf\xdb\x16\xfb\x53\x98\xd7\x1e\x2d\x30\x72\xd2\x5a\xe0\x2a\x7d\xb4\x4f\xd7\xcb\xa8\xe2\xe0\xa8\x7d\x7a\x07\x61\xfb\xdc\x8a\x34\x6f\xd8\x4c\x97\x66\x8b\x15\x96\x37\x78\x90\xe1\x7a\x4c\xcf\x49\xd9\xbe\x2e\xbf\x89\xc9\x5d\x1c\x96\x87\xe2\x68\xcd\x3e\xe0\xd8\x3d\x34\x8a\x2e\x65\x8f\x8d\xdc\xc5\xec\xa8\xb1\x87\xcb\x5c\x5f\x91\x74\x5c\xa3\x87\x58\x99\xba\xab\x50\x4b\x63\xec\xc5\xe4\xee\x09\xf8\xcf\xe5\x64\xe0\x8b\x50\x8c\xa5\xc7\x27\xd6\x84\x92\x93\x7d\x64\x1f\xf3\xb2\x8b\x72\x5d\xec\x49\xb7\xc4\x6b\x88\x35\x4d\x23\x15\x54\xbc\xd6\x65\x3d\x14\x5a\x33\x6d\x87\x66\x43\xd7\xb8\xa8\x6e\x42\xf7\x4a\xe2\xea\xfd\xcd\xad\x20\x45\xb3\xef\xf5\x7a\x0d\xc7\xae\xf8\xeb\x46\x19\xa0\x69\x78\x15\x44\x74\xcd\x36\xcd\x40\x4a\xc9\x57\x76\xed\x4e\xc5\x5e\x05\xcf\xb0\xa6\xe5\x43\x28\x0f\x9b\x12\x34\x2d\x64\xe1\x28\x36\xd6\x51\x2c\x08\xb7\x53\x8d\x5e\x1d\x16\xe2\x52\xc9\xde\x88\x2d\x48\x10\x81\x64\x3e\xf8\xe8\x37\xf6\x04\x1d\xf6\x3c\x7b\x2a\x73\x8d\x3c\x0f\x49\xbe\x7c\xf9\x78\x9a\x0c\xcf\x18\x74\xce\x15\x6b\x18\xe1\x87\x2e\xfa\x31\xf8\x16\x1d\xc8\x1a\xfd\x25\x07\x03\xd1\xaf\x58\xa6\x93\x36\xa4\x35\xca\xed\xfd\x6a\xc2\xcb\xa8\x16\x9e\x14\xf4\xdc\x96\x33\x71\xab\x1c\xfa\xb7\xc4\xef\x2f\x80\x87\x21\xb8\xa1\x00\xee\xf8\x2a\x06\x95\xb0\xb4\x2c\x22\x56\x98\x52\xe5\xf8\xe2\x3f\x8c\x91\x9b\x2a\xc6\x66\xeb\xc8\x1c\x2a\x03\x8e\xfd\xb8\x9f\xb4\xf6\xc9\x42\x91\xaa\xfb\xfb\xa0\x06\xb5\x10\x6f\xbc\xd8\xca\x03\x06\x1b\x45\x43\x42\xa7\x1a\x6b\x5a\x17\xec\xdb\xb4\xc7\x57\xd1\x4e\x0c\xbb\xf0\x4a\x7d\x32\x25\xd3\xb6\xf5\x2a\x1b\xab\xeb\xf8\xf1\x10\x60\xd6\x83\xd7\xd0\x72\x2f\xdd\xdd\xc8\x10\x05\xe4\xbf\x6f\xec\x45\x72\x9e\x1b\x4b\x70\xfc\x05\x6d\x1e\x6c\x7f\x7e\xcd\xa3\x9c\x9f\x03\x71\x3b\x4b\x9e\x18\xaf\xf9\xe7\x14\x88\xac\x80\xb0\x4f\xf4\x6b\x0a\xb2\xe3\xd8\xd4\x31\x4a\xf5\x14\x64\x69\x5b\x18\xc7\x9f\x6d\x7b\x98\x2a\xbc\xc3\xea\x8a\x5a\x6f\xa4\x45\x3b\xbb\xc7\xeb\xde\xe5\x01\x33\xb4\x77\xaa\x5b\x51\x88\x04\x90\x5a\x55\x70\xbe\x83\x57\x03\xe9\xaa\x95\x48\x00\xcf\x33\x5e\x8c\xe0\xe3\xd0\xdc\x20\x97\xc2\x9b\x15\xb1\x9a\xc6\x6d\x22\xd7\x3c\xdc\xae\x37\x24\x71\xe0\x6a\x44\x4d\x37\xf9\x44\x3a\x05\x89\x7d\x97\xb9\x2f\x08\xba\xb0\x5d\xaf\x1c\x3e\xbd\x42\x1a\x86\x01\x53\x03\x08\x89\x6c\xe4\x1d\x23\x73\x2b\x9a\x18\x75\xed\xb0\x9e\x99\x16\xb1\x1b\x58\x5c\x59\xe8\x00\x76\x02\x91\x9e\x5e\x21\x50\x08\xe2\x32\x66\xc1\x18\x3c\xa9\xd1\x5f\x17\xe4\x2f\x3b\x40\xe2\xc4\xd8\x35\xf3\x8d\x8e\x08\x00\x29\xa6\xe0\x60\x08\x7a\xa8\xcc\xee\x19\xc6\xea\xc3\xf5\x65\x4e\xcc\x4f\x85\x84\xe3\x9d\xf4\x1c\xad\xf2\x18\x95\xab\x57\x6b\xd9\xb7\xc1\x17\x10\x1f\x30\x1b\xe9\xe9\x20\xe9\xf3\x20\x63\xe8\xa1\x8f\x71\x91\x1b\x87\x3b\x6d\xd0\x89\x2d\x4a\x26\xac\x39\x04\x21\x31\x59\x21\xc1\xa1\x32\xec\xe0\x9c\xa1\x43\x2b\x54\x84\x7d\xff\xfe\x3f\x6e\xde\xbf\x3b\x15\x9f\x9f\xec\xf7\xfb\x27\x50\xfc\xc9\xd0\x77\xca\x40\x5f\xda\x53\xf1\xbf\xde\x5e\x9e\x0a\xe5\x9b\x1f\x16\xe2\x2d\x1d\x3f\x89\xaa\xb3\xb9\x31\xbe\x5c\x40\xdb\xdd\xa1\xff\x17\x8e\x25\xde\x3a\xac\x95\xcd\x83\xbc\xe7\x4c\x24\x4c\x63\x78\xd7\x1a\xe2\xa3\xe3\xfb\xd6\x8c\x21\xe1\x48\x17\x37\xf8\x63\x9c\x91\xe8\x37\x82\x85\x85\x8a\x21\xb0\xa4\x13\x37\xaf\xcf\xff\xf0\xef\xff\x53\xbc\x7e\x7b\x7e\x21\x36\xea\xb3\x68\xf5\x5a\xd1\x1d\x64\xd8\xda\xf7\x3a\x4c\xfa\xff\x7a\x02\xab\xe1\xc9\x8d\x5e\x1b\xe9\x87\x5e\x85\x05\x40\x74\x22\xe7\x91\x3a\xd9\xdc\xcd\x45\x53\x1c\x83\xe8\xc6\x1a\x1e\x80\x37\x8d\x35\x65\xef\x09\x24\xbc\xc1\xba\xc0\xd7\x57\x49\x43\x0d\x6b\x26\x32\x32\x1b\x65\x80\xd0\x0f\x5d\x5b\x9e\xd1\x4b\x15\x96\x80\x6a\xff\x34\x2e\x8c\x8e\xf6\x30\xb4\xc3\x99\xf8\x0f\x74\xb1\xb4\x09\x26\x4e\x90\x15\x7a\x87\xc0\x8b\x71\x61\xd8\x0d\x75\x26\xd9\x9d\x89\x37\xc2\x80\xec\x10\xa4\xca\x94\x17\x25\xcb\x09\x12\x56\xf2\x9d\x89\x4b\xe5\xc5\x36\x2a\xfd\x70\x95\x13\xba\x69\x91\xd2\x04\x76\x3e\x3b\x8c\xcb\xcf\xb9\xfb\xbd\x60\x1e\x3a\x1d\xc3\xf2\x85\xd9\x6c\xf6\x3c\x46\x66\x3f\xc6\x45\x72\x7f\x8b\x33\x59\xc9\xd3\x6d\xf2\x62\x88\x9e\x25\xe7\x26\x88\xdd\x1f\xce\xce\x5d\x76\x76\x84\x6b\xe1\x5c\x73\x30\x2e\x33\x76\x2f\x38\x9b\x1d\x09\x3f\x6a\xce\xe9\x71\xe6\x29\x3d\x39\x6d\x4f\x45\x78\xae\x79\xca\x76\x7b\xa7\xc1\xbf\x43\x7b\x2a\x06\x93\x7e\xd3\x53\x39\x96\x60\xc3\x27\xda\x0d\xc3\x67\x34\xeb\x6c\x4f\x29\x3c\x72\x4a\x98\xcc\x37\x5d\x35\xa4\x07\xa9\xd4\xae\xf0\x2c\xf5\x21\xe0\xb2\x27\x01\x03\x2f\x82\xd4\x81\x18\x9f\x79\x5a\xf7\xc8\x66\xa4\x78\x03\xf0\x00\x68\x34\xa3\xc9\x2d\x10\xfe\xff\x1f\xc9\x7c\x18\xb1\x5b\xee\x60\x9a\x4d\x6f\x8d\xfe\x6d\xa6\x6f\xec\xf3\x31\xb9\x7c\x3c\x02\x90\x16\x6b\xb0\x81\x5b\x76\x1a\x4d\x52\xf0\x75\xe0\xfc\x5d\x31\x79\x49\x0c\xee\x12\xc7\x19\xe9\x55\xc8\x8b\x07\x8e\x43\xd2\xe5\x46\xea\x95\xce\xaf\x40\xc1\x99\x25\x24\x99\x90\x02\x29\x14\x07\x39\x9e\xe2\xa5\x66\x60\x9e\xaf\x9e\x5a\xa1\x25\x21\x92\xd9\x84\x89\xa0\xc4\x80\xa3\x3a\x26\xf2\x09\xcf\xdb\x54\xed\x90\x6a\x38\x26\x8a\x91\xff\x80\x20\x22\x84\x70\xd9\x18\x25\xed\x45\x4c\x2b\x05\xdb\x70\x4e\x22\x0b\x54\x1e\x92\xe8\xc0\x08\xcf\x93\x9c\xb9\x01\x11\xb9\x7c\x81\x0c\x20\x1c\x20\xcc\xab\xe0\x29\x77\x12\xd8\xf0\x30\x1a\xea\x56\xbb\xc6\xf6\xed\xc3\xb8\x5f\x10\xd0\xef\xc1\x6e\xd6\x5e\x76\x5f\x68\xfa\x0b\x86\xfa\x36\xfc\x34\x26\x21\x98\x09\x05\x5d\x19\x65\xb6\x76\x2b\xd1\xcc\xf5\x05\xfe\x98\x9c\xcf\x1b\x69\x0c\x99\xf4\xd3\xaf\x7c\xae\x77\x9d\x3d\x84\xc8\x95\x2f\xf0\x2b\xc4\xe4\x9e\x82\x64\x71\x1e\x97\xcf\x2f\x28\xda\xe2\x2b\xeb\x9b\x8d\xfc\xee\xd9\xd3\xe5\x73\x60\xc5\xf9\x2a\xa0\xb3\xf6\x2e\xbc\xe6\x91\x2d\xee\x9b\x18\x1f\x65\x17\xe3\x21\x26\x5b\x14\xd9\xb6\x64\x40\xa4\x0d\x0d\xc5\x28\x48\x5c\x8a\x24\x44\xad\x1a\x31\x6a\x38\x07\xb1\x9d\x3c\xf6\xa9\x37\x73\x9d\x49\x7a\x03\x84\xc2\x11\xd8\x50\x78\x0f\xd9\x3e\x41\x9e\x83\x15\xb8\xe2\x76\xa3\x0e\xd1\x57\x34\xc6\x28\xc3\xcb\xdb\x32\xe4\x0b\x36\x2f\x04\xa9\xcc\x6f\x1f\x6d\x5d\x0e\x72\x08\xdd\x81\xde\x77\x48\x61\x64\x0e\xa2\x4d\xcd\xc8\x35\xa8\xc5\x43\x99\xb9\x5e\x4c\xa3\x42\x46\xa8\x71\xf4\xca\xd4\xd3\xa3\xd1\x2b\xf3\xa2\x79\x08\xcb\xac\x28\x0a\x09\x71\x10\x66\x2d\xc3\x8b\x69\x99\x06\xa8\x4c\x5d\xfd\x8a\x18\x95\xf3\x33\x37\xd6\x12\x7d\x71\xaa\x1f\x7a\x18\xd2\xe6\x9d\xfb\x8a\x68\x95\x63\x4f\x70\x5f\xa1\x30\x9a\x6b\x4b\x6e\x38\x1c\x1b\xf0\xa5\x67\x22\xad\x5e\xad\x16\xe4\x44\xb8\x76\x76\xe8\xf1\x22\xff\x67\xfc\x16\x37\xf8\x4d\x20\xec\x42\xf1\x8c\x7d\x29\x52\x62\x7c\x95\xc8\xcf\x10\x31\x11\xdf\xa3\xa2\xee\xf3\x5e\xea\x2e\x46\x76\x5c\xad\xe8\x6d\xea\x3b\x8b\xb1\xbd\x29\x67\x41\x45\xdc\xc6\xee\x6b\xf8\x85\xa1\x26\xd1\x68\x6f\x63\xf7\x54\xe8\x06\x52\x32\x30\xb7\xeb\xb4\xaf\xd9\x7f\xf1\x0d\x7c\xa0\x07\xe6\x0c\x62\x30\xe8\x6d\x31\xc0\x7c\xa0\xcf\x1c\x0a\x50\x46\x6f\x14\xe1\x0a\xe8\xa4\x8d\x2e\x02\x51\xcf\x90\x2e\x87\x70\x85\x06\xb8\x93\x16\xe9\x0f\x2a\x12\x12\x48\x1e\xa8\xe6\xa4\x8d\x2a\xea\x04\xc1\x03\x8d\x44\xf5\xe7\x37\xef\xe8\x13\xbd\x07\xb3\xfb\x28\x74\x23\xfd\x52\x77\x3c\xde\x1c\xd8\x7e\x87\x2e\x0a\x55\x1b\x5c\x27\x42\x9e\xc8\x92\xb3\xb7\x86\xb9\x23\x69\xc2\xe1\xad\xad\xb7\xd2\x1c\xe2\x5b\xe7\x1b\xbb\x55\xac\x44\xd9\x2b\x26\x3f\xe8\x6c\x3a\x3d\xcc\xb4\x56\x40\x11\x86\x0a\x03\x12\x14\xb2\x80\xb6\x0a\xbe\xb3\x17\x73\x3e\xb4\x43\x1e\x39\x44\x0f\xfc\x16\xec\xd2\xc0\x73\x05\x88\xb6\x97\x2b\x7c\x27\x07\xff\x63\xea\xae\x57\xa9\xd8\x55\xaf\x9e\x8c\x8b\xf1\x7b\x36\xf8\x17\xd3\xe4\x86\xde\x52\xa4\x19\x48\x33\x13\x9e\x5e\x7a\x2b\x4e\x1c\x7b\x98\xe4\x0d\x57\x22\xa6\xd5\x5f\x73\xf8\x46\x5a\xfb\x18\x87\xaf\xe8\x53\xfe\x50\xee\x8a\xf8\x42\x11\xc7\x01\x0d\x47\x28\x96\xd9\xae\xb7\xed\xd0\xf8\x45\xd1\xee\xa2\x34\x31\x82\x2a\xac\x3a\xd1\xd9\x35\x6a\x1b\xd0\x25\x30\x99\xd3\x0e\xa6\x55\xbd\xf3\x64\x39\x2f\x33\xea\xaa\xb7\xbb\x9e\xee\x28\x02\x7a\x2f\xd7\x31\xd6\x9a\x5c\x93\x5f\x93\x94\x87\x2a\x77\xc8\x81\x1f\x45\x99\x78\x00\x07\x23\xfb\xcc\xaf\xa8\x97\x6b\x64\xaa\x9b\xdc\x93\x3d\xc8\x80\xd6\x04\x9e\x38\x6b\x40\x71\xb2\x84\xd4\xe9\x69\x12\x72\xca\x37\x32\xd9\xf4\xf3\xb6\x65\x57\xda\x31\xa7\xb3\xb2\x25\xa1\xfb\x92\x7e\x2d\x16\x8b\x99\x55\x33\x0d\x83\xbd\xeb\xd5\x93\xf1\x5c\x67\xf0\x71\x00\xfe\xaa\x1e\x77\x9d\xd8\x59\x6d\xbc\xa0\x37\x5f\xd2\x17\x2b\x25\x5c\xd1\xf0\xd4\x6a\x6b\x9e\xe0\x31\x95\x9a\x31\x7e\xe9\x18\xab\xe3\x85\x92\x96\xcc\x78\x55\xe3\x1b\xb2\xb0\x23\xf0\x11\x59\xb9\x2d\x70\xf5\xa4\x8d\x81\xaf\x39\x27\x1b\x8a\xd8\xec\x04\x55\x5e\xc8\xcf\x00\xd3\x91\x17\xc4\x9c\x78\xa5\x37\x86\x99\x3f\xe5\x42\x3d\xe3\x57\x63\x8d\xed\x49\xd3\x1c\xef\xb7\xbd\x5c\x3f\x18\x8f\x6c\x54\x5b\x7e\x55\x4c\x55\x7c\xe1\x10\x1b\xef\x81\xf2\x0d\x5a\x86\x87\x59\x0d\xa0\x94\xbc\x47\x26\xac\xc6\x04\x17\xbf\xd9\xcd\xf6\x55\x11\xc1\x35\x95\x08\x4e\x60\xf0\x00\x0e\xbf\xab\xea\xa3\xed\xd7\x9f\x2a\xbc\x0f\x44\x87\xdf\xd1\xe1\x67\x7e\xf9\x87\x0a\x5e\x80\x81\x1e\x3d\x04\xf8\x12\xe4\xeb\x08\x5d\x86\x03\x7b\x05\xdb\xb4\x34\xa7\x01\x00\x52\xaf\x63\xf4\x2f\x7e\x32\xc1\x01\xc0\x16\x21\x78\x85\xed\xd7\xe9\x91\x64\x5e\x1d\xc5\x7b\x4a\x4f\xef\xd8\x3f\x7f\xc5\x4f\x19\xce\xc4\x15\xfe\xa8\xb4\xb9\xd7\x1e\xf8\x87\xad\x22\x7b\xbc\x37\x98\x80\xe7\x8d\x35\xaa\x2a\x8c\xfd\x2b\x74\x2b\x5e\x07\x43\xff\xb3\x60\xf2\xcf\xe9\x45\x84\xaf\xb3\x22\x62\x4a\x1e\x6c\x03\x50\x96\x2f\x3b\x01\x39\x8e\xca\xcc\x9b\x6f\x80\x8e\xe4\x11\x4a\xe2\x10\x62\xea\x43\xd0\x45\x74\x2d\xa0\x0e\x43\xf0\x10\x89\xb8\xd0\x3a\xd1\x90\xc0\x85\x8b\x0a\x30\x6b\x53\xb8\xae\x72\x8b\x54\x4d\x46\x6b\x36\xf4\x20\x3c\x15\x03\xe6\x10\xed\xe5\xff\x44\xf0\x45\x84\x19\x56\x78\x4a\x8a\x8e\x47\xc9\x1c\xfa\x34\xd7\x80\x22\x22\x90\x04\xfe\x54\xcd\x07\x2d\x7a\x3f\x5e\x1b\xbf\x23\x6c\xd1\x14\xc7\x83\x81\x8b\x10\x5d\x1a\xd0\xac\x31\x38\x0f\x47\x1a\x11\x19\xdd\x6f\x7d\xd3\x19\xf7\x0f\x30\x4c\x71\xaf\xe4\xf7\x53\xfc\xf6\xe0\xaf\xf4\x2b\x65\x75\xb6\x09\x0f\x41\x2f\xf9\xe7\x51\x6b\x96\x87\x9e\x24\x94\xa0\x19\x31\x2b\x06\x2e\x62\xfa\x5a\xd3\x17\x7e\xe9\x60\xfb\xf5\xbf\xf6\xd0\xa1\x88\x60\x39\x69\xb5\xbc\x97\x5e\xf6\xc7\x1a\x4d\xb9\xa1\xed\x5f\xdd\xf4\xb1\x81\x58\x41\x61\xc6\x4a\xa2\x49\x4c\x49\xec\xe0\x83\x45\xca\x08\x93\x79\x83\xe3\x0d\x5d\x66\xa0\xc5\xd6\x1d\x14\x5b\x92\xac\x0c\xbe\x1c\x60\xf2\x88\x89\xcf\x43\x91\x26\xc7\xad\x04\xca\x14\xfd\x40\xe6\x8d\x7c\xb0\x44\xce\xcd\xd8\x91\xb9\xc8\xef\x8f\x3e\x39\x6f\x1a\x72\xde\xb6\x41\x5b\xc8\xc1\xe6\xc2\xf8\x25\x8d\xe4\x2a\xf3\x9e\x3e\x0e\x9d\x9a\x46\x0e\xf9\x56\x7e\x0f\x58\xac\xb7\x8a\x69\xfd\x82\xff\x6f\xf4\xae\x2e\x22\x4e\xbe\x8d\xe9\x59\xf0\xc9\x9f\x62\x31\xd6\xf4\x30\x1f\xd5\x8c\xd2\x13\x7d\x45\x7f\x03\xe1\x75\x45\x04\xa2\x6f\xe4\x2d\x67\x73\xc6\xe5\xcb\x3a\xe8\x7f\xdd\xdb\x4e\xc5\x86\x8a\x6b\xdb\xa9\xd4\xbc\xd2\x0b\x62\x59\x30\x96\x89\xe9\xac\x16\x08\xe1\xff\x62\x7a\x19\x36\x36\xa4\xf2\x19\x9b\xc7\xb4\x40\x7e\x9c\xb1\xa3\x78\xf3\xd3\x18\xda\xa0\xf3\x78\x3e\x8d\xdf\xd9\x7d\x45\x47\xf1\x02\xdd\x2c\x9e\x89\xff\xb0\xda\x70\x4a\x59\x29\xa5\x01\x67\x94\xa2\xad\x5c\x83\x8c\x45\x21\x8d\xa7\xf9\xa3\xa8\x72\x78\x12\xc5\x78\x72\x1c\x59\x19\x19\x7b\x76\xe6\x69\xc8\x7e\xa6\x8c\x87\x46\x58\x47\x41\x5e\xc8\x1b\x43\x51\x6f\x0e\xf1\x35\x15\xe3\x4b\xfb\x71\x75\xa7\x41\x85\x8e\x7a\xb7\xf8\xc2\x50\x6d\x43\x3b\xd0\x92\x3a\xb5\x03\x1f\xfc\x97\xed\xc8\x21\xbe\xa6\x1d\x50\x0b\x7a\x72\x0b\x2f\x0c\x8e\xb6\x47\xb6\xad\x20\xe3\xef\xdc\xec\xcb\x8d\x9b\x98\xe2\x9a\xdd\x66\xe7\x3f\x1a\xcd\xb6\x23\x7e\xc6\x2d\xe6\x8e\x54\xca\x21\x6b\xc7\x19\x96\x83\x0c\xd8\x67\x63\x7d\x7f\x99\x08\xa0\x87\x3e\x28\x19\x41\x33\xd3\xf4\x22\xce\xc2\xf4\x5c\xa2\x76\x25\x16\x11\x79\x05\xa6\x0d\x9c\xf9\xe5\x23\x99\xe0\x42\xa0\x21\xe2\x17\xf3\x43\x05\x19\xc6\x30\x93\x2d\x42\xd4\x71\xaf\xc2\x06\xcb\x6a\x9d\x22\x8b\xc4\x1c\xa1\x22\x11\x9f\xc2\x85\x1d\x9b\x73\x7b\xd9\x7d\x8e\xc2\x3b\xae\xe2\xd9\x6b\x80\xda\xca\xc3\x38\xe8\x33\x7a\x62\x28\x76\xcd\x03\x41\xec\x27\x4d\x49\xe7\xfa\x2b\x7d\xaf\x4c\x5a\x30\x47\x85\xab\x45\xbe\xd5\xa7\x0b\x24\x23\xd7\x3a\x67\x82\xd7\x3d\xfa\x16\x0c\x33\x0f\xa4\x23\x5b\x18\x88\xfe\xa7\xd8\xe7\x46\x9a\x31\x6d\x40\x43\x41\x25\xb7\x8f\x1f\x22\x11\xbf\xbb\x39\x48\x52\x1e\x6e\x0f\x92\x0c\x72\xa5\x6b\xda\x9c\x3c\x3c\xd4\x2c\xa2\x07\xbf\xbb\x59\x48\x61\xbe\xb2\x59\xa7\xa1\x4d\xc4\xc7\x00\xbd\x98\xa3\x14\x0f\xb5\x76\x24\x68\xe1\x32\xbe\xce\xa5\xad\x40\x36\xd0\xf6\x15\x25\xc1\x59\xdb\xd7\x4c\x71\xbd\x58\x8c\xf7\x53\x66\xbc\x9b\xed\xa9\xec\x75\x40\x68\x0b\x9a\xe9\xf2\x2b\x2a\x3e\x0f\x13\x2a\x63\x0d\xca\xe7\x74\x47\x1b\x5f\x5a\x65\xc8\xf9\x96\xc8\xf7\x07\xe6\x89\x30\x9c\x56\x11\x2b\x33\x5e\x0d\xb1\x3a\x4b\x47\x57\x26\xd5\x47\x9c\xb9\x4f\x55\x2b\xdd\x66\x69\x65\x8f\x37\x14\xe1\x77\x55\x3c\x93\xaf\x8a\x78\xf4\x23\x5e\xce\x55\xa3\x41\x2d\xc6\x53\x0e\x7e\x03\xe2\x62\x94\x33\xce\x8b\x04\x47\x61\xcc\xd7\x81\x99\x5c\x0f\xec\x89\x86\xcd\xfb\xf1\xc9\xb6\xf3\x6a\x2b\xde\x51\x42\xb5\xb5\x46\x93\x25\xf1\x5b\xfa\xa5\xcd\xba\x2a\xdc\x29\xbd\x84\x8f\x0a\x1d\xe8\x70\xca\xa5\x74\xbe\xf2\xd6\x63\x40\xd4\x5b\xf8\xff\x93\x38\x69\xab\xd4\x75\xd4\x8e\x6b\xe7\x91\xcd\xba\x09\xbf\x5d\x06\x90\x0c\xe9\xc8\x1b\x1c\x7f\xe4\x28\xb0\x9d\x35\xdb\x2d\xc6\x76\x73\x2b\x11\xeb\xe0\xe6\xaa\x0c\x4e\x92\xd0\x02\xad\x95\x5e\x2e\x83\xfa\xe7\xd9\x12\xb5\xba\xcb\xe7\xa4\x1a\x3d\xcd\x12\x8a\x19\xc9\x33\x8a\x7b\xc1\x94\x5c\x9e\xba\x29\x9d\x42\x10\x17\x49\xce\xcb\xb2\x2e\xd9\x4c\x6a\x09\x57\x39\x79\x5a\x78\xcb\x91\x52\xc2\xab\x8e\x02\xbb\xc5\xd7\xef\x2c\x44\x14\x59\xf4\x74\xa9\x48\xa2\x67\x72\xa3\x9e\x90\xe2\x39\x4f\xeb\xec\x5a\x1b\x41\xca\xec\xb2\x7b\xcc\xda\x97\x38\x83\xb3\xb1\x02\x05\xba\xb5\xce\x53\x36\xc1\xbe\xb5\x48\xc5\x0d\x9a\x27\xb0\xe1\xea\x04\x30\xf9\x4f\x76\x8b\xb9\x85\x14\x24\xf6\xb8\x98\x48\x6c\x9f\x83\x74\x7b\x4d\x21\x60\x6f\xf0\xc7\x2c\x4c\x3f\xa0\x5a\x73\x30\x59\x6e\xd3\x29\x69\xea\xc1\x2c\xb5\x69\x6b\xcb\x81\x94\x2f\x20\x51\x0c\x66\x89\xd6\x7d\xef\x71\x3f\xba\x07\x0b\x65\x47\xe8\x79\xd7\x09\xca\x0a\x25\xb3\x27\x53\xf3\x67\x69\xc2\xcc\xa7\x32\xdb\x96\xca\x24\x4a\xba\xc4\xa4\x48\x74\xa6\xca\x86\x25\x21\xfb\xab\x70\x8c\x5a\x99\x20\x22\x9a\x6f\x6f\x2a\x1e\x00\x40\xf0\xf5\xbd\x1a\x35\xb2\x20\x7a\x01\xe4\x0b\x18\x46\x4d\x9c\x45\xf1\xed\x8d\xc4\x83\xd7\xac\xe9\xd8\x39\xd2\xc8\x83\xe8\x55\x63\xfb\x96\x65\xdc\xce\x3a\x8f\x5a\x6a\x0a\xb9\xf9\x30\xca\x63\xad\x7e\x10\xe7\x37\x74\x63\xad\x7d\xbd\x6e\x52\xf3\xad\x58\xcb\x7e\x29\xd7\xf4\x44\x86\x1d\x1c\x59\x53\x6a\x45\xe7\x8b\x3f\x34\xc0\xd8\xa0\x16\x18\xad\x19\xf4\xc7\xda\xd6\x2b\x74\x0c\x22\xbb\xae\x76\x6e\xc3\xb6\x07\xd7\x8a\xee\x71\x1e\x2f\x9c\xdb\x3c\x95\x1c\x93\x5c\xe1\x2d\xbd\x7b\x4c\x51\x6f\xbe\x6f\x24\xbe\x21\xff\x09\xdd\xf8\x20\x69\xc7\xd2\x81\x09\x86\xd1\xfa\xe1\xc1\x8a\x46\x7d\xc9\xe8\x7a\x36\xb6\x3d\x36\xc5\xab\xaf\xea\x41\xf0\xbc\x72\x8d\x49\x7c\x47\xd4\x28\x34\xf3\x66\x2a\x86\x8c\x9f\x75\x3e\x64\xb0\xa9\xb9\x5d\x4d\xd6\xfc\x03\x55\x3c\x30\x0b\x8f\xbf\xa5\xd6\xbc\x9b\x1c\x3f\xff\x78\x2f\xb5\xd1\x7e\xb2\x15\xae\x31\x59\xcb\x4e\xff\xf6\x3b\x37\xc4\x1c\xe2\x7f\x75\x43\xf4\x59\xab\xc6\x5d\xca\x19\x04\x74\x9d\x56\x0f\x3b\xaf\xf1\xa0\xb8\xa1\xa0\xec\x1f\xf0\x3b\x27\xd8\x43\xdf\x03\x93\xb8\xb6\xbd\x1d\xbc\xa6\x28\x60\x94\x26\x5e\x85\x34\x37\x53\x00\x2f\x45\x0e\xf5\xc0\x2e\x20\x43\x99\xb7\x98\x2c\x3e\x60\x18\xb7\x54\x0a\xf9\xa7\x50\x46\x76\xa8\x3a\x26\x9d\x36\x32\x56\x5c\xea\x3c\x64\x64\x25\xb9\x8c\x5d\x7a\xc9\x7e\xfd\x18\xf8\x3d\xa7\x64\xb0\x78\x15\xa9\xfa\xba\xb3\xf6\x6e\xd8\xd5\xd0\x55\xf4\x4c\x44\xc9\xe2\x12\x93\xc5\x2d\x24\x4f\x6b\x08\xad\x8a\xc5\x46\x8d\x3a\x56\x6e\xd5\xab\x49\x99\x97\xbd\x9a\xc2\x87\x91\xdb\x28\xb9\x9b\x8c\xdb\x6b\x25\x77\x93\x51\x43\xc8\xe9\x00\x20\xec\xf1\x51\xc8\x4b\xe9\x16\x25\xee\xbc\xc4\x9b\xb6\x3b\x56\x87\x46\x43\xa5\x31\xbc\x01\x3e\xfe\x48\x09\xe6\xa7\xc6\xad\xe2\xeb\xc3\x49\xab\xec\xf2\x6f\xaa\xf1\x2e\x40\xbf\xa7\xcf\x0c\x6a\x69\xad\x77\xbe\x97\x3b\x60\x85\xd1\x3a\x9e\x86\xe9\xe7\x90\x0e\xac\x70\x73\x37\x19\x29\x82\x9e\x0e\x15\x41\x1f\x1f\xab\xad\xdb\x49\x53\x3b\xdf\x0f\x8d\x1f\x7a\xe5\x62\x85\x6f\x6f\x76\xd2\x88\x9b\x98\x31\xa9\x71\x52\x32\x5f\xa1\xe3\xc2\x73\x35\x37\xb2\xd9\xa8\xd9\xaa\x2f\x20\xe7\xc1\xba\x27\x65\xf3\xca\x27\xc5\xe7\x76\x4a\x6f\x57\xba\x03\xa2\xb4\x1c\x9a\x3b\xe5\xeb\x8d\x74\x9b\xda\x63\x5c\xca\x0c\xd7\x55\x00\x13\x3f\x23\x98\x78\x2d\xdd\x46\xdc\xa2\x7a\x6e\x06\xeb\xba\xa9\xb7\xca\x4b\xb4\x67\xca\xb0\xbc\xba\x10\x6f\x39\x79\xae\x14\xaa\xed\x6a\x96\x80\x78\x17\x02\x53\x9a\x61\x78\x8f\x9a\x3d\x16\x8a\xce\x23\xc8\x1c\x36\xa3\x3e\xf3\x91\xde\x1c\x1a\x0e\x61\xfe\xd9\x43\x1b\xae\x29\x25\x83\x45\x31\x6f\xdd\xd4\x81\x46\xa2\xa9\x0b\x7a\x4b\x7d\x75\x81\xdb\x77\x42\xc1\x12\x30\x11\xae\x57\x17\xe2\x4a\x0e\x6e\x16\x70\x27\x69\x33\x1d\x85\x0c\xd5\x07\xc0\x50\xf3\x18\x8e\x2b\x75\x34\x94\x44\x56\x48\xc6\x5e\xe0\x03\x5b\xf2\x4e\x5a\xef\x24\x59\x98\x82\xd4\x2d\xde\x92\xc7\xd2\x2b\x48\x63\x58\xa3\xf6\xf9\xf5\x4b\xba\x07\x3e\xa7\xc4\x00\x46\x92\x05\xca\x13\x94\x12\x78\xe1\x36\x18\x6b\x23\x89\xe6\xbc\xc2\xbb\x2b\xa5\xa5\x03\x74\x67\x1d\xa7\x05\xaf\xdb\x31\xdc\x1b\xa7\xe3\x0b\x91\x5e\xad\xb5\xf3\xec\x13\x03\xbd\x5b\xe3\x3b\xca\x6b\x4c\x0e\xf2\x4d\xfe\x32\xf6\xd6\x62\x2f\xb3\x8e\x95\xf6\x8d\xa1\x9b\x5f\xf6\xfc\xbd\x60\x1c\x79\x68\x21\xee\x19\x0a\x2f\xc1\xc0\xaf\xd4\x3c\x04\x43\x3f\x82\x84\xe5\xd8\xf1\x2d\x68\x97\x97\x46\xc9\x32\x88\x6a\x23\x0c\x97\x28\x75\x66\xa3\xbc\x93\xce\xed\xd1\x3e\x3a\xe8\xc5\xf1\x66\x41\x68\xcf\xcf\xe1\x50\x2f\x8f\x56\xc6\x83\x61\x33\xb3\xd0\xfa\xe4\x9b\x8f\xad\xe0\x22\x8b\xc1\x03\xc1\x39\x5f\xba\x81\x4c\x63\x91\xad\x14\x34\x9d\x29\xd7\xc8\x56\x7e\x26\xe1\x04\x87\x94\x1d\x83\xcb\xcf\x7a\x3b\xe4\xaa\x2a\x9a\x6a\xec\xac\xde\xea\xa3\x65\x83\xd2\xef\xfb\x1b\xe5\xc5\x93\x1f\xf1\x3d\xa7\x53\x62\xdd\xd9\x25\x7a\x43\x25\x97\xae\x1d\xa0\xf8\x81\x71\x68\x57\xe7\x8b\x12\x95\xd3\xa1\xc1\xf8\xb3\x5c\xa4\xbb\xde\x6e\xf4\x52\x7b\x9a\x90\x99\x02\x01\x20\x44\xa3\x5c\xc7\xb5\x0c\x35\xf1\x12\x2f\x0a\xa1\x87\x22\xc8\xa0\x15\x6a\xfb\xcc\xd0\x20\xac\x79\xf2\xd8\x04\x22\x06\x5b\xf1\x4f\x30\x64\x65\xb2\x40\x9e\xc0\xf6\x91\xeb\xc3\x1c\x8f\xde\xee\x6c\x0f\x5d\xa0\xc5\xf6\x25\x5c\x04\x2e\x08\xbc\xe0\xbd\xe7\x96\x4c\xba\x0c\x08\x2b\x86\x48\x7f\x58\x9c\x0f\xde\x35\x97\x6b\x03\x63\x9a\xd4\x76\x6f\x92\xe2\x31\x6b\x29\x45\x3c\x81\xf6\x26\x8f\x11\x16\x38\x53\xe0\x79\x31\x52\x21\x08\x59\xb9\xe7\x8f\xe8\xa8\x27\x85\xd6\xb3\x7d\x74\x2e\x41\x26\xeb\xac\x96\xcc\x1b\xb0\x91\x8e\xcd\x74\x8e\xd4\xbf\x2d\x74\xcc\x45\xf5\xb9\x7e\xac\x6c\x00\x5d\xfa\xc5\xd7\x40\x93\x8b\x18\x57\x36\x65\xc6\x42\xeb\x3c\x9b\xb2\x87\xcc\x8c\x6d\xcf\x4e\x11\x46\xd4\xbd\xb8\x09\x2f\xa8\x3c\x96\xc8\xa9\x37\x26\x94\x96\x44\x98\x94\x6e\x89\xc2\x05\x11\x69\x61\x91\x70\x8f\xeb\xcb\xb6\x73\x51\x1b\x95\x28\xef\x6f\x29\x2d\x6f\x02\xa5\x4c\xef\x91\x29\x9d\xf5\x87\xe2\x4c\xfc\x95\x7e\x71\x3a\x2a\x11\x89\x7b\xeb\x43\xda\xf8\x5d\x1a\x43\x82\x6c\x06\x27\xf7\x6f\xaa\x42\x75\x71\x41\xb7\xdd\x31\xc2\xed\x18\x96\x22\x88\x04\x3f\x22\x4c\xd4\x39\x2b\xeb\x05\xa5\xe4\x71\x53\x29\x45\xa1\x57\xb8\x36\xfa\x87\x6b\x39\x7d\x6a\xff\x95\x35\x8d\xd1\x8c\xda\x95\x61\x45\xa8\xf9\x43\x23\x6b\x8d\x53\xcd\xd0\x6b\x7f\x40\x87\xac\xb6\xb1\x1d\xbd\x5e\xc5\x34\xf4\xc5\x0a\x69\x0c\x3b\x7e\x9c\x42\xa9\xe8\x50\xe2\x4c\xbc\xb6\xce\x73\xca\x8e\x22\xa7\x5e\xd9\x3e\xa4\xa0\x1e\xaf\x45\x13\x6c\x6d\x5a\xf1\xe2\x5d\x99\x5e\x98\x7b\x45\x0f\x7d\x14\xbe\xdd\x15\x9e\xfa\x82\x1b\x3e\xf2\xc2\xa7\x16\xeb\x85\x78\xf1\xfe\xed\xff\x75\xe2\x72\x84\xe1\x08\x0c\xd5\x5d\xf1\xf7\x1c\x4c\x66\x1a\x26\x7b\xa3\xcd\xfa\x27\x0e\x56\x14\x70\x60\x78\x25\xdb\x93\x2d\xf6\xae\x83\x01\xf0\xea\xb3\xc7\xeb\x3f\x63\x3d\xc7\x49\xde\xe8\xf5\x06\xed\x1e\x74\xa7\xd6\xf4\xcc\x00\xb6\xe7\x22\xcc\x24\xf0\x57\x1c\x09\x0d\xf9\x2a\xbe\xc2\xf9\x59\x3a\x95\x83\xe0\x10\x21\x40\x1c\x22\xe9\xc9\x17\xa0\x9a\x7b\xe2\x2b\xce\x43\xee\x51\xe8\x71\x00\x6b\xa4\x3c\x91\x13\x80\xd6\x3b\xbd\x36\x4f\x34\x46\x19\x01\x12\xa8\xba\x96\x9f\xcc\x17\x3e\x0f\x17\x93\x1a\x82\xb5\x17\x86\x8b\x78\xf7\x70\x6b\xdc\x10\x9a\x7e\x33\x7c\xa9\xe5\x5b\xa9\xd1\x75\x26\xfe\x1f\x83\xdd\xab\x5e\xaf\x0e\xf5\xba\xb7\xc3\xae\xce\x68\xef\x99\xf8\x0b\xe6\x08\xcc\xc9\xa8\x32\x97\xa3\x02\x7c\xa7\x86\xbe\x0f\x71\xac\x5f\x21\x74\x36\x1b\x69\xe0\xa9\x04\xc5\xba\x88\x90\x14\xec\xa2\x80\x48\x0d\x6f\xac\x01\x39\x82\xdc\xd5\x74\x64\x01\x4b\xc5\x62\x2f\xd0\x1a\x5b\x6a\x0c\x39\x7c\xc9\xfe\xa7\xe9\x7a\x2b\x5b\x05\x09\x23\x20\x51\x2d\x08\xd4\xd4\x2d\x5e\x1c\x09\xdd\x25\x02\xa0\x2f\x18\x00\x18\x8f\xa5\x83\xa2\x4b\x8e\xa1\xaf\x7c\xb3\x11\x29\x0b\x0a\xf1\x6e\xa4\x57\x44\x9f\xc3\x6e\x8d\x7d\xc6\xca\x8a\x2e\xd3\x4d\x6b\x04\x20\xdb\x8c\x02\x62\x0b\x9c\x4e\xed\x24\x1c\x0b\x4e\x9c\xb7\xe2\xe6\x3c\x90\x9a\xad\xdf\xd5\x7c\x01\x70\xf3\xf6\xf6\xea\x01\xda\x05\xa0\x4c\x57\x10\x32\x23\x2e\x90\xc5\x04\x06\xb3\x32\x2a\x13\x7c\xfe\x10\x9d\x72\xc1\xaf\xa5\x6a\x99\x60\xb9\x79\xb8\x87\x38\x65\xd8\xe1\xbd\x72\xbe\xd7\x0d\x45\x58\xe7\x32\x0b\xf1\x76\xe8\xbc\xde\x75\x2a\xa4\x04\x83\x50\x7c\xee\xbf\x93\x7d\x88\x45\xdd\xd8\xed\x56\x8a\xc7\xa7\x8f\x17\x05\xb5\xaf\x3d\x46\xfd\x67\x87\xa0\xb7\x97\x37\xe2\x17\xd3\xf4\x07\xb2\x1b\xe1\x9e\xde\xe9\x1d\x80\xd5\xb4\xe6\xa1\xc3\x77\x7a\x87\xb0\xb4\xd6\x03\xb9\x95\xdb\xda\xa9\xfe\x5e\x37\x71\x4f\x5e\x9d\xbf\x45\x55\x9d\x6e\x54\x4e\xec\xb9\x6a\x8c\x99\x16\x84\xa5\xd4\x88\xf3\xc1\xdb\x42\x58\x0a\x07\x96\xde\xe1\xc9\xaf\x77\x61\x00\xf3\xd0\x46\xe3\x83\x91\x8c\x40\xc2\x48\x4f\xb8\xeb\x12\xba\x60\xb2\xe3\x59\x3a\x96\xc2\xca\x32\x5f\x7a\x69\xb6\x28\x4e\xcf\x9c\x65\x2a\xf1\x7c\xa5\x35\x65\x8e\x2c\x63\x6f\x1f\xea\xf5\xac\x63\xbe\xb2\x44\x01\x59\xd3\x81\xce\x66\x2d\x23\xd4\xd1\xc0\x65\x5a\x22\x37\x41\x9a\x0e\xec\x8c\x95\xe2\x03\x96\x89\xbc\xe4\x90\xe7\xd5\xf1\xa1\xe1\x11\xd4\xc4\xfd\x22\xcc\xf2\x40\xa6\x31\x7c\x39\xcc\x37\xfd\x89\xc1\x4e\xbe\x47\x95\x63\xa8\xdc\xc5\x26\x49\x52\xc8\xcb\x30\xc7\x9b\x75\x73\xc4\xf1\x96\xcd\xf8\x02\xe3\x4b\x68\x48\x72\xe6\x07\x46\xe1\x51\xc2\x65\x76\x51\xcb\x4c\xc6\xe8\x2d\x02\x1b\x04\x2c\x8c\xf5\xb5\xc3\x07\x3c\xdf\xe3\x8b\x2d\xe5\x7f\x08\x59\xac\x18\x8f\x96\x03\xac\x18\x2f\x0d\x08\x18\x56\xee\x76\x91\x11\xdb\xed\xba\x82\x0b\xcb\x40\xee\x89\xa4\x66\x10\x7f\x61\x1f\xaa\x19\x10\xf9\xef\xc8\x81\x3e\x5c\x5f\x06\x80\x31\x83\xc6\xc9\x76\xb5\xea\xb4\x51\xf5\x96\x5e\x58\xbd\xa7\x4f\xf1\xd6\xb6\xb1\x7e\x76\x8c\x53\xf7\x76\x20\xcd\xf7\x3a\x8b\x87\x71\x8d\x89\x30\x6e\x01\xbc\x1f\xe8\x94\xa3\xdb\x5e\x52\xa2\x64\x59\x5c\x11\x64\xe5\x95\x80\x08\x1b\xc2\xb2\x90\x27\x89\x51\x07\xd1\x1c\xa1\xc1\x57\x73\x75\x6f\xad\xaf\x77\x92\x4e\x0b\x4c\xa7\x87\x78\xd7\xd6\x7a\x71\x25\xfd\x26\x14\xea\xec\x7a\x5a\xe2\xd2\xae\x8f\x80\xb3\x27\x5d\xda\x41\xa1\x0f\x94\x36\x5e\x62\xd8\xad\xd8\x36\xb7\xc9\x66\xfb\xe6\xf5\xfc\x54\x03\xd4\x94\x9d\xcf\x32\x41\x26\xf1\x35\xbb\x3d\xaf\x69\x15\xb1\x88\xe2\xc5\xcf\xec\x0d\x9d\x16\x53\x5e\xec\xc8\xcc\x42\x56\xce\x6d\x67\xc9\xc8\x3a\x98\x90\x8b\x7c\x82\x99\x00\xe5\x43\x36\x19\x29\x04\x50\x6c\xf3\x59\x5e\x30\xd6\xd2\x53\x4f\xb2\x9b\xc8\x11\x88\x38\xf7\xd4\xab\x1c\xdd\x9d\x3a\xd4\xe8\x8c\x8c\xeb\xfc\x4f\x75\x20\x27\x64\xe3\x7a\xef\xd4\x61\x0d\xad\x8f\x60\x6b\x65\xc4\xf7\x8f\x9d\xdb\x3c\xa1\xac\xc7\x3f\x4c\xca\x6c\xb5\xd1\xdb\x61\x4b\xef\x94\xf5\x6f\x8a\x42\xa7\x62\x10\x05\xcc\xc0\xda\x40\xc4\x13\x17\x90\xf1\x50\x51\x37\x53\xca\x55\x69\x09\xed\x6c\x5a\x0b\xb9\xa2\x6a\x6e\x49\x20\x74\x31\xd0\xa9\xc0\x74\xcc\xd1\x76\x34\x08\x77\x37\xf8\x45\x8c\x51\x8e\x0d\x03\xd4\xd4\x49\x1c\x7e\x89\x01\x6b\x82\x50\xcc\x90\x5b\xf9\x39\xe9\xc6\x50\xed\x45\xda\xb5\xb1\x3a\x8d\xc1\x77\x18\xd5\xbe\x57\x6d\xdd\xe9\x46\x19\xc7\x91\x8a\x38\x51\x5c\x72\xe2\x98\x60\x6c\xbc\xdf\xd5\x6b\xc4\x1d\xc8\x05\x3a\x33\x7c\x95\x30\x33\xd7\x81\x2a\x24\x1c\x83\x7a\xab\xd7\x31\xf8\x17\x33\x1f\xa8\xf4\xc4\xa1\x10\x6f\x43\x6e\x40\xc0\x2f\x49\xeb\x15\x70\xb0\x30\xf0\x74\x05\xd6\x1c\x52\x7c\x61\xe6\x6e\x2f\x52\x5e\x9c\x2d\x6c\x61\x9c\x2d\x6c\xdc\xec\x3c\x21\x1c\xdb\x14\xa3\x07\x76\xdb\xd1\xeb\x9b\x9a\xfc\x91\x93\xd2\x05\xce\xa2\x0b\xca\x65\xaf\xe9\xef\x31\x37\x56\xd7\x2e\x53\x65\x2f\x82\x21\xd5\x6c\x85\xed\xb2\xce\x75\x01\x29\x35\x97\xa8\x53\x6a\xae\x49\x48\xa9\x4c\xc1\x72\x0a\xdc\x2e\x6b\xe7\xba\x40\x84\x6f\x6e\x2e\x4b\x4a\x9f\x72\x13\xe3\xfb\x3d\x88\x7a\x8f\x76\xd6\xf9\x75\xaf\xdc\x23\x61\x4d\x77\xf8\x21\x2b\xc1\x2b\x37\x5f\xa9\x9c\x3a\xc6\xe1\xfe\xde\x69\xaf\xfe\xf8\x08\xef\xd3\x1f\x79\xdd\x2e\x1f\xfd\x50\xe5\x87\xa6\xc6\xa7\xbe\xd9\xa9\xa9\x9b\x23\xe3\x13\xd5\xf9\x0a\x24\xc1\xcc\xcb\x78\x88\xa7\x44\x12\x22\x3f\x00\x29\x87\x36\x1c\x67\x89\xc9\x8d\x87\x59\xce\xe0\x86\x76\x6d\xd0\x25\x7e\xca\x48\x71\xfc\xf0\x3d\xfc\x75\x40\xf3\x33\x26\xa7\x06\x52\x68\x26\x10\xa0\x81\x69\xe2\x07\xb4\xa1\x79\x37\x7a\x6d\xc4\x1b\x43\xef\xdf\xe3\xa6\xd4\x5d\xba\x9e\x78\x0b\xed\xcf\x6f\x24\xc6\xed\x9f\x90\xb2\xd0\x8b\x87\x49\x1a\xef\xb8\x46\xee\x7c\xb3\x91\x69\x93\x5d\x50\x42\xe4\x27\xc8\x43\x4e\x03\x4b\xa1\x63\xeb\x22\xf2\xa2\x83\xcf\xaf\xc5\x25\x9a\x13\xc5\xce\x3a\xe5\x93\xda\xa4\x28\x74\x0d\x79\x51\xcd\x92\x17\x0e\xa5\x83\xa3\xbb\x38\xf3\xc1\x7b\xcd\xec\xcc\xa3\xa7\xc6\xba\x53\x66\x8d\xcb\xee\xcf\xf0\x29\x2e\xf1\x33\x8e\x10\xb9\xa5\xc1\x1b\x2d\x3b\xb0\x2a\x19\x52\xf0\x62\xcb\x0e\xe9\xd8\xf9\xa2\x14\x95\xcf\x4d\xce\xd2\xbd\xc5\xef\xf9\x16\x32\xec\xd1\xa3\x9e\xf3\x23\x95\x54\x9d\xcd\x29\xe4\x2f\x97\xef\x47\x90\x6e\xc0\x4b\xec\x1a\xc8\xb0\xfe\x8c\x7a\x12\x4c\x40\x12\xac\x3f\x8f\xa0\x67\x28\x04\xe7\xcc\xd0\x03\xbc\x1b\xc3\x53\x97\x35\x2b\x78\x2b\x86\xc7\x2e\xee\xa0\x00\x17\x41\xea\x15\xbd\x8f\x3f\x13\x2f\xa1\x80\xb7\xe4\x8e\x10\x3d\x8e\xe2\x5e\x84\x24\x60\x9c\x7f\x12\x27\xf7\xd3\xd2\x8e\xde\x9d\xdf\x26\xf0\x14\x1f\x96\x7d\x33\x42\xe1\xc4\x66\x93\x81\x5f\x1c\x77\x34\xea\x9b\x1f\x76\x82\x9c\x8e\x7a\x3c\x29\xf0\x42\x3b\x99\xf3\xe2\x15\xf6\x2c\x26\x82\x94\xad\xdc\x11\x79\x20\xd0\x73\xfa\x2e\x81\xd0\xea\xe3\x5e\x76\x11\xea\x0d\x27\x4c\x6a\x35\x79\x9d\x86\x43\xe0\xa5\x69\x20\xdb\xf4\x8c\xf8\xd1\x7b\xd2\x79\x46\x92\xa1\x77\xbd\xbd\xd7\xc1\xec\x9b\xe0\xaf\x38\x29\x9d\xdc\xf4\x9d\x30\x07\x08\x46\x9d\xce\x51\x7b\xa7\xa3\x8e\xe0\x02\xbf\x8a\xf3\x84\xe9\x06\x6c\x74\x82\x4d\xa4\xe3\x46\x79\x2e\x11\xb9\xf9\x26\x8e\x4c\xb8\xcc\x7e\x75\x11\xc7\x86\xee\xbd\x47\x9d\xe9\xf4\x4a\xc5\x5b\x72\xee\xcd\xa5\x5e\xa9\x02\x18\xce\x61\x17\x5c\x05\xc2\x71\x7d\x23\xde\x9b\xee\x30\xea\x44\x8e\x8a\x7b\x92\x30\xc5\x91\xd1\x68\xba\x90\x0d\x0c\x25\xcc\x0f\x79\x80\xe6\x53\x2a\x03\xe7\x63\x6a\x4c\x9d\xd7\x3d\x3f\xcc\x4c\x3b\xfb\x15\x27\x8d\x46\x74\xa5\x5a\xf4\x4e\xd1\xd6\xb1\x04\x8f\xeb\xcb\x90\x23\xce\x31\x27\x91\x4c\x90\x96\x62\xc3\x41\x58\x9a\x6d\x34\x40\x85\xf6\xa0\x23\x97\x8d\x5e\x6f\x30\x9a\x52\xd6\x2a\xf2\xe7\x72\x30\x5e\x7e\x16\xaf\x43\x7e\x8e\x01\x78\x45\x2c\x0d\x82\xa1\x63\x3e\x11\x4b\x5d\x62\x02\x9e\xed\x52\x38\x6d\xd6\x1d\x39\x32\xf9\xe1\x68\xf1\xba\xd9\xc8\x5e\x36\x1c\xd3\x2f\x22\xba\x48\xa9\x25\x36\x28\x33\x8f\x2d\x78\x4f\x89\x38\x5e\x62\xc2\xf7\xa4\xd3\x40\xff\x29\x45\xc1\x75\x53\xcb\x7e\xcd\xf6\x0d\xe7\xfd\x1a\x83\x23\xbb\x02\x35\xb2\x96\x2a\x3b\x35\x22\xb3\x39\x3e\x37\x08\x1c\xe3\xb2\xe5\xd0\x18\x31\x85\x95\x40\x33\x25\xf0\x15\x4d\x56\xe0\x02\x5f\xd5\x24\xf3\xea\x99\x22\xe8\xcd\x2f\x95\x40\x47\x7e\x0f\x16\x60\x3b\x0e\x02\x7f\x75\x31\x03\x9c\x8b\xc6\x71\x09\x81\x48\x3c\xbb\x84\x00\x8a\x99\xc5\x9c\x51\x84\xe4\xe9\x83\xef\xf0\xf6\x61\xd1\xf4\xe4\x9b\x1e\xfe\xdd\x4a\x77\x17\x5f\x45\x14\x57\x5e\x21\xcd\x35\x1b\xd5\x0e\x1d\x09\x35\xf4\x33\xc1\xab\xcf\x3e\xd8\xd7\xe0\xf6\x0d\x19\xe8\x93\xc4\x0e\x2e\x38\x25\x81\x9f\x05\x80\xfa\xac\x9a\x21\x33\xb5\xfb\x85\xbe\xd9\xb6\x25\xa1\xb1\xe1\x25\xe5\x60\x50\xf3\x7e\x45\x29\x19\xcc\x5c\xb8\xfa\xd0\x74\x96\x73\x49\x44\x3f\x5a\x7f\xac\x3e\x4c\x44\x15\xde\x8f\x84\x57\x19\x1c\xf5\x99\x2f\x06\x46\x4f\x4a\x02\x2c\x7a\x26\x22\xcf\xbd\x75\xf4\x58\x83\x2e\x8a\x08\x92\xbd\xd7\x44\x78\x7e\x17\xc1\x9c\x1b\xcc\x50\xac\x55\x75\xc0\x50\xc8\x8e\x8e\x7c\xf8\x00\x89\x25\xe6\xb7\xaa\x80\x78\xc1\x9f\x05\x8c\x36\xa4\x2c\xa1\x2c\x12\xd8\xde\x50\x1a\xa3\xcc\xde\xc9\x04\xdd\x24\x01\xb3\xb7\x31\xd4\x03\xde\x70\xca\x18\x32\xd4\x8c\x40\xe7\x5d\x37\x19\x8d\x5c\x3e\xca\xd3\x30\xd8\x46\xf6\x98\x29\xeb\xd3\x78\x1a\x43\x96\xdd\xe1\x2a\x5e\x4c\x5a\x1b\x15\x8c\x3c\x23\xe1\xd5\xcf\x97\x8c\xc7\xab\x8f\x34\xf6\x9f\x82\x77\x0c\xb6\x53\x08\xe6\x41\x99\x49\x6e\xe1\x3b\xf0\x04\x5d\xde\x55\xe8\x9c\x95\x8b\x90\x47\xd6\x49\x2c\xac\xb9\x62\xbd\x32\x59\xd8\x2b\xfa\x2a\xea\xc2\xb7\x73\xe4\x58\xf7\xe4\xe3\x8f\x9f\x5c\xf0\xac\x5b\xe0\xfb\xf8\x87\x4f\x80\xf2\xe3\x1f\x3f\x11\x56\x8e\x94\xce\x58\x53\x18\xd8\xac\xc4\x8f\x9f\xdc\x53\xd7\x37\x4f\xc7\x65\x85\xf4\x23\x30\xc8\xfc\x1f\x09\xf1\x4e\xf6\xaa\x0e\xce\xa0\x78\x2d\x53\xb2\x76\xd6\xb0\x1f\x36\xe5\x14\xfa\x01\xe3\x68\x63\x31\x48\x08\xb7\x28\x7c\x8f\x86\x95\x7a\x39\xdf\xc5\x34\x64\x3c\x3d\x14\x9e\xed\x4c\xfc\x4a\xbe\x50\x39\x5c\x5b\x56\xe0\x29\xd9\x06\x3c\xa5\xa2\xff\x86\x1d\x05\x04\xbf\x56\xe8\x47\x35\x21\x20\xb7\xaa\xdf\x82\x80\x1c\xb0\x26\x0c\xc1\x21\xeb\x37\x35\x82\x3d\xcd\xa6\x66\x50\x82\x6a\x05\x6a\xe5\xbf\x1e\x11\x8d\xc7\xc8\xe1\xec\xaf\x61\xdd\x16\xb1\x6c\x73\x84\x18\x3f\xee\xe8\xe8\x4c\xd0\xd1\x20\x7d\x33\x36\x1e\xaa\x31\xba\x38\x62\xdf\x8c\x10\xe3\xd8\x4d\xf0\x71\xfc\xe2\x6f\xef\x2c\x0d\x5e\x8c\x35\x1d\x46\xcd\xa8\x7d\x0c\x54\xfd\xaf\x6e\x1a\xa6\x4c\xb1\x8e\x40\x7f\x02\x7e\xde\xdc\x7f\x48\x9b\x7b\x16\x5d\xd8\xdc\xe8\xbe\xd9\xcb\x75\xb6\xb3\xe5\xba\xe8\x2c\x36\x11\xcb\x70\x3f\xa7\x7b\x3f\x47\x18\x5e\x36\x23\xca\xd0\x38\xc4\xf9\x8d\x2d\xab\x3e\x7a\x6b\xbb\x4f\x95\x5c\xc3\x26\x97\x6b\x5b\x01\xf5\x62\xe7\x09\x48\xc8\x8c\xdd\x57\xf4\x09\xbf\x7e\x04\x02\xf2\x23\x47\x6c\x10\x27\xae\xfa\x71\x8b\x09\x14\xe7\x16\x13\x36\x98\xb0\xb1\x03\x06\xe0\xfa\xb1\xc5\xcf\x56\x1e\xf0\x6b\x8f\x5f\x7b\xa5\xee\xa8\x30\x9e\x67\x3f\x8a\xad\x35\x7e\x83\x29\x07\xfc\x3e\x28\xc9\xe1\xbb\x28\x32\xc4\x19\x90\xa6\xf0\x71\xe2\x2a\xaa\x8e\xd3\xc3\xc7\x89\xab\xa0\x56\x4e\xa5\x9f\x27\xae\x6a\xe5\x81\x93\xf0\xd7\x89\xab\xa0\x7a\x4e\xa2\x9f\x27\xc8\x86\xf8\x4d\x40\x48\xbf\x4f\x5c\x05\xed\xe0\x44\xfa\x79\xe2\xaa\x5e\xee\xeb\xd4\x2e\xfe\x85\xa9\xa9\x55\xfc\xab\xaa\x3e\xb6\xbd\xdd\xfd\x66\x8d\xfa\x54\x85\x58\xf7\x5b\xe5\xd8\x3e\xfc\x45\x6f\x77\xe1\x59\x88\xea\xe9\xb2\x0e\x03\x88\x62\x20\x8c\xce\xca\x76\x51\xb1\x0f\xae\x5a\x9b\xdd\x10\xb5\xd2\x6c\xa3\xf3\xd8\x33\x58\x8a\x0e\x41\x2f\xac\x0f\x3b\xb5\xa8\xf0\x46\xc6\x5b\x5b\x2f\x91\xf9\xc4\xbb\x18\xb4\xb2\xfa\xfe\x1f\xff\x40\x78\xfd\x9b\xfa\xe7\x3f\xc5\xdb\x9f\x7f\x10\xea\x73\xa3\x54\xeb\xc4\x96\x2d\x3f\x03\xd8\x56\x7e\x7e\x59\x40\x2e\x2a\x7e\xae\xcc\xa6\x86\xf4\x5c\x19\xab\xaf\xfe\xbf\x00\x00\x00\xff\xff\xcd\x20\x2e\x00\x9e\xfd\x00\x00")
+var _confLocaleLocale_enUsIni = []byte("\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\x18\xfb\x3b\xdf\x6e\x4c\x88\xf2\x72\xa8\xd1\xe5\x1c\x4a\xe2\x21\x29\xfb\xf3\x6a\x15\x35\xe8\x2a\x74\x37\xcc\x6a\xa0\x5d\x40\xb1\xd5\xe3\xf0\x1b\xec\x03\xec\xf3\xed\x93\x6c\xe4\x05\xb7\xaa\x6a\x4a\x1a\x9f\xfd\x43\x76\x01\x89\xc4\x3d\x91\x99\x48\x64\xca\xdd\xae\x6e\x95\x6b\xc4\x99\x38\x17\x3b\xa9\x4d\xa7\x9c\x13\x4e\x75\xab\x27\x1b\xeb\xbc\x6a\xc5\x2b\xed\x85\x53\xfd\xbd\x6e\x54\x55\x6d\xec\x56\x89\x33\xf1\xda\x6e\x55\xd5\x4a\xb7\x59\x5a\xd9\xb7\xe2\x4c\xbc\x08\xbf\x2b\xf5\x79\xd7\xd9\x1e\x80\x7e\xa1\x5f\xd5\x46\x75\x3b\x28\xa3\xba\x5d\xe5\xf4\xda\xd4\xda\x88\x33\x71\xa3\xd7\x46\xbc\x31\x94\x62\x07\x1f\x92\xde\x0f\x9e\xd2\x86\x5d\x48\xfa\xb0\xab\x7a\xb5\xd6\xce\xab\x5e\x9c\x89\x6b\xfe\x59\xed\xd5\xd2\x69\x0f\x35\xfd\x85\x7e\x55\xf7\xaa\x77\xda\x02\xf6\x3f\xd3\xaf\x6a\x27\xd7\x00\x70\x25\xd7\xaa\xf2\x6a\xbb\xeb\x24\x16\xb8\xe5\x9f\x55\x27\xcd\x7a\x20\x98\x4b\xfe\x59\x35\xbd\x92\x5e\xd5\x46\xed\xc5\x99\xb8\xc0\x8f\xc5\x62\x51\x0d\x4e\xf5\xf5\xae\xb7\x2b\xdd\xa9\x5a\x9a\xb6\xde\x52\x37\x3f\x38\xd5\x0b\x4e\x17\xd2\xb4\x02\xd2\xb1\x0b\xaa\xad\xb5\xa9\xa5\xe3\x7e\xa8\x56\x68\x23\xa4\xab\x10\x95\x91\xdb\x50\x1a\x7e\x56\x6a\x2b\x75\x07\xa3\x06\xff\xab\x9d\x74\x6e\x6f\x71\x68\xaf\xf8\x67\xd5\xab\xda\x1f\x76\x0a\x87\xe0\xc9\xed\x61\xa7\xaa\x46\xee\x7c\xb3\x91\xd0\x4c\xfa\x55\x55\xbd\xda\x59\xa7\xbd\xed\x0f\x08\x17\x3e\x2a\xdb\xaf\xa5\xd1\xbf\x49\x4f\xe3\xf3\x3e\xfb\xac\xb6\xba\xef\x2d\x0c\xed\x5b\xfc\x51\x19\xb5\xaf\x01\x8f\x38\x13\xef\xd4\x3e\xc7\x02\x39\x5b\xbd\xee\x69\x14\x21\xf3\x2d\x7e\x01\x16\xca\x63\x4c\x94\x15\xb1\xad\x6c\x7f\xc7\xa9\x2f\xe1\xe7\x08\xa5\xed\xd7\x9c\x5b\xb6\x4b\x1a\xb9\x56\x9c\xfb\x16\x3f\x0a\x00\x57\xc9\x76\xab\x4d\xbd\x93\x46\xc1\xd0\x9d\xc3\x97\xb8\x82\xaf\x4a\x36\x8d\x1d\x8c\xaf\x9d\xf2\x5e\x9b\x35\xcc\xc1\x39\x25\x89\x1b\x4e\xaa\xb2\xbc\x98\x76\xb0\x43\x9c\x65\x71\x26\xfe\x6a\x87\x5e\x5c\xd1\x27\xe5\x65\x85\x30\x33\x96\xac\x64\xe3\xf5\xbd\xf6\x5a\x51\x65\xe1\xa3\xda\x0d\x5d\x57\xf7\xea\xef\x83\x72\x1e\xb2\xae\x86\xae\x13\xd7\xfc\x5d\x69\xe7\x06\x2c\xf1\x06\x7f\x54\x55\x23\x4d\x83\xdd\xb9\xc0\x1f\x55\xf5\x51\x1b\xe7\x65\xd7\x7d\xaa\xf8\x07\x00\xd3\x2f\x1a\x27\xaf\x3d\x36\x96\x13\xc5\x8d\x57\x3b\x07\x03\x2d\x5e\xea\xde\xf9\x27\x5e\x6f\x95\xb8\x1e\x4c\xd5\xda\xe6\x4e\xf5\x35\x6c\x48\xdc\x4a\x6f\x56\xe2\x60\x87\xc7\xbd\x12\xfd\x60\x8c\x36\x6b\xf1\xca\xae\x9d\xd0\xc6\xe9\x56\x89\x17\x08\x7d\x2a\x76\x9d\x92\x4e\x89\x5e\xc9\x56\x3c\x93\xc2\xcb\x7e\xad\xfc\xd9\xa3\x7a\xd9\x49\x73\xf7\x48\x6c\x7a\xb5\x3a\x7b\x74\xe2\x1e\x3d\x7f\x35\xe8\x56\x75\xda\x28\xf7\xec\xa9\x7c\x2e\x1a\xd9\xab\xd5\xd0\x75\x07\xb1\x54\x2b\xd8\x2b\x07\x3b\x88\x66\x23\xcd\x1a\xf6\xc9\xc1\x6f\xa0\x42\x6d\x84\xdf\x68\x27\x60\xa3\x7e\x57\xc1\x28\x69\xaf\xea\x76\x19\x88\x12\x36\x08\x93\x7b\xe5\xc4\xdb\xc3\xcd\x7f\x5d\x9e\x8a\x2b\xeb\xfc\xba\x57\xf8\xfb\xe6\xbf\x2e\xb5\x57\x7f\x3c\x15\x6f\x6f\x6e\xfe\xeb\x52\xd8\x5e\xdc\xea\x17\x3f\x2f\xaa\x76\x59\x87\x71\x79\x21\xbd\x5c\x42\x17\xe2\x5c\x41\x26\x6d\xa5\x98\x87\x1b\x0a\x48\x1e\x92\x37\xe7\x71\x93\xf2\x06\x9d\xdd\x8e\xed\xb2\xe6\x3d\x1c\x71\xbc\x83\x8d\xdc\x2e\xd3\x00\x5f\xd1\xd0\x0d\x4e\x89\x37\xef\xde\xbd\x7f\xf1\xb3\x50\x66\xad\x8d\x12\x7b\xed\x37\x62\xf0\xab\xff\xbd\x5e\x2b\xa3\x7a\xd9\xd5\x8d\x86\xb1\xe9\x9d\xf2\x62\x65\x7b\xea\xe9\xa2\x72\xae\xab\xb7\xb6\x85\x5a\x6e\x6e\x2e\xc5\x5b\xdb\xaa\x6a\x27\xfd\x06\x1b\xe2\x37\x95\xfb\x7b\x07\xe3\x15\x2b\xbc\xdd\x28\x81\x4b\x17\x81\xec\x2a\x0c\x8f\x68\xb9\x8d\x0b\xf1\x6c\xd9\x3f\xcf\xda\x25\x97\xce\x76\x83\xe7\x12\xfb\x8d\x32\x38\x4f\xce\xcb\xde\x0b\xe9\x02\xe9\x5f\x54\xaa\xef\x6b\xb5\xdd\xf9\x03\xcc\x0e\xb7\x61\x8c\x9d\x90\x34\xd2\x18\xeb\xc5\x52\x09\x84\x5f\x54\xc6\xd6\xb4\x53\x81\x6c\xb6\xda\xc9\x65\xa7\x6a\x22\xe9\x7d\xa0\x48\x7f\x85\xc5\x41\x05\x19\x42\x14\x10\x30\x62\x70\x4c\x20\x75\x86\x95\x23\x8d\x40\xa4\x82\xb7\x7a\xde\xc2\x40\x17\xe2\xac\x11\x69\x88\x09\x93\x16\x56\x61\x1a\xc2\x9a\x39\xdf\xed\x3a\xdd\x50\xd5\xaf\x28\x2f\x2d\x1f\x38\x34\x79\xee\x73\x38\x9c\xfe\x90\x97\x2d\x82\xc1\xc3\x90\xf6\xa2\xa0\xc1\x58\x7e\xa3\x7a\x25\x36\xc3\x9a\x0e\x8e\xce\x0e\xed\x77\x48\xc1\xc3\xf8\x26\x3a\x29\xae\xad\xf5\x34\xe7\x11\x20\x55\x71\xde\x75\x78\x4e\xf7\x6a\x6b\x3d\x0c\x1c\x17\x03\x5a\xb4\xd7\x5d\x07\x3d\x75\xf2\x5e\xb5\xc2\x5b\xda\x6f\xad\xee\x55\x03\x88\x17\x55\x3f\x98\x9a\x17\xfb\xf5\x60\x68\xc1\x87\xb4\x72\x65\x21\xd4\x76\x70\x5e\x6c\xe4\xbd\x82\x81\x07\x66\xc1\xdb\xd9\x76\x62\x97\xfa\xc1\xe0\x16\x5e\x54\xad\xdd\x4a\x3c\xf8\x5f\xe0\x0f\xfe\xce\xf1\x6b\x27\xe4\x6a\xa5\x1a\xef\xc4\xcd\xcd\x6b\xd1\x74\xd6\x28\xf1\xe1\xfa\xd2\xc1\x36\xd8\xd4\x3b\xdb\x23\x93\x70\xf3\x5a\x5c\xd9\xde\xc7\xb4\x6c\xa0\x01\xc2\x0c\xdb\xa5\xea\xc5\x7e\xa3\x9b\x0d\x0d\x3b\x94\x80\x55\xac\x7a\xa1\x9d\x18\x9c\x36\xeb\x53\xd1\x29\xe8\x81\xf6\xb4\x00\xa0\x0f\x61\xd5\x01\xf8\x4a\x49\x3f\xf4\x0a\x0f\xfd\x7a\x39\xe8\xce\x6b\x53\x43\x85\x8c\x07\xc9\x82\xf8\x99\x32\xb0\xc4\x0d\x66\x1c\x81\xaf\x77\x76\x47\xec\x0c\xee\xaa\x65\x56\x8e\x11\xc2\x96\x87\x09\xb4\x3b\x45\xeb\xdd\x71\x93\x60\xc1\x0d\xda\x6d\xc4\xaa\xb7\x5b\xe1\x0e\xce\xab\x2d\x16\x6c\xa5\xda\x5a\xb3\xa8\x36\xde\xef\xc2\xd8\xbc\xbe\xbd\xbd\xa2\xc1\x89\xa9\x0f\x8d\x8e\xcc\xd6\x2e\xae\x92\x0e\x18\x2b\x23\x00\x2d\x2c\xe3\xa1\xef\x46\x2b\xfc\xc3\xf5\x65\xc8\x39\x32\x73\xd0\x84\xa7\xf0\xe7\x26\x4d\x20\xae\x04\x67\xb7\x6a\x8f\xeb\x5d\x1b\x81\xcc\xce\xa2\xea\xec\xba\xee\xad\xf5\x61\xb9\x5f\xda\x35\x2d\xf1\x22\x23\xd5\xf4\x22\x2c\x5a\x18\x9c\x7d\x0f\xcc\x5f\x67\xd7\x48\xf0\x60\xbc\x16\x95\x32\x48\x5a\x1a\x6b\x9c\xed\x54\xa0\x9c\xbf\x60\xaa\xb8\xa0\x54\x22\xa2\x33\x90\x71\x96\xde\x00\x65\x69\x35\xf6\xd8\x5b\xa2\xa7\x00\x70\x2a\x64\xe7\xac\xd8\xf5\xda\x78\xa8\x18\xe7\x88\x31\x2c\xaa\xca\xee\xa0\x44\x46\x43\xde\x73\x42\x22\x1c\xd8\xef\x98\x8f\xac\x1e\xae\x1c\xdd\x64\x87\x93\xdb\xfa\x5d\xcd\x27\xd1\xcd\xdb\xdb\x2b\x3a\x8e\x30\x15\x17\xc1\x99\x78\xd9\xdb\x6d\x4a\x48\xe3\xf3\x16\xf0\x21\x8c\x6c\xdb\x5e\x39\x77\x2a\xae\x5f\x5e\x88\x7f\xff\xe3\x1f\xfe\xb0\x10\x6f\x3c\x90\x3d\xa0\x04\x7f\x83\x1d\x2c\x79\x16\x12\xa8\xed\x85\xdf\x28\xf1\x08\xc8\xd8\x23\xf1\x0c\x73\xff\x0f\xf5\x59\x6e\x77\x9d\x5a\x34\x76\xfb\x1c\x56\xe9\x56\xfa\x45\x05\x39\xaa\x0f\x44\xe3\x46\x99\x56\xf5\xcc\xb8\x72\x56\x46\x7a\x39\x3b\x63\x63\x89\x7f\x87\xb1\x5f\xe9\x7e\x9b\x26\x28\x70\xf6\x30\x53\x90\x13\xb8\x40\xdd\xd5\xc6\x7a\xbd\x3a\x24\x50\xec\xe9\x3b\x48\xe4\xa5\x59\xf1\x4e\xe3\xe3\x2a\x8e\x31\xed\x4b\x5c\x81\xef\xfd\x46\xf5\x61\xb8\x5d\x1a\x6f\xbb\x5a\x01\xd3\x32\x5a\x2d\xef\x29\x95\x56\x4b\x0e\x12\x97\xc9\x0b\x26\x18\x17\x2f\xde\x09\x75\xaf\x0c\x2c\xec\x5d\x6f\xdb\xa1\xc1\x95\x13\x56\x4c\x27\x7a\xe5\xec\xd0\x37\x8a\x17\x6a\x24\xc8\xd0\x34\xa0\xfa\x8d\xec\xba\xc3\xa2\x0a\x07\xe3\xba\x97\xf7\xd2\xcb\x3e\xab\xe2\x55\x48\xe2\xd6\x4f\x60\x27\x8d\x8a\x25\xa0\xe7\xcd\xe0\x3c\x50\x0f\x6c\x85\xa3\x46\x51\xb6\x13\xb2\x57\x62\xd8\x75\x56\xb6\xaa\x15\xcb\x03\xd2\x78\x07\x6b\xa1\x55\x2b\x39\x74\x7e\x51\xad\x54\x0b\x44\x49\xb5\x35\xd7\xd5\x59\x7b\x87\x95\xf1\x50\xbd\x0c\x00\xe2\x9c\x91\x5e\x22\xc4\xb1\x92\xb1\xb1\x5c\x3e\x82\xc5\x46\x71\x0d\xde\x22\x8b\x92\xf2\xed\x4e\x19\xee\x46\x60\x4c\x04\xf0\x1d\xad\xb0\x46\x74\x7a\xc9\x9d\x4e\x63\x39\x62\x32\xc2\xe8\xdc\x80\x7c\x9b\xe7\xcd\x16\x98\x0c\x2a\x2e\x78\x37\x2e\x7b\x2a\xac\xe9\x0e\xcc\x8c\xc0\x16\x23\x01\x32\xf0\x25\x2e\x91\xa5\x28\xae\x05\x8a\xc4\x52\x5b\x99\x1f\xab\xbd\x26\xb6\x57\xdc\xcb\x4e\xb7\x80\x31\x20\x80\xd3\x62\xbe\x2d\x8b\x8a\x79\xe5\x9a\x25\xed\xfa\x5e\xa3\x1c\x1b\xb7\x18\xa1\x64\xe9\x1b\x46\xf8\xcf\x00\x00\x02\xb2\x9b\x2d\x1b\x5b\xf3\x1e\x3a\xe9\xa2\x1c\x4b\xeb\x04\xba\x8b\x35\x00\xff\xee\x4e\xc5\xbd\x46\x36\x80\x17\x39\x8e\xcb\x12\x78\xcc\x4e\x41\x55\x4e\x29\xc4\x20\xb4\x79\x3a\xec\xa8\xcc\x82\x85\x38\x96\xab\x02\xdf\x0f\xec\x60\x6b\x05\x70\x69\xc8\x6b\x00\xa5\xe5\x61\x1d\xf1\x7d\xa2\xd7\xeb\x8d\x17\xc6\xee\x4f\x69\x50\xf6\x1b\xab\x60\xcf\xbf\x79\x71\xf6\x23\xb5\x63\x0d\x9c\x47\x2c\x04\x3c\x8b\x1c\xbc\x05\xfa\xc2\x5b\x8f\x9a\x10\x79\x3f\x84\x9c\x88\x8b\x04\x34\x96\xdb\x27\xac\x66\x24\x74\x4c\xdf\xf2\x3c\x26\x6c\x09\x86\x4a\x07\xd9\x9f\x2a\x26\x42\xca\xb2\x5e\xbd\xb6\x28\x6b\x06\xd9\x0e\x98\xa9\xca\x2b\xe7\xeb\xb5\xf6\xf5\x0a\xa8\x2d\x20\x7e\x09\x08\x80\xb7\x53\xce\x8b\xc7\x6b\xed\x1f\x8b\xc6\x6e\xb7\xd2\xb4\x3f\x89\x93\x7b\x16\x13\xfe\x08\x64\x14\xb6\xa2\xee\x70\x46\x58\x82\xed\x15\x49\x03\x41\x7b\xd2\x5a\xe5\x70\xe0\xdd\xb0\x43\xc6\x22\x8a\x58\x2c\x09\xb6\x76\x6f\x80\x60\xe0\x71\x61\x57\x2b\xdd\x68\xd9\x89\xa5\x36\xb2\x3f\x44\x2c\x78\x0c\x9d\xb8\x53\xf1\xee\xfd\x2d\x02\xae\x2d\xf0\x3d\x6d\x00\x58\x54\xda\xe0\xc2\x06\x71\x82\x27\x3f\x97\xa5\x42\x92\xa6\xb6\x34\xb6\x87\xb3\x1f\x7b\x13\x0a\x1e\xe1\x94\x81\x71\x20\x41\x44\x83\x2c\x8b\xb0\x58\x2e\x32\xb5\x30\x0c\x5b\xe9\x9b\x0d\xb3\xbc\xb8\x6c\xb4\x33\x8f\x3d\xb6\xb4\x19\xfa\x5e\x19\x8f\xc9\x3f\x89\x13\x27\x9e\x3c\x17\x27\xd9\xb9\x5c\x6f\xb5\x03\x2e\x32\xb2\xa4\xe1\x90\x86\x0a\x39\x4f\x60\x1e\x2e\x3b\x3c\x5e\x53\x77\xf3\x83\x1c\x4b\xc2\x69\x2e\x56\x5a\x75\x6d\xe8\x6c\x6a\x32\x30\xed\x74\x50\xae\xa7\x93\x0d\x99\x82\x32\x07\xda\xfe\xc5\xf0\x14\xfb\x2a\xae\xae\xb0\x6b\xb2\xf1\xcd\xc7\x28\x2c\x3b\x37\xd0\x46\x39\x13\x7f\x51\x5d\x63\xb7\xea\x3b\xf1\x17\xf5\xb8\x57\x62\xdd\xe1\xc4\x4b\xcf\xe2\xbc\x75\x0a\x17\xe5\x29\xed\xd3\xd5\x60\xf0\xc8\xf1\xf2\x4e\xa1\x06\x20\x75\x7c\x8e\xdb\x3b\x3a\x57\xd5\xc7\x8d\xdd\xaa\x4f\xd5\x40\xb2\x94\xed\xda\x28\x8d\xe3\x0e\xb4\x3d\xb1\x2f\x51\x34\x4f\x30\x71\x73\xb9\xbd\xf6\xcd\xa6\x8e\x7a\x4a\x18\x48\xaf\x3e\xe3\x94\x61\x56\x52\x5b\xc2\xce\x84\xac\x6a\x7b\xc0\x65\x05\x1d\x7f\x7b\x48\xab\x4a\x2b\x57\xb9\x8d\xdd\xa3\xd2\x2f\x42\xdc\x6c\xec\x1e\xd5\x7d\x85\xc4\xb5\x58\x2c\xaa\xc6\x76\x9d\x5c\x5a\x98\x95\xfb\x04\x7f\x91\xa7\x96\xc8\xb7\x87\xda\xf6\x6b\xae\xb6\x54\x72\x6d\x0f\xac\x57\xe3\x5c\xd2\xab\xb9\x0a\xa9\x33\x2b\x64\x91\x88\x9f\xb8\x8a\xd5\x49\x0b\x6d\x6a\xd4\x56\x85\x9a\xdf\x18\x92\x85\xf2\x76\x56\xd5\x47\x56\xd6\x7e\xaa\x02\x5c\xd1\x26\x22\xf1\x34\xe8\xae\xd0\x20\xba\x91\x0a\xd1\x55\x4e\xc9\x1e\xf7\xd3\x0d\xfe\xa8\xaa\x8f\x72\xf0\x9b\x4f\x99\x32\xb5\x0e\x2b\x2f\x28\x55\x51\xe1\xc7\x54\x36\x71\x85\x1b\xb5\x03\x06\x72\xeb\x70\xc9\x76\xbd\x92\xed\x81\xc5\xcd\xb8\x78\xff\x44\xe7\x97\x36\x40\xf5\xbf\xab\x9c\x05\x02\x54\x7f\x23\x8a\x9f\xb5\x69\xa9\x7c\x79\xf6\x93\x96\x77\xbb\xc3\x65\x62\xfb\xfe\x70\x5a\x2a\x22\x36\xd2\x89\xa5\x52\x26\x08\x8c\xed\x22\xa8\x79\x60\x79\xc9\x86\x68\x08\x6a\xa6\x71\x07\x52\x49\x3b\x61\x4a\xa0\x85\x44\xf6\xb9\x16\x3a\x05\x5c\xe0\x4f\x81\x31\xfb\xe6\x2a\x60\xd0\x6b\x66\x90\xce\xc4\xf9\xe0\x37\xca\xf8\x20\xbd\xdd\x60\x7a\x85\x0c\x27\xee\xbf\x46\x76\x55\xaf\xb6\x0a\x64\xc2\x7a\x4b\x9a\x65\xfa\x12\x6f\x55\xb5\xb2\xfd\x1a\x77\x2b\x6d\xa7\x33\xf1\x12\x13\xd2\xfe\x02\x00\xe5\xf3\xf3\x8d\x21\x42\xca\x9f\x82\x26\xbf\x36\x76\x8f\x1a\x5e\xe0\xf1\xc6\xd3\x38\xec\x60\x1a\x16\xe1\xbc\x24\xd6\x0b\xb9\x7e\xa7\x8c\x4f\x93\x71\x2e\x8c\xda\x8b\x1c\x8a\x87\x2c\xce\x08\xc0\x03\x61\x7c\xb6\x7c\x7e\xe2\x9e\x3d\x5d\x3e\x8f\x47\x56\xb3\x51\xcd\x1d\x6d\x01\x6d\x96\xf6\x33\xaa\x93\x50\xf7\xa8\x84\x01\x92\x70\xd2\x8a\x8d\x1d\x7a\x16\xe9\x40\xe4\xf1\x0a\x73\x8b\xb9\xdf\xf5\xb6\x41\x62\x8e\xba\x5e\x45\x7b\x2c\xad\x6b\x54\xfa\xc2\xca\xc6\x73\x35\x2c\xed\x5d\x6f\x37\x7a\xa9\x3d\x10\x40\xd4\x80\x5c\xe2\xff\x2b\x4e\x56\xed\x08\x22\x63\x81\xfa\x48\xae\xb5\x13\xbb\x58\x00\x1a\x89\xa0\xa9\x7f\xbc\x2e\xd2\x9a\x00\x4e\x10\xc7\xaf\xd3\x5b\xed\x27\x4b\x1a\x88\xb7\xe4\xad\xc1\xba\xe9\x30\x37\xd8\x87\x34\xba\xbd\x6a\x94\xf1\xdd\x21\xae\xc1\xbd\xd4\x5e\xfc\x51\x6c\xb5\x19\x3c\xc8\xdd\x1b\x65\x84\xef\x0f\x42\x02\x9b\xb5\xa8\x36\xd2\xd5\x83\xe1\x69\x52\x6d\x58\xe4\xaf\x35\x72\x03\x50\x6f\xd8\x8a\x19\x54\x29\x8b\x8a\xef\xe3\x0c\xfe\xb0\x60\x2d\x35\x96\x82\x13\x1a\xda\xa3\x41\x70\x92\x73\x6b\xc1\xf6\xc2\x28\x1a\x21\xec\x3f\x80\xc1\xb2\xb1\x46\xa5\xc1\xea\x74\x73\x07\x12\x03\xcc\xef\x72\xf0\xde\x82\x58\xdc\xc1\x1a\xa4\x32\xa1\xcd\x17\x08\x88\x4a\x8b\x84\xef\x40\xd3\x52\x8e\x52\x85\xc5\x00\xc2\xcf\x17\xfe\xbe\x57\x3f\xa4\xe2\x71\xcb\x60\x09\x46\x41\xa5\xb3\xdd\x74\x8d\x99\x74\x05\x11\xf6\x5c\x38\x4c\x1b\x56\x0a\xc7\xd9\xec\xcb\xd1\xc0\x7c\xd8\x18\xea\xf3\x4e\xf7\x20\x20\xf5\x89\xb5\x58\x8c\xea\x4a\x1a\x84\x69\x8f\x7d\xd9\xe2\x74\xde\x7a\x6b\x6b\xb7\x21\x0e\x28\x34\x4f\x74\xca\xac\x0b\x0d\x30\x5e\x27\xe2\x12\xf9\x9f\x8b\xca\x58\x53\x23\xf5\xc9\xf6\xcc\x3b\x6b\x9e\x10\x45\x0a\xf2\x52\x28\xcd\x57\x05\xa1\x42\x40\xd3\xdb\x61\xbd\x61\x85\x62\x45\x9b\xc5\xef\x6d\xbd\x92\x8d\xc7\x6b\xa7\xdb\xbd\x7d\xc2\x1f\x25\xed\x9b\x00\x63\xdf\x79\x10\x47\x64\xf2\x8a\x73\xa6\x65\x94\x01\xaa\xdd\xab\xc6\xde\xab\xfe\x10\xe6\xe0\x17\x48\x15\x52\xf8\x54\x79\x00\x11\xf3\x78\x62\x76\xd1\xe2\x6b\x4e\x3d\x0e\x1f\x6a\x0c\x90\xe2\xe2\x81\x66\x66\x1d\x9c\x69\xe1\xee\x68\x27\x13\x77\x7d\xa4\xd2\xb8\xb4\x90\xe6\x0e\x8e\x16\x57\x94\x1a\x78\x85\x55\x1f\x61\x51\x7f\xaa\x78\xa7\xa8\x6c\xca\x99\x8e\x84\x9c\xb0\xa3\x88\x5a\x46\xf8\x20\x14\xfd\x59\xf5\x7a\x75\x20\xa0\x82\x4a\x1c\xdb\x30\xe5\x7a\x8d\x87\x6d\xe2\x68\xaf\x73\x92\xce\xc9\xab\xa1\x3b\x15\x7b\x62\x75\x53\x99\xa8\x76\x62\x26\x18\x88\x06\x5d\x73\x57\x1f\xb7\xb6\x95\xdd\xa7\xea\x80\x97\x77\x7f\x55\xae\x32\x78\x61\x6a\xab\xad\x6d\xa9\xd0\x5b\xfc\x51\x55\x1f\x57\xb6\xdf\x7e\xaa\x80\x8d\x7a\x37\x92\x1e\x81\xdf\xe2\xb4\x4c\x82\xc1\xac\x5f\xf2\x0b\xe1\xd8\xe7\xab\x19\x41\xf3\x5a\xa5\x7b\x61\xfc\x15\x3b\x7f\x73\xf3\xfa\x36\x28\xc2\x6e\x5e\x8b\x3b\xc5\xb8\x5f\x7b\xbf\x73\x1f\x50\xbd\x4b\xba\xda\x0f\xd7\x97\xd5\x95\x3c\x80\x54\x47\xc9\xfc\x81\x19\xb7\x4a\x6e\xb9\x91\xf0\x93\x50\xc0\xa6\xe1\x44\xf8\x69\xfb\xfc\x62\xa3\x42\x59\xe3\x97\x42\xac\x25\x22\x57\xbd\x53\xfb\x9f\x7b\x69\x9a\x50\x18\x98\xc0\x25\x26\x50\xc9\x0b\xbb\xdd\x6a\x7f\x33\x6c\xb7\x12\x37\x08\x7d\x0b\x47\x09\x9c\xfd\x56\x39\x47\xb7\xf6\x9c\xbd\xa5\x04\xce\xbe\xd8\x58\xdd\x64\xb9\x0d\x7e\x57\xb7\xbd\x52\x5c\xeb\xcb\x70\x47\x56\x21\xe3\x4f\x5c\x29\xfd\xaa\xa2\x1a\x44\xf1\x65\xf6\xaf\x93\xfb\xa2\x5f\x2b\xd9\xed\x36\x12\x45\x8b\x0c\x0c\xaf\x46\x96\xac\xb0\x11\x08\x82\x74\x77\xd8\xaa\x5e\x37\xb8\x4b\xa4\xdb\x7c\xff\xa4\xfe\x01\xef\xfa\x64\xe3\x55\xef\x4a\x64\xad\xf5\xbf\x0f\x21\x6e\x41\xff\x20\x5e\xd7\xfd\xee\xe6\x4e\xb0\x43\x0a\xe2\x53\x50\x91\xd3\xbf\x85\xe1\x2a\x30\x43\xba\x38\x01\x08\x14\x45\x13\x54\x04\x42\xc6\x05\xc4\x52\x2f\x80\x2a\x78\x10\xb7\x8b\x3e\x6c\xe5\xe7\x2f\x15\xdc\xda\x99\x72\xa4\x6a\x4f\x85\x58\xb4\x96\xdc\xdb\x82\x92\x2c\x7e\xad\x86\xfe\x01\xe0\x0f\xd7\x97\x8b\x5f\x2b\x6d\x9a\x6e\x68\x8f\x36\xc4\x0d\x4b\xe7\x7b\x10\xa9\x1f\x9f\xb8\xc7\x80\xd2\xdc\x19\xbb\x37\x11\xfe\x03\x7d\x0b\xfc\xfe\x29\x18\x6f\xd4\xda\xb0\x6e\x23\x99\x71\x88\x56\xb7\xc0\xea\xa0\x8e\x62\x91\x8e\xdc\x5c\x6f\x11\x09\x01\x2a\x78\x59\xaf\x14\x69\x21\x08\x0f\xa8\xc2\x91\x5b\xb5\x48\x06\x27\x35\x90\xec\x1a\x64\x73\x93\x0b\xd3\x40\xcc\x03\x33\x88\x44\x1d\x21\x16\x74\xd3\x38\x2d\x37\xa2\x54\x47\x8b\xdb\x7e\x3d\x53\xfa\xfd\xf4\x16\xf4\x48\x79\xaf\xe4\x76\x06\x41\xa4\x41\x47\x0b\xd2\xdc\x63\x21\x3c\x9e\x46\x44\x74\x5a\x0e\xa0\x16\x69\x94\xe2\x80\xe7\x73\x93\xab\x1e\xe2\x38\x97\xda\xa9\x42\xfe\xaa\xb7\xda\x85\xc9\xba\xdd\x28\x21\x4b\x2e\x23\x6a\xb1\x3b\xd5\x00\xeb\x1d\x96\x9c\x43\x69\x16\x52\xd0\x46\xc0\xf3\xb5\xeb\xa2\xc2\x53\xbd\x47\x9b\xa2\x4c\xfd\xc5\xea\x48\x3e\x52\xb7\xf2\x4e\x09\x37\x00\xf7\xb6\x91\x9e\xe5\x97\x72\xb2\x80\x95\x46\x54\x54\x67\x6c\xf9\x04\xbd\xdd\x1b\x38\x01\xbf\x84\x1f\xc1\xbe\x11\x75\xae\x2d\x9d\x22\x66\xe4\x11\xe8\x18\xda\xa8\xca\x53\x9f\x35\x5e\x96\xbd\xd2\xf7\x8a\x95\x79\x91\x1b\xc1\xbc\x45\xd5\x49\xe7\x6b\x58\x8f\xd4\x5c\x14\x74\xed\x3d\x6c\x56\xa8\x0f\x72\xa9\x1c\x5d\x9e\x71\xa7\x60\xfd\xb1\x5a\x50\x76\x9d\xdd\xab\xf6\x54\x48\xe4\x66\x7b\x45\x7b\x5f\x76\x7b\x79\x70\xa8\xe2\x0e\xf4\xcb\x9a\x30\x26\x40\x9c\xcc\x41\xac\xb1\x55\xb9\xf6\x64\x51\x25\x65\xa0\xdb\xd4\x70\x2a\x47\x4e\x7e\x8f\x4a\x36\x5c\x09\xac\x34\xbf\xcf\xf8\x1f\x3e\xc4\x7f\x12\x27\xae\x1a\xe8\xd2\x80\xb2\x33\x44\x68\x31\xc3\x07\xd6\x4c\xd9\x53\x90\x78\xc4\x5e\xc1\x4a\x1b\xb6\x3c\xd6\x1a\x05\x4c\x6c\x52\xa6\xe5\x1d\x96\x9d\x7a\x42\x92\xb3\x0e\x6b\x3b\x2a\x21\x47\x4c\x33\xa5\x93\xea\xce\x79\xdd\x75\x30\xd2\xc1\x8a\xac\x90\x64\x31\x17\xb7\x20\x0e\x93\xdb\xe8\x9d\xb0\x78\x47\x97\x0f\x61\x5a\xb6\x99\xcc\xe8\xad\x68\x15\x4a\xe6\xb6\x17\xbe\x97\xc6\xad\x14\x5e\x5a\x6e\xc5\x4a\xf7\x30\xcf\x54\x35\x88\xa0\x64\x35\x76\xa4\x66\x52\x72\x60\xd5\xf9\xd9\x83\x73\x97\x4d\x54\x59\x35\x99\x0c\xe0\xcd\x18\xb6\x01\x47\x35\x61\x72\xa1\x0d\xb0\xcc\x26\x43\x80\x97\xe4\x85\x01\xc8\xec\x38\xac\x0a\x0d\x1d\xd5\x8f\x2b\xed\x0b\xfd\xae\xc8\x2a\xab\x26\x4e\xaa\xd8\x15\xb7\x98\x13\x78\xac\xf1\xc6\xa8\x3e\xc2\xba\xff\x54\x91\xb0\x55\xc7\x9b\xc7\x0b\x12\xbe\x88\x35\xc7\xc4\xea\x6f\x56\x9b\x1a\xaf\xd1\xfe\xc3\x6a\x83\x77\x6e\x55\x61\x69\x32\x52\x1f\xb2\x3d\xdc\x01\x4d\x60\x96\x9d\x6e\x82\x51\xdc\xa1\x5a\x59\xdc\x4f\xa8\x5d\x7c\x19\x7e\x57\xce\x4b\x20\x13\x6c\x27\x01\xbf\x0a\x75\x25\x15\x22\x5d\xf6\xcb\xf0\x9b\x53\x63\x52\x35\x98\x98\xf2\x81\x7f\x56\x15\x30\xe0\x0b\x24\xed\x20\x33\xe0\xb5\x6b\x46\xd0\xe1\xbc\x86\xf5\x1f\xf2\x16\x19\xfc\x4e\x7a\xaf\x7a\x43\x37\x27\x44\x04\xf2\xa2\x9c\x1d\x51\xe0\xc6\x25\x30\x18\xdb\x60\x2c\xf8\xa9\x4a\x26\x85\xc1\x9a\x70\xee\xca\x28\x0e\x3f\x5d\xa4\x56\xbc\xab\x1d\xf3\xef\xff\xa9\x0e\xae\x72\xaa\x19\x7a\x1a\xd6\x1b\xfe\x39\xaf\xbe\x65\x7d\xf2\xc8\x62\x32\x59\x73\xb8\xd2\xb8\xc3\x55\xbc\xc6\xce\xc4\x0b\xfa\x11\x14\x58\xd5\x0e\xa7\x2f\x33\x8b\xe4\xf9\x8c\x5d\x61\xab\xd8\x5c\x71\x55\x2a\x74\xb4\x13\x84\x04\xd9\x95\x70\x03\x8e\x87\xf3\xca\xf6\x48\x27\xe3\x75\x9e\xea\xf0\xf8\x33\xd9\xed\xbe\x3b\xc5\x72\x00\xb6\x57\xcb\x70\xe5\x9b\x6c\x65\xb6\xb2\x55\xe2\x5e\xcb\xa8\x17\xcd\x98\xa6\x78\xaa\x07\x65\x6a\xa1\x74\x40\x79\x89\x14\xdd\x81\x67\x0a\xd3\xec\x6d\x50\x41\xf8\x8d\xd2\x74\xe3\x6a\x90\x9f\x5a\x0d\x5d\x17\x4e\xc6\x97\x43\xd7\x91\xe5\xd7\xd4\x1e\x19\xaa\xe0\x9b\xe7\x4b\xfe\x59\x0d\xbb\x16\xa4\xdb\x34\x96\x1f\x30\x21\x8e\x65\x99\x9f\x49\xad\x38\xaa\xa1\x58\x12\xbf\x11\xbc\xcd\xc4\xd8\xee\xb0\x08\xbb\x79\xc6\xce\x98\x37\x76\x3b\x06\x49\x0a\x42\xa4\x54\xdc\x71\x9c\x28\x32\xed\xc1\xa1\xdd\xcb\x83\xd8\xd8\xbd\xe8\xb4\xb9\x73\x3c\x53\x30\x4e\xb9\x04\x8f\x8a\x5c\xaf\xcd\xa0\x58\xa6\x82\x9f\x53\xab\x56\x36\x05\x60\xc3\x80\xe5\x21\xa8\xcd\xc8\x74\x80\x37\x80\x58\x1e\x04\x8a\x8d\xc7\x6d\x10\xc6\xc6\x07\xc1\xf6\x20\xdc\xa9\xa3\xe9\x43\xa2\x6b\x1f\x9c\x12\x17\x64\x0e\xc1\x7b\xac\xd9\x58\xeb\xf8\x86\x22\x51\x3f\x48\x43\xc5\x21\x13\x3f\x9e\x96\x84\x87\x66\xed\x3c\x98\x65\xe0\x3e\xe7\x1d\x54\xf3\x05\x62\x82\xe6\x0d\x75\xc1\x17\x8b\xe7\x01\x27\x99\x5d\x84\x3e\x21\x8d\xa9\xf5\x96\x24\xdb\x0f\xc1\x28\x03\x27\x3c\x4a\x24\x98\xbd\x28\xdb\x33\x5e\x25\x5c\x6f\xb8\xe2\xfb\xc2\x62\x09\x4b\x21\xbf\xa7\xa6\xe9\x8f\x74\xc9\x76\x05\xd3\x16\xfa\x11\xf3\x61\xf0\xb2\xfc\x77\x68\x51\x10\x15\x30\xb0\xc7\xea\x11\x08\xeb\x2c\x0a\xc8\x59\xb6\x3b\xd4\x75\x94\xe5\x1e\xb5\x7e\xb2\x63\x42\xb9\xbd\x74\x45\xc7\x79\x8d\xb7\x8b\x60\x7a\x2a\x8c\xdd\x93\x79\x02\xda\x08\x92\x9d\xa4\x41\xdb\x06\x42\x91\x11\x15\xae\xf4\x5f\x25\x29\x09\x33\xc9\x2c\x2e\x8a\x2a\xe7\x44\x38\x95\x0b\x56\xf0\x31\x9f\x0d\xe1\x0b\xfa\xaa\x82\x69\x59\x4e\x81\x77\xbd\x46\x1d\x4a\x49\x89\x27\xb4\xb7\xa0\xb3\x48\x66\x2d\x1a\x4a\x25\xf2\xba\xa8\x02\x2a\x38\xbd\xf0\x57\x48\x89\x5a\xba\x1b\x85\xd6\xc2\x9c\x1c\x36\x42\xc8\xa5\xf5\x1f\xdb\xd8\x29\xa6\x8a\xd4\xd7\x17\x9c\x30\xca\x0f\x9d\xa1\xec\x30\x21\x33\xbd\xe9\x81\x97\x57\xf1\xe0\xd0\x86\xec\xd4\xa2\x15\x42\x41\x9d\xc4\x0b\x24\x57\x62\x2f\xe9\xae\x28\x10\xab\x3f\x8d\x6b\x4f\xeb\xe8\x97\xf2\x96\x89\xfa\x56\xee\xa2\xef\x2a\xd9\xb6\xb8\xc6\x93\x2d\x47\x8b\x8b\xa7\x54\x59\x02\x54\x0e\x41\xb6\x1e\x31\xb5\x2e\xee\xc0\x1c\xe9\xa5\xbe\xfe\xde\x0b\xb8\x90\xff\x86\x2b\xaf\xa2\xaa\x74\xe5\x15\x1b\x39\xda\x61\x93\x5e\x4e\xb7\x9a\x6c\x5b\x64\x88\x78\x2d\x67\x6c\x0d\xaf\xe6\xc8\xdd\x40\x2d\x24\xc7\xc0\xf0\xfc\xa7\x3a\x20\x0f\xc4\x2b\x01\x8f\x26\xed\x84\x44\x4b\x55\x34\x6f\x27\xa1\xc6\x4d\xe4\xe6\x72\xce\xcf\x51\x6a\x73\x8a\x61\x91\x3f\x94\xe6\x00\xfc\x7e\xd8\xeb\x6a\x0b\xe3\x40\x96\x42\xd1\xae\x79\x72\x67\x7e\xca\xa2\xd2\x46\xaf\x37\xdd\x41\xe8\xed\xce\xf6\x1e\x57\x52\xb0\x88\x48\x92\x2c\x7c\xf5\xaa\xb1\x6b\xa3\x7f\xc3\x81\xdd\x92\x21\x73\xbc\x6c\x79\xe6\x7c\x6f\xcd\xfa\xf9\x0b\x0b\x22\xe6\x1d\x90\x9f\x8d\xdd\xff\xe9\xd9\x53\x4e\x17\x17\x38\x85\x76\xf0\xe2\x95\xf6\xaf\x87\xe5\x63\x27\xd6\x83\x6e\xf1\xc8\x7d\x26\xb3\x97\x17\x6c\x1a\x45\x56\xe6\x7b\x13\x87\x05\xdf\x61\xd8\x5e\x38\xdb\xdd\xab\x51\x11\xbb\xdd\xd2\xf4\x2e\x3b\xb5\x25\x48\x6c\x3f\x5a\x53\x29\x83\x23\xa7\x7a\x1e\x9f\x9b\x9b\xd7\x8b\xb8\xc4\xd3\xfc\xf0\xb4\x05\x3e\xb5\x50\xb9\x30\x8f\x08\xc0\x0d\xeb\x58\x8b\x4b\x83\x45\x2c\x85\xfc\xc7\xb4\x14\xce\xa3\x03\x9e\x65\xa2\xec\x41\xe1\x05\x50\x84\xe2\xe2\x0c\xda\x41\x7c\x18\xa4\x35\x13\xad\x2e\x2f\xac\x6c\xf1\xc2\xd9\x13\xb4\xe2\xc8\xbf\xc7\xe6\xe1\x72\x1d\xed\x6f\xa6\x68\xd4\x77\xa6\x67\xa1\x03\x19\x45\xe3\x11\x49\x34\x6d\x0c\x53\x50\x35\x45\x34\x2d\xb4\x22\xa7\x66\x64\x38\x4a\x14\x8d\x16\xa4\x72\x48\xaf\xbf\x92\x9a\x4d\xea\x4d\x1d\x0f\xd5\x7d\x05\x45\xc3\x3e\x9d\xe3\x70\x58\x43\x5a\x14\x9e\xa8\x4b\xd6\x99\x60\x86\xb1\x75\x26\xed\xbd\xb3\x7c\x69\x2c\x42\x22\xce\x89\xf3\xc0\xb1\xe4\x5b\x19\x1a\x81\x26\xf9\x64\x52\x88\x6a\x98\xff\x4d\xb4\xf2\xe0\x2a\x6f\xef\x94\x99\x29\x82\xe9\xc7\x0a\x55\x5f\x79\x19\x98\xdd\x76\x41\x0d\x83\x23\x91\xd3\x0f\xee\xa7\x3c\x8f\x5e\xca\x15\xe0\x76\xb5\x82\xb4\xd5\xaa\x2a\xee\xdb\xd8\x9c\x8e\x8c\x2c\xf3\xac\xf0\xa8\x20\xda\x90\xe6\x99\x68\xc0\x53\x5c\xb3\xb9\x60\xca\x83\x16\xf3\xb2\xdc\xb3\xb0\x6b\x99\x20\x65\x37\x71\xb4\x73\x81\x6a\x09\x27\x57\x4a\xec\x3a\xd9\xa8\xc4\xd3\x0c\x8e\x48\x0f\x1e\xce\xe1\x46\x50\xd3\x8d\x7a\x67\x9d\x1a\x13\xbb\x91\x96\x32\x13\x17\x17\x79\xd3\x37\xde\xef\xc8\xde\x23\xb7\xf8\x4f\x2c\x03\x1b\x18\x20\xfb\x23\x3a\x6b\xd6\xaa\x8f\x0a\x2d\x68\xd2\xae\x93\x6c\x43\x8a\xbb\x17\xba\x1b\x79\xa1\x68\xeb\x12\xec\x3d\x5b\x2c\x92\x46\xe2\xe3\x8f\x9f\xdc\xc9\xc7\x3f\x7c\x72\x8f\x9e\x5f\xa9\xde\xa1\x89\xfd\x39\x75\xe3\x16\x96\x07\x8e\x88\x74\x7c\x2b\xde\xab\x16\x3a\x24\xbb\x53\xa1\x16\xeb\x85\x78\x06\x43\xf0\xfc\xe4\xe3\x1f\x3f\xb9\x67\x4f\xf1\xf7\x62\x3a\x99\xc9\x46\x9f\xe6\xf6\xeb\xd6\x52\x23\x4d\xfd\xf7\xd1\xbb\xaf\x2f\x8c\x2a\xda\xf1\xc1\x44\xc1\xc1\x8b\xbc\x7d\xb9\x04\xc3\x6d\xae\x53\x4d\xaf\x3c\x8a\xf3\xa4\x0c\x25\x51\x17\x53\x8b\x12\x50\xd1\xf4\x06\xf8\x76\xa3\x0c\x97\x0b\xa9\x45\x29\x56\x14\x86\xdb\xd6\x6a\xe6\x3e\xb8\xc4\x96\x16\xd3\x48\x3d\x1b\xaf\x80\x23\x23\x12\x6d\x43\xbe\x9b\x19\xe7\x70\x39\x32\x1d\x67\x79\x54\xc1\x38\xc5\x92\x68\xdb\x71\x04\x68\x0c\x61\x88\x5d\x1f\xd3\xd1\x11\xe5\x3b\x76\xf5\xee\xe2\xb2\x38\xba\x1e\xca\xbb\x79\xf7\x00\x2a\xa6\x6a\xc5\xb5\x3a\x9b\xe3\x03\x69\x8b\x2f\xf1\xbc\x02\x26\x43\xf6\xba\x3b\x7c\xeb\x8e\x15\xbf\xc8\x66\x53\x92\x0b\x24\x0a\xc1\x2e\x9b\xc9\x77\xa3\x4e\xc5\xb3\xe5\x73\x9e\xae\x3b\xa5\x76\xcc\x2d\x51\x93\x46\xb4\xe5\xd9\xd3\x65\xb9\x63\x7a\x45\x8f\xe7\xbc\x9a\x12\xb3\xeb\x98\xf7\xe0\xc0\x1c\x41\x10\x57\x47\x86\xa6\x24\x7e\x47\x96\xc5\x71\x8c\xe5\xf1\x3f\x42\x16\x0f\xc4\x50\x7a\x7c\x24\x4e\x29\x7b\x7a\x64\xca\x94\xfe\xab\x28\x45\x28\x3c\x67\xe9\x15\xf5\x7b\x9d\xba\x57\x1d\xf1\x04\x2d\xec\x73\xb4\x99\x58\xc1\x16\x8e\x62\xa7\x3f\xb6\xda\x1f\x60\x0c\x66\x9a\xf1\xb5\xdb\x27\xd6\x5b\x8e\x4a\x60\xeb\x69\x61\xd6\x74\x44\x47\xd6\x7e\x96\x44\xbb\x2a\x4e\x10\x70\x94\xa1\xc8\xab\x30\xcb\x30\x39\x08\x48\x8c\x40\xdc\x2d\x54\x38\xa9\xe5\xd3\x44\x21\x03\xce\x0f\x9c\x70\x5d\x7b\x1b\x77\xca\x86\x4c\x94\xc5\xf9\xd5\x1b\xb7\xa8\x62\x85\x01\x29\xee\x12\x6a\xc2\x9e\x74\xf2\x68\xc8\xdc\x75\x93\xad\x16\x34\x5c\x54\x9c\x19\x4f\x6c\x13\xb1\x9e\xb1\x53\x93\x0e\x51\x67\xca\x7c\x1a\x77\xe5\xb2\x15\x40\xb5\x61\x4b\xc6\x32\x54\xec\xea\x77\xe2\x6d\xba\x2d\x83\x99\xdd\x1d\x40\x2a\xc9\x9e\x41\xd0\xd9\x27\xf6\x28\x57\x8c\xde\x5f\x68\x4f\xc4\x58\x00\x6b\xd9\x47\xbe\x36\x34\x98\x39\xdb\x7c\x2a\x73\xf6\x76\x76\x32\x13\xb3\x3b\x5b\x6c\x8e\xe3\xdd\x05\x3c\x65\x9f\xbf\xc4\xff\xda\x55\x49\xdf\x8e\x2e\xf2\xbc\x57\xd9\xf2\xbe\x9a\xad\x36\x6e\x7b\xaa\x7a\xb4\xbc\x05\x89\x67\x64\xec\x8a\xfc\x0b\xa9\xfe\x68\x45\x64\x27\xb9\x74\x62\xaf\xba\x6e\x51\xa1\xe6\x7d\x61\x40\xba\xa4\x87\x2c\x51\x0d\xc4\xd7\x45\xd8\x0f\x73\x28\xee\x83\xdc\x82\x8a\xe1\x2d\x53\xa4\x2a\x97\x7c\xe7\x94\x79\x45\xc8\xa0\xb2\xb7\x32\xf4\x7e\xb3\x3c\x1e\x68\x08\xb3\x0b\x1a\x34\xcc\x57\x72\xeb\x98\x8e\x20\x13\xa8\x56\x7c\x91\x9b\xdf\x50\x1e\x1f\x59\xba\x6b\xa0\x06\x84\x06\xe6\x69\xa3\xa6\xa7\x7b\xbc\x02\xe8\x0b\x2d\x1f\x5d\x5c\x97\xad\x7d\xa0\x71\x79\x15\x85\x96\x82\xf6\x34\xf6\x35\xc3\x8b\x52\xdf\x88\x96\xf1\xca\x49\xd6\x6a\xbc\x6c\x0b\x93\x5e\x06\xca\x74\xe6\x2a\x31\xbf\x81\x64\xa7\x4b\xc2\x80\x6c\xa7\xfa\xad\x34\x68\x4d\x4b\x17\x1a\x41\x03\x70\x71\xfe\xee\xdd\xfb\xdb\x24\xf8\x03\x0d\x33\xad\x35\xea\xbb\xf8\x8a\x68\xd2\xae\xf0\x96\x28\x6e\xbe\x12\x22\xbd\x66\xe2\x12\xc7\xe0\x72\xe9\x2a\xb3\x36\x5e\x5b\xd4\x8b\x58\x68\x4b\x90\x0f\x8b\xf6\xb7\x47\x57\xc8\x47\x18\xe2\x4f\x55\xb8\x6a\x7f\x0f\xff\xab\xdc\x5a\x21\x33\x20\x41\xb2\x99\xec\x4c\xd2\x8b\x76\xb1\xb6\xb6\x9d\x58\x2f\xa0\xe0\x37\x48\x54\xdf\xda\xed\xce\x22\x03\xb3\x12\x68\x87\x7a\x0a\xbb\xcb\xf6\x48\xec\x50\x68\x30\xfa\xef\x03\xaa\x7c\xd0\x7c\x74\x51\xdd\x6b\xa7\x97\xba\x23\x21\xf5\xcf\xf1\x83\xd2\xe1\xd7\xe8\x4d\x73\x56\xb9\x76\xe2\x99\xdb\x49\x23\x9a\x4e\x3a\x77\xf6\x68\xd0\x02\xf8\x5d\xaf\x3e\xfb\x47\xcf\xaf\x7a\xb4\x58\x7c\xf6\x14\x20\x9e\x4f\xd0\xd5\x2b\xdb\x37\x74\xad\x19\xad\xb3\x91\xe6\x70\x3a\x6c\x53\x83\xcc\x48\xb6\x55\x69\xe0\x7f\x47\x9d\x2b\xdb\xdf\xa5\x7e\x7c\xcf\x9a\x7c\xbb\x22\xba\x7b\x2f\xbb\xa1\xbc\xd6\x81\xda\xa1\x8c\xfb\xa1\xc2\x07\xdb\xa9\x2c\x5a\xeb\xa3\xf3\x1e\xc8\xd0\x66\xfd\x27\x1c\x34\xff\xb0\x13\x90\xd7\xaa\xdb\x81\x00\xf6\x5d\x85\x2d\xe1\xeb\xef\xb1\xd7\x17\xcc\x0b\xaf\x99\x21\x0f\x9f\x34\x63\xea\xcc\x6c\x64\xbe\x21\x64\x17\x64\x9f\x6c\x36\x81\x9c\x62\x27\xf2\x2b\xe3\x03\xdb\x2f\xc5\xd3\xc7\x35\xbd\xc6\x17\xd9\x94\xde\x49\xbc\x49\x8e\x6e\x7f\x30\x71\xad\xbd\x5e\x1b\xdb\x67\xc3\x70\x83\x16\x3a\x62\x11\xb3\x44\x70\x24\xe4\xaa\x4e\x37\xca\x38\xa4\x76\xf4\x2b\xa4\x4c\x8a\x4b\x11\x60\xf1\x96\xaf\x57\xb2\xe5\xad\x00\x3f\xf8\x7b\xa6\x14\x03\x86\x2a\x2b\x39\x78\x5b\x6b\xa3\x3d\x3e\xea\xd1\x20\xd7\x92\x76\xb1\x5c\xaf\xa4\x3b\x0b\xb6\x45\xf4\xee\x98\xa8\x3f\xe3\xe1\x77\x39\x3c\x3d\xfc\x20\x27\x9b\x20\x7e\xfd\xcb\x06\x05\x38\x7e\x98\x20\xc8\x78\x93\x7d\x06\xd5\xbb\x7e\x30\x74\xa9\x3d\x18\x55\x24\x26\xf9\x86\x8e\x73\x73\x60\xef\x14\x4f\x7c\x2f\x9b\x3b\x20\x2e\xbd\x5a\xa9\x5e\x99\x06\x1f\x11\x48\x9f\xa9\x0a\xc8\x76\x81\x2d\xf4\xa9\x58\x40\xae\x41\xd4\xbc\xc7\x07\x2c\xf4\x10\x4a\xbc\x09\x29\xdf\x6f\xec\xd0\xff\x10\x00\x83\x32\x3a\xc2\xf1\x95\xca\x28\x3f\xb4\x93\x45\x76\x36\xf2\x13\x46\xc1\xa1\x20\x7b\x7a\x10\x9d\x69\x11\x9c\x60\x1d\x7a\x7c\xd8\xc7\xf8\x50\x39\xe6\x0e\xa6\x49\xea\xb1\x1b\xfc\xaa\xf6\xd2\x37\x1b\x32\x76\xf8\x0b\xff\x44\x5b\x87\xb5\xfc\x8d\x52\x6f\xe2\x07\x6e\x01\xc7\x9b\xc2\xb1\xe1\x42\xaf\x64\xb3\xe1\x77\x1c\x76\x55\x93\x07\x14\x64\xc7\x6e\xa3\x01\x16\xd0\x13\x84\x53\xad\xd8\xca\xcf\x7a\x3b\x6c\x45\x04\xc4\xa2\xb0\x4b\x4e\x4a\x93\x8a\xc5\xbc\x61\xc4\xd8\xbe\xef\xdb\xed\x23\xc6\x18\x1e\x36\x93\x30\x4a\xb5\x35\x88\x1b\x81\xe8\x14\x06\xc5\x15\x3b\x9c\x0a\x1e\x7b\xa2\xc7\x29\x72\xd9\x93\xe7\x1e\xa7\xdf\xe1\xd6\x4b\x96\x24\x15\x5f\x03\x2e\xbb\x41\x3d\x7a\x4e\xb3\x18\xe8\x69\xc0\xca\xfb\xe3\x2d\xfb\xbc\xca\x36\x08\x43\x2c\x88\x68\xa6\xc5\x76\x81\x5e\x2f\xd2\x5a\x9b\x81\x2a\x8e\x5c\x16\x59\x64\xa6\x47\x7b\xfa\xea\xcd\x2d\xda\x9c\x3e\x50\xbc\xa6\xab\x87\x3a\x3c\xe6\xfa\x2b\xf9\x71\x42\x07\x15\xd9\x6d\x63\x70\xd6\x25\xf3\xc1\x58\x1e\xc8\xe9\x40\x70\x3e\xb2\x93\x7e\x93\xea\x82\x43\x5e\x3b\x47\x8c\xbb\xd1\x38\x9f\x05\x13\x9b\xb0\x53\x1b\x18\x59\xb9\xb0\x02\xb6\xf4\xf8\xb3\x91\x5d\x78\xf9\xf9\x86\x12\xb9\x20\x24\xe2\xbd\x4a\x69\x9b\x14\x5e\xac\xc8\xdc\x57\x4d\x40\x1b\xcd\xd0\xd2\x6a\xc8\x2d\xd0\x78\x4b\xf2\x01\xc3\x5e\xc9\xec\xaa\xa2\x33\x22\xa4\xf3\x89\x01\x5f\x15\x48\x51\x75\xa7\xcd\x1d\x72\x56\xbb\x43\x4a\xc8\x18\xc9\x0b\xbb\xd3\xaa\xfd\x2e\xcb\x0b\x0a\x8a\x2b\x9c\xfd\xff\xf7\xff\xfe\x7f\x9e\x5c\x40\xbb\x2f\x7c\xdf\x3d\xb9\x08\xd2\x19\xc0\xd3\x38\x12\x02\xf1\xfe\x3f\xab\xc1\xec\xd9\x36\xf4\x03\xfd\xaa\xc2\x37\x92\x88\x6a\x30\x8e\x0d\x0d\xf0\x47\xc5\x5f\x40\x29\x2a\xf6\xa6\x06\x24\xa2\xaa\x4c\x3c\xe1\xde\xd9\xe2\x90\xfb\xfb\xa0\x9b\xbb\x9a\xee\x8b\xce\xc4\x7f\xc1\x97\x40\x0f\x5d\x7c\xce\xc3\x91\x11\xe9\x3f\x2e\xda\xd1\x21\x92\xbf\xdd\xc4\xc3\x91\x5f\x94\xa7\xf3\x42\x96\x7c\xcb\x21\x50\xec\x00\xd8\x69\xa3\xaa\xdd\xe0\x36\x64\x8c\x16\x6a\xbb\x1a\xdc\x06\xfd\x8f\x7c\x26\xff\x36\x39\x06\x9c\x9a\x09\x8e\xa5\xec\x55\xbd\x8d\x46\xff\xe3\xdd\x1d\x17\x0e\xbf\x2c\x4b\x37\x4e\x07\xe5\x17\x55\x45\xe7\x1f\x59\xfd\xbb\x2a\x1e\x69\x7c\x94\xf9\x5e\x21\xd2\x5e\x29\x80\xf4\xaa\x0f\x66\x74\xd2\xb4\xb5\x97\x6b\x2a\x09\x7c\x07\x17\xb5\xbd\xf0\x72\xcd\x88\x10\xf3\xcf\xfc\xb3\xf2\x12\x8d\xae\x6e\xe5\x7a\xea\xda\x6d\x37\x74\xdd\xd4\x01\x5c\x27\x97\x0a\x93\x2f\xf1\x47\xb5\x85\x46\x7a\x6b\x14\x1d\x5d\xe1\xa3\x6a\xf0\x2d\x83\x8b\xaf\x1a\x5c\xb5\xd6\xe1\x7c\x2e\xdb\xc0\x0f\xfa\x49\xff\x46\x3f\x71\x08\xea\x5e\xee\x21\x4d\xee\xe9\x73\xa3\x1d\x3b\x0a\x7c\x4d\xbf\x28\x99\xae\x25\x10\x14\xef\x22\x22\x3c\xb2\xff\xbc\x47\xae\xc2\x6f\xca\xf2\x16\x18\xaa\x3e\xcd\x4e\x30\x5a\xf1\xd6\x0a\xca\x20\x8e\xd6\x6d\xec\xde\x54\xf7\xba\x55\x16\xcf\x0c\xf6\x31\x40\xae\x12\x97\xbd\xdd\xbb\xc0\xf1\xc1\x68\xd3\x27\x4c\x2f\x88\xe0\xc1\x1f\xc1\xeb\xdb\xb7\x97\xff\x2e\x10\x07\xcc\xc3\xa2\x8a\x33\xb1\xb0\xf7\xaa\x67\x8f\x17\xef\xf9\x67\xca\xe4\x47\x9b\xd9\x90\xa1\x41\xa2\x4a\x23\x17\x41\x9d\x97\x5d\x01\x79\x03\x09\x33\x80\xe4\x8e\xef\xbc\xeb\x66\xf2\xd8\xdc\xa6\x5e\x1e\xa2\xc1\x50\x2b\xf0\xf6\x02\x48\x30\xde\x60\x24\xe0\x60\x51\x32\xe6\xbb\x98\x81\x1f\xb1\x5f\x95\x6a\x61\xe9\x2f\xd0\xb9\x22\xd9\x91\xbd\x53\x7b\xe2\x2d\x39\x8b\xac\x8b\xea\x68\x65\x86\xcf\x79\x72\x00\xf8\x17\xb2\x7f\x69\xb5\x2f\x32\x77\xbd\xc2\x75\x40\xcd\x72\x44\xe2\x70\x64\xa9\x41\x2e\x00\x12\x5f\x5e\x23\x32\x63\x4d\x0d\x47\x6a\x1d\x36\xdc\x05\x31\xed\x90\x29\x8c\x35\x4f\xf0\xbc\xc5\xcc\xa2\x11\x48\x8a\xf2\x96\xf8\xb0\x84\x02\xd8\x76\x70\xbe\x5e\xaa\xda\x9a\x5a\xa6\xb1\xf9\x6b\xb0\x8e\x5d\xe2\xcb\x2c\x19\xf6\x27\x1c\x7c\xf2\x8e\x2c\xf5\x7b\x0b\x52\xa2\x08\xfd\x08\xfe\xcf\x72\xe4\x28\x76\x90\x8f\x42\xec\x47\x8e\x19\x69\xed\x98\xbb\x66\x7f\x86\x00\x1b\x4c\xc8\x73\x7c\x41\xf9\x94\xf5\x2a\xd7\x7d\x4d\xfa\x05\x54\xab\x46\x77\x56\xac\x42\xcd\x1b\x80\x24\x8d\x7c\x5d\x25\xfd\xc8\x37\xf5\x8e\x2c\x33\xb1\x49\xe9\x28\xc3\x07\x50\xe5\xad\xf7\xfc\x2d\x70\x58\x68\xc0\xec\xe1\x73\xe7\xb0\xdc\xd8\xe2\xbf\xc7\xca\x16\x8b\x45\x5e\x5f\x94\xe5\x51\x3d\x0a\xac\x72\x3a\xc4\x4f\xc9\xff\x14\x72\x73\xda\xd3\xd5\x1f\x9e\x9e\x4f\x17\x00\x1b\xd4\x7f\x79\x81\xb5\x0d\x4a\xa1\xa5\x5a\x6b\xf2\x54\x89\x12\xad\x62\xbf\x19\x09\xc9\x52\x36\x77\x6e\x27\xd1\x61\x21\xb5\x07\xcf\x67\xdb\x67\xeb\xb5\x51\x5d\x8d\x26\xc7\xe2\x4c\xd0\x67\xcc\x44\xca\x9a\x2d\x7a\x7e\x40\x36\x5a\xf3\xb2\x6d\x6b\xbf\xdd\x05\x23\x9e\xc7\x27\xee\xe9\xb3\xd0\xed\xe7\x8f\x33\xa8\x04\xf0\x38\x6d\xcb\x96\xbc\xa7\xb2\x05\x61\x9e\x37\x36\xc0\xcd\xf3\xb8\x69\x7c\x08\x46\x9f\xbd\x2d\x3e\xda\x0e\xae\xc7\x84\xfa\xec\x95\x69\x55\x2b\xda\xc4\x09\x64\x73\xc3\x48\x68\x68\xbb\x43\xed\x2d\xad\xd2\x44\x6d\xa8\xbf\x01\x20\x0c\x3b\xeb\xa9\x02\xdb\x4c\xe0\x4f\xa0\xbb\x8f\xf0\x9d\x76\xd4\x5b\x61\x46\xaa\x2e\x31\x10\xa9\x86\xc0\x3a\x04\xdd\x97\x89\x0f\x00\x13\x9e\x15\xfa\x22\xc3\xc7\x1e\xd8\x1e\xbc\x0e\x27\x8f\x94\x02\x4e\xd1\xf0\x64\x7d\x91\xd3\xc1\x60\xfb\x8e\xb6\xbe\xcc\x12\x95\x8f\x0b\xf3\x91\x18\xd9\xa3\x8e\x17\x2f\x93\xb5\xa5\x22\x8f\x92\xbc\x63\x50\x98\x99\x38\x8f\xe4\xb2\x81\x69\x20\x1b\x15\x62\x79\xd2\xb9\x4c\x9b\xad\x30\x60\x71\xd1\xfb\x69\xae\xb4\x08\x6b\x21\x2c\xff\x5a\xbb\x5a\x46\xea\x68\x7c\xd0\x5b\xb2\x18\xba\x93\x6c\x1e\x49\x3e\x54\x24\x9d\xbc\x23\xc6\xf9\xa1\x8a\x90\x3e\x60\x1d\xee\xb0\xe5\xd3\x3d\xba\x11\x0d\x02\x9b\x14\x21\x33\xdc\xb3\xf0\x10\xe0\x63\x57\xcd\x5c\x34\xd9\x08\xab\xa5\x60\xd4\x93\x51\xc5\x6a\x52\xab\x52\x45\x85\x9c\x99\xb3\x86\x5f\xdf\x05\xa6\xc6\xb5\xb1\x35\x69\x11\xd2\x0c\x94\xdd\x09\x96\x09\x81\x7c\x8f\xd4\x0e\x51\xc0\x3f\x56\x11\xdb\x8d\xd6\xfb\x4d\x56\x6d\x20\xa9\x13\x53\x27\x86\x16\x4e\x9b\x46\x25\xd7\xaa\xaa\x0d\xf5\x2f\x1e\xd6\xa7\xa5\x17\xf9\x68\xd6\xc0\xb7\x38\x7b\x98\x05\x3c\x1a\x8a\x4a\x6c\x1f\xb7\x15\x91\xc3\xb0\x7f\xd6\x52\x9b\xb4\xbd\xbc\xc5\x17\x37\x74\xaa\xf8\x4d\x76\x82\x94\x3d\x9d\x2c\xe5\x73\x1a\x46\xd4\x2e\xa5\x29\xfb\xfa\x45\x6d\x6c\xa0\xad\x40\x7a\x80\x17\xa4\xd9\x01\xc9\x95\x6c\x45\xb2\x93\x0c\xb2\x53\x7b\xd0\x71\xa2\xad\xd9\xee\x99\xb7\xc3\x4b\x12\x03\xe3\xa5\xcc\x53\xb6\x19\x49\x93\x8d\x4d\xa5\x17\x97\x20\x19\x66\x04\xdc\x0d\xcb\x56\xf7\x4c\x43\xe9\x83\xa5\xcc\x44\x25\xf8\x8d\x15\xd6\x1b\xb9\x29\x37\xaa\x38\x32\x56\x2e\xd8\x60\x1e\xa9\x35\xc7\x01\x38\xa9\xfa\x0f\x33\x08\xaa\xc0\xed\x07\x8a\x9d\x58\x75\xa6\xd0\x81\x63\x2f\xe1\x72\xe9\x20\xe4\x8c\x3c\xf3\xf0\x92\x48\xf9\x2b\x8d\x22\xdd\x4b\x6d\xda\x98\x26\x51\x01\x13\x9f\x76\xc7\xf4\x24\x82\xf1\x0b\xec\x98\xc3\x87\xda\x0b\xd4\x2d\x72\x5a\x70\xc8\xf4\x1e\xfe\xc7\x54\xa3\xf6\xac\x5e\xde\xab\x3e\x3a\x2c\x22\x6f\xeb\x40\xaf\x51\x58\xca\x92\x17\x63\x01\x29\xcb\x82\xbd\x0e\x89\x24\xfd\x62\x7e\x9e\xdd\x74\x4a\xf6\x75\x2c\x7f\x01\x9f\xa2\x9b\x60\x89\x12\x57\x2e\x70\x8d\xaa\xc9\x61\xde\xd9\x79\x30\xaa\x2e\x87\xa4\x1a\xb7\x73\xc0\x76\xa7\x4c\x01\xfb\x7e\xa7\x4c\x2e\xef\x15\x88\xad\x53\xed\x08\x33\xde\x7d\xcc\xc3\x4b\x87\x7e\xfa\xf0\xf6\x87\x7f\x4e\xdb\x99\x01\x51\x33\xe5\x0c\xa8\xb1\x39\xdc\x3b\x3b\x01\xe2\x0d\x17\xcf\xf5\xf1\xec\xa5\xf9\x51\xfb\xc9\x04\x51\x66\x8d\x66\x25\xd1\x7d\x17\x02\xc5\xe3\xba\xa8\x26\x22\xe3\xca\x0a\x7c\x84\x2b\xea\xe6\x17\xf1\x1e\x12\x76\x97\x04\xf6\xb0\x55\x2b\x7c\xb7\xe6\x14\x2a\x43\xcb\x85\x30\x2e\xae\xcd\xca\xe6\xc4\x09\x5f\x81\x9a\x03\x97\x42\xc5\x42\x34\xb2\x2b\x1c\xca\x3c\x8a\x3d\x7d\x14\x9c\xcb\xc8\xa5\x2d\x5c\x18\xd2\x3b\x43\x72\xbf\x3d\x6e\x18\x3b\xa2\x39\xd2\xaa\x99\x6b\x05\x1c\x12\xa7\xfc\xb1\x22\x83\xe3\xf7\x3f\x44\x95\xbf\x08\x1f\x28\x6d\x2e\x3d\x26\x72\x87\xb4\x8a\x70\xc4\x78\x0a\x91\xda\x92\x07\x39\x42\x8b\xeb\xdb\xcb\xa5\x38\x13\x27\x2d\x2e\xee\x38\x97\xb0\x74\x53\x16\xad\xe4\x90\xc9\x0a\x98\x30\xd1\xc5\x0c\xe7\x79\x70\xcc\xd3\xfd\x06\xad\xcb\x78\xd7\xd1\xcd\x94\x78\x70\x83\x8f\x61\x8e\x62\x9e\x6c\x63\x2e\xf9\xc0\x6e\x4b\x10\x6b\x6d\xd4\x71\xd4\x47\xca\xb1\xc6\x1b\xf5\xdc\xd3\x9c\x85\xec\xba\x3a\xea\x98\xce\xbb\x4e\xd0\xc7\x2c\xa8\xe3\x80\x14\xde\x82\x14\x97\x9a\xda\xb2\x71\xcb\x5c\x21\x5a\xad\x6d\xbd\x3c\x70\x19\xda\x76\xe8\x26\xf6\x48\x91\xad\x32\x20\x72\x00\x1f\x46\x45\xde\xc6\x84\x99\x22\x8e\xfd\x27\xda\xde\xcf\xe4\x2c\x70\x3d\x7a\x3e\x2a\xdc\x2c\x08\x10\x0d\x04\x79\x8f\x3f\xe6\x40\xc8\x14\x39\x8a\x5d\xd7\xec\xce\x2a\x3c\x86\x9a\xad\x58\x49\x97\x4a\x5c\xe2\xdb\xe0\xfe\x2b\xca\x6d\xad\xf3\x70\xcc\x91\xe5\xf9\x5b\x8b\xde\x21\xf0\xf3\x81\x7a\x52\x01\xaa\x68\x52\x02\x76\x52\xd0\x22\xd1\xef\xa4\x44\xca\x8c\x62\xd1\x1e\x96\xcd\x5a\xe5\xf3\x49\xe1\x7a\x25\xef\xd4\x0c\x06\x52\x43\x31\x34\x6a\x7d\xec\x10\xd5\x3d\x76\xc8\xce\x95\xcf\x34\x15\x9f\x7d\xb9\xc5\xa3\xb3\xeb\xd1\x0e\x6f\x63\x56\xb9\xc3\xcd\xb0\xad\xb9\x8f\x8e\x28\x40\xf8\x8a\xc5\xc3\x08\xd4\x12\xaa\xfc\x35\x7e\xa7\xee\xfe\x1b\xb0\xc6\x27\xd8\xd3\x5f\x43\xb1\xf0\xf8\x8e\xa0\x33\xf7\xd2\xe7\xfc\x18\x23\xbe\xca\x08\x36\x0b\x6d\xa6\x95\xe1\x62\x7f\x8a\xcd\xb4\xd9\x23\x02\x3a\x05\xf0\xe2\xaa\x54\x2d\x17\x24\x0d\x3f\x42\x7f\xcb\xac\xd0\xa8\x08\xc2\x93\x8e\xce\x3b\x72\xf0\x5e\xe1\xa8\x06\xb8\x6b\xfc\x1c\x65\x3e\x84\xac\x2f\x0a\xf0\xb1\x99\x96\x18\x83\x8e\x26\x8a\x87\x99\x58\x8a\x67\x52\xe8\x96\xad\xac\x1f\xc5\xe1\xc6\xaf\xe7\xb8\x58\x8a\x41\xa7\xfa\x22\x8e\xf0\xf9\x8d\x58\x98\xcb\xed\xd5\x2a\xe2\xe1\xab\xe1\x96\x66\x87\xba\xca\xde\x19\x58\xa8\xf9\xb6\x2a\x76\x96\xe3\x07\x5d\xe1\x8f\x54\x73\x70\xc9\x89\xfc\xee\x45\xf6\x19\x97\x79\x61\xc7\xc2\x89\xc1\x45\x72\xf0\x15\xc4\x0a\x87\xe2\x89\x0d\x3b\xa9\x0c\x72\xdb\xdf\x6c\x90\x8c\x1a\x6b\xee\x55\xef\xd8\xac\x9e\x31\xb2\xe6\xf1\x97\x56\xa7\xe9\x19\x29\x29\x42\xdd\x64\x7a\x75\x23\xef\xd5\xe8\x10\x0f\x2c\x4f\x64\xa1\xca\xfc\xc6\x76\x36\xb1\x58\xf8\x35\x06\x20\xdb\xa2\x93\x76\x96\x3b\x4a\x4b\x93\x77\x2e\xfa\xe3\x2e\x4f\x1d\x82\x9c\xe9\x0c\x65\x8c\x54\x5c\x65\x66\xf4\x9c\x45\x0d\x44\xff\x59\xc1\x7a\x76\x8a\x85\x1f\x56\x23\x68\x34\x6e\x9a\x05\x9b\x7f\x49\x48\x3c\x46\x6e\x73\xa8\x51\x7a\x4d\xaf\x07\xb5\x29\xcc\x10\x19\xf7\x71\xf3\xb3\xf9\xca\x93\xd2\x95\xda\xfa\x05\x85\x6b\x46\x26\x77\xb2\xf7\xba\xd1\x3b\x19\x49\xe5\x55\x96\x12\x20\xa5\xf7\xb2\xd9\xc0\xb6\xce\x99\xae\x5f\x49\x71\xc0\xfa\x02\x58\x8f\x64\xc8\x0d\x82\x96\x97\xcb\x5f\x67\x4a\x47\xbf\xce\x79\xe9\x98\x08\x28\x7e\xad\xe8\x12\x2b\x13\xd7\xf2\xcb\x2c\xce\x6c\xec\x76\x27\x7b\x55\xaa\x51\x21\x25\xea\x51\x67\xe1\xc2\x2c\x05\x60\xbf\xb7\x22\xde\xc0\x60\x60\x2d\x38\xc1\x4a\x05\x20\x6a\x0a\xa3\xee\xa2\x44\x8b\x6e\xa4\xcf\xd0\x59\xc0\xb8\x42\xae\xe1\x4c\xf0\x2f\xce\x2f\x6e\xff\xc6\xb7\x7e\xa1\xe7\xb6\xee\x95\x1b\x3a\x9c\x11\x7c\xe9\x44\x1f\x2b\x3b\x98\x76\x11\x81\x30\xba\x11\x70\x5b\xa9\xae\xec\x10\xa1\xd8\x47\xfc\xee\x12\x72\x97\xaa\x91\xc0\xa8\x63\x9b\xa1\xaf\x1b\x25\xdb\xac\xf7\xbd\xc2\x10\x03\x63\xfc\x5b\xd5\xaf\x63\x47\xbf\x06\x7f\x31\xa6\x1b\xf2\x1f\x4d\x2f\x3f\xbb\x83\x68\xf5\x0a\xa9\xae\x17\xac\x6e\x08\xd5\x6d\xa4\xab\xf3\x28\x56\xb0\x40\x62\x6d\x41\xfb\x33\x9a\x98\xa5\xf2\x7b\x74\xc9\x84\x2f\x09\xa0\x5e\xd2\x71\xb9\x9f\x46\x2f\x79\x9e\x62\x1d\x4f\x81\x73\x69\x99\x70\xff\x1b\x7e\x10\xf9\xe6\x99\x1b\x89\x99\x33\xab\x0e\x89\x5f\x58\x43\x7b\xdc\x32\xde\x0a\x1c\x21\xe4\x76\xda\xa0\xf9\xa0\x63\x24\x3c\x03\xfa\x43\x7c\x06\x24\xb4\xf1\x76\xe6\x79\x10\xe3\x47\x4c\xcc\xd4\x84\x6a\x28\xed\x5f\x43\x2f\x4e\x3e\xfe\x8f\x4f\x61\x4b\x78\xb9\xac\xf3\xd3\x81\xec\x3c\xe3\x67\x01\x35\x56\xf8\xa4\xbc\xe2\xbe\x3b\x28\x07\x39\x9f\x79\x08\x6f\x69\xf1\x24\xcb\x27\xca\x60\xf3\xec\x7c\x26\xbd\x15\x3b\xd5\x03\x55\xe4\xd1\x8c\x96\xae\x8b\x62\x68\x90\xdb\xef\x53\x4d\xb0\x6a\x62\xce\xed\x04\x6d\x24\x83\x0c\x53\x52\x41\x42\xd1\x4a\x2f\xeb\x65\x1f\x6c\xd3\xa5\x97\xd1\x92\x71\x1e\x17\xc3\xb6\x43\x72\x16\x04\xa3\x68\x57\x74\x91\x97\x11\xf7\xd0\x76\xed\x6a\x7c\x29\x4d\x3a\xdc\x5b\x7e\xfe\xdc\xe9\xc6\x8b\x98\xae\x1d\x7b\xeb\xa1\x08\x1f\x6b\x8a\x97\x12\xe3\xa2\xad\x7a\xe5\x36\x18\xcd\x00\x00\x56\x6a\x2f\xb6\x16\x19\xda\x48\x91\xa4\xa9\xd1\x70\x8f\xf6\x6b\x6e\xfe\x53\x74\x83\x6d\x81\x78\x40\x46\x31\x0a\x22\x2a\x34\xb5\xfa\x3a\x6c\x64\xfe\x3f\x87\x2f\x51\x84\xa8\x7d\x0d\xfd\x76\xc7\xeb\x1a\x07\x36\xa3\xf5\xb0\x95\x86\x4c\x72\xb5\x11\xb6\x6f\x55\xcf\xbe\x63\xf1\xd1\xb1\xdf\xcc\x61\x26\xbe\x94\x90\x32\x3b\x97\x5d\x0d\x11\x5a\x4a\x8f\xcb\x16\xa8\x5c\xb8\xa5\x05\x00\x9a\xb0\x6b\x4c\x0f\x37\xb2\x9c\x9e\x2f\xcb\x31\xe1\xc2\x25\x3a\x47\x3f\x70\x5b\x0c\x86\xb7\x39\x96\x8a\x7a\xef\x5f\x59\xd3\xf3\xd8\xc7\xad\xc0\xdb\x25\x59\x7d\x97\x03\x9a\x13\x46\x43\x7c\x52\x31\x39\xdf\xff\xdb\x49\xfb\x03\x07\x75\x92\x5b\x35\xb5\xdd\x84\x44\x1a\x87\x9c\x23\x81\xa3\x41\x3b\x74\xc1\x0c\xfd\x87\xd3\x8f\xfb\xbc\x08\xa4\x92\xc5\xa0\xcc\x70\x13\x39\xae\x9f\xf3\x43\xac\x80\x41\x77\x59\x46\xed\x33\x92\xc2\x57\x56\xe9\x9a\x27\xb0\x2a\xa1\x93\x9a\xf6\x1c\x39\x26\xa0\x52\x64\xa4\x8f\x4d\x36\x8d\x5a\x54\x99\x21\x4b\xc6\x2e\x24\xf5\x4b\x96\x3d\xa3\x2b\xca\x72\xe7\xf5\x45\x63\x80\x36\x29\x45\x4f\x5c\x51\xb7\xad\xdb\x41\xd5\x2c\xcc\xbf\xb3\x48\x1c\xe0\x6b\xdc\x82\x20\xc4\x8e\x31\x47\x89\xae\xec\x50\xed\x86\x25\x9c\xd2\xe4\x37\x99\x96\x6e\x66\xbb\xe3\x6d\x78\x51\xc1\xd7\xe4\xcc\x6f\x15\xe8\x47\xa7\xda\xec\xe0\xc4\x27\x87\xf0\x3f\xcf\x98\x31\x6c\xce\x73\x53\x9f\x5f\x0c\x0a\x15\xf3\xe2\xfb\x70\x4f\xfc\x43\xd9\x49\x45\x4e\x6f\xe0\x7f\x9e\x11\x03\x74\x30\xaa\x9a\xd6\x21\x63\x44\xe4\x9c\x92\x82\x37\x9c\x46\x83\x8c\xc7\x87\xc3\xe1\xf0\x64\xbb\x7d\xd2\xb6\x8f\x67\x7a\x9d\xb1\xc5\xb1\xdb\x23\x83\x04\xd6\x3f\x8d\x4e\x86\x0c\x53\x26\x65\xcc\x8f\x1d\x5a\x97\xe4\xf3\xf4\x01\x55\xae\x4b\xe5\xf1\x19\x5d\x1a\x39\xda\x49\x69\xf6\x1c\x9c\x79\x76\xd7\xa9\xf4\x88\x0a\x88\x18\xf9\x2d\xc8\xfb\x32\x92\xd0\xb2\xac\x91\x1b\xe0\x07\x1b\x18\x0d\x0c\x99\x63\xb6\xab\xd4\x98\xd1\xa0\x50\x18\xbf\xa3\x43\x92\x49\x46\x69\x58\xa3\x74\x34\x03\x38\x2f\x1b\xa5\xda\xff\x3b\xe5\xa3\xb9\xea\xe7\x96\xc1\x17\x24\xa4\x6a\xaf\xef\xb4\x38\x13\x7f\xd1\x77\x1a\x7f\x2f\xd8\x71\x73\xe6\xa8\xd9\x5b\xcc\xfe\xae\xc8\x0f\x7d\x85\x1c\x34\x4e\xdb\xf0\x9b\x56\x41\x91\xe9\xe8\xd1\xdc\xd0\xb5\xa2\xd3\x77\xc4\x41\xd8\x66\x40\xd5\xc9\x81\xbd\x6f\xfd\x0d\x5d\x61\xd9\xb5\x42\x1f\x39\x51\x2a\xd1\x9e\x17\xd5\x82\x2a\xe4\x35\x8e\xde\xf9\x6a\x0e\x42\xcc\x9b\x9c\xac\x56\x7a\xe7\x91\x63\x20\xf0\x3c\x4c\x31\x26\xb0\x24\xc2\xe9\x2c\x87\x24\x78\x72\xa6\x94\x63\x7d\xc7\x41\x9c\x28\x3f\x58\x91\x95\x46\x23\xd0\x73\x32\x24\x02\x11\x41\x09\xb9\xb4\x03\xdb\x5a\xb1\xb2\x33\x11\x08\xee\x07\xc6\x9f\xe1\x9a\x6e\x40\x5c\x48\x75\xa0\xbd\x3b\x57\xc0\x97\x25\x27\x0e\x2f\xb5\x83\xd2\x06\xcb\x9d\x38\x02\xc7\x95\x0e\x29\x35\x5f\x8a\xb0\x76\xa0\xe8\x4f\xca\x1b\xf7\x87\xde\x5b\x15\x20\x7c\xb0\xcd\x43\x19\xeb\x75\xa3\xea\x1f\x03\x67\x94\xbf\xc9\x22\xb3\x89\xb5\x62\x66\x1c\x04\xdb\xe0\x09\x20\x30\x36\xb0\xdf\x55\xef\x31\xa0\x41\x9c\xa1\xe9\x7d\x38\x2e\x24\x44\x35\x72\x56\x52\x5e\x89\x67\x38\x1c\x4f\xb3\xcb\x06\x31\xb8\xe5\x0a\x4e\x35\x82\xa5\xa0\xab\x66\x43\x14\x87\xb4\x05\x4d\x96\x8b\x91\x06\xb3\xac\x2c\xfe\x0c\x0b\x11\xd9\xf7\x11\xb0\x05\xbd\x4c\x62\x7f\xdd\xc7\x80\xc8\x68\x80\x57\xd2\x31\x20\x8c\x15\x4c\x8f\x5b\x8e\x81\x0c\x26\xdc\x7a\x9d\x89\x0f\xe1\x77\x02\x9e\xb3\x6b\x9d\x64\xd6\x4b\x92\xac\xb3\xf7\x41\xf4\x14\x39\xc9\xb8\x40\xd7\x11\x2a\xb3\x46\x08\x93\xbc\x1b\xdc\x06\xe3\x52\x46\x9d\x6e\xf0\x22\x1a\x2a\xfa\xd2\x2b\x98\x23\x80\x89\x27\x57\x21\x8c\x5e\x30\x43\x22\xed\x9f\xd3\x2d\xfa\x4b\xc0\xfb\x42\x60\x60\x1f\x85\x7c\xd4\x67\xe0\x3b\x7d\x62\xab\x4e\x0b\xb6\x91\xfd\x73\x19\x8c\x4c\x18\xec\x47\x52\x2b\x46\xb6\x65\xe3\x8c\x91\x71\x69\x3d\x98\x68\x7d\x9b\x0c\x4d\xa7\xed\xcd\x42\x81\xd1\xdd\x0f\xbe\xa7\xd6\x3e\x86\xfa\xb2\x86\x5f\x12\x4c\x9a\x32\xae\x31\x11\xfb\x17\x65\x35\x41\xaa\xcb\xd8\xe0\x07\xbd\xd6\x7d\x97\x6a\xda\xf5\xd6\xe3\x2d\x5a\x6e\xae\x7b\x15\x12\x67\x56\xcf\xb4\x40\x7c\x03\x44\x39\xd9\xea\xc1\xd0\x5c\xb6\x6f\x68\xb1\x60\xe4\x58\xd9\x34\xba\x55\xc6\xcb\x2e\xc9\x97\xe8\xd4\x72\xa3\xbd\x42\xbf\x54\xd9\xfc\xa1\x33\xf2\x6c\x0b\x90\xaf\x41\x99\x9b\xf7\xa2\xa7\xc1\x60\xba\xba\x58\x2c\xc6\xcb\xbc\xe6\xf6\xd2\x46\x66\xce\xfc\x2a\xa6\x3d\x00\x3e\x7a\xda\x44\x95\x0b\xce\x17\x81\x7a\xe0\x0e\x21\xac\x31\xea\xca\x62\x32\x5a\x23\x3b\xc1\x30\x52\x38\x69\xcb\xd1\x66\x98\x29\x12\xb9\x0c\xf6\x92\x90\xc6\x94\x75\x7b\xbb\x5e\xdd\xe3\x0e\x84\x11\x0f\xe3\x3a\xd3\x8c\xa0\x6f\x1f\x49\x75\x21\xae\x61\x21\x63\x69\xe3\x3c\x10\x22\xb2\xec\x09\x33\xf8\x75\x38\xa3\x6f\x00\xf2\x4b\x82\xfd\xa4\x11\xcb\x63\x05\x97\x98\xa3\xf9\x2d\xcf\x65\xd0\xcc\x44\x0f\xc2\x4b\xee\x32\x39\x27\x30\xe4\x67\xcf\x58\xf3\x24\x2e\xc9\x30\x13\xc8\x58\x90\xd8\x5e\x22\x8d\x41\x50\x4a\x33\xc8\x49\x9f\xe2\x6a\xac\xd3\x42\x04\xaa\x1d\x17\xe9\x7e\x63\x51\xdf\x80\x44\xb0\xac\xe3\xeb\xb0\xe5\x26\xa8\xcc\x2b\xdb\x9e\x9f\x97\x7b\x9b\x6d\x07\xbb\xca\xc7\x69\x32\x48\x18\x5d\x0c\x58\xc9\x54\x82\x5e\x6b\x1d\x76\xd2\xc5\xd8\xef\x23\xd5\xc6\x46\x35\x77\x0f\xf6\xba\x88\x5d\xf6\x7b\x3b\x4b\xa6\x53\x11\x17\x1b\x50\xe1\xe7\x43\xc5\x68\x0c\xc8\x51\x3d\xed\x2f\x8a\xb7\xcc\xbe\xa2\xd9\x74\x79\xfb\x2f\xb4\x28\xd4\xc0\x2d\xc2\xcf\x09\xed\x0d\xa5\x27\xb4\xf7\x6a\x86\x02\xe4\x4b\xec\x6b\x29\xef\xc6\xda\x3b\x8a\x10\xb8\xc4\x9f\x29\x67\xad\x7d\xc8\x84\x83\xe2\x75\x99\xbb\x94\x4e\x37\x75\xc6\xda\xfc\x0c\x09\x33\x0c\x0e\x3f\xe3\xca\x20\xf9\x29\xe7\x14\xd4\x1d\x4c\xc3\x61\xf2\x60\x5c\x0e\xa6\x11\xef\xec\x7e\x8a\x0a\xc0\xb4\xa9\x83\x16\x2f\xa1\x84\x9c\x18\x0f\xf1\xcb\x5a\x3e\xe2\x9d\x25\x47\xc1\xca\x96\x22\xbb\x00\x7e\x1f\xc2\x62\xde\xe8\x99\x83\x38\xeb\x11\x9b\x81\x4f\x7b\xc4\x0f\x42\xe0\x44\xfc\x3a\x07\xbd\x73\x8e\x79\xc7\x76\xac\x11\xbb\x6c\xef\x41\x62\x6d\xf3\xa6\x9c\x73\xda\x4c\x63\x80\x59\x1d\x91\x44\x14\xc2\x28\x20\x79\xd6\x3f\xa7\xe8\x85\xae\x91\x5d\xcd\x62\x1a\xc8\xdc\x21\xe4\x39\x24\x65\x8d\xe8\x3a\xbb\xaf\xd9\xbb\x74\x5e\xc5\x39\x7a\x68\x0c\x1e\xa3\xe3\xb3\x07\x44\x88\x8e\x91\xca\xa7\xf9\x3b\x7a\x0c\x5f\x36\x43\x7d\x9e\x36\x23\xa4\x8d\xda\x51\x80\x72\xd8\xf3\x5f\x02\x28\xf2\xf8\x1f\xae\x2f\x1f\x00\x0f\xcd\xfe\x73\x11\xfd\x76\x09\x43\x4f\x94\x8f\xc8\xf8\x87\xeb\x4b\x6a\xbd\xdf\xa8\x43\x69\x34\xe6\xe5\x32\x9b\x1c\x12\xa4\x47\xe3\x4d\x57\xe0\xf8\x78\x5a\xf5\x47\x46\x1c\x61\x6a\x86\x19\x0d\x7d\xa7\xd7\x1b\xbf\x57\xe8\x25\xe6\x08\xae\x62\x3e\xca\x46\x1c\x99\x11\xbe\x0c\xfe\xe6\x39\x99\x6b\x68\x9c\x9c\x23\xad\x8b\x85\x39\x67\x3c\x51\x68\x7a\x28\x6e\x19\xe7\xfc\x8c\x65\x45\xff\xbb\x27\x2d\x47\x1d\x15\x65\xc7\x1b\x27\x5e\x22\xcc\xb4\x3c\x0d\x8d\xf3\x07\x32\xf8\x9f\x47\xf0\x4e\x6e\xd1\x2d\x27\x40\xfd\xf4\x20\x8e\x45\x08\xe7\x73\x26\xde\xd1\xaf\x87\xc1\x31\x0c\x50\x2a\x73\x9e\x7d\x3e\xd4\xd7\xdc\xa3\x4b\xf0\x3b\x98\xdb\x75\x92\xa8\xfd\x0f\x38\x3b\xff\x29\xfe\x01\x4b\xe5\x9f\xe2\x1f\xda\xb4\xea\xf3\x3f\xc3\x3d\x58\x8c\x6a\x0d\xe4\xee\x74\xe2\xfa\x83\x54\xdf\x30\x08\x58\x2c\x3f\xfd\x87\xae\x1b\xef\x96\x52\x6a\x62\x5f\x50\x3b\x1f\x56\x30\x08\x7c\xbd\x5e\x0e\x23\xb1\x99\xaf\x84\xc8\x03\x04\x9e\xba\xf8\x96\x48\x9c\x89\x37\xe4\xfa\x21\x5c\x69\x07\x76\x05\xb3\xc7\xe5\x69\x1b\xf1\x8d\x45\xb8\x65\xa3\x0d\x34\xe0\x51\x82\x57\x16\xf1\x72\x32\x18\x64\x27\x61\x52\xe2\xf3\x85\xdf\xc8\x60\xf1\x05\x7e\x89\xff\xd3\x9a\x5c\xdc\xa6\xab\x19\x7c\xb9\xe6\x6d\xed\xe0\x80\x08\x76\x2a\x99\x34\x8c\x97\x5e\xc5\xdb\x6f\xd8\xb3\xde\x09\xdb\xeb\xb5\x86\x65\x85\x85\xb2\xb1\x34\x6a\xcf\x91\x5f\x36\xd2\x11\xde\x18\xc1\x82\x1c\xa2\x53\x35\x32\x86\x55\x75\x65\x05\xa5\x22\x64\x31\x12\x3e\x22\xd3\x8b\x7e\xf4\x33\xd5\x80\xb9\x57\xbd\x8f\xb7\x9d\x5e\xdc\x5a\x71\xad\xd6\x43\x27\xfb\xfc\xd1\xfd\xb8\xc0\x78\xd5\x05\x3c\xac\xc3\xc4\x83\x1d\xe6\x5e\xf4\x8c\x2b\xd7\x02\x84\xe7\xf7\x7c\xc5\x01\x02\x48\x4f\x7e\x69\xc7\xb5\x90\x32\xc9\xa1\x36\xe9\x09\x87\xf2\x28\xbd\xfd\x14\x15\x67\xa3\xc1\x6d\xc0\xab\xdf\xb9\x56\x90\x01\x58\x6c\x03\x39\xfd\x99\x69\x41\x32\x66\x0b\x6e\x7f\xf8\x5a\x78\xa4\xce\x21\x68\xf2\x2b\x36\x72\xc4\x90\xd4\xea\x04\x15\x82\x64\x52\x93\xd0\xd4\xb4\xf4\x0b\x9f\xef\x76\x8a\x38\x72\x06\xf4\x87\x7e\xbe\x0f\x31\x4b\xa6\x60\x51\xfb\x91\x02\x95\x94\x83\x92\x09\x3f\xb8\xdf\x79\x92\xca\x20\x39\xbc\xc5\x9a\x4d\x16\x32\x14\xf5\x53\xe8\xe7\xcc\xcd\x34\x6f\x34\x4d\xb3\xbe\xa5\xf4\x2a\x5b\xc3\xf8\xae\x49\x9b\x56\xdf\xeb\x76\x90\x1d\xc7\x59\x3a\x8e\xf7\x0f\x25\xde\xc6\x1a\x54\x7b\x1c\xc5\x3d\xea\x10\x12\x30\xf4\xbc\xfa\xb8\x67\x1b\xf0\x55\x0a\xa1\x34\xdb\x23\xa0\xad\xd1\xaa\x8b\x77\x12\x79\xf1\x4c\xc1\x50\x72\x85\x3c\x69\xdb\x71\x7d\x90\x2f\xe8\xb0\x4a\x7f\x9a\xb0\x72\x6c\x86\xf5\x4b\x0f\x38\x91\xc7\x79\x21\xbd\x9c\x05\x0b\x13\xfa\x3e\xbc\x60\x52\x58\x08\xf9\xaa\x56\x7a\x99\xae\x3c\x8d\x65\xbf\x51\x4b\xd9\xdc\xcd\x2a\x53\x67\xf1\xcf\xec\xaf\x5c\x5f\x0b\x03\x17\x24\x6e\x7c\x61\x06\x15\xc3\x69\x71\x32\xe5\x50\x27\xb7\x0a\xd7\x39\x69\x0a\x0d\x4e\x2f\xa7\xb0\x2b\xe3\x88\x08\x99\x5a\xaf\x7c\x90\x89\x4d\x9b\xa3\x47\x47\x06\x2a\x74\xa0\x08\x67\xf4\x7b\x46\xeb\xf8\x40\x25\x42\xf4\x45\x67\x62\xc7\xf1\xfd\xe1\x28\x61\xcb\x5c\x7e\x85\xde\x00\x9d\x3c\x90\x85\xd1\xf4\xa9\xd7\x29\x7b\xd0\x81\x5c\x10\xfd\x60\xb8\x4f\x99\x4d\x3c\x8d\x96\xbe\x1c\xb4\x2e\x33\xbd\xa4\x3d\x74\xbc\x85\x78\xd2\x51\xb7\xcf\x83\xc7\xaa\xc0\xb1\xe1\x85\x0f\x30\x05\x3b\x65\x5a\x34\x84\x25\x2f\x99\x53\x2d\xd2\xc3\xeb\xe3\x0b\xd7\x4e\xc7\x84\xb8\x79\x64\x41\xb8\xfe\x42\xf0\x8d\xe9\x9e\x0f\xc7\xf8\x3b\xb5\x67\x93\xd3\x24\xc4\xca\x3b\x64\x9a\x03\x35\x46\x3f\x90\x81\xcc\xce\xa0\x9a\x3d\x07\x52\xb4\xa9\xd8\xb4\x50\xa0\x3f\xde\xbc\xd2\x0d\xdd\x9c\xfb\xb9\x4c\xb4\x6c\xeb\x91\x59\xed\x79\xdb\x62\x7f\x0a\xf3\xda\xa3\x05\x46\x4e\x5a\x0b\x5c\xa5\x8f\xf6\xe9\x7a\x19\x55\x1c\x1c\xb5\x4f\xef\x20\x6c\x9f\x5b\x91\xe6\x0d\x9b\xe9\xd2\x6c\xb1\xc2\xf2\x06\x0f\x32\x5c\x8f\xe9\x39\x29\xdb\xd7\xe5\x37\x31\xb9\x8b\xc3\xf2\x50\x1c\xad\xd9\x07\x1c\xbb\x87\x46\xd1\xa5\xec\xb1\x91\xbb\x98\x1d\x35\xf6\x70\x99\xeb\x2b\x92\x8e\x6b\xf4\x10\x2b\x53\x77\x15\x6a\x69\x0c\xeb\x98\xdc\x3d\x01\xff\xb9\x9c\x0c\x7c\x11\xe5\xb1\xf4\xf8\xc4\x9a\x50\x72\xb2\x8f\xec\x63\x5e\x76\x51\xae\x8b\x3d\xe9\x96\x78\x0d\xb1\xa6\x69\xa4\x82\x8a\xd7\xba\xac\x87\x42\x6b\xa6\xed\xd0\x6c\xe8\x1a\x17\xd5\x4d\xe8\x5e\x49\x5c\xbd\xbf\xb9\x15\xa4\x68\xf6\xbd\x5e\xaf\xe1\xd8\x15\x7f\xd9\x28\x03\x34\x0d\xaf\x82\x88\xae\xd9\xa6\x19\x48\x29\xf9\xca\xae\xdd\xa9\xd8\xab\xe0\x19\xd6\xb4\x7c\x08\xe5\x61\x53\x82\xa6\x85\x2c\x1c\xc5\xc6\x3a\x8a\x05\xe1\x76\xaa\xd1\xab\xc3\x42\x5c\x2a\xd9\x1b\xb1\x05\x09\x22\x90\xcc\x07\x1f\xfd\xc6\x9e\xa0\xc3\x9e\x67\x4f\x65\xae\x91\xe7\x21\xc9\x97\x2f\x1f\x4f\x93\xe1\x19\x83\xce\xb9\x62\x0d\x23\xfc\xd0\x45\x3f\x06\xdf\xa2\x03\x59\xa3\xbf\xe4\x60\x20\xfa\x15\xcb\x74\xd2\x86\xb4\x46\xb9\xbd\x5f\x4d\x78\x19\xd5\xc2\x93\x82\x9e\xdb\x72\x26\x6e\x95\x43\xff\x96\xf8\xfd\x05\xf0\x30\x04\x37\x14\x1b\x1e\x5f\xc5\xa0\x12\x96\x96\x45\xc4\x0a\x53\xaa\x1c\x5f\xfc\x87\x31\x72\x53\xc5\xd8\x6c\x1d\x99\x43\x65\xc0\xb1\x1f\xf7\x93\xd6\x3e\x59\x28\x52\x75\x7f\x1f\xd4\xa0\x16\xe2\x8d\x17\x5b\x79\xc0\x38\xa6\x68\x48\xe8\x54\x63\x4d\xeb\x82\x7d\x9b\xf6\xf8\x2a\xda\x89\x61\x17\x5e\xa9\x4f\xa6\x64\xda\xb6\x5e\x65\x63\x75\x1d\x3f\x1e\x02\xcc\x7a\xf0\x1a\x5a\xee\xa5\xbb\x1b\x19\xa2\x80\xfc\xf7\x8d\xbd\x48\xce\x73\x63\x09\x8e\xbf\xa0\xcd\x83\xed\xcf\xaf\x79\x94\xf3\x73\x20\x6e\x67\xc9\x13\xe3\x35\xff\x9c\x02\x91\x15\x10\xf6\x89\x7e\x4d\x41\x76\x1c\xf6\x3a\x06\xc0\x9e\x82\x2c\x6d\x0b\xe3\xf8\xb3\x6d\x0f\x53\x85\x77\x58\x5d\x51\xeb\x8d\xb4\x68\x67\xf7\x78\xdd\xbb\x3c\x60\x86\xf6\x4e\x75\x2b\x0a\x91\x00\x52\xab\x0a\xce\x77\xf0\x6a\x20\x5d\xb5\x12\x09\xe0\x79\xc6\x8b\x11\x7c\x1c\x9a\x1b\xe4\x52\x78\xb3\x22\x56\xd3\xb8\x4d\xe4\x9a\x87\xdb\xf5\x86\x24\x0e\x5c\x8d\xa8\xe9\x26\x9f\x48\xa7\x20\xb1\xef\x32\xf7\x05\x41\x17\xb6\xeb\x95\xc3\xa7\x57\x48\xc3\x30\x60\x6a\x00\x21\x91\x8d\xbc\x63\x64\x6e\x45\x13\xa3\xae\x1d\xd6\x33\xd3\x22\x76\x03\x8b\x2b\x0b\x1d\xc0\x4e\x20\xd2\xd3\x2b\x04\x0a\x41\x5c\xc6\x2c\x18\x83\x27\x35\xfa\xeb\x82\xfc\x65\x07\x48\x9c\x18\xbb\x66\xbe\xd1\x11\x01\x20\xc5\x14\x1c\x0c\x41\x0f\x95\xd9\x3d\xc3\x58\x7d\xb8\xbe\xcc\x89\xf9\xa9\x90\x70\xbc\x93\x9e\xa3\x55\x1e\xa3\x72\xf5\x6a\x2d\xfb\x36\xf8\x02\xe2\x03\x66\x23\x3d\x1d\x24\x7d\x1e\x64\x0c\x3d\xf4\x31\x2e\x72\xe3\x70\xa7\x0d\x3a\xb1\x45\xc9\x84\x35\x87\x20\x24\x26\x2b\x24\x38\x54\x86\x1d\x9c\x33\x74\x68\x85\x8a\xb0\xef\xdf\xff\xc7\xcd\xfb\x77\xa7\xe2\xf3\x93\xfd\x7e\xff\x04\x8a\x3f\x19\xfa\x4e\x19\xe8\x4b\x7b\x2a\xfe\xd7\xdb\xcb\x53\xa1\x7c\xf3\xc3\x42\xbc\xa5\xe3\x27\x51\x75\x36\x37\xc6\x97\x0b\x68\xbb\x3b\xf4\xff\xc2\xb1\xc4\x5b\x87\xb5\xb2\x79\xfc\xf8\x9c\x89\x84\x69\x0c\xef\x5a\x43\xe8\x75\x7c\xdf\x9a\x31\x24\x1c\xe9\xe2\x06\x7f\x8c\x33\x12\xfd\x46\xb0\xb0\x50\x31\x04\x96\x74\xe2\xe6\xf5\xf9\x1f\xfe\xfd\x7f\x8a\xd7\x6f\xcf\x2f\xc4\x46\x7d\x16\xad\x5e\x2b\xba\x83\x0c\x5b\xfb\x5e\x87\x49\xff\x5f\x4f\x60\x35\x3c\xb9\xd1\x6b\x23\xfd\xd0\xab\xb0\x00\x88\x4e\xe4\x3c\x52\x27\x9b\xbb\xb9\x68\x8a\x63\x10\xdd\x58\xc3\x03\xf0\xa6\xb1\xa6\xec\x3d\x81\x84\x37\x58\x17\xf8\xfa\x2a\x69\xa8\x61\xcd\x44\x46\x66\xa3\x0c\x10\xfa\xa1\x6b\xcb\x33\x7a\xa9\xc2\x12\x50\xed\x9f\xc6\x85\xd1\xd1\x1e\x86\x76\x38\x13\xff\x81\x2e\x96\x36\xc1\xc4\x09\xb2\x42\xef\x10\x78\x31\x2e\x0c\xbb\xa1\xce\x24\xbb\x33\xf1\x46\x18\x90\x1d\x82\x54\x99\xf2\xa2\x64\x39\x41\xc2\x4a\xbe\x33\x71\xa9\xbc\xd8\x46\xa5\x1f\xae\x72\x42\x37\x2d\x52\x9a\xc0\xce\x67\x87\x71\xf9\x39\x77\xbf\x17\xcc\x43\xa7\x63\x58\xbe\x30\x9b\xcd\x9e\xc7\xc8\xec\xc7\xb8\x48\xee\x6f\x71\x26\x2b\x79\xba\x4d\x5e\x0c\xd1\xb3\xe4\xdc\x04\xb1\xfb\xc3\xd9\xb9\xcb\xce\x8e\x70\x2d\x9c\x6b\x0e\xc6\x65\xc6\xee\x05\x67\xb3\x23\xe1\x47\xcd\x39\x3d\xce\x3c\xa5\x27\xa7\xed\xa9\x08\xcf\x35\x4f\xd9\x6e\xef\x34\xf8\x77\x68\x4f\xc5\x60\xd2\x6f\x7a\x2a\xc7\x12\x6c\xf8\x44\xbb\x61\xf8\x8c\x66\x9d\xed\x29\x85\x47\x4e\x09\x93\xf9\xa6\xab\x86\xf4\x20\x95\xda\x15\x9e\xa5\x3e\x04\x5c\xf6\x24\x60\xe0\x45\x90\x3a\x10\xe3\x33\x4f\xeb\x1e\xd9\x8c\x14\x6f\x00\x1e\x00\x8d\x66\x34\xb9\x05\xc2\xff\xff\x23\x99\x0f\x23\x76\xcb\x1d\x4c\xb3\xe9\xad\xd1\xbf\xcd\xf4\x8d\x7d\x3e\x26\x97\x8f\x47\x00\xd2\x62\x0d\x36\x70\xcb\x4e\xa3\x49\x0a\xbe\x0e\x9c\xbf\x2b\x26\x2f\x89\xc1\x5d\xe2\x38\x23\xbd\x0a\x79\xf1\xc0\x71\x48\xba\xdc\x48\xbd\xd2\xf9\x15\x28\x38\xb3\x84\x24\x13\x52\x20\x85\xe2\x20\xc7\x53\xbc\xd4\x0c\xcc\xf3\xd5\x53\x2b\xb4\x24\x44\x32\x9b\x30\x11\x94\x18\x70\x54\xc7\x44\x3e\xe1\x79\x9b\xaa\x1d\x52\x0d\xc7\x44\x31\xf2\x1f\x10\x44\x84\x10\x2e\x1b\xa3\xa4\xbd\x88\x69\xa5\x60\x1b\xce\x49\x64\x81\xca\x43\x12\x1d\x18\xe1\x79\x92\x33\x37\x20\x22\x97\x2f\x90\x01\x84\x03\x84\x79\x15\x3c\xe5\x4e\x02\x1b\x1e\x46\x43\xdd\x6a\xd7\xd8\xbe\x7d\x18\xf7\x0b\x02\xfa\x3d\xd8\xcd\xda\xcb\xee\x0b\x4d\x7f\xc1\x50\xdf\x86\x9f\xc6\x24\x04\x33\xa1\xa0\x2b\xa3\xcc\xd6\x6e\x25\x9a\xb9\xbe\xc0\x1f\x93\xf3\x79\x23\x8d\x21\x93\x7e\xfa\x95\xcf\xf5\xae\xb3\x87\x10\xb9\xf2\x05\x7e\x85\x98\xdc\x53\x90\x2c\xce\xe3\xf2\xf9\x05\x45\x5b\x7c\x65\x7d\xb3\x91\xdf\x3d\x7b\xba\x7c\x0e\xac\x38\x5f\x05\x74\xd6\xde\x85\xd7\x3c\xb2\xc5\x7d\x13\xe3\xa3\xec\x62\x3c\xc4\x64\x8b\x22\xdb\x96\x0c\x88\xb4\xa1\xa1\x18\x05\x89\x4b\x91\x84\xa8\x55\x23\x46\x0d\xe7\x20\xb6\x93\xc7\x3e\xf5\x66\xae\x33\x49\x6f\x80\x50\x38\x02\x1b\x0a\xef\x21\xdb\x27\xc8\x73\xb0\x02\x57\xdc\x6e\xd4\x21\xfa\x8a\xc6\x18\x65\x78\x79\x5b\x86\x7c\xc1\xe6\x85\x20\x95\xf9\xed\xa3\xad\xcb\x41\x0e\xa1\x3b\xd0\xfb\x0e\x29\x8c\xcc\x41\xb4\xa9\x19\xb9\x06\xb5\x78\x28\x33\xd7\x8b\x69\x54\xc8\x08\x35\x8e\x5e\x99\x7a\x7a\x34\x7a\x65\x5e\x34\x0f\x61\x99\x15\x45\x21\x21\x0e\xc2\xac\x65\x78\x31\x2d\xd3\x00\x95\xa9\xab\x5f\x11\xa3\x72\x7e\xe6\xc6\x5a\xa2\x2f\x4e\xf5\x43\x0f\x43\xda\xbc\x73\x5f\x11\xad\x72\xec\x09\xee\x2b\x14\x46\x73\x6d\xc9\x0d\x87\x63\x03\xbe\xf4\x4c\xa4\xd5\xab\xd5\x82\x9c\x08\xd7\xce\x0e\x3d\x5e\xe4\xff\x8c\xdf\xe2\x06\xbf\x09\x84\x5d\x28\x9e\xb1\x2f\x45\x4a\x8c\xaf\x12\xf9\x19\x22\x26\xe2\x7b\x54\xd4\x7d\xde\x4b\xdd\xc5\xc8\x8e\xab\x15\xbd\x4d\x7d\x67\x31\xb6\x37\xe5\x2c\xa8\x88\xdb\xd8\x7d\x0d\xbf\x30\xd4\x24\x1a\xed\x6d\xec\x9e\x0a\xdd\x40\x4a\x06\xe6\x76\x9d\xf6\x35\xfb\x2f\xbe\x81\x0f\xf4\xc0\x9c\x41\x0c\x06\xbd\x2d\x06\x98\x0f\xf4\x99\x43\x01\xca\xe8\x8d\x22\x5c\x01\x9d\xb4\xd1\x45\x20\xea\x19\xd2\xe5\x10\xae\xd0\x00\x77\xd2\x22\xfd\x41\x45\x42\x02\xc9\x03\xd5\x9c\xb4\x51\x45\x9d\x20\x78\xa0\x91\xa8\xfe\xfc\xe6\x1d\x7d\xa2\xf7\x60\x76\x1f\x85\x6e\xa4\x5f\xea\x8e\xc7\x9b\x03\xdb\xef\xd0\x45\xa1\x6a\x83\xeb\x44\xc8\x13\x59\x72\xf6\xd6\x30\x77\x24\x4d\x38\xbc\xb5\xf5\x56\x9a\x43\x7c\xeb\x7c\x63\xb7\x8a\x95\x28\x7b\xc5\xe4\x07\x9d\x4d\xa7\x87\x99\xd6\x0a\x28\xc2\x50\x61\x40\x82\x42\x16\xd0\x56\xc1\x77\xf6\x62\xce\x87\x76\xc8\x23\x87\xe8\x81\xdf\x82\x5d\x1a\x78\xae\x00\xd1\xf6\x72\x85\xef\xe4\xe0\x7f\x4c\xdd\xf5\x2a\x15\xbb\xea\xd5\x93\x71\x31\x7e\xcf\x06\xff\x62\x9a\xdc\xd0\x5b\x8a\x34\x03\x69\x66\xc2\xd3\x4b\x6f\xc5\x89\x63\x0f\x93\xbc\xe1\x4a\xc4\xb4\xfa\x6b\x0e\xdf\x48\x6b\x1f\xe3\xf0\x15\x7d\xca\x1f\xca\x5d\x11\x5f\x28\xe2\x38\xa0\xe1\x08\xc5\x32\xdb\xf5\xb6\x1d\x1a\xbf\x28\xda\x5d\x94\x26\x46\x50\x85\x55\x27\x3a\xbb\x46\x6d\x03\xba\x04\x26\x73\xda\xc1\xb4\xaa\x77\x9e\x2c\xe7\x65\x46\x5d\xf5\x76\xd7\xd3\x1d\x45\x40\xef\xe5\x3a\xc6\x5a\x93\x6b\xf2\x6b\x92\xf2\x50\xe5\x0e\x39\xf0\xa3\x28\x13\x0f\xe0\x60\x64\x9f\xf9\x15\xf5\x72\x8d\x4c\x75\x93\x7b\xb2\x07\x19\xd0\x9a\xc0\x13\x67\x0d\x28\x4e\x96\x90\x3a\x3d\x4d\x42\x4e\xf9\x46\x26\x9b\x7e\xde\xb6\xec\x4a\x3b\xe6\x74\x56\xb6\x24\x74\x5f\xd2\xaf\xc5\x62\x31\xb3\x6a\xa6\x61\xb0\x77\xbd\x7a\x32\x9e\xeb\x0c\x3e\x0e\xc0\x5f\xd4\xe3\xae\x13\x3b\xab\x8d\x17\xf4\xe6\x4b\xfa\x62\xa5\x84\x2b\x1a\x9e\x5a\x6d\xcd\x13\x3c\xa6\x52\x33\xc6\x2f\x1d\x63\x75\xbc\x50\xd2\x92\x19\xaf\x6a\x7c\x43\x16\x76\x04\x3e\x22\x2b\xb7\x05\xae\x9e\xb4\x31\xf0\x35\xe7\x64\x43\x11\x9b\x9d\xa0\xca\x0b\xf9\x19\x60\x3a\xf2\x82\x98\x13\xaf\xf4\xc6\x30\xf3\xa7\x5c\xa8\x67\xfc\x6a\xac\xb1\x3d\x69\x9a\xe3\xfd\xb6\x97\xeb\x07\xe3\x91\x8d\x6a\xcb\xaf\x8a\xa9\x8a\x2f\x1c\x62\xe3\x3d\x50\xbe\x41\xcb\xf0\x30\xab\x01\x94\x92\xf7\xc8\x84\xd5\x98\xe0\xe2\x37\xbb\xd9\xbe\x2a\x22\xb8\xa6\x12\xc1\x09\x0c\x1e\xc0\xe1\x77\x55\x7d\xb4\xfd\xfa\x53\x85\xf7\x81\xe8\xf0\x3b\x3a\xfc\xcc\x2f\xff\x50\xc1\x0b\x30\xd0\xa3\x87\x00\x5f\x82\x7c\x1d\xa1\xcb\x70\x60\xaf\x60\x9b\x96\xe6\x34\x00\x40\xea\x75\x8c\xfe\xc5\x4f\x26\x38\x00\xd8\x22\x04\xaf\xb0\xfd\x3a\x3d\x92\xcc\xab\xa3\x78\x4f\xe9\xe9\x1d\xfb\xe7\xaf\xf8\x29\xc3\x99\xb8\xc2\x1f\x95\x36\xf7\xda\x03\xff\xb0\x55\x64\x8f\xf7\x06\x13\xf0\xbc\xb1\x46\x55\x85\xb1\x7f\x85\x6e\xc5\xeb\x60\xe8\x7f\x16\x4c\xfe\x39\xbd\x88\xf0\x75\x56\x44\x4c\xc9\x83\x6d\x00\xca\xf2\x65\x27\x20\xc7\x51\x99\x79\xf3\x0d\xd0\x91\x3c\x42\x49\x1c\x42\x4c\x7d\x08\xba\x88\xae\x05\xd4\x61\x08\x1e\x22\x11\x17\x5a\x27\x1a\x12\xb8\x70\x51\x01\x66\x6d\x0a\xd7\x55\x6e\x91\xaa\xc9\x68\xcd\x86\x1e\x84\xa7\x62\xc0\x1c\xa2\xbd\xfc\x9f\x08\xbe\x88\x30\xc3\x0a\x4f\x49\xd1\xf1\x28\x99\x43\x9f\xe6\x1a\x50\x44\x04\x92\xc0\x9f\xaa\xf9\xa0\x45\xef\xc7\x6b\xe3\x77\x84\x2d\x9a\xe2\x78\x30\x70\x11\xa2\x4b\x03\x9a\x35\x06\xe7\xe1\x48\x23\x22\xa3\xfb\xad\x6f\x3a\xe3\xfe\x01\x86\x29\xee\x95\xfc\x7e\x8a\xdf\x1e\xfc\x85\x7e\xa5\xac\xce\x36\xe1\x21\xe8\x25\xff\x3c\x6a\xcd\xf2\xd0\x93\x84\x12\x34\x23\x66\xc5\xc0\x45\x4c\x5f\x6b\xfa\xc2\x2f\x1d\x6c\xbf\xfe\xd7\x1e\x3a\x14\x11\x2c\x27\xad\x96\xf7\xd2\xcb\xfe\x58\xa3\x29\x37\xb4\xfd\xab\x9b\x3e\x36\x10\x2b\x28\xcc\x58\x49\x34\x89\x29\x89\x1d\x7c\xb0\x48\x19\x61\x32\x6f\x70\xbc\xa1\xcb\x0c\xb4\xd8\xba\x83\x62\x4b\x92\x95\xc1\x97\x03\x4c\x1e\x31\xf1\x79\x28\xd2\xe4\xb8\x95\x40\x99\xa2\x1f\xc8\xbc\x91\x0f\x96\xc8\xb9\x19\x3b\x32\x17\xf9\xfd\xd1\x27\xe7\x4d\x43\xce\xdb\x36\x68\x0b\x39\xd8\x5c\x18\xbf\xa4\x91\x5c\x65\xde\xd3\xc7\xa1\x53\xd3\xc8\x21\xdf\xca\xef\x01\x8b\xf5\x56\x31\xad\x5f\xf0\xff\x8d\xde\xd5\x45\xc4\xc9\xb7\x31\x3d\x0b\x3e\xf9\x53\x2c\xc6\x9a\x1e\xe6\xa3\x9a\x51\x7a\xa2\xaf\xe8\x6f\x20\xbc\xae\x88\x40\xf4\x8d\xbc\xe5\x6c\xce\xb8\x7c\x59\x07\xfd\xaf\x7b\xdb\xa9\xd8\x50\x71\x6d\x3b\x95\x9a\x57\x7a\x41\x2c\x0b\xc6\x32\x31\x9d\xd5\x02\x21\xfc\x5f\x4c\x2f\xc3\xc6\x86\x54\x3e\x63\xf3\x98\x16\xc8\x8f\x33\x76\x14\x6f\x7e\x1a\x43\x1b\x74\x1e\xcf\xa7\xf1\x3b\xbb\xaf\xe8\x28\x5e\xa0\x9b\xc5\x33\xf1\x1f\x56\x1b\x4e\x29\x2b\xa5\x34\xe0\x8c\x52\xb4\x95\x6b\x90\xb1\x28\xa4\xf1\x34\x7f\x14\x55\x0e\x4f\xa2\x18\x4f\x8e\x23\x2b\x23\x63\xcf\xce\x3c\x0d\xd9\xcf\x94\xf1\xd0\x08\xeb\x28\xc8\x0b\x79\x63\x28\xea\xcd\x21\xbe\xa6\x62\x7c\x69\x3f\xae\xee\x34\xa8\xd0\x51\xef\x16\x5f\x18\xaa\x6d\x68\x07\x5a\x52\xa7\x76\xe0\x83\xff\xb2\x1d\x39\xc4\xd7\xb4\x03\x6a\x41\x4f\x6e\xe1\x85\xc1\xd1\xf6\xc8\xb6\x15\x64\xfc\x9d\x9b\x7d\xb9\x71\x13\x53\x5c\xb3\xdb\xec\xfc\x47\xa3\xd9\x76\xc4\xcf\xb8\xc5\xdc\x91\x4a\x39\x64\xed\x38\xc3\x72\x90\x01\xfb\x6c\xac\xef\x2f\x13\x01\xf4\xd0\x07\x25\x23\x68\x66\x9a\x5e\xc4\x59\x98\x9e\x4b\xd4\xae\xc4\x22\x22\xaf\xc0\xb4\x81\x33\xbf\x7c\x24\x13\x5c\x08\x34\x44\xfc\x62\x7e\xa8\x20\xc3\x18\x66\xb2\x45\x88\x3a\xee\x55\xd8\x60\x59\xad\x53\x64\x91\x98\x23\x54\x24\xe2\x53\xb8\xb0\x63\x73\x6e\x2f\xbb\xcf\x51\x78\xc7\x55\x3c\x7b\x0d\x50\x5b\x79\x18\x07\x7d\x46\x4f\x0c\xc5\xae\x79\x20\x88\xfd\xa4\x29\xe9\x5c\x7f\xa5\xef\x95\x49\x0b\xe6\xa8\x70\xb5\xc8\xb7\xfa\x74\x81\x64\xe4\x5a\xe7\x4c\xf0\xba\x47\xdf\x82\x61\xe6\x81\x74\x64\x0b\x03\xd1\xff\x14\xfb\xdc\x48\x33\xa6\x0d\x68\x28\xa8\xe4\xf6\xf1\x43\x24\xe2\x77\x37\x07\x49\xca\xc3\xed\x41\x92\x41\xae\x74\x4d\x9b\x93\x87\x87\x9a\x45\xf4\xe0\x77\x37\x0b\x29\xcc\x57\x36\xeb\x34\xb4\x89\xf8\x18\xa0\x17\x73\x94\xe2\xa1\xd6\x8e\x04\x2d\x5c\xc6\xd7\xb9\xb4\x15\xc8\x06\xda\xbe\xa2\x24\x38\x6b\xfb\x9a\x29\xae\x17\x8b\xf1\x7e\xca\x8c\x77\xb3\x3d\x95\xbd\x0e\x08\x6d\x41\x33\x5d\x7e\x45\xc5\xe7\x61\x42\x65\xac\x41\xf9\x9c\xee\x68\xe3\x4b\xab\x0c\x39\xdf\x12\xf9\xfe\xc0\x3c\x11\x86\xd3\x2a\x62\x65\xc6\xab\x21\x56\x67\xe9\xe8\xca\xa4\xfa\x88\x33\xf7\xa9\x6a\xa5\xdb\x2c\xad\xec\xf1\x86\x22\xfc\xae\x8a\x67\xf2\x55\x11\x8f\x7e\xc4\xcb\xb9\x6a\x34\xa8\xc5\x78\xca\xc1\x6f\x40\x5c\x8c\x72\xc6\x79\x91\xe0\x28\x8c\xf9\x3a\x30\x93\xeb\x81\x3d\xd1\xb0\x79\x3f\x3e\xd9\x76\x5e\x6d\xc5\x3b\x4a\xa8\xb6\xd6\x68\xb2\x24\x7e\x4b\xbf\xb4\x59\x57\x85\x3b\xa5\x97\xf0\x51\xa1\x03\x1d\x4e\xb9\x94\xce\x57\xde\x7a\x0c\x88\x7a\x0b\xff\x7f\x12\x27\x6d\x95\xba\x8e\xda\x71\xed\x3c\xb2\x59\x37\xe1\xb7\xcb\x00\x92\x21\x1d\x79\x83\xe3\x8f\x1c\x05\xb6\xb3\x66\xbb\xc5\xd8\x6e\x6e\x25\x62\x1d\xdc\x5c\x95\xc1\x49\x12\x5a\xa0\xb5\xd2\xcb\x65\x50\xff\x3c\x5b\xa2\x56\x77\xf9\x9c\x54\xa3\xa7\x59\x42\x31\x23\x79\x46\x71\x2f\x98\x92\xcb\x53\x37\xa5\x53\x08\xe2\x22\xc9\x79\x59\xd6\x25\x9b\x49\x2d\xe1\x2a\x27\x4f\x0b\x6f\x39\x52\x4a\x78\xd5\x51\x60\xb7\xf8\xfa\x9d\x85\x88\x22\x8b\x9e\x2e\x15\x49\xf4\x4c\x6e\xd4\x13\x52\x3c\xe7\x69\x9d\x5d\x6b\x23\x48\x99\x5d\x76\x8f\x59\xfb\x12\x67\x70\x36\x56\xa0\x40\xb7\xd6\x79\xca\x26\xd8\xb7\x16\xa9\xb8\x41\xf3\x04\x36\x5c\x9d\x00\x26\xff\xc9\x6e\x31\xb7\x90\x82\xc4\x1e\x17\x13\x89\xed\x73\x90\x6e\xaf\x29\x04\xec\x0d\xfe\x98\x85\xe9\x07\x54\x6b\x0e\x26\xcb\x6d\x3a\x25\x4d\x3d\x98\xa5\x36\x6d\x6d\x39\x90\xf2\x05\x24\x8a\xc1\x2c\xd1\xba\xef\x3d\xee\x47\xf7\x60\xa1\xec\x08\x3d\xef\x3a\x41\x59\xa1\x64\xf6\x64\x6a\xfe\x2c\x4d\x98\xf9\x54\x66\xdb\x52\x99\x44\x49\x97\x98\x14\x89\xce\x54\xd9\xb0\x24\x64\x7f\x15\x8e\x51\x2b\x13\x44\x44\xf3\xed\x4d\xc5\x03\x00\x08\xbe\xbe\x57\xa3\x46\x16\x44\x2f\x80\x7c\x01\xc3\xa8\x89\xb3\x28\xbe\xbd\x91\x78\xf0\x9a\x35\x1d\x3b\x47\x1a\x79\x10\xbd\x6a\x6c\xdf\xb2\x8c\xdb\x59\xe7\x51\x4b\x4d\x21\x37\x1f\x46\x79\xac\xd5\x0f\xe2\xfc\x86\x6e\xac\xb5\xaf\xd7\x4d\x6a\xbe\x15\x6b\xd9\x2f\xe5\x9a\x9e\xc8\xb0\x83\x23\x6b\x4a\xad\xe8\x7c\xf1\x87\x06\x18\x1b\xd4\x02\xa3\x35\x83\xfe\x58\xdb\x7a\x85\x8e\x41\x64\xd7\xd5\xce\x6d\xd8\xf6\xe0\x5a\xd1\x3d\xce\xe3\x85\x73\x9b\xa7\x92\x63\x92\x2b\xbc\xa5\x77\x8f\x29\xea\xcd\xf7\x8d\xc4\x37\xe4\x3f\xa1\x1b\x1f\x24\xed\x58\x3a\x30\xc1\x30\x5a\x3f\x3c\x58\xd1\xa8\x2f\x19\x5d\xcf\xc6\xb6\xc7\xa6\x78\xf5\x55\x3d\x08\x9e\x57\xae\x31\x89\xef\x88\x1a\x85\x66\xde\x4c\xc5\x90\xf1\xb3\xce\x87\x0c\x36\x35\xb7\xab\xc9\x9a\x7f\xa0\x8a\x07\x66\xe1\xf1\xb7\xd4\x9a\x77\x93\xe3\xe7\x1f\xef\xa5\x36\xda\x4f\xb6\xc2\x35\x26\x6b\xd9\xe9\xdf\x7e\xe7\x86\x98\x43\xfc\xaf\x6e\x88\x3e\x6b\xd5\xb8\x4b\x39\x83\x80\xae\xd3\xea\x61\xe7\x35\x1e\x14\x37\x14\x94\xfd\x03\x7e\xe7\x04\x7b\xe8\x7b\x60\x12\xd7\xb6\xb7\x83\xd7\x14\x05\x8c\xd2\xc4\xab\x90\xe6\x66\x0a\xe0\xa5\xc8\xa1\x1e\xd8\x05\x64\x28\xf3\x16\x93\xc5\x07\x0c\xe3\x96\x4a\x21\xff\x14\xca\xc8\x0e\x55\xc7\xa4\xd3\x46\xc6\x8a\x4b\x9d\x87\x8c\xac\x24\x97\xb1\x4b\x2f\xd9\xaf\x1f\x03\xbf\xe7\x94\x0c\x16\xaf\x22\x55\x5f\x77\xd6\xde\x0d\xbb\x1a\xba\x8a\x9e\x89\x28\x59\x5c\x62\xb2\xb8\x85\xe4\x69\x0d\xa1\x55\xb1\xd8\xa8\x51\xc7\xca\xad\x7a\x35\x29\xf3\xb2\x57\x53\xf8\x30\x72\x1b\x25\x77\x93\x71\x7b\xad\xe4\x6e\x32\x6a\x08\x39\x1d\x00\x84\x3d\x3e\x0a\x79\x29\xdd\xa2\xc4\x9d\x97\x78\xd3\x76\xc7\xea\xd0\x68\xa8\x34\x86\x37\xc0\xc7\x1f\x29\xc1\xfc\xd4\xb8\x55\x7c\x7d\x38\x69\x95\x5d\xfe\x4d\x35\xde\x05\xe8\xf7\xf4\x99\x41\x2d\xad\xf5\xce\xf7\x72\x07\xac\x30\x5a\xc7\xd3\x30\xfd\x1c\xd2\x81\x15\x6e\xee\x26\x23\x45\xd0\xd3\xa1\x22\xe8\xe3\x63\xb5\x75\x3b\x69\x6a\xe7\xfb\xa1\xf1\x43\xaf\x5c\xac\xf0\xed\xcd\x4e\x1a\x71\x13\x33\x26\x35\x4e\x4a\xe6\x2b\x74\x5c\x78\xae\xe6\x46\x36\x1b\x35\x5b\xf5\x05\xe4\x3c\x58\xf7\xa4\x6c\x5e\xf9\xa4\xf8\xdc\x4e\xe9\xed\x4a\x77\x40\x94\x96\x43\x73\xa7\x7c\xbd\x91\x6e\x53\x7b\x8c\x4b\x99\xe1\xba\x0a\x60\xe2\x67\x04\x13\xaf\xa5\xdb\x88\x5b\x54\xcf\xcd\x60\x5d\x37\xf5\x56\x79\x89\xf6\x4c\x19\x96\x57\x17\xe2\x2d\x27\xcf\x95\x42\xb5\x5d\xcd\x12\x10\xef\x42\x60\x4a\x33\x0c\xef\x51\xb3\xc7\x42\xd1\x79\x04\x99\xc3\x66\xd4\x67\x3e\xd2\x9b\x43\xc3\x21\xcc\x3f\x7b\x68\xc3\x35\xa5\x64\xb0\x28\xe6\xad\x9b\x3a\xd0\x48\x34\x75\x41\x6f\xa9\xaf\x2e\x70\xfb\x4e\x28\x58\x02\x26\xc2\xf5\xea\x42\x5c\xc9\xc1\xcd\x02\xee\x24\x6d\xa6\xa3\x90\xa1\xfa\x00\x18\x6a\x1e\xc3\x71\xa5\x8e\x86\x92\xc8\x0a\xc9\xd8\x0b\x7c\x60\x4b\xde\x49\xeb\x9d\x24\x0b\x53\x90\xba\xc5\x5b\xf2\x58\x7a\x05\x69\x0c\x6b\xd4\x3e\xbf\x7e\x49\xf7\xc0\xe7\x94\x18\xc0\x48\xb2\x40\x79\x82\x52\x02\x2f\xdc\x06\x63\x6d\x24\xd1\x9c\x57\x78\x77\xa5\xb4\x74\x80\xee\xac\xe3\xb4\xe0\x75\x3b\x86\x7b\xe3\x74\x7c\x21\xd2\xab\xb5\x76\x9e\x7d\x62\xa0\x77\x6b\x7c\x47\x79\x8d\xc9\x41\xbe\xc9\x5f\xc6\xde\x5a\xec\x65\xd6\xb1\xd2\xbe\x31\x74\xf3\xcb\x9e\xbf\x17\x8c\x23\x0f\x2d\xc4\x3d\x43\xe1\x25\x18\xf8\x95\x9a\x87\x60\xe8\x47\x90\xb0\x1c\x3b\xbe\x05\xed\xf2\xd2\x28\x59\x06\x51\x6d\x84\xe1\x12\xa5\xce\x6c\x94\x77\xd2\xb9\x3d\xda\x47\x07\xbd\x38\xde\x2c\x08\xed\xf9\x39\x1c\xea\xe5\xd1\xca\x78\x30\x6c\x66\x16\x5a\x9f\x7c\xf3\xb1\x15\x5c\x64\x31\x78\x20\x38\xe7\x4b\x37\x90\x69\x2c\xb2\x95\x82\xa6\x33\xe5\x1a\xd9\xca\xcf\x24\x9c\xe0\x90\xb2\x63\x70\xf9\x59\x6f\x87\x5c\x55\x45\x53\x8d\x9d\xd5\x5b\x7d\xb4\x6c\x50\xfa\x7d\x7f\xa3\xbc\x78\xf2\x23\xbe\xe7\x74\x4a\xac\x3b\xbb\x44\x6f\xa8\xe4\xd2\xb5\x03\x14\x3f\x30\x0e\xed\xea\x7c\x51\xa2\x72\x3a\x34\x18\x7f\x96\x8b\x74\xd7\xdb\x8d\x5e\x6a\x4f\x13\x32\x53\x20\x00\x84\x68\x94\xeb\xb8\x96\xa1\x26\x5e\xe2\x45\x21\xf4\x50\x04\x19\xb4\x42\x6d\x9f\x19\x1a\x84\x35\x4f\x1e\x9b\x40\xc4\x60\x2b\xfe\x09\x86\xac\x4c\x16\xc8\x13\xd8\x3e\x72\x7d\x98\xe3\xd1\xdb\x9d\xed\xa1\x0b\xb4\xd8\xbe\x84\x8b\xc0\x05\x81\x17\xbc\xf7\xdc\x92\x49\x97\x01\x61\xc5\x10\xe9\x0f\x8b\xf3\xc1\xbb\xe6\x72\x6d\x60\x4c\x93\xda\xee\x4d\x52\x3c\x66\x2d\xa5\x88\x27\xd0\xde\xe4\x31\xc2\x02\x67\x0a\x3c\x2f\x46\x2a\x04\x21\x2b\xf7\xfc\x11\x1d\xf5\xa4\xd0\x7a\xb6\x8f\xce\x25\xc8\x64\x9d\xd5\x92\x79\x03\x36\xd2\xb1\x99\xce\x91\xfa\xb7\x85\x8e\xb9\xa8\x3e\xd7\x8f\x95\x0d\xa0\x4b\xbf\xf8\x1a\x68\x72\x11\xe3\xca\xa6\xcc\x58\x68\x9d\x67\x53\xf6\x90\x99\xb1\xed\xd9\x29\xc2\x88\xba\x17\x37\xe1\x05\x95\xc7\x12\x39\xf5\xc6\x84\xd2\x92\x08\x93\xd2\x2d\x51\xb8\x20\x22\x2d\x2c\x12\xee\x71\x7d\xd9\x76\x2e\x6a\xa3\x12\xe5\xfd\x2d\xa5\xe5\x4d\xa0\x94\xe9\x3d\x32\xa5\xb3\xfe\x50\x9c\x89\xbf\xd0\x2f\x4e\x47\x25\x22\x71\x6f\x7d\x48\x1b\xbf\x4b\x63\x48\x90\xcd\xe0\xe4\xfe\x4d\x55\xa8\x2e\x2e\xe8\xb6\x3b\x46\xb8\x1d\xc3\x52\x04\x91\xe0\x47\x84\x89\x3a\x67\x65\xbd\xa0\x94\x3c\x6e\x2a\xa5\x28\xf4\x0a\xd7\x46\xff\x70\x2d\xa7\x4f\xed\xbf\xb2\xa6\x31\x9a\x51\xbb\x32\xac\x08\x35\x7f\x68\x64\xad\x71\xaa\x19\x7a\xed\x0f\xe8\x90\xd5\x36\xb6\xa3\xd7\xab\x98\x86\xbe\x58\x21\x8d\x61\xc7\x8f\x53\x28\x15\x1d\x4a\x9c\x89\xd7\xd6\x79\x4e\xd9\x51\xe4\xd4\x2b\xdb\x87\x14\xd4\xe3\xb5\x68\x82\xad\x4d\x2b\x5e\xbc\x2b\xd3\x0b\x73\xaf\xe8\xa1\x8f\xc2\xb7\xbb\xc2\x53\x5f\x70\xc3\x47\x5e\xf8\xd4\x62\xbd\x10\x2f\xde\xbf\xfd\xbf\x4e\x5c\x8e\x30\x1c\x81\xa1\xba\x2b\xfe\x9e\x83\xc9\x4c\xc3\x64\x6f\xb4\x59\xff\xc4\xc1\x8a\x02\x0e\x0c\xaf\x64\x7b\xb2\xc5\xde\x75\x30\x00\x5e\x7d\xf6\x78\xfd\x67\xac\xe7\x38\xc9\x1b\xbd\xde\xa0\xdd\x83\xee\xd4\x9a\x9e\x19\xc0\xf6\x5c\x84\x99\x04\xfe\x8a\x23\xa1\x21\x5f\xc5\x57\x38\x3f\x4b\xa7\x72\x10\x1c\x22\x04\x88\x43\x24\x3d\xf9\x02\x54\x73\x4f\x7c\xc5\x79\xc8\x3d\x0a\x3d\x0e\x60\x8d\x94\x27\x72\x02\xd0\x7a\xa7\xd7\xe6\x89\xc6\x28\x23\x40\x02\x55\xd7\xf2\x93\xf9\xc2\xe7\xe1\x62\x52\x43\xb0\xf6\xc2\x70\x11\xef\x1e\x6e\x8d\x1b\x42\xd3\x6f\x86\x2f\xb5\x7c\x2b\x35\xba\xce\xc4\xff\x63\xb0\x7b\xd5\xeb\xd5\xa1\x5e\xf7\x76\xd8\xd5\x19\xed\x3d\x13\x7f\xc6\x1c\x81\x39\x19\x55\xe6\x72\x54\x80\xef\xd4\xd0\xf7\x21\x8e\xf5\x2b\x84\xce\x66\x23\x0d\x3c\x95\xa0\x58\x17\x11\x92\x82\x5d\x14\x10\xa9\xe1\x8d\x35\x20\x47\x90\xbb\x9a\x8e\x2c\x60\xa9\x58\xec\x05\x5a\x63\x4b\x8d\x21\x87\x2f\xd9\xff\x34\x5d\x6f\x65\xab\x20\x61\x04\x24\xaa\x05\x81\x9a\xba\xc5\x8b\x23\xa1\xbb\x44\x00\xf4\x05\x03\x00\xe3\xb1\x74\x50\x74\xc9\x31\xf4\x95\x6f\x36\x22\x65\x41\x21\xde\x8d\xf4\x8a\xe8\x73\xd8\xad\xb1\xcf\x58\x59\xd1\x65\xba\x69\x8d\x00\x64\x9b\x51\x40\x6c\x81\xd3\xa9\x9d\x84\x63\xc1\x89\xf3\x56\xdc\x9c\x07\x52\xb3\xf5\xbb\x9a\x2f\x00\x6e\xde\xde\x5e\x3d\x40\xbb\x00\x94\xe9\x0a\x42\x66\xc4\x05\xb2\x98\xc0\x60\x56\x46\x65\x82\xcf\x1f\xa2\x53\x2e\xf8\xb5\x54\x2d\x13\x2c\x37\x0f\xf7\x10\xa7\x0c\x3b\xbc\x57\xce\xf7\xba\xa1\x08\xeb\x5c\x66\x21\xde\x0e\x9d\xd7\xbb\x4e\x85\x94\x60\x10\x8a\xcf\xfd\x77\xb2\x0f\xb1\xa8\x1b\xbb\xdd\x4a\xf1\xf8\xf4\xf1\xa2\xa0\xf6\xb5\xc7\xa8\xff\xec\x10\xf4\xf6\xf2\x46\xfc\x62\x9a\xfe\x40\x76\x23\xdc\xd3\x3b\xbd\x03\xb0\x9a\xd6\x3c\x74\xf8\x4e\xef\x10\x96\xd6\x7a\x20\xb7\x72\x5b\x3b\xd5\xdf\xeb\x26\xee\xc9\xab\xf3\xb7\xa8\xaa\xd3\x8d\xca\x89\x3d\x57\x8d\x31\xd3\x82\xb0\x94\x1a\x71\x3e\x78\x5b\x08\x4b\xa1\x54\x16\xc8\x68\x7c\x0c\x92\xc9\x47\x18\xd7\x09\x2f\x5d\x42\x17\x2c\x75\x3c\x39\xc7\x32\x57\x59\xe6\x4b\xef\xca\x16\xc5\x59\x99\x33\x48\x25\x9e\xaf\xb4\x9d\xcc\x91\x65\xcc\xec\x43\xbd\x9e\x75\xc3\x57\x96\x28\x20\x6b\x3a\xbe\xd9\x88\x65\x84\x3a\x9a\xb3\x4c\x4b\xe4\x06\x47\xd3\x81\x9d\xb1\x49\x7c\xc0\x0e\x91\x17\x18\x72\xb8\x3a\x3e\x2b\x3c\x82\x9a\x78\x5d\x84\x59\x1e\xc8\x10\x86\xaf\x82\xf9\x5e\x3f\xb1\xd3\xc9\xd3\xa8\x72\x0c\x95\x3b\xd4\x24\xb9\x09\x39\x17\xe6\x6f\xb3\x6e\x8e\xf8\xdb\xb2\x19\x5f\x60\x73\x09\x0d\xc9\xc9\xfc\x9c\x28\x3c\x41\xb8\xcc\xae\x65\x99\xa5\x18\xbd\x3c\xe0\xeb\xff\x85\xb1\xbe\x76\xf8\x5c\xe7\x7b\x7c\x9f\xa5\xfc\x0f\x21\x8b\xd5\xe0\xd1\x4e\x80\xd5\xe0\xa5\xb9\x00\xc3\xca\xdd\x2e\xb2\x5d\xbb\x5d\x57\xf0\x5c\x19\xc8\x3d\x11\xd0\x0c\xe2\xcf\xec\x31\x35\x03\x22\x6f\x1d\x39\xd0\x87\xeb\xcb\x00\x30\x66\xc7\x38\xd9\xae\x56\x9d\x36\xaa\xde\xd2\x7b\xaa\xf7\xf4\x29\xde\xda\x36\xd6\xcf\x6e\x70\xea\xde\x0e\xa4\xe7\x5e\x67\xd1\x2f\xae\x31\x11\xc6\x2d\x80\xf7\x03\x9d\x69\x74\xb7\x4b\x2a\x93\x2c\x8b\x2b\x82\xac\xbc\x12\x10\x58\x43\x10\x16\xf2\x1b\x31\xea\x20\x1a\x1f\x34\xf8\x46\xae\xee\xad\xf5\xf5\x4e\xd2\xd9\x80\xe9\xf4\xec\xee\xda\x5a\x2f\xae\xa4\xdf\x84\x42\x9d\x5d\x4f\x4b\x5c\xda\xf5\x11\x70\xf6\x9b\x4b\x3b\x28\xf4\x81\xd2\xc6\x4b\x0c\xbb\x15\xdb\xe6\x36\xd9\x6c\xdf\xbc\x9e\x9f\x6a\x80\x9a\x32\xef\x59\x26\x48\x20\xbe\x66\x27\xe7\x35\xad\x22\x16\x48\xbc\xf8\x99\x7d\x9f\xd3\x62\xca\x8b\x1d\x99\x59\xc8\xca\x79\xeb\x2c\x19\x19\x05\x13\x72\x91\x2b\x30\x13\xa0\x7c\xc8\x26\x23\x85\x00\x8a\x2d\x3c\xcb\xeb\xc4\x5a\x7a\xea\x49\x76\xef\x38\x02\x11\xe7\x9e\x7a\x95\xa3\xbb\x53\x87\x1a\x5d\x8f\x71\x9d\xff\xa9\x0e\xe4\x72\x6c\x5c\xef\x9d\x3a\xac\xa1\xf5\x11\x6c\xad\x8c\xf8\xfe\xb1\x73\x9b\x27\x94\xf5\xf8\x87\x49\x99\xad\x36\x7a\x3b\x6c\xe9\x55\xb2\xfe\x4d\x51\xa0\x54\x0c\x99\x80\x19\x58\x1b\x08\x74\xe2\x02\x32\x1e\x2a\xea\x66\x4a\xb9\x2a\x2d\xa1\x9d\x4d\x6b\x21\x57\x4b\xcd\x2d\x09\x84\x2e\x06\x3a\x15\x98\x8e\x39\x5a\x8a\x06\x51\xee\x06\xbf\x88\x0d\xca\xb1\x61\x38\x9a\x3a\x09\xbf\x2f\x31\x3c\x4d\x10\x81\x19\x72\x2b\x3f\x27\x4d\x18\x2a\xb9\x48\x97\x36\x56\x9e\x31\xf8\x0e\x63\xd8\xf7\xaa\xad\x3b\xdd\x28\xe3\x38\x2e\x11\x27\x8a\x4b\x4e\x1c\x13\x8c\x8d\xf7\xbb\x7a\x8d\xb8\x03\xb9\x40\xd7\x85\xaf\x12\x66\xe6\x31\x50\x61\x84\x63\x50\x6f\xf5\x3a\x86\xfa\x62\x56\x03\x55\x9c\x38\x14\xe2\x6d\xc8\x0d\x08\xf8\xdd\x68\xbd\x02\x7e\x15\x06\x9e\x2e\xbc\x9a\x43\x8a\x26\xcc\xbc\xec\x45\xca\x8b\xb3\x85\x2d\x8c\xb3\x85\x8d\x9b\x9d\x27\x84\x63\x0b\x62\xf4\xb7\x6e\x3b\x7a\x6b\x53\x93\xf7\x71\x52\xb1\xc0\x59\x74\x41\xb9\xec\x23\xfd\x3d\xe6\xc6\xea\xda\x65\xaa\xec\x45\x30\x9b\x9a\xad\xb0\x5d\xd6\xb9\xe4\x9f\x52\x73\xf9\x39\xa5\xe6\x7a\x83\x94\xca\x14\x2c\xa7\xc0\xed\xb2\x76\xae\x0b\x44\xf8\xe6\xe6\xb2\xa4\xf4\x29\x37\xb1\xb9\xdf\x83\x60\xf7\x68\x67\x9d\x5f\xf7\xca\x3d\x12\xd6\x74\x87\x1f\xb2\x12\xbc\x72\xf3\x95\xca\xa9\x63\x1c\xee\xef\x9d\xf6\xea\x8f\x8f\xf0\xf6\xfc\x91\xd7\xed\xf2\xd1\x0f\x55\x7e\x68\x6a\x7c\xd8\x9b\x9d\x9a\xba\x39\x32\x3e\x51\x79\xaf\x40\xee\xcb\x7c\x8a\x87\xe8\x49\x24\x0f\xf2\x73\x8f\x72\x68\xc3\x71\x96\x58\xda\x78\x98\xe5\xec\x6c\x68\xd7\x06\x1d\xe0\xa7\x8c\x14\xb5\x0f\x5f\xbf\x5f\x07\x34\x3f\x63\x72\x6a\x20\x05\x62\x02\x71\x19\x98\x26\x7e\x2e\x1b\x9a\x77\xa3\xd7\x46\xbc\x31\xf4\xda\x3d\x6e\x4a\xdd\xa5\xcb\x88\xb7\xd0\xfe\xfc\xfe\x61\xdc\xfe\x09\x29\x0b\xbd\x78\x98\xa4\xf1\x8e\x6b\xe4\xce\x37\x1b\x99\x36\xd9\x05\x25\x44\x7e\x82\xfc\xe1\x34\xb0\x14\x3a\xb6\x25\x22\x9f\x39\xf8\xd8\x5a\x5c\xa2\xf1\x50\xec\xac\x53\x3e\x29\x49\x8a\x42\xd7\x90\x17\x95\x2a\x79\xe1\x50\x3a\xb8\xb5\x8b\x33\x1f\x7c\xd5\xcc\xce\x3c\xfa\x65\xac\x3b\x65\xd6\xb8\xec\xfe\x0b\x3e\xc5\x25\x7e\xc6\x11\x22\x27\x34\x78\x7f\x65\x07\x56\x1c\x43\x0a\x5e\x63\xd9\x21\x1d\x3b\x5f\x94\x99\xf2\xb9\xc9\x59\xba\xb7\xf8\x3d\xdf\x42\x86\x3d\x7a\xd4\x73\x7e\xa4\x92\xaa\xb3\x39\x85\xfc\xe5\xf2\xfd\x08\xd2\x0d\x78\x65\x5d\x03\x19\xd6\x9f\x51\x2b\x82\x09\x48\x82\xf5\xe7\x11\xf4\x0c\x85\xe0\x9c\x19\x7a\x80\x37\x61\x78\xea\xb2\x1e\x05\xef\xc0\xf0\xd8\xc5\x1d\x14\xe0\x22\x48\xbd\xa2\xd7\xf0\x67\xe2\x25\x14\xf0\x96\x9c\x0f\xa2\x7f\x51\xdc\x8b\x90\x04\x8c\xf3\x4f\xe2\xe4\x7e\x5a\xda\xd1\x2b\xf3\xdb\x04\x9e\xa2\xc1\xb2\x27\x46\x28\x9c\xd8\x6c\x32\xe7\x8b\xe3\x8e\x26\x7c\xf3\xc3\x4e\x90\xd3\x51\x8f\x27\x05\x5e\x5f\x27\xe3\x5d\xbc\xb0\x9e\xc5\x44\x90\xb2\x95\x3b\x22\x0f\x04\x7a\x4e\xdf\x25\x10\xda\x78\xdc\xcb\x2e\x42\xbd\xe1\x84\x49\xad\x26\xaf\xd3\x70\xc0\xbb\x34\x0d\x64\x89\x9e\x11\x3f\x7a\x3d\x3a\xcf\x48\x32\xf4\xae\xb7\xf7\x3a\x18\x79\x13\xfc\x15\x27\xa5\x93\x9b\xbe\x13\xe6\x00\xc1\xa8\xd3\x39\x6a\xef\x74\xd4\x08\x5c\xe0\x57\x71\x9e\x30\xdd\x80\x8d\x4e\xb0\x89\x74\xdc\x28\xcf\x25\x22\x37\xdf\xc4\x91\x09\x57\xd7\xaf\x2e\xe2\xd8\xd0\x2d\xf7\xa8\x33\x9d\x5e\xa9\x78\x27\xce\xbd\xb9\xd4\x2b\x55\x00\xc3\x39\xec\x82\x63\x40\x38\xae\x6f\xc4\x7b\xd3\x1d\x46\x9d\xc8\x51\x71\x4f\x12\xa6\x38\x32\x1a\x0d\x15\xb2\x81\xa1\x84\xf9\x21\x0f\xd0\x7c\x4a\x65\xe0\x7c\x4c\x8d\xa9\xf3\xba\xe7\x67\x98\x69\x67\xbf\xe2\xa4\xd1\x88\xae\x54\x8b\xbe\x28\xda\x3a\x96\xe0\x71\x7d\x19\x72\xc4\x39\xe6\x24\x92\x09\xd2\x52\x6c\x38\x08\x4b\xb3\x8d\x06\xa8\xd0\x1e\x74\xdb\xb2\xd1\xeb\x0d\xc6\x4e\xca\x5a\x45\xde\x5b\x0e\xc6\xcb\xcf\xe2\x75\xc8\xcf\x31\x00\xaf\x88\xa5\x41\x30\x74\xcc\x27\x62\xa9\x4b\x4c\xc0\xb3\x5d\x0a\xa7\xcd\xba\x23\xb7\x25\x3f\x1c\x2d\x5e\x37\x1b\xd9\xcb\x86\x23\xf8\x45\x44\x17\x29\xb5\xc4\x06\x65\xe6\xb1\x05\x5f\x29\x11\xc7\x4b\x4c\xf8\x9e\x74\x1a\xe8\x2d\xa5\x28\xb8\x6e\x6a\xd9\xaf\xd9\x9a\xe1\xbc\x5f\x63\x28\x64\x57\xa0\x46\xd6\x52\x65\xa7\x46\x64\x36\xc7\xe7\x06\x81\x63\x14\xb6\x1c\x1a\xe3\xa3\xb0\x12\x68\xa6\x04\xbe\x99\xc9\x0a\x5c\xe0\x1b\x9a\x64\x4c\x3d\x53\x04\x7d\xf7\xa5\x12\xe8\xb6\xef\xc1\x02\x6c\xb5\x41\xe0\xaf\x2e\x66\x80\x73\xd1\x38\x2e\x21\x10\x89\x67\x97\x10\x40\x31\xb3\x98\x33\x8a\x90\x3c\x7d\xde\x1d\x5e\x3a\x2c\x9a\x9e\x3c\xd1\xc3\xbf\x5b\xe9\xee\xe2\x1b\x88\xe2\x82\x2b\xa4\xb9\x66\xa3\xda\xa1\x23\xa1\x86\x7e\x26\x78\xf5\xd9\x07\x6b\x1a\xdc\xbe\x21\x03\x3d\x90\xd8\xc1\x05\x17\x24\xf0\xb3\x00\x50\x9f\x55\x33\x64\x86\x75\xbf\xd0\x37\x5b\xb2\x24\x34\x36\xbc\x9b\x1c\x0c\xea\xd9\xaf\x28\x25\x83\x99\x0b\x4e\x1f\x9a\xce\x72\x2e\x89\xe8\x47\xeb\x8f\xd5\x87\x89\xa8\xc2\x6b\x91\xf0\x06\x83\x63\x3c\xf3\x35\xc0\xe8\x01\x49\x80\x45\x3f\x44\xe4\xa7\xb7\x8e\xfe\x69\xd0\x21\x11\x41\xb2\xaf\x9a\x08\xcf\xaf\x20\x98\x73\x83\x19\x8a\xb5\xaa\x0e\x18\x0a\xd9\xd1\x91\x0f\x1f\x20\xb1\xc4\xfc\x56\x15\x10\x2f\xf8\xb3\x80\xd1\x86\x94\x25\x94\x45\x02\xdb\x1b\x4a\x63\x94\xd9\xab\x98\xa0\x9b\x24\x60\xf6\x2d\x86\x7a\xc0\x1b\x4e\x19\x43\x86\x9a\x11\xe8\xbc\xeb\x26\xa3\x91\xcb\x47\x79\x1a\x86\xd6\xc8\x9e\x2e\x65\x7d\x1a\x4f\x63\xc8\xb2\x3b\x5c\xc5\x8b\x49\x6b\xa3\x82\x91\x67\x24\xbc\xf1\xf9\x92\xa9\x78\xf5\x91\xc6\xfe\x53\xf0\x85\xc1\x56\x09\xc1\x18\x28\x33\xc0\x2d\x3c\x05\x9e\xa0\x83\xbb\x0a\x5d\xb1\x72\x11\xf2\xbf\x3a\x89\x7c\x35\x57\xac\x57\x26\x0b\x72\x45\x5f\x45\x5d\xf8\x52\x8e\xdc\xe8\x9e\x7c\xfc\xf1\x93\x0b\x7e\x74\x0b\x7c\x1f\xff\xf0\x09\x50\x7e\xfc\xe3\x27\xc2\xca\x71\xd1\x19\x6b\x0a\xfa\x9a\x95\xf8\xf1\x93\x7b\xea\xfa\xe6\xe9\xb8\xac\x90\x7e\x04\x06\x99\xff\x23\x21\xde\xc9\x5e\xd5\xc1\xf5\x13\xaf\x65\x4a\xd6\xce\x1a\xf6\xba\xa6\x9c\x42\xaf\x5f\x1c\x5b\x2c\x86\x04\xe1\x16\x85\xef\xd1\xb0\x52\x2f\xe7\xbb\x98\x86\x8c\xa7\x87\x82\xb1\x9d\x89\x5f\xc9\xf3\x29\x07\x67\xcb\x0a\x3c\x25\x4b\x80\xa7\x54\xf4\xdf\xb0\xa3\x80\xe0\xd7\x0a\xbd\xa6\x26\x04\xe4\x44\xf5\x5b\x10\x90\xbb\xd5\x84\x21\xb8\x5f\xfd\xa6\x46\xb0\x5f\xd9\xd4\x0c\x4a\x50\xad\x40\xad\xfc\xd7\x23\xa2\xf1\x18\xb9\x97\xfd\x35\xac\xdb\x22\x72\x6d\x8e\x10\xa3\xc5\x1d\x1d\x9d\x09\x3a\x1a\xa4\x6f\xc6\xc6\x43\x35\x46\x17\x47\xec\x9b\x11\x62\xd4\xba\x09\x3e\x8e\x56\xfc\xed\x9d\xa5\xc1\x8b\x91\xa5\xc3\xa8\x19\xb5\x8f\x61\xa9\xff\xd5\x4d\xc3\x94\x29\xd6\x11\xe8\x4f\xc0\xcf\x9b\xfb\x0f\x69\x73\xcf\xa2\x0b\x9b\x1b\x9d\x35\x7b\xb9\xce\x76\xb6\x5c\x17\x9d\xc5\x26\x62\x19\xee\xe7\x74\xef\xe7\x08\xc3\x3b\x66\x44\x19\x1a\x87\x38\xbf\xb1\x65\xd5\x47\x6f\x6d\xf7\xa9\x92\x6b\xd8\xe4\x72\x6d\x2b\xa0\x5e\xec\x2a\x01\x09\x99\xb1\xfb\x8a\x3e\xe1\xd7\x8f\x40\x40\x7e\xe4\xf8\x0c\xe2\xc4\x55\x3f\x6e\x31\x81\xa2\xda\x62\xc2\x06\x13\x36\x76\xc0\x70\x5b\x3f\xb6\xf8\xd9\xca\x03\x7e\xed\xf1\x6b\xaf\xd4\x1d\x15\xc6\xf3\xec\x47\xb1\xb5\xc6\x6f\x30\xe5\x80\xdf\x07\x25\x39\x58\x17\xc5\x81\x38\x03\xd2\x14\x3e\x4e\x5c\x45\xd5\x71\x7a\xf8\x38\x71\x15\xd4\xca\xa9\xf4\xf3\xc4\x55\xad\x3c\x70\x12\xfe\x3a\x71\x15\x54\xcf\x49\xf4\xf3\x04\xd9\x10\xbf\x09\x08\xe9\xf7\x89\xab\xa0\x1d\x9c\x48\x3f\x4f\x5c\xd5\xcb\x7d\x9d\xda\xc5\xbf\x30\x35\xb5\x8a\x7f\x55\xd5\xc7\xb6\xb7\xbb\xdf\xac\x51\x9f\xaa\x10\xd9\x7e\xab\x1c\x5b\x83\xbf\xe8\xed\x2e\x3c\x02\x51\x3d\x5d\xd6\x61\xb8\x50\x0c\x7b\xd1\x59\xd9\x2e\x2a\xf6\xb8\x55\x6b\xb3\x1b\xa2\x56\x9a\x2d\x72\x1e\x7b\x06\x4b\xb1\x20\xe8\x3d\xf5\x61\xa7\x16\x15\xde\xc8\x78\x6b\xeb\x25\x32\x9f\x78\x17\x83\x36\x55\xdf\xff\xe3\x1f\x08\xaf\x7f\x53\xff\xfc\xa7\x78\xfb\xf3\x0f\x42\x7d\x6e\x94\x6a\x9d\xd8\xb2\x9d\x67\x00\xdb\xca\xcf\x2f\x0b\xc8\x45\xc5\x8f\x93\xd9\xb0\x90\x1e\x27\x63\xf5\xd5\xff\x17\x00\x00\xff\xff\xda\x0e\xd2\xef\x19\xfe\x00\x00")
func confLocaleLocale_enUsIniBytes() ([]byte, error) {
return bindataRead(
@@ -4454,7 +4454,7 @@ func confLocaleLocale_enUsIni() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 64926, mode: os.FileMode(420), modTime: time.Unix(1523489757, 0)}
+ info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 65049, mode: os.FileMode(420), modTime: time.Unix(1523538445, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
diff --git a/pkg/form/user.go b/pkg/form/user.go
index 123902e9e..ffc7dda46 100644
--- a/pkg/form/user.go
+++ b/pkg/form/user.go
@@ -74,9 +74,10 @@ func (f *Register) Validate(ctx *macaron.Context, errs binding.Errors) binding.E
}
type SignIn struct {
- UserName string `binding:"Required;MaxSize(254)"`
- Password string `binding:"Required;MaxSize(255)"`
- Remember bool
+ UserName string `binding:"Required;MaxSize(254)"`
+ Password string `binding:"Required;MaxSize(255)"`
+ LoginSource int64
+ Remember bool
}
func (f *SignIn) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
diff --git a/routes/admin/auths.go b/routes/admin/auths.go
index 56a0aad60..6356d1129 100644
--- a/routes/admin/auths.go
+++ b/routes/admin/auths.go
@@ -25,19 +25,19 @@ const (
)
func Authentications(c *context.Context) {
- c.Data["Title"] = c.Tr("admin.authentication")
- c.Data["PageIsAdmin"] = true
- c.Data["PageIsAdminAuthentications"] = true
+ c.Title("admin.authentication")
+ c.PageIs("Admin")
+ c.PageIs("AdminAuthentications")
var err error
c.Data["Sources"], err = models.LoginSources()
if err != nil {
- c.Handle(500, "LoginSources", err)
+ c.ServerError("LoginSources", err)
return
}
c.Data["Total"] = models.CountLoginSources()
- c.HTML(200, AUTHS)
+ c.Success(AUTHS)
}
type dropdownItem struct {
@@ -60,9 +60,9 @@ var (
)
func NewAuthSource(c *context.Context) {
- c.Data["Title"] = c.Tr("admin.auths.new")
- c.Data["PageIsAdmin"] = true
- c.Data["PageIsAdminAuthentications"] = true
+ c.Title("admin.auths.new")
+ c.PageIs("Admin")
+ c.PageIs("AdminAuthentications")
c.Data["type"] = models.LOGIN_LDAP
c.Data["CurrentTypeName"] = models.LoginNames[models.LOGIN_LDAP]
@@ -72,13 +72,12 @@ func NewAuthSource(c *context.Context) {
c.Data["AuthSources"] = authSources
c.Data["SecurityProtocols"] = securityProtocols
c.Data["SMTPAuths"] = models.SMTPAuths
- c.HTML(200, AUTH_NEW)
+ c.Success(AUTH_NEW)
}
func parseLDAPConfig(f form.Authentication) *models.LDAPConfig {
return &models.LDAPConfig{
Source: &ldap.Source{
- Name: f.Name,
Host: f.Host,
Port: f.Port,
SecurityProtocol: ldap.SecurityProtocol(f.SecurityProtocol),
@@ -99,7 +98,6 @@ func parseLDAPConfig(f form.Authentication) *models.LDAPConfig {
GroupMemberUID: f.GroupMemberUID,
UserUID: f.UserUID,
AdminFilter: f.AdminFilter,
- Enabled: true,
},
}
}
@@ -116,9 +114,9 @@ func parseSMTPConfig(f form.Authentication) *models.SMTPConfig {
}
func NewAuthSourcePost(c *context.Context, f form.Authentication) {
- c.Data["Title"] = c.Tr("admin.auths.new")
- c.Data["PageIsAdmin"] = true
- c.Data["PageIsAdminAuthentications"] = true
+ c.Title("admin.auths.new")
+ c.PageIs("Admin")
+ c.PageIs("AdminAuthentications")
c.Data["CurrentTypeName"] = models.LoginNames[models.LoginType(f.Type)]
c.Data["CurrentSecurityProtocol"] = models.SecurityProtocolNames[ldap.SecurityProtocol(f.SecurityProtocol)]
@@ -146,7 +144,7 @@ func NewAuthSourcePost(c *context.Context, f form.Authentication) {
c.Data["HasTLS"] = hasTLS
if c.HasError() {
- c.HTML(200, AUTH_NEW)
+ c.Success(AUTH_NEW)
return
}
@@ -160,7 +158,7 @@ func NewAuthSourcePost(c *context.Context, f form.Authentication) {
c.Data["Err_Name"] = true
c.RenderWithErr(c.Tr("admin.auths.login_source_exist", err.(models.ErrLoginSourceAlreadyExist).Name), AUTH_NEW, f)
} else {
- c.Handle(500, "CreateSource", err)
+ c.ServerError("CreateSource", err)
}
return
}
@@ -172,41 +170,41 @@ func NewAuthSourcePost(c *context.Context, f form.Authentication) {
}
func EditAuthSource(c *context.Context) {
- c.Data["Title"] = c.Tr("admin.auths.edit")
- c.Data["PageIsAdmin"] = true
- c.Data["PageIsAdminAuthentications"] = true
+ c.Title("admin.auths.edit")
+ c.PageIs("Admin")
+ c.PageIs("AdminAuthentications")
c.Data["SecurityProtocols"] = securityProtocols
c.Data["SMTPAuths"] = models.SMTPAuths
source, err := models.GetLoginSourceByID(c.ParamsInt64(":authid"))
if err != nil {
- c.Handle(500, "GetLoginSourceByID", err)
+ c.ServerError("GetLoginSourceByID", err)
return
}
c.Data["Source"] = source
c.Data["HasTLS"] = source.HasTLS()
- c.HTML(200, AUTH_EDIT)
+ c.Success(AUTH_EDIT)
}
func EditAuthSourcePost(c *context.Context, f form.Authentication) {
- c.Data["Title"] = c.Tr("admin.auths.edit")
- c.Data["PageIsAdmin"] = true
- c.Data["PageIsAdminAuthentications"] = true
+ c.Title("admin.auths.edit")
+ c.PageIs("Admin")
+ c.PageIs("AdminAuthentications")
c.Data["SMTPAuths"] = models.SMTPAuths
source, err := models.GetLoginSourceByID(c.ParamsInt64(":authid"))
if err != nil {
- c.Handle(500, "GetLoginSourceByID", err)
+ c.ServerError("GetLoginSourceByID", err)
return
}
c.Data["Source"] = source
c.Data["HasTLS"] = source.HasTLS()
if c.HasError() {
- c.HTML(200, AUTH_EDIT)
+ c.Success(AUTH_EDIT)
return
}
@@ -228,11 +226,11 @@ func EditAuthSourcePost(c *context.Context, f form.Authentication) {
source.Name = f.Name
source.IsActived = f.IsActive
source.Cfg = config
- if err := models.UpdateSource(source); err != nil {
- c.Handle(500, "UpdateSource", err)
+ if err := models.UpdateLoginSource(source); err != nil {
+ c.ServerError("UpdateLoginSource", err)
return
}
- log.Trace("Authentication changed by admin(%s): %d", c.User.Name, source.ID)
+ 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))
@@ -241,7 +239,7 @@ func EditAuthSourcePost(c *context.Context, f form.Authentication) {
func DeleteAuthSource(c *context.Context) {
source, err := models.GetLoginSourceByID(c.ParamsInt64(":authid"))
if err != nil {
- c.Handle(500, "GetLoginSourceByID", err)
+ c.ServerError("GetLoginSourceByID", err)
return
}
@@ -251,7 +249,7 @@ func DeleteAuthSource(c *context.Context) {
} else {
c.Flash.Error(fmt.Sprintf("DeleteSource: %v", err))
}
- c.JSON(200, map[string]interface{}{
+ c.JSONSuccess(map[string]interface{}{
"redirect": setting.AppSubURL + "/admin/auths/" + c.Params(":authid"),
})
return
@@ -259,7 +257,7 @@ func DeleteAuthSource(c *context.Context) {
log.Trace("Authentication deleted by admin(%s): %d", c.User.Name, source.ID)
c.Flash.Success(c.Tr("admin.auths.deletion_success"))
- c.JSON(200, map[string]interface{}{
+ c.JSONSuccess(map[string]interface{}{
"redirect": setting.AppSubURL + "/admin/auths",
})
}
diff --git a/routes/api/v1/admin/user.go b/routes/api/v1/admin/user.go
index 623911fd9..d48ecc2f2 100644
--- a/routes/api/v1/admin/user.go
+++ b/routes/api/v1/admin/user.go
@@ -10,6 +10,7 @@ import (
api "github.com/gogits/go-gogs-client"
"github.com/gogits/gogs/models"
+ "github.com/gogits/gogs/models/errors"
"github.com/gogits/gogs/pkg/context"
"github.com/gogits/gogs/pkg/mailer"
"github.com/gogits/gogs/pkg/setting"
@@ -23,7 +24,7 @@ func parseLoginSource(c *context.APIContext, u *models.User, sourceID int64, log
source, err := models.GetLoginSourceByID(sourceID)
if err != nil {
- if models.IsErrLoginSourceNotExist(err) {
+ if errors.IsLoginSourceNotExist(err) {
c.Error(422, "", err)
} else {
c.Error(500, "GetLoginSourceByID", err)
diff --git a/routes/install.go b/routes/install.go
index 29177936d..4e8890f7f 100644
--- a/routes/install.go
+++ b/routes/install.go
@@ -67,6 +67,7 @@ func GlobalInit() {
}
models.HasEngine = true
+ models.LoadAuthSources()
models.LoadRepoConfig()
models.NewRepoContext()
diff --git a/routes/org/setting.go b/routes/org/setting.go
index 397ffa8f7..c5083d1a9 100644
--- a/routes/org/setting.go
+++ b/routes/org/setting.go
@@ -107,16 +107,16 @@ func SettingsDeleteAvatar(c *context.Context) {
}
func SettingsDelete(c *context.Context) {
- c.Data["Title"] = c.Tr("org.settings")
- c.Data["PageIsSettingsDelete"] = true
+ c.Title("org.settings")
+ c.PageIs("SettingsDelete")
org := c.Org.Organization
if c.Req.Method == "POST" {
- if _, err := models.UserSignIn(c.User.Name, c.Query("password")); err != nil {
+ if _, err := models.UserLogin(c.User.Name, c.Query("password"), c.User.LoginSource); err != nil {
if errors.IsUserNotExist(err) {
c.RenderWithErr(c.Tr("form.enterred_invalid_password"), SETTINGS_DELETE, nil)
} else {
- c.Handle(500, "UserSignIn", err)
+ c.ServerError("UserLogin", err)
}
return
}
@@ -126,7 +126,7 @@ func SettingsDelete(c *context.Context) {
c.Flash.Error(c.Tr("form.org_still_own_repo"))
c.Redirect(c.Org.OrgLink + "/settings/delete")
} else {
- c.Handle(500, "DeleteOrganization", err)
+ c.ServerError("DeleteOrganization", err)
}
} else {
log.Trace("Organization deleted: %s", org.Name)
@@ -135,7 +135,7 @@ func SettingsDelete(c *context.Context) {
return
}
- c.HTML(200, SETTINGS_DELETE)
+ c.Success(SETTINGS_DELETE)
}
func Webhooks(c *context.Context) {
diff --git a/routes/repo/http.go b/routes/repo/http.go
index 2724ee1cd..07101661e 100644
--- a/routes/repo/http.go
+++ b/routes/repo/http.go
@@ -124,9 +124,9 @@ func HTTPContexter() macaron.Handler {
return
}
- authUser, err := models.UserSignIn(authUsername, authPassword)
+ authUser, err := models.UserLogin(authUsername, authPassword, -1)
if err != nil && !errors.IsUserNotExist(err) {
- c.Handle(http.StatusInternalServerError, "UserSignIn", err)
+ c.Handle(http.StatusInternalServerError, "UserLogin", err)
return
}
diff --git a/routes/user/auth.go b/routes/user/auth.go
index b145fb1f4..bf689f9a9 100644
--- a/routes/user/auth.go
+++ b/routes/user/auth.go
@@ -80,12 +80,12 @@ func isValidRedirect(url string) bool {
}
func Login(c *context.Context) {
- c.Data["Title"] = c.Tr("sign_in")
+ c.Title("sign_in")
- // Check auto-login.
+ // Check auto-login
isSucceed, err := AutoLogin(c)
if err != nil {
- c.Handle(500, "AutoLogin", err)
+ c.ServerError("AutoLogin", err)
return
}
@@ -106,7 +106,15 @@ func Login(c *context.Context) {
return
}
- c.HTML(200, LOGIN)
+ // Display normal login page
+ loginSources, err := models.ActivatedLoginSources()
+ if err != nil {
+ c.ServerError("ActivatedLoginSources", err)
+ return
+ }
+ c.Data["LoginSources"] = loginSources
+
+ c.Success(LOGIN)
}
func afterLogin(c *context.Context, u *models.User, remember bool) {
@@ -138,19 +146,33 @@ func afterLogin(c *context.Context, u *models.User, remember bool) {
}
func LoginPost(c *context.Context, f form.SignIn) {
- c.Data["Title"] = c.Tr("sign_in")
+ c.Title("sign_in")
+
+ loginSources, err := models.ActivatedLoginSources()
+ if err != nil {
+ c.ServerError("ActivatedLoginSources", err)
+ return
+ }
+ c.Data["LoginSources"] = loginSources
if c.HasError() {
c.Success(LOGIN)
return
}
- u, err := models.UserSignIn(f.UserName, f.Password)
+ u, err := models.UserLogin(f.UserName, f.Password, f.LoginSource)
if err != nil {
- if errors.IsUserNotExist(err) {
+ switch err.(type) {
+ case errors.UserNotExist:
+ c.FormErr("UserName")
+ c.FormErr("Password")
c.RenderWithErr(c.Tr("form.username_password_incorrect"), LOGIN, &f)
- } else {
- c.ServerError("UserSignIn", err)
+ case errors.LoginSourceMismatch:
+ c.FormErr("LoginSource")
+ c.RenderWithErr(c.Tr("form.auth_source_mismatch"), LOGIN, &f)
+
+ default:
+ c.ServerError("UserLogin", err)
}
return
}
diff --git a/routes/user/setting.go b/routes/user/setting.go
index 723b3da24..4b8b48bbe 100644
--- a/routes/user/setting.go
+++ b/routes/user/setting.go
@@ -633,11 +633,11 @@ func SettingsDelete(c *context.Context) {
c.PageIs("SettingsDelete")
if c.Req.Method == "POST" {
- if _, err := models.UserSignIn(c.User.Name, c.Query("password")); err != nil {
+ if _, err := models.UserLogin(c.User.Name, c.Query("password"), c.User.LoginSource); err != nil {
if errors.IsUserNotExist(err) {
c.RenderWithErr(c.Tr("form.enterred_invalid_password"), SETTINGS_DELETE, nil)
} else {
- c.ServerError("UserSignIn", err)
+ c.ServerError("UserLogin", err)
}
return
}
diff --git a/templates/admin/auth/edit.tmpl b/templates/admin/auth/edit.tmpl
index 32de620c6..fba6fe48c 100644
--- a/templates/admin/auth/edit.tmpl
+++ b/templates/admin/auth/edit.tmpl
@@ -189,7 +189,9 @@
Host: smtp.gmail.com, Port: 587, Enable TLS Encryption: true
-