diff --git a/conf/locale/locale_en-US.ini b/conf/locale/locale_en-US.ini index 24e16b93b4..8f4d73e9ca 100644 --- a/conf/locale/locale_en-US.ini +++ b/conf/locale/locale_en-US.ini @@ -817,6 +817,7 @@ auths.port = Port auths.bind_dn = Bind DN auths.bind_password = Bind Password auths.user_base = User Search Base +auths.user_dn = User DN auths.attribute_name = First name attribute auths.attribute_surname = Surname attribute auths.attribute_mail = E-mail attribute diff --git a/models/login.go b/models/login.go index 78ce79cff0..b4cb60ad68 100644 --- a/models/login.go +++ b/models/login.go @@ -27,6 +27,7 @@ const ( NOTYPE LoginType = iota PLAIN LDAP + DLDAP SMTP PAM ) @@ -38,9 +39,10 @@ var ( ) var LoginTypes = map[LoginType]string{ - LDAP: "LDAP", - SMTP: "SMTP", - PAM: "PAM", + LDAP: "LDAP (via BindDN)", + DLDAP: "LDAP (simple auth)", + SMTP: "SMTP", + PAM: "PAM", } // Ensure structs implemented interface. @@ -106,6 +108,8 @@ func (source *LoginSource) BeforeSet(colName string, val xorm.Cell) { case "type": switch LoginType((*val).(int64)) { case LDAP: + fallthrough + case DLDAP: source.Cfg = new(LDAPConfig) case SMTP: source.Cfg = new(SMTPConfig) @@ -171,84 +175,74 @@ func DelLoginSource(source *LoginSource) error { // UserSignIn validates user name and password. func UserSignIn(uname, passwd string) (*User, error) { - u := new(User) + var u *User if strings.Contains(uname, "@") { u = &User{Email: uname} } else { u = &User{LowerName: strings.ToLower(uname)} } - has, err := x.Get(u) + userExists, err := x.Get(u) if err != nil { return nil, err } - if u.LoginType == NOTYPE && has { - u.LoginType = PLAIN - } - - // For plain login, user must exist to reach this line. - // Now verify password. - if u.LoginType == PLAIN { - if !u.ValidatePassword(passwd) { - return nil, ErrUserNotExist{u.Id, u.Name} - } - return u, nil - } - - if !has { - var sources []LoginSource - if err = x.UseBool().Find(&sources, - &LoginSource{IsActived: true, AllowAutoRegister: true}); err != nil { - return nil, err - } - - for _, source := range sources { - if source.Type == LDAP { - u, err := LoginUserLdapSource(nil, uname, passwd, - source.ID, source.Cfg.(*LDAPConfig), true) - if err == nil { - return u, nil - } - log.Warn("Fail to login(%s) by LDAP(%s): %v", uname, source.Name, err) - } else if source.Type == SMTP { - u, err := LoginUserSMTPSource(nil, uname, passwd, - source.ID, source.Cfg.(*SMTPConfig), true) - if err == nil { - return u, nil - } - log.Warn("Fail to login(%s) by SMTP(%s): %v", uname, source.Name, err) - } else if source.Type == PAM { - u, err := LoginUserPAMSource(nil, uname, passwd, - source.ID, source.Cfg.(*PAMConfig), true) - if err == nil { - return u, nil - } - log.Warn("Fail to login(%s) by PAM(%s): %v", uname, source.Name, err) + if userExists { + switch u.LoginType { + case NOTYPE: + fallthrough + case PLAIN: + if u.ValidatePassword(passwd) { + return u, nil } - } - return nil, ErrUserNotExist{u.Id, u.Name} + return nil, ErrUserNotExist{u.Id, u.Name} + default: + var source LoginSource + hasSource, err := x.Id(u.LoginSource).Get(&source) + if err != nil { + return nil, err + } else if !hasSource { + return nil, ErrLoginSourceNotExist + } + + return ExternalUserLogin(u, u.LoginName, passwd, &source, false) + } } - var source LoginSource - hasSource, err := x.Id(u.LoginSource).Get(&source) - if err != nil { + var sources []LoginSource + if err = x.UseBool().Find(&sources, &LoginSource{IsActived: true, AllowAutoRegister: true}); err != nil { return nil, err - } else if !hasSource { - return nil, ErrLoginSourceNotExist - } else if !source.IsActived { + } + + for _, source := range sources { + u, err := ExternalUserLogin(nil, uname, passwd, &source, true) + if err == nil { + return u, nil + } + + log.Warn("Failed to login '%s' via '%s': %v", uname, source.Name, err) + } + + return nil, ErrUserNotExist{u.Id, u.Name} +} + +func ExternalUserLogin(u *User, name, passwd string, source *LoginSource, autoRegister bool) (*User, error) { + if !source.IsActived { return nil, ErrLoginSourceNotActived } - switch u.LoginType { + switch source.Type { case LDAP: - return LoginUserLdapSource(u, u.LoginName, passwd, source.ID, source.Cfg.(*LDAPConfig), false) + fallthrough + case DLDAP: + return LoginUserLdapSource(u, name, passwd, source, autoRegister) case SMTP: - return LoginUserSMTPSource(u, u.LoginName, passwd, source.ID, source.Cfg.(*SMTPConfig), false) + return LoginUserSMTPSource(u, name, passwd, source.ID, source.Cfg.(*SMTPConfig), autoRegister) case PAM: - return LoginUserPAMSource(u, u.LoginName, passwd, source.ID, source.Cfg.(*PAMConfig), false) + return LoginUserPAMSource(u, name, passwd, source.ID, source.Cfg.(*PAMConfig), autoRegister) } + return nil, ErrUnsupportedLoginType } @@ -256,8 +250,10 @@ func UserSignIn(uname, passwd string) (*User, error) { // Create a local user if success // Return the same LoginUserPlain semantic // FIXME: https://github.com/gogits/gogs/issues/672 -func LoginUserLdapSource(u *User, name, passwd string, sourceId int64, cfg *LDAPConfig, autoRegister bool) (*User, error) { - fn, sn, mail, admin, logged := cfg.Ldapsource.SearchEntry(name, passwd) +func LoginUserLdapSource(u *User, name, passwd string, source *LoginSource, autoRegister bool) (*User, error) { + cfg := source.Cfg.(*LDAPConfig) + directBind := (source.Type == DLDAP) + fn, sn, mail, admin, logged := cfg.Ldapsource.SearchEntry(name, passwd, directBind) if !logged { // User not in LDAP, do nothing return nil, ErrUserNotExist{0, name} @@ -276,8 +272,8 @@ func LoginUserLdapSource(u *User, name, passwd string, sourceId int64, cfg *LDAP LowerName: strings.ToLower(name), Name: name, FullName: fn + " " + sn, - LoginType: LDAP, - LoginSource: sourceId, + LoginType: source.Type, + LoginSource: source.ID, LoginName: name, Passwd: passwd, Email: mail, diff --git a/modules/auth/auth_form.go b/modules/auth/auth_form.go index b2d427b4b8..c1d49f66fd 100644 --- a/modules/auth/auth_form.go +++ b/modules/auth/auth_form.go @@ -19,6 +19,7 @@ type AuthenticationForm struct { BindDN string `form:"bind_dn"` BindPassword string UserBase string + UserDN string `form:"user_dn"` AttributeName string AttributeSurname string AttributeMail string diff --git a/modules/auth/ldap/README.md b/modules/auth/ldap/README.md index 9a2a6aa1fa..3a3e020436 100644 --- a/modules/auth/ldap/README.md +++ b/modules/auth/ldap/README.md @@ -4,61 +4,98 @@ Gogs LDAP Authentication Module ## About This authentication module attempts to authorize and authenticate a user -against an LDAP server. Like most LDAP authentication systems, this module does -this in two steps. First, it queries the LDAP server using a Bind DN and -searches for the user that is attempting to sign in. If the user is found, the -module attempts to bind to the server using the user's supplied credentials. If -this succeeds, the user has been authenticated, and his account information is -retrieved and passed to the Gogs login infrastructure. +against an LDAP server. It provides two methods of authentication: LDAP via +BindDN, and LDAP simple authentication. + +LDAP via BindDN functions like most LDAP authentication systems. First, it +queries the LDAP server using a Bind DN and searches for the user that is +attempting to sign in. If the user is found, the module attempts to bind to the +server using the user's supplied credentials. If this succeeds, the user has +been authenticated, and his account information is retrieved and passed to the +Gogs login infrastructure. + +LDAP simple authentication does not utilize a Bind DN. Instead, it binds +directly with the LDAP server using the user's supplied credentials. If the bind +succeeds and no filter rules out the user, the user is authenticated. + +LDAP via BindDN is recommended for most users. By using a Bind DN, the server +can perform authorization by restricting which entries the Bind DN account can +read. Further, using a Bind DN with reduced permissions can reduce security risk +in the face of application bugs. ## Usage To use this module, add an LDAP authentication source via the Authentications -section in the admin panel. The fields should be set as follows: +section in the admin panel. Both the LDAP via BindDN and the simple auth LDAP +share the following fields: * Authorization Name **(required)** - * A name to assign to the new method of authorization. + * A name to assign to the new method of authorization. * Host **(required)** - * The address where the LDAP server can be reached. - * Example: mydomain.com + * The address where the LDAP server can be reached. + * Example: mydomain.com * Port **(required)** - * The port to use when connecting to the server. - * Example: 636 + * The port to use when connecting to the server. + * Example: 636 * Enable TLS Encryption (optional) - * Whether to use TLS when connecting to the LDAP server. + * Whether to use TLS when connecting to the LDAP server. -* Bind DN (optional) - * The DN to bind to the LDAP server with when searching for the user. - This may be left blank to perform an anonymous search. - * Example: cn=Search,dc=mydomain,dc=com - -* Bind Password (optional) - * The password for the Bind DN specified above, if any. - -* User Search Base **(required)** - * The LDAP base at which user accounts will be searched for. - * Example: ou=Users,dc=mydomain,dc=com - -* User Filter **(required)** - * An LDAP filter declaring how to find the user record that is attempting - to authenticate. The '%s' matching parameter will be substituted with - the user's username. - * Example: (&(objectClass=posixAccount)(uid=%s)) +* Admin Filter (optional) + * An LDAP filter specifying if a user should be given administrator + privileges. If a user accounts passes the filter, the user will be + privileged as an administrator. + * Example: (objectClass=adminAccount) * First name attribute (optional) - * The attribute of the user's LDAP record containing the user's first - name. This will be used to populate their account information. - * Example: givenName + * The attribute of the user's LDAP record containing the user's first name. + This will be used to populate their account information. + * Example: givenName -* Surname name attribute (optional) - * The attribute of the user's LDAP record containing the user's surname - This will be used to populate their account information. - * Example: sn +* Surname attribute (optional) + * The attribute of the user's LDAP record containing the user's surname This + will be used to populate their account information. + * Example: sn * E-mail attribute **(required)** - * The attribute of the user's LDAP record containing the user's email - address. This will be used to populate their account information. - * Example: mail + * The attribute of the user's LDAP record containing the user's email + address. This will be used to populate their account information. + * Example: mail + +**LDAP via BindDN** adds the following fields: + +* Bind DN (optional) + * The DN to bind to the LDAP server with when searching for the user. This + may be left blank to perform an anonymous search. + * Example: cn=Search,dc=mydomain,dc=com + +* Bind Password (optional) + * The password for the Bind DN specified above, if any. _Note: The password + is stored in plaintext at the server. As such, ensure that your Bind DN + has as few privileges as possible._ + +* User Search Base **(required)** + * The LDAP base at which user accounts will be searched for. + * Example: ou=Users,dc=mydomain,dc=com + +* User Filter **(required)** + * An LDAP filter declaring how to find the user record that is attempting to + authenticate. The '%s' matching parameter will be substituted with the + user's username. + * Example: (&(objectClass=posixAccount)(uid=%s)) + +**LDAP using simple auth** adds the following fields: + +* User DN **(required)** + * A template to use as the user's DN. The `%s` matching parameter will be + substituted with the user's username. + * Example: cn=%s,ou=Users,dc=mydomain,dc=com + * Example: uid=%s,ou=Users,dc=mydomain,dc=com + +* User Filter **(required)** + * An LDAP filter declaring when a user should be allowed to log in. The `%s` + matching parameter will be substituted with the user's username. + * Example: (&(objectClass=posixAccount)(cn=%s)) + * Example: (&(objectClass=posixAccount)(uid=%s)) diff --git a/modules/auth/ldap/ldap.go b/modules/auth/ldap/ldap.go index de1108fd98..61cfca90b5 100644 --- a/modules/auth/ldap/ldap.go +++ b/modules/auth/ldap/ldap.go @@ -22,6 +22,7 @@ type Ldapsource struct { 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 AttributeName string // First name attribute AttributeSurname string // Surname attribute AttributeMail string // E-mail attribute @@ -78,10 +79,19 @@ func (ls Ldapsource) FindUserDN(name string) (string, bool) { } // searchEntry : search an LDAP source if an entry (name, passwd) is valid and in the specific filter -func (ls Ldapsource) SearchEntry(name, passwd string) (string, string, string, bool, bool) { - userDN, found := ls.FindUserDN(name) - if !found { - return "", "", "", false, false +func (ls Ldapsource) SearchEntry(name, passwd string, directBind bool) (string, string, string, bool, bool) { + var userDN string + if directBind { + log.Trace("LDAP will bind directly via UserDN template: %s", ls.UserDN) + userDN = fmt.Sprintf(ls.UserDN, name) + } else { + log.Trace("LDAP will use BindDN.") + + var found bool + userDN, found = ls.FindUserDN(name) + if !found { + return "", "", "", false, false + } } l, err := ldapDial(ls) @@ -112,7 +122,12 @@ func (ls Ldapsource) SearchEntry(name, passwd string) (string, string, string, b log.Error(4, "LDAP Search failed unexpectedly! (%v)", err) return "", "", "", false, false } else if len(sr.Entries) < 1 { - log.Error(4, "LDAP Search failed unexpectedly! (0 entries)") + if directBind { + log.Error(4, "User filter inhibited user login.") + } else { + log.Error(4, "LDAP Search failed unexpectedly! (0 entries)") + } + return "", "", "", false, false } diff --git a/modules/bindata/bindata.go b/modules/bindata/bindata.go index 0a09cf792b..38e45cd1ee 100644 --- a/modules/bindata/bindata.go +++ b/modules/bindata/bindata.go @@ -4364,7 +4364,7 @@ func confLocaleLocale_deDeIni() (*asset, error) { return a, nil } -var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\xbd\xeb\x72\xdc\x48\xae\x27\xfe\x9d\x4f\xc1\xf6\x09\xff\xdd\x1d\x21\x97\xa3\xbb\xff\x7b\x89\x0e\xdb\xbd\xb2\xd4\xbe\xcc\xb1\x2c\x8d\xa5\x9e\xd9\x59\x87\xa3\x9a\x55\xa4\xaa\x38\xae\x22\xab\x49\x96\x65\xcd\x89\x13\xb1\xaf\xb1\xaf\xb7\x4f\xb2\xc0\x0f\x40\xde\xc8\x92\xed\x9e\x13\xbb\x5f\x24\x56\x26\xf2\x86\x44\x22\x01\x24\x12\x59\xec\x76\xf3\xb2\xea\x97\xf9\x93\xfc\x38\xdf\x15\x75\xb3\xa9\xfa\x3e\xef\xab\xcd\xf5\xc3\x75\xdb\x0f\x55\x99\xbf\xa8\x07\xfa\xdd\x7d\xac\x97\x55\x96\xad\xdb\x6d\x45\xa0\x2f\xe9\x5f\x56\x16\xfd\x7a\xd1\x16\x5d\x49\x09\xa7\xf6\x9d\x55\x9f\x76\x9b\xb6\x63\xa0\x5f\xe4\x2b\x5b\x57\x9b\x1d\x97\xa1\x7f\x59\x5f\xaf\x9a\x79\xdd\xd0\xcf\x4b\xfa\xca\x5f\x35\x59\xdf\x2e\xeb\x62\x33\x0f\x32\x90\x60\xf9\x3f\xe5\x3f\x34\x65\x7e\x39\x54\xbb\xfc\x71\xbf\x2d\x36\x9b\xa7\x45\x8f\x22\x43\x95\x17\xcb\x65\xbb\x6f\x86\xc7\x8f\x24\x43\x2a\x6f\xf7\x83\xd5\x7e\xbe\x1f\x24\x6d\xbf\xb3\xa4\x5f\x77\x59\x57\xad\x6a\x1a\x58\x47\x49\x6f\xf5\x33\xbb\xa9\x16\x7d\x3d\x70\xa7\xff\x2a\x5f\xd9\xc7\xaa\xeb\xeb\x96\xfb\xf3\x17\xf9\xca\x76\xc5\x8a\x01\x2e\xe8\x5f\x36\x54\xdb\xdd\xa6\x40\x81\x2b\xfd\xcc\x36\x45\xb3\xda\x0b\xcc\x6b\xfd\xcc\x96\x5d\x45\x59\xf3\xa6\xba\xa1\xd4\x13\xfc\xc8\xe9\xc7\x6c\x36\xcb\xf6\x84\xd3\xf9\xae\x6b\xaf\xeb\x4d\x35\x2f\x9a\x72\xbe\x15\xac\xfd\x4a\xe9\xb9\xa6\xe7\x94\x9e\x73\x3a\x86\x51\x95\x84\xa0\x79\xd1\xeb\x58\x68\x6a\x08\x5f\x45\x9f\xa1\xaa\xa6\xd8\x5a\x69\xfe\xcc\xaa\x6d\x51\x6f\x78\x12\x1e\xf2\x07\x75\xbe\xef\x6f\x5a\x4c\xd5\x85\x7e\x12\x22\xe6\xc3\xed\xae\x02\x1e\x1e\x5e\xd1\x57\xb6\x2c\x76\xc3\x72\x5d\x70\x5f\xe5\x2b\x23\xa0\x5d\x4b\x08\x69\xbb\x5b\xc0\xd9\x8f\xac\xed\x56\x45\x53\xff\xa3\x18\x04\x49\xe7\xc1\xcf\x6c\x5b\x77\x5d\xcb\xf8\x3d\xc3\x47\x46\x23\x9e\x73\x3d\x94\xf2\x86\x30\x11\xd4\xc2\x39\xdb\x7a\xd5\x09\x2a\x39\xf3\x0c\xbf\xb8\x16\xce\xbb\x6e\xbb\x0f\x9a\xf1\x9c\x3f\x93\xa2\xd4\x09\xcd\x8d\xdb\x2f\x1a\x42\xbe\xe6\x9e\xe1\x47\x04\xd0\x67\x45\xb9\x25\x54\xee\x8a\xa6\x62\x1c\x1d\xf3\x2f\xc2\x0b\xfd\xca\x94\xa6\xe6\x7d\x35\x0c\x75\xb3\x62\x64\x1f\x4b\x52\x7e\xa9\x49\x59\x90\xe7\xd2\x6e\xdb\xbd\x9b\x4e\x4a\xff\x1b\xfd\xcc\x2f\xe4\xa7\xe4\x05\x85\x90\xe9\x4a\xf2\x48\xfa\xf9\x75\x55\x95\x32\x96\x3e\x7f\x4e\xdf\xd9\x6e\xbf\xd9\x10\xd6\x7e\xdf\x57\xfd\xc0\x85\x2e\xe8\x37\x8d\x5f\x7e\x67\x75\xdf\xd3\x07\x25\xbf\xc2\x47\x46\x53\xd7\x2c\x31\x98\x13\x7c\x64\xd9\xbb\xbe\x2a\xba\xe5\xfa\x7d\x26\xff\xd1\x57\xfe\x60\xda\x3b\x34\xa9\x4c\x48\x4a\x44\xd2\x82\x35\x90\x2d\xdb\x92\x7f\x9c\xd0\x3f\xaa\xba\x6e\xfa\x81\x56\xdc\xfb\x4c\x3f\x18\x4c\xbe\x64\x02\x86\x7a\x00\x16\x34\x11\xcb\xb7\xe7\x19\xcc\x9f\xd7\x5d\x3f\x3c\x1c\x6a\x22\xd6\xb7\xfb\x26\xe3\xf1\xd1\x6a\x9b\x97\x0b\x63\x42\x2f\x5a\x42\x11\x92\x3b\x1a\xdf\xd9\xed\xe5\x9f\x5f\x1f\xe5\x17\xc4\x89\x56\x5d\x45\xdf\x39\xd5\x41\xff\xa8\xcc\x8f\xb3\x8c\x4a\x59\x4b\xa7\xc5\x50\x2c\x8a\xbe\xf2\x68\xe5\x4c\xa1\x6e\x97\x07\x1a\x67\xae\x06\x0e\xd6\x0f\xd1\x78\xa7\x56\x08\xd5\xa1\xeb\xca\xd5\xf1\x86\x17\x17\xa5\x33\x53\x43\xe1\x8b\x4d\xc5\xe9\x54\x55\xfe\xea\xcd\x9b\xf3\xd3\x67\x79\xd5\xac\xea\xa6\xca\x6f\xea\x61\x9d\xef\x87\xeb\xff\x3a\x5f\x55\x4d\xd5\x11\x8f\x5b\xd6\x39\xad\xa9\x8e\x28\x21\x27\xc2\x96\xc1\xcd\xb2\xbe\xdf\xd0\xda\x07\x7a\x2f\x2f\x5f\xe7\x67\x8c\xe2\x5d\x31\xac\xd1\x91\x61\x9d\xf5\xbf\x6f\x18\x45\xae\xc1\xab\x75\x95\x83\xca\x00\xd4\x5e\x1b\x3e\xf2\x52\xfb\x38\xcb\xaa\xae\x9b\x13\x5b\x1a\x6e\xe7\x5a\x58\xeb\x4b\x21\xa5\x0a\x22\x9d\xa6\x1d\xf2\x45\x95\xa3\xcc\x2c\xcb\xac\xc3\x86\xdd\xe3\xdd\x6e\x53\x2f\x65\xad\xbf\x90\x3c\x8f\x68\xde\x41\x14\x4b\x21\x1c\x10\x65\x79\x01\xba\x88\x3d\xf3\x7a\xc8\x23\x06\x82\xf2\xeb\x8a\x18\xe0\x7a\xbf\x12\xb6\xb7\x69\xf7\xe5\x37\xa0\x54\xeb\xbd\x27\xd4\xfc\x6d\x4b\x1d\x06\x76\x1c\x80\x6f\xe2\x98\x28\x8e\x37\xad\xae\xda\xb6\xc4\x57\x1c\xb1\xd7\x44\x50\x37\x35\x65\xd2\x48\xfb\xe2\x23\xad\xb7\xa1\xcd\x87\x75\xdd\xe7\x25\x11\xdb\x92\x2b\xa6\xa5\xb1\xa7\xed\x42\xc8\x82\x08\x54\x48\xc3\xd2\xe2\x39\x00\xd4\x76\x4f\xd4\xb4\xa6\xca\x78\x33\xe2\x9d\x93\xaa\x9c\xea\x27\x86\x44\xf5\x80\xbe\x89\x72\x5b\xe2\xca\xcc\x37\x4f\xf1\xa1\xbf\xc3\xfa\xa9\x57\xc5\xf5\x35\xf5\xaa\x27\xaa\x78\x99\x2f\x37\x2d\x91\xd4\xaf\x6f\x5f\xf7\x4c\x30\xeb\xf9\xae\xed\xb0\xcd\x51\xd6\x05\x7d\xba\xb4\x00\xd1\x0c\xd1\xec\xb7\x0b\xfa\x75\xb3\xae\x89\x03\x00\xed\x5c\x82\x77\x73\x4a\xa5\x26\xf6\x3d\x4d\xe1\x51\x4e\x24\x4c\x23\x20\x94\x81\x00\x78\x0c\x65\xdd\x17\x0b\x9a\x7b\x06\xbf\xa6\x6d\x6b\xdf\x11\x59\xad\x87\x61\x67\x2d\xbf\xbc\xba\xba\x90\xa6\x5d\xea\x5d\x6d\x17\x01\x65\x60\x0e\x36\xbc\xf1\x36\x79\xdb\xcc\x40\x24\xfb\x6e\x93\xd0\x0f\x8d\xd5\x72\x0e\xe0\x85\xbb\xf0\x88\xff\x5c\x7a\xf4\x00\xcf\x3d\x49\x27\x37\xa0\x26\xc2\x71\x85\x0d\x90\x88\xba\xdd\x71\xbd\x01\x55\x9f\x6b\x82\x27\x65\x6c\x9a\x2e\x5f\xb6\x4e\xca\x85\xec\x13\xb0\xff\x2d\x0d\x58\xd9\xc8\xe5\x19\xa1\x01\xbc\x04\xa9\xd7\x5d\xbb\xa5\xd4\xe7\xf4\xcf\x27\xf8\xee\x9f\x71\x7d\x80\x29\xca\x92\xf8\x5b\x7f\x94\xbf\x7d\x7e\x92\xff\xa7\x1f\x7f\xf8\x61\x96\xbf\x1a\x78\x25\x32\x71\xfe\x9d\x89\x8a\x3e\x65\x0f\x77\xa0\xc4\x32\x06\xa2\xbb\x7b\xbc\xb2\xee\xe5\x8f\x91\xfb\xdf\xaa\x4f\x05\xc9\x1f\xd5\x6c\xd9\x6e\x9f\x32\x57\xd9\x16\xc3\x2c\xe3\x1c\x22\x57\xa5\xe3\xcb\xaa\x29\xe9\x43\x25\x01\xcd\x0b\xd8\x9d\xe6\x07\x72\x81\x48\x45\xf3\x65\xdb\x5c\xd7\x1d\x0f\xe8\x97\x06\xd4\x60\xf2\x12\xed\x03\xc8\xb1\xed\x96\x90\x46\x1c\xa4\xbe\xbe\xf5\xa0\x18\xea\x1b\x4e\xd4\x09\xcd\x84\xea\xe6\x2a\x4a\x3a\x2c\x5f\x0a\x31\xf2\xbc\x9d\xd3\xf0\x3a\xc3\x77\xef\x11\xde\x5e\x5f\x6f\x88\xa3\x1a\x97\xd4\x16\xce\x25\x55\x18\x66\x08\x42\xc4\xb8\x83\xc4\x77\xaa\x44\x7c\x72\xfa\x26\xaf\x3e\x12\xb5\x11\x39\xd0\x16\x5d\xee\x97\xa0\x30\x86\x3d\xca\x79\x7f\x22\xfc\xd2\xda\x58\x0a\x5f\x0d\x98\x04\x77\x8d\x39\xd1\x92\x80\x88\x37\xe8\xa2\x98\x93\x84\xf2\x91\x38\x68\x17\x34\xf1\xc2\x92\xb4\xf7\x23\xd8\x51\xa7\x5c\x09\x1e\xf9\x92\x66\x9c\xa8\x42\x7a\xd1\x4b\xa7\x24\x9b\xc8\x9d\xe8\x78\x4f\x92\x74\x51\x52\x5f\x16\xb7\xe0\x3b\x3d\x13\x43\x59\x5d\x17\xfb\xcd\xe0\xfb\x25\x13\xd7\x99\x4c\x66\x2d\x5d\xb2\x30\x1f\xe6\x4d\x16\x18\x75\x10\xd4\xd3\xa7\x65\x89\x0c\x9b\xcd\x6d\x0e\x01\x0a\xf4\x2a\x22\xae\xc9\xe2\xfd\x2c\xd3\xcd\xdb\x24\xfa\xf9\xc7\x1a\xd2\xaf\x23\x21\xe4\x9a\x78\xcf\xbc\xe6\x2f\x0c\xc0\x62\x75\x3f\x59\xd6\x75\xec\x9c\x1b\xee\x9d\xe4\x2b\x78\xe0\x2e\xa0\x05\x16\xcf\x09\x73\x1f\x6b\xb0\x5e\x9d\x44\xf4\x95\x66\x12\x4d\x53\x53\x7d\x55\xa1\x06\x2a\xff\x88\xea\x44\x99\x99\x4a\x83\x2a\xa0\x99\x20\x42\x42\x5a\x5e\xb6\x39\xef\x8c\xe0\xef\x54\xda\x86\xda\xe8\xf0\x75\xcc\x79\x57\xaf\xd6\xc4\xef\xda\x9b\x23\x41\xda\xcd\xba\xad\x98\xa6\x5f\x9d\x3e\xf9\x5e\xfa\xb1\x62\x6e\xef\x0a\xf1\x3e\x51\xec\x69\xc2\x09\xa3\x4a\x5a\xd2\x05\xb7\xdf\x02\x72\x24\x77\x0a\x50\x2a\xe9\x9b\x2c\x3b\x16\x5f\x74\xfd\x86\x79\xba\x70\x3d\x8c\x94\x4e\xb4\x05\x15\xeb\xe6\xab\x16\xf2\xaa\x89\x71\xbc\x77\x91\xea\xd3\x0f\xf3\x55\x3d\xcc\xaf\x99\x91\x70\x9d\xcf\xb9\x2c\x6f\xa5\x94\x93\x3f\xa0\xac\x07\x39\x71\x23\x12\xc2\xcb\x9f\xf2\xfb\x1f\x55\x7e\xf9\x91\x39\xc4\x9c\x68\xba\xde\x60\x32\x54\x0a\xee\x2a\x11\x9f\x4c\xdd\x2a\x5b\x5a\x7f\x8c\xf3\x7e\xbf\xc3\x4e\xa3\x22\xcb\x51\xbe\x13\xc0\xb2\xbd\x69\x78\x2d\x80\x15\xd2\xaa\xaf\xa1\x2c\x2e\xea\xa6\xa0\xed\xd6\x6a\x01\x8b\xbd\x4f\xd4\xf0\xe6\xfc\x0a\x80\xab\x76\xb1\xaf\x37\xa5\x01\xcc\x68\x84\x1f\x8b\x4d\x5d\xb2\xe0\xa9\xf3\x1e\x0a\x79\x96\x54\x4b\x5f\x96\x6d\xc7\xf2\x01\x46\x63\x05\x0f\x08\x26\x1d\x6f\xf8\x48\xa6\xb2\x0a\x8b\x72\x4e\x86\x60\x34\xd0\xc4\x43\x22\x67\x09\x03\x14\x53\xf7\xcd\x83\x01\x3d\x5d\xee\xa9\x2d\x9a\x74\x4e\xa6\x82\x7d\xfe\xf0\x29\xfd\xcd\x58\x5e\x11\x7e\xbc\x1a\x23\x9e\x33\x73\xc9\xdc\xcb\x2a\x8d\xba\x1a\x91\xb7\xa3\x2e\x23\xde\x60\xac\x61\x7f\x8d\x04\xfa\xbd\xd0\x2b\x6b\xc6\x1b\x9a\xd6\xea\x1b\xfa\x78\x40\x0b\x78\xb5\xc1\x24\x14\x10\xe7\x48\xae\x6d\x09\x6f\x4c\x20\x47\xb2\x5c\xae\x69\x68\xcc\xd9\x86\xe2\x03\xf5\xad\x60\xf1\x21\x7b\xc7\xd6\x83\xf7\xd9\x5e\x24\xc2\x76\x53\x3a\xe9\x1b\x34\xdd\x76\xa9\xb6\xea\x81\x1c\xbd\xf6\x24\x56\x2f\xd7\x73\x67\x7b\x60\xa4\x0c\xd5\x27\xec\xc5\xc8\xf2\xa6\x08\x26\x76\xce\xca\xb6\xb7\x98\x2e\x1e\xc4\xd9\xad\x9f\x2d\x92\x07\x69\x89\x90\xce\xb2\x68\x19\x6b\x1f\x2b\x07\x75\x12\xa6\xc6\x05\xa8\x2e\x92\x5c\xb5\xaa\x58\xa9\xa4\x2c\xd1\x7c\x35\x57\xb4\xdf\x3e\x03\x13\x53\xc3\x09\x78\x1d\xcd\xa7\x2a\x70\x33\x9a\x18\x68\x87\xd6\x32\x71\xc4\x5b\x59\x17\x41\x9b\xd9\x3b\x35\xaa\xbc\xcf\x0c\xee\x6d\x9c\x4f\xdc\x84\x34\x3d\x6f\x6d\x98\xdb\xec\x3a\xab\x03\x2b\xc9\xca\x50\xfc\x06\xbf\xae\x76\x2c\x0b\x6c\x7b\x90\xc5\x86\x20\xcb\x5b\x95\x66\x1d\x81\xfc\x2c\xac\x9a\x28\x86\x18\xdc\x37\x66\xae\xf9\xca\x2a\x9e\xd5\x44\x0a\x28\x1f\x6f\x3d\x62\x02\x21\xa1\x13\x76\x9f\xae\xbb\x3d\xca\xa3\x4d\x6c\x5d\xf4\xc4\xbe\x69\xe7\xd6\x62\xe5\xcc\xf4\x2d\x9e\xf6\x62\x29\x6b\x06\xa6\x1b\x50\xb9\x94\x6c\xbb\x74\x4f\xe4\x1e\x0a\x87\xd3\x56\x9c\x24\x03\x39\x25\x14\x67\x26\xda\x24\x84\x6d\x2b\x16\x66\xe7\x5b\xb1\x96\xc8\xaf\xfc\xac\xca\x48\xe2\x5a\xd1\x82\x36\x82\x7d\xc2\x4a\xee\x0a\x32\xbf\xd2\x2b\x03\x54\x43\xc8\x82\x15\xc2\x52\x7e\x36\x13\x15\x71\x86\x1b\x58\x00\x68\x6d\x8f\xd0\x4f\x9b\x15\x65\xcf\x8c\xa5\xcb\x8e\x0d\xc1\xab\x27\x6e\xe1\x91\x78\xcc\xe6\xa5\x3c\x84\x52\x01\xd8\x0f\x8b\x0b\x30\xd7\x78\xbc\x78\x7a\xbf\x7f\xfc\x68\xf1\xd4\xf1\xd6\xe5\xba\x5a\x7e\x10\xfa\xab\x9b\x45\xfb\x09\x2a\x2c\x4d\x3c\xe3\xb8\xe1\x35\x76\xbf\xcc\xd7\x94\x0b\x2d\x87\x78\x01\x15\x23\xc4\x73\x6e\x34\x69\xd4\x19\x66\x19\x33\x33\xf6\xb9\xdd\xc5\x08\x89\x4a\xa3\x11\xe9\x59\x46\xd3\xc8\x8b\x0f\xeb\xc0\xd3\xed\x31\xa7\x32\xe5\x62\x9f\xf0\xa4\x8b\xf1\x6e\xea\x6d\x3d\x8c\x48\x87\x19\x51\xa1\x24\xa8\x96\x13\xc3\x25\xea\x02\x36\xd0\x17\x62\xe7\x54\x0d\x6d\xbc\x46\x4e\x37\x05\x69\x3f\x3f\xe6\x44\x42\x7b\xda\xc6\x78\x4c\xd4\x4d\xe2\xe7\x05\xef\xdc\xa4\xf9\x14\xfd\x7c\xdf\x28\x5a\xab\xd2\x88\xe9\x65\x8d\x5d\x86\xdb\x35\x92\x0f\xa0\x0c\xf3\x2a\xc0\xe7\xdf\x3a\x8c\x7f\x47\xd2\xfe\xb5\x2b\xc6\xac\x9f\x3b\x54\xb3\xb0\x59\x4c\x4e\x1e\xb1\xc6\xa6\x12\x85\x15\x18\x60\x38\x9e\x68\xd2\x7a\xfc\xec\x91\xea\xf4\x81\x52\x30\x21\x8b\xfd\x30\xb4\xac\x4c\x6c\x98\x6a\xa4\x8c\xf5\xfa\x04\x80\xd0\x8f\x7c\x7d\x98\x90\x10\x4f\x32\x37\x95\x09\xf7\x73\x6f\x76\x55\x35\x2c\x19\x9d\xee\x95\x0e\xac\x14\x03\x48\xd1\xdc\x1a\x29\x13\x41\x70\x2f\xb8\xc1\x61\xba\x2f\xdf\x76\xd5\x77\xbe\x37\x6e\xcd\xa0\x84\xf5\x48\x8a\x07\xeb\xe9\x2d\x72\xc5\xe0\x66\xab\xce\xb6\x3e\x35\x5b\x79\xfa\xe8\x62\xf4\x22\x9f\x57\x06\x31\x58\x92\x3b\x4b\x20\x9a\x46\x81\xd2\xb3\xa4\x2d\xaf\xc7\x8d\x31\x38\xc4\x5d\xf6\x3b\xd8\xd0\xb6\xf3\x7e\x2d\x3a\xb3\x75\x8f\xf4\xed\x66\x15\x19\x5e\x60\x74\x07\xd1\xfd\x67\xde\x27\x49\x33\x29\x36\xef\xb3\x5b\x58\xf8\xfe\x46\x1c\xbe\x81\xed\xb4\xcd\x28\x43\xb4\xac\x33\x7c\x10\x28\xab\x7c\xef\x33\xde\x43\xdf\x24\x72\x21\x6f\x11\x9a\x16\x08\x28\xc8\xfa\x25\x12\xf7\x6c\x0a\xb3\x8b\x09\x19\xf2\x6d\xe5\x6d\xc4\xf8\x72\x43\xbc\xbc\x7c\x79\x65\x3a\xdc\xe5\xcb\xfc\x43\xa5\x95\xbf\x1c\x86\x5d\xff\x2b\xf4\x79\x51\xce\x59\x93\xbf\x28\x6e\x59\x6a\x93\x64\xfd\x81\x8c\xab\xaa\xd8\x6a\x2f\xf9\x53\xaa\x38\xa6\xed\x4c\x13\xf9\x93\x76\xb9\xc0\x4e\x94\x41\x7e\xb1\x21\x88\x30\xa3\x72\x83\xd3\x1f\x2a\x35\x40\xff\x36\x32\x6e\xfd\x96\x15\x9b\xdd\xba\x80\x00\x11\x80\xc1\x8e\x43\x40\x98\xf8\x1c\x20\xa0\x85\xfd\xb6\xea\xea\x25\xb4\x2d\x2a\xf0\xed\xc3\xf9\x77\x30\xe1\xd1\x42\x21\x49\x32\xae\xac\xa4\x45\xf2\x87\x2a\xe4\x6f\x96\x32\xc3\x7a\xfb\xfa\x1f\x36\x8a\xa8\x3a\x4e\x27\x9e\x43\x10\x90\xe9\x3c\x94\x03\xc2\xc6\xc8\xf2\xdd\xc0\x66\x1d\x4a\x20\x19\x32\xaa\x7a\x5b\x7c\xfa\x5c\xc1\x6d\x3b\x51\x4e\x58\x81\x2f\x64\x0b\x5e\x87\x18\xb3\x03\x82\x67\xc3\xcd\x41\x68\x9a\x7a\x06\x69\x3e\xd0\xae\xd6\x38\xb0\x5f\xe5\x77\x8e\xdf\x3f\xd9\x71\x04\x6d\x21\x2a\x81\xe7\xee\x60\x82\x36\xe7\x92\xf9\x26\x24\xe9\x99\x5f\x6e\xa1\x74\xed\xc8\x19\x1a\xb6\x2a\x3e\x8e\x71\xb0\x5a\x0d\x45\x83\x48\x6a\xe6\xcf\x50\xe6\xbc\x47\xce\x59\x6a\x6d\x42\xd9\xd4\xed\x9e\xb6\xbf\x00\x42\x2c\xe9\xf3\x71\xb9\x64\xc1\x1d\x2c\x4e\xa2\xc0\x44\xe9\xf3\xb1\x69\xf4\x40\xf9\x81\x96\xcc\x44\x05\x6e\x25\x1d\x2c\x28\x93\x89\x42\x34\xf2\x72\xc4\x0b\xc6\x05\x19\x8c\xf4\xa6\xcd\xa6\x5a\xb1\x0d\xcd\x1a\x8e\x5a\x53\x12\xa2\xcd\x40\xc0\x42\x02\xf2\x18\x76\x93\x15\xce\x6b\xa8\x05\xb8\x39\x8a\xf5\x2f\xea\x35\xc9\xf3\xf4\xc9\x25\x03\x2d\x4c\xbb\xa1\x3b\xf9\x96\x15\x8e\x7e\xcf\xac\x99\x95\x13\x91\x4e\xe2\xd9\xe0\x8d\x17\x55\x55\x68\xe2\x70\xf5\x44\x8b\xac\xb1\x7d\xae\x7e\x80\x7d\x65\xd5\xa1\xbe\x3e\xae\x58\x2b\x77\x40\x87\xaa\x75\x1a\x65\xf5\xa9\x86\x3d\xf2\x45\xcd\x76\x2e\xe8\x94\x4e\x95\x46\xde\x2c\xdb\x10\x33\x60\xdd\x45\x46\x25\x72\x6c\xfb\x91\x55\x3f\x6e\x8f\x73\xa5\x9c\xd8\x27\x75\x50\x3c\xcf\xaa\x9d\x92\x36\xd8\xde\x54\xe5\x11\x6d\xf1\x5c\x82\xfa\x09\xb6\x51\x6c\x6e\x8a\xdb\x1e\x46\x16\xe3\x38\x6c\x8b\x95\xe2\xcc\x4e\x48\x00\x58\xa1\x57\xa1\xc5\x9f\x56\x9c\x61\x82\x4d\xd7\xbc\x79\xb8\x6d\xfa\x06\xfa\x25\xb8\x85\x9a\x6d\x48\x6d\xe7\x6d\xcf\x19\xb0\x09\x9c\x75\x63\xd6\x24\x59\xc6\x97\xec\xa0\x22\x1c\x22\x29\xe7\x9f\x28\x7b\xc4\xe2\x11\x35\xc3\xc2\x0a\xf1\x63\xc1\x35\xc9\x7f\x84\x59\x74\x29\x30\x36\xec\xa9\xfe\x87\x22\x17\xd7\x84\x43\xd6\xb3\xbc\xfe\xcd\x7b\x13\xcd\x8a\x59\xac\x25\x1d\xda\x73\xd6\x0f\xb4\x04\x18\xd3\x76\xf0\xf9\x37\x91\xaf\x54\xe7\xe6\x5c\x2c\x31\xa0\xa9\x5f\xd7\xbb\xbc\x85\x15\x34\x44\xa1\x27\xdb\x40\xc4\x64\xdb\x7c\x05\xb9\x9b\xcd\xc1\x5d\xd1\xf4\xd7\x15\xec\xc2\xdb\xfc\x9a\xcf\xd6\x66\xda\x34\x4b\xac\x72\x00\x7a\xa0\x65\xd1\x61\xd0\x74\xb8\x5b\x60\xee\x82\x89\x8a\x9b\x96\x83\x02\xd8\x1e\xd1\x07\x60\xd5\xd7\xd4\x5b\x1f\x98\xcc\x46\x28\x80\xd4\x18\x1d\xfb\x58\x6f\x3e\x56\x21\x22\xae\xff\xe8\xc8\x03\xac\xab\xe9\x5b\xce\x0b\xe2\x69\x92\x46\x61\xee\xc0\xa9\xdd\xe2\x36\x1e\x3d\x17\x75\x14\xc0\x67\x48\x1f\x2b\x6d\x85\x17\x06\xaf\x95\xa4\x42\x98\x39\xbc\xae\x90\x0d\x05\x54\xbe\x05\x75\x71\xb9\x8e\x56\xe7\x15\x72\x72\xc9\x19\x2d\xd0\xec\x1d\x37\x4d\x6a\xfc\xba\x68\x56\xd5\xdc\xd9\x98\x4f\xf0\x5b\x25\x74\xb5\x19\x0f\xb9\x19\x96\xd9\xf2\x6f\x45\xc4\x8c\x7c\x67\xc9\xba\x31\x8b\x4f\x9f\xfd\xbd\x25\x19\x02\xa6\xe2\x3f\xd1\x17\x4b\xbf\x4d\x16\x9d\x96\x25\x76\x06\xa8\x07\xf5\x70\x8b\x63\xbc\x05\xc9\xc0\xa2\xa4\x51\x0a\xa9\xb9\xe0\x0e\x30\x7d\x3c\xb7\x6f\x9a\x8f\x82\x99\x1e\x2f\x6d\xf9\x52\x38\xb1\x43\x3d\xb7\xef\x8c\xb5\xe4\xed\x0c\x9b\x03\x0b\xd3\xb0\xba\x07\x5b\xc2\x83\xfb\xfd\x03\x9e\x30\xcb\x9b\x05\xf0\xbb\x62\x20\xb6\xd8\x88\x8a\x22\x1c\x2a\x2c\xaa\xd9\xae\x0a\x70\x15\x01\x9b\xe1\x8c\x5c\x50\xf1\x3e\xf3\x47\xf7\x76\x6a\x3f\x65\x51\x55\x16\xd3\xab\xcc\xfb\xaf\xf4\xa9\x16\x91\xdc\x39\xae\xa8\xaa\x8a\x83\x51\x3b\xcd\xea\xe3\xc3\xad\x3e\x53\x1b\x52\x6c\x40\x52\xf2\x7e\x92\x9f\xca\x87\x29\xbd\xfb\x1a\x63\xaa\xcb\x2c\xdb\x01\xef\x81\xa3\x81\x4e\x84\xeb\xb4\x3a\x94\x78\x23\x76\x97\xee\xec\x84\x05\xa9\x05\x84\x6b\x67\x1d\x90\x02\xf8\x54\x3a\x50\xd8\xd8\x3a\x0b\x4d\xae\x09\xce\x71\xf8\x74\x82\xf5\x4f\x02\xbb\xa9\x16\x39\xdb\x4b\x89\x70\x48\x2f\xd2\x81\x6e\x0b\x52\xa9\x3e\xd6\x85\xb3\xcc\xd0\x6c\xb1\x2b\x83\xee\xa2\xcf\xd9\x8d\x01\x67\xc3\x63\x9f\x1b\x3e\x68\xd1\xb3\x8b\xd7\xfa\x99\xed\x77\x25\xdb\xb4\xfc\x80\x7f\x45\x82\x1b\x70\x9c\x1f\x98\x2b\x31\x74\x2b\xe6\xa4\x19\x01\x2f\x73\x85\xe3\x9e\xdd\xce\x6c\xf9\x4c\xf8\xd1\xe8\x12\x2a\x53\x10\x6f\x7b\x00\x8b\x91\x5c\x41\xa6\x1c\x4f\x62\xf8\xb4\x33\xe6\xeb\xf6\x26\xdf\xd4\xcd\x87\x5e\xb1\xe9\xac\x1f\x4e\x2b\x66\xa9\xa9\x6e\xf6\xe2\x5f\x21\x9f\x63\x77\x8e\x4a\xb6\xba\x74\x85\xeb\xa9\xca\x89\x9c\x1f\x1d\x23\x79\x12\xd6\x2b\xaf\x5a\x04\x07\xdf\xc1\x49\xef\x75\xc5\x52\x33\x78\x9c\x1d\x4d\xd1\xa0\xdb\xb6\x57\x83\xa2\xe7\x29\x9c\x06\xeb\x83\x42\xe9\x14\x38\x08\x9d\xa1\x63\x3b\x10\xc3\x12\xcb\xec\x08\xcb\xfa\x83\x05\x3b\xaf\xb7\xe2\x31\xf5\xab\x1d\x70\x61\xba\x9c\xb2\x80\xec\x19\xa9\xbf\xc9\x60\xc2\x73\x84\x37\xad\x1d\x9f\x19\x73\xb4\xcc\x23\x93\x01\x04\x21\xd8\xc1\xa3\xce\xa6\xe4\xa2\x15\x98\x49\xfc\x33\x54\x63\x34\x11\x1e\xaf\x08\x1d\x38\x7e\xd1\x6e\x22\x49\xef\x44\x8d\xfb\x2e\x9f\x31\x1b\xe4\xbf\xc1\x41\x98\x3b\x86\x65\x7d\x7b\x9e\x80\xa8\x3e\x1e\x41\x4e\x0a\xd4\xd6\xd6\x41\x61\x3a\xe9\xfd\x68\xe9\x58\xb9\x1b\xc2\x42\x38\x70\x25\xf6\x72\x86\x23\x32\x3e\x7f\x63\xc3\x25\x4e\xd5\xe0\x4e\x20\x94\xd5\xe0\x48\x4e\xaa\x20\x54\x41\xdf\xe8\xbd\x9a\x71\x2c\xcc\x88\x0d\xea\xe2\xac\xe5\x00\xd4\x5f\x2b\x56\x27\x2b\x3b\x9b\x0f\xf9\xda\xae\x23\xf2\xa0\x7d\x37\x31\x44\x8d\x38\x5a\xc4\xbd\xc0\xbc\x5a\x1c\x34\x7b\xa6\x45\x0a\xa4\xd6\xc5\xec\x1f\x5f\x96\xe2\x8d\x97\x15\x1b\xb7\xac\x51\xe5\xd5\x2e\x57\x38\xb6\xeb\x24\xfd\x10\x3e\xa6\xc3\x3d\xd5\x94\x04\xc0\x86\xa3\xfc\x7e\x98\x30\xab\x61\x34\x2a\x85\x18\x3b\xae\x1b\x39\xe8\x77\x47\x5d\x11\x3f\xc9\x4f\xc1\x60\x68\xde\xc4\xce\x6b\xec\xe5\xe7\xb4\x71\x3f\xe1\xbf\x24\x26\x62\x19\x5c\x4c\xef\xdf\x64\xd4\x25\x50\x63\xe5\x4c\x2f\x25\xa6\x39\xee\x31\xc0\x42\x10\xb3\xf2\x5a\xf2\x3c\xb2\x61\xc3\x1a\xfd\xff\xcc\x6e\x1d\x35\xe8\xec\xd6\xbe\xab\xc9\x9a\xe0\x3e\x26\xbb\xe9\x68\x75\x50\x06\x64\x0b\xa5\xeb\x40\x62\x50\xca\x76\x82\x03\x37\x23\xfa\x0a\xa3\x89\x92\x20\x5e\x28\x49\x60\x5b\x61\xe1\x15\x9e\x32\x70\xf3\x12\xe5\xa5\x1f\x99\x58\xe3\xd9\x3f\x86\x76\x46\x58\x11\x58\x96\x75\x78\xb3\x16\xc9\x56\xb5\xbd\x2d\x23\x42\xce\xa4\x9d\xd7\xd2\xe8\xd8\xe9\x48\x55\xa2\x75\xbd\x5a\xd3\xb8\xea\x2d\x9f\xc7\x82\xa6\xec\xd0\xcf\x6b\xac\xfc\x8b\xb8\x4a\xbb\x6a\xd8\x3e\xc5\x2d\x88\x9b\x92\xdb\x74\x1e\xf7\x43\xd7\x36\xab\xa7\xa7\x2d\xab\x92\x6c\xe5\xe1\x8d\xf1\xe7\xc7\x8f\x34\x9d\x38\x27\xcf\x21\x3b\xef\xbe\xa8\x87\x97\xfb\xc5\x83\x3e\x5f\x91\xdc\x83\xed\xf2\x71\x91\xaf\xbb\xea\xfa\xc9\xbd\xfb\xfd\xbd\xa7\x7a\x08\x2f\x3e\x64\x37\x8d\x43\xcb\xe3\x47\xc5\x53\xd6\x0c\xfa\x76\x43\x4b\x25\x2e\xd2\x6e\xb7\x32\xbf\xb4\x0b\x6c\x05\x12\xfd\xc7\xb9\x7d\xd5\x00\x73\xd4\x4d\xc1\x0f\x55\x38\x73\xb4\xee\xe7\x47\xa7\xcd\x44\xc0\xc8\x76\xa2\x42\x18\x03\xe3\x38\xb2\x19\x82\xbd\x83\xed\x26\xb9\x2b\x06\xe1\x61\x5c\x0c\x13\xc9\xa6\x28\x6f\xb6\x31\xc3\x0b\xb4\x03\xd4\x61\xe5\xa9\x28\xf5\x44\xa4\x28\x4e\xb3\x36\x45\x7e\xa0\x2f\x23\xad\x80\x7e\x79\xc3\x30\x33\x2d\x84\x61\x6f\xe0\x61\x82\x4d\x96\xba\x72\x37\x19\xbd\xf2\x36\x1b\x41\xc0\xdd\x14\x27\x9e\xbd\xa5\x30\x53\x0c\xce\x7a\x11\x72\x36\x71\xc2\x11\xee\x26\x24\x49\xda\x07\xf3\xee\x2f\xe4\x6c\xa3\x76\xfd\xc0\xad\xb9\x2f\x60\x6e\x18\xd3\x31\xd0\x41\x63\x81\xbd\x44\x67\xea\xb5\x5a\x47\x90\x41\xd2\x48\xa0\x09\xbd\x69\xf5\x34\x29\xb7\x44\xcc\x09\xa9\x3e\x43\x15\x2d\x66\xee\x04\x5c\xee\xc4\x7d\x05\x06\x97\xff\x92\x97\x05\x71\x82\xa1\xfd\x40\xc4\x34\x2e\x82\xf4\x43\x85\x1c\x87\x31\xfd\x43\xf9\xcb\xb1\x67\x0f\xa9\x46\xa2\x87\xb7\x07\x59\x4c\xc0\x59\xb4\x56\xe7\xd6\x23\xd6\xa2\x0a\x72\xff\xa2\x6e\x4a\xe1\x24\xca\x08\xd4\x4f\xc6\x71\x00\x12\xb3\x1a\x06\x82\x49\x97\x3f\xf4\x77\x38\x2d\x51\xfd\xc1\x72\x21\x06\xbe\x6f\x02\x06\x2a\xe4\x30\x17\x54\xb8\x41\x5e\x90\x7a\x09\xdf\xbd\x63\xa9\xf0\x8a\xb3\x7b\x75\x5c\xd5\x33\x70\x2b\xf2\x42\x13\xb1\x06\x00\x28\x08\xef\x1d\x22\xf0\xcb\x5b\x1a\xac\x16\xf5\x6f\x50\xaf\x3c\xcc\x01\x51\x9d\xb1\xcc\xb5\xf8\x3b\xe4\xc7\x17\xaf\x68\xcf\x70\x0d\x5a\xa5\xbf\x14\x24\x4e\x4b\x17\x6e\x9c\x95\x83\x89\x2d\xe5\xb9\x4e\x0f\x90\xe2\x66\x54\x45\x49\x2c\x71\x37\xa8\xd1\x80\x64\x30\x71\xbe\xe0\xb8\xea\x03\xcb\x8f\xb4\x86\x9e\xa4\xbb\x95\x1b\xea\x37\x84\x59\x67\x7f\xe4\xa5\xb5\xbb\x65\xfe\x1f\xb8\x36\x15\x82\xa1\x1b\x70\xf0\xc4\xa7\x8a\x20\x61\xfd\xc8\x79\x09\x77\x8e\x7f\x58\x87\x95\x83\x84\x53\x19\xb2\x91\xc9\xc9\xf4\x4c\x65\xb2\xd8\x14\x67\xd9\x59\x3d\xf1\x98\x3f\xc7\x67\x98\xf0\xbd\x6e\x7e\x07\x97\x09\x47\x15\x90\xf2\xc5\x64\xb3\x8e\xa2\xa5\xe9\x84\xdf\xe4\xb2\x11\x8a\x77\x00\xb7\x22\x2a\x86\x52\x44\xe0\x06\x4b\xb5\xdc\x54\x1b\xf6\x5f\xd5\xd6\xfd\x09\xb9\x0e\x3d\x3a\x1f\x57\xa0\x40\x3b\xad\xbc\x9c\x2b\xa8\x08\x4d\x77\x56\x19\x41\xd0\x72\xc3\x91\xb8\xa8\xf7\xb6\x5f\x9f\x1c\xbf\x79\x73\x7e\xe5\xb7\x69\x5e\x07\x4d\x49\xc2\xc4\x37\xce\xbb\x6c\xd4\x2f\xf3\x31\x73\x13\x18\x43\x78\x2f\x37\x2d\x71\x08\x2e\x64\x53\x56\x3b\x7d\xae\x5a\xf0\x9e\x96\xfb\x62\xbc\x3c\xea\x7f\x79\x68\xfe\xb2\x77\x2c\xdf\xbc\xcf\xcc\x00\x7e\xce\xff\xb3\xf0\x0c\x21\x38\xb7\xc1\xd2\xf3\xc7\x3b\xde\xbb\x9c\x3a\xd0\x96\xa3\x33\x05\x30\xe9\x7d\x01\xfd\x88\x70\xdf\x62\xaf\xb8\xce\x71\xf4\x7b\xc4\x26\xd2\xb6\xc3\x82\x61\xe4\xee\x9b\xfa\xf7\x3d\x04\x34\xd6\x8e\x88\x79\xb0\xd3\xe2\xa2\xde\xc8\x86\xf2\x17\xf7\x43\xd2\xf9\x2b\xf1\x80\x0e\x1a\xa7\x5f\x8f\xfb\x1d\xfb\x61\xd2\xde\xd0\x3f\xb9\xb7\xaf\x73\xb6\xb8\xb1\xdf\xd3\xbd\xa7\xa4\xcb\xb0\x0b\x05\x4d\x1f\x41\x3c\x0d\xaa\xe3\x7b\x35\xbe\xce\x6f\x55\x6d\xa5\xfe\x62\x1d\x7d\x2c\x36\xfb\xd8\x98\xc1\xeb\x86\xcb\xf4\xdf\x65\x28\xaa\x16\xdd\xf4\x4e\x0e\xf2\xcc\x07\x9a\xf3\xe0\x08\x8d\xd4\x89\xa1\xa8\xfa\x28\x26\xb9\x41\x6c\xb9\x79\x80\x0a\x5e\x97\x68\xb5\x0a\xd1\xad\x67\x6e\x6e\xf9\xf7\xcb\xae\x86\x23\xb7\xa4\xf3\x2d\xac\x3c\xb8\x81\xe5\x12\x7d\xbb\x97\x44\x34\x34\xa6\xd9\xaa\x1e\x48\x69\xe5\x5b\x57\x70\xfb\xcd\x68\xcd\xd1\x36\x80\xfb\x5b\xf2\x65\x29\xa3\xa2\xbc\x63\x0a\x2c\x6c\x50\x2c\xa7\x29\xf9\xf0\x87\xfe\x9e\x28\xa5\x80\x76\x7b\x8c\x8f\x13\x5a\x52\xda\x6b\x5e\x35\xaf\xe8\x1f\xed\x88\x22\x3f\xc7\x73\xdc\xa3\xbc\x1a\x47\x44\x83\x75\x55\xa8\xcf\x97\x4e\x88\x3a\x7b\x05\x53\xa2\x4e\xc2\x6a\x8d\x06\xc6\x90\x90\x3f\x43\x82\xde\xd5\xa2\x4e\xd0\x04\x7c\x14\x31\x42\x6e\x6f\xbd\xb2\x94\x6f\x59\x75\xfa\xee\x80\x8d\x36\x3d\xe8\xfc\x7a\x53\x6d\x5a\xc3\xdd\x16\x5b\xf6\x82\x99\xb3\xfd\x3d\x57\x4f\xa9\xc8\x3f\x20\xd3\xbb\x64\x76\xf3\xc7\x5d\x26\x93\xab\x3f\x61\xee\xe1\x15\x65\xf6\x83\x22\x5e\x58\x70\x32\x5c\xd0\xc2\xb8\xf7\x54\x70\x66\xab\xca\x6a\xd5\x29\x38\xd3\xeb\x6c\xc1\x1c\x28\xc4\x0c\xb7\x14\xe6\xa6\x39\xb2\x1b\x09\x6b\x65\x6a\x0a\x99\x86\x8a\x98\xa0\x0a\x22\x45\x70\xf3\xe1\xd1\x8b\x57\x57\xb8\xf7\x40\x33\x06\x3f\x75\xbb\xdc\xc1\x3e\xa8\x33\x57\xa7\x9d\xb5\x01\xc4\xdc\x56\x5f\x49\xa2\x96\xe3\x44\xa8\x7c\xf1\xb1\x84\x79\xc4\x14\xe1\x25\x99\x4c\x56\xa5\x2d\x75\x5d\xa3\xd7\x6e\xb1\xe3\xd6\x03\xbb\x8e\xc7\xab\x1c\xb7\xf9\x02\x4c\x87\xfe\x5a\xcc\x93\x4b\xde\x54\x76\xb7\x73\x36\x97\x62\x1f\xd9\xdd\x66\xf0\x6a\xa2\x2d\x77\x0e\x89\x44\x12\xc1\xd5\x37\xf5\x4e\x2e\x9c\x52\x46\x5d\x89\x6f\x33\x3e\xce\xff\x35\x13\x14\xba\x19\x06\xa1\xe0\x16\x2a\x67\xd0\xee\xf1\x33\x98\xec\xc0\x5a\xa2\x1c\xd6\x3c\xb9\x37\x5f\x10\x93\xf8\x70\x2f\xd0\x1a\xf9\xbe\x2a\xab\x8a\xdf\x90\xf0\x7a\xa3\x2e\x05\xbf\xca\x57\x66\xbf\xff\x8a\x5f\x7b\xf6\x95\x15\xff\x05\xfe\xc8\xf4\x17\x9f\x79\x64\x7a\x83\x91\xb9\x61\xc6\x9a\x83\xce\x27\x69\x0d\x21\xeb\xfa\x7d\xcf\xa3\x14\x85\xf7\x49\xfe\x67\xfe\x95\xbf\xe0\x5f\x3a\x14\xe6\x08\x6e\x8d\x83\x6a\x12\x1e\x11\xfa\x7e\x82\xe5\xa9\x07\xb6\xe7\x09\xe2\x30\x16\x60\x5f\x3d\xc5\x0c\x90\xaf\x4f\x64\xbb\x3d\x7b\xc5\xf0\xbc\x5b\x6b\x17\x94\x82\xbb\x28\x9c\xc8\x1b\x6f\x50\x83\x3b\x10\x8b\xea\xc8\x1c\xab\x51\x16\x33\x74\x15\x24\x5a\xfa\xa7\x79\xb8\xef\x3a\x14\x38\x02\x11\x20\x22\xb9\xff\x2f\xbf\xa2\x14\x85\xa8\xc2\xac\x4c\x41\x91\x9f\xde\x7c\xe4\x7b\x92\xe3\xfb\x91\x9b\x62\x51\x21\xf9\x35\x3e\x68\x21\x10\xe7\x1c\x08\x71\x30\xc4\xb8\x1f\x19\xf7\xbc\x1e\xc4\xe7\x17\x5f\x99\x7a\xa4\xcb\xe1\x97\x7c\x66\x38\x5a\xe8\x0a\x76\xcf\x7c\x5b\xdc\xc8\x4f\xc2\xbf\x5e\xa0\x7c\x29\x5f\x92\x0c\x67\x5f\x01\x85\xaf\xaf\x83\x87\x88\xa2\x94\x7d\x61\xdf\x99\x75\x60\x36\xee\x88\xe5\x24\xf7\x37\xf3\x65\x92\x7f\x2d\x8a\xd6\x73\x56\xb3\x2c\xad\x00\x57\xcc\xcd\x7d\xca\xa5\x6f\x89\xa5\x88\xc1\xfd\x4c\xbe\x5c\x4e\x29\x9e\x7d\xa7\xd8\x53\x34\xcd\x9c\xaf\xcf\xf9\xbf\x4b\x25\x32\xd2\x55\x45\xff\x9d\x23\xb3\x5c\x71\x66\x0d\x4b\x2e\x8c\xfa\xe4\x59\x3a\x17\x41\x56\xc3\x7b\xf3\x02\x07\x1d\xb4\x22\x90\x1f\x66\x2f\x09\xff\xdd\xdc\x95\x3f\xe1\x9f\xf9\x66\x54\x8b\x9b\xdc\x70\x6e\x93\x66\x42\x18\x6a\x6a\x12\x4c\x9a\x0b\x21\xa5\xc5\xed\x14\x30\x49\xd5\x4d\x04\x7b\x4e\x09\x21\x69\x45\x15\xb3\x3c\x98\xd4\x0c\x11\x71\x1a\x9e\x36\x1c\xbe\xe6\x02\x21\x59\x3f\xc7\xfd\x0c\x80\xa4\x9b\xc5\x04\x28\xdb\x2a\x3c\x1c\x0d\x3c\x05\x52\x73\x9a\x63\x13\xe9\xec\xf9\xf9\xa1\xa9\x4d\x27\x48\x32\xe7\x24\x89\x2c\x2b\xe7\xaa\x0f\x20\xec\xe5\x7c\xd5\x38\x6a\xc6\x55\xa6\x8d\x45\xf5\x01\xa1\x43\xb1\xa0\xec\xfb\x25\xb0\xe9\x0a\x33\xae\x7c\x96\xa0\xce\x32\x69\x71\xb1\x7b\xb7\xd5\x1c\x55\x19\xe6\x91\xd8\x31\x17\x41\x4a\x10\xe1\x84\xaa\xcd\x44\x89\x3b\x29\x2a\x85\x39\x58\xf3\x88\x6e\xb4\xe4\x1d\xd3\xeb\x21\xf8\x0e\xf1\xe1\xaa\x0f\x94\x53\xb9\x07\xd2\xce\x38\x67\xc6\x17\x3a\x1c\xff\x3c\x86\x17\x04\x78\xe8\x14\x68\xaf\x21\x07\x68\xeb\xe5\x7d\xda\x75\xb5\x54\xc3\xc5\x54\x21\x99\xe5\x72\xbe\xb8\xd5\x32\x32\xcf\xb8\xb6\x76\xa0\xc8\x96\x1d\x29\xb0\x29\x6b\x91\x33\x97\x30\x51\xa4\xd7\x6b\xaf\x7c\xef\x74\x9c\x33\x63\x89\x18\x8e\x16\xcc\x9b\xfa\x49\x10\xa6\x52\x80\x9c\xe3\x63\x0a\x44\xcc\x79\xaa\x90\xf3\x2e\x20\xbe\xe2\x76\x0a\x38\xd9\x30\x7b\x8f\xb8\x12\xaf\xe1\x4b\xd2\x7d\x41\x39\x76\xb4\x64\xbe\x2a\xd6\xdb\xb3\x16\x6e\x98\xf8\x79\x47\x3b\xbe\x80\x34\x34\x2a\xc1\x2b\x09\xb3\x40\x20\xf2\x9d\xdf\x7f\xf7\xfd\xfb\x9e\xa7\xc1\x1b\xc6\xdf\xfd\xf0\x9e\xa4\x9c\xfb\xef\x7e\x7c\x0f\x8b\xf8\xa8\xf0\xfc\x9a\x0d\x42\xe3\x1a\x50\xd0\xa0\x77\x5d\xf5\xb1\x6e\xf7\xd8\x80\xf5\xd3\xf3\x87\x4f\x32\x15\x9f\x86\x78\x89\xbb\xeb\xb7\xc9\x0a\x2f\x5d\x56\xbc\xc2\x9b\xfd\x76\xae\x63\xec\x85\x03\xd8\x2f\x57\xdc\x30\x30\x2f\xb8\xc9\xdf\xdc\x6f\x1e\x6e\x5d\xf2\x60\xa9\xf3\x26\xdc\xfd\x8b\xfc\x7a\x8a\x81\xf0\xd0\x7f\x73\x2d\xb5\x81\x2d\xfd\x4a\x6e\x10\xb3\x2c\xec\xac\xfa\xb7\xd5\x30\x8b\xb9\x92\x85\x49\x40\x97\xe3\x2c\xed\x45\x0c\xa2\xce\xa8\xc8\x31\xf0\xae\x02\x62\x0c\xee\x2d\x7e\x26\x99\x69\x65\x02\x34\x55\x9b\xb2\x5a\x4f\x25\x27\x49\xbe\xe0\x5a\x31\x25\xdb\xd0\xd7\xa1\x49\xba\xe4\xea\xb0\x9f\x5f\x59\x8b\xc8\x13\x24\x67\x5e\xbb\x7a\xae\x09\xe3\xcd\x12\x76\x57\x98\xa6\x79\xa8\xea\x8e\x28\xd0\x5f\xd9\xc4\xae\xd5\x40\x2f\x17\xf8\xb0\x64\xb9\x88\xa9\xbe\xe3\x8e\x36\x23\xa3\x90\x26\xda\xd5\x1c\x92\xe2\x49\xa9\x01\xc7\xb6\xeb\x38\x7c\x3a\xc1\x49\x11\x68\xdd\xcc\xcd\x05\x5d\x05\x7d\x62\x96\xec\x66\x25\x23\x22\x32\xe2\x1b\x88\x6a\x67\x3c\x78\x5b\x2a\x3a\xbc\x0a\x2e\xcd\xe8\x94\x86\xab\xb5\x2a\x61\x3c\xf8\x85\xfe\x39\xbc\x26\xae\x23\xd6\x3f\x6e\x85\xba\x4f\xff\x2c\x49\xf6\x45\x5b\x74\x7e\xdf\x8e\xf3\x97\xed\xa6\xf5\xfb\x3a\x7e\xa5\x00\x62\xf7\xbb\x5f\x26\xb2\x99\x64\x7b\xda\xd6\xd5\x0b\xc2\x8d\x77\x1e\x81\x9c\x18\x8c\x64\x24\x8e\x51\x71\xa6\xbb\x13\x21\x1d\xc4\xcd\x08\xbb\x73\x3e\xae\x45\xdd\x8b\x00\xea\x0c\x8f\x93\x60\x53\x16\x66\x91\x32\x42\x8b\x32\xcb\xec\xe1\x79\x3c\x9f\xa9\x06\x46\x66\xad\xf9\xb0\x4d\x79\xba\x69\x6f\x5c\x96\x9e\x7e\xe6\xf0\x4a\x94\x20\x5e\x51\xbb\x82\x48\x4f\x1c\x34\x54\x97\xe0\x14\xf5\x4b\xe9\xa7\xe1\x6c\xa0\x06\x3c\xdc\xb4\xb9\xd3\xc2\x10\x81\x88\x37\x82\x22\xe7\xc2\x76\xaf\x0a\xe4\xaf\xe5\x67\x49\xb5\xb8\x42\xfb\x04\x9e\x61\x69\x83\xda\xc2\x93\x5c\xbf\x34\x5f\xb7\x38\xa7\x38\x3e\xc7\x6f\xed\x84\xc2\x10\x6f\xee\xaa\x7e\xbf\xc1\x1e\x80\x43\x37\xf9\x71\x2d\xc7\x45\x06\xc4\x07\xff\x2b\xb1\x17\x58\x5b\x01\x23\x47\xae\x79\x01\x70\xee\xa2\x5a\x16\x70\x02\x2d\x94\x35\xaf\x69\x49\x06\xa3\x27\x10\x8e\x1c\x60\xf5\xb3\x57\x6d\x18\x98\x87\xd9\x96\xab\xde\x4c\x19\x09\xa6\x16\xd5\x70\xc3\x53\x27\xa7\xf2\x8c\x5c\xb1\x39\xf4\x3f\x85\x9b\x31\x71\xb0\x47\x68\xe3\x11\xef\xc8\xa5\x72\xb3\x7f\xc1\x0f\xe1\x69\x8a\xca\x44\x5e\x0f\xd5\x5e\x05\xc1\x82\xb6\x49\x65\x8a\xc3\x59\xd3\xb6\xa2\x46\xb1\x8b\x97\xa6\x42\x0a\x6f\x7d\xcc\x97\xa0\x8c\x79\xe2\x9b\x88\x98\x4f\xdd\x35\xfd\x47\x97\xae\xf5\xa3\x26\xdd\xac\xad\x19\x49\xfb\xe7\xaa\xa7\xd2\xff\xff\x7b\xa3\x51\x92\xf6\xe7\x21\xbb\x04\x7d\xfa\x9f\x11\x54\xaa\x39\xfb\x3c\x31\x98\x82\xa0\x2a\xf3\xd2\x2b\x35\x5f\x37\x56\x22\x15\x41\x8d\x73\xc4\x97\x0c\x3d\x52\x0a\x67\x92\x7a\x4d\x5a\x3c\xaf\x75\xc5\xa6\x3b\x59\x99\x45\xa8\x81\x14\xdb\xf9\x96\x98\x6a\x5c\xce\xd5\xa8\x5a\xb7\xb8\x15\x26\x5e\xdb\x52\x05\x47\xec\xa1\xf5\x61\xe7\x69\xf4\xcb\x59\xeb\xa7\xeb\x52\xd8\x72\xef\x1d\xa7\x19\x8b\x54\x08\x16\xa9\x80\x65\xb9\xe5\x5b\x34\x73\x18\xa4\xd1\x8d\x30\x0c\x02\xdb\x1d\x6d\xe0\x0c\xf1\x30\x19\xbd\x98\x92\x92\xae\x04\xd5\xc2\xe0\x7b\xa8\xe6\x07\xc3\xdd\x75\xdb\x0a\x95\x2b\x07\xbc\x20\xf9\xe0\x69\x53\x73\x04\x18\x5b\x5a\x66\x9a\x38\xd8\xe4\x54\xb4\xa6\xd0\x68\x45\x38\x6a\xe5\x2a\x3d\xbc\x47\xea\x21\x9a\xd0\x74\xc9\x63\x72\xe3\x95\x17\x18\x98\x02\x53\x88\x57\x1d\x83\xec\x09\x3d\x37\xc8\x9d\xd6\x75\x53\x80\xd2\x5b\x10\xee\xf7\x51\xdb\xed\x9c\xa6\x7c\xae\x8a\x08\xb1\x49\x26\x00\xfc\x4a\xbb\x60\x12\x78\x5a\xb5\x93\x65\xe3\x11\xd1\x96\xb4\x60\xde\x28\xf7\x1f\x85\xf7\x04\x46\x35\x42\x9d\x7a\xf6\xeb\xc9\xa2\xee\x6b\x51\xf5\x09\xeb\x9a\xc4\x8e\x49\x23\xb8\x5a\x18\x66\x4c\x1c\xf8\x84\xb9\x7e\xd0\xa7\x34\x62\x36\x63\xe5\xdf\x5a\xc4\x9f\xef\xe2\x41\x56\xe2\xc7\xca\xff\xc3\x0c\x17\x12\x42\xab\x9a\xcb\x0a\xd1\x1a\x51\xb9\xa6\xf8\x50\x09\x47\xee\x62\xde\x83\x5b\xaa\xee\xe1\x76\xfb\xb0\x2c\x1f\x4c\x8c\x3a\xd8\xd1\xdd\xb0\x13\x3f\x1c\x55\x9e\x93\xe5\x1f\xd4\x14\x88\x47\xd3\xb8\x63\x80\x68\x9e\x7e\xe5\x9d\xad\xe2\xf3\x94\xbc\xf4\x78\xc3\xde\x1d\xcc\x5d\xcf\x6c\xad\xdd\x11\xda\xdd\xd9\x3e\x2f\x31\xb9\xf0\x15\x8e\x24\x11\x2c\x83\xac\xe4\x5e\xea\x9d\xdd\x33\x3c\xa8\x4c\xc2\x2c\x69\x7b\x00\x25\x12\xa5\xeb\x20\x42\x02\x81\xce\x23\xd5\x09\x75\x13\x80\x53\x22\x9d\x6f\xfb\x3f\x52\xac\x9b\x6a\x7c\x8a\x04\x3e\x27\xd8\x4d\x85\x1a\xb4\xb4\x99\xd0\x37\xee\x11\xc8\x97\xcf\x0a\xe2\x5a\xe8\xde\x19\xfc\xf6\x60\xeb\xb6\xfd\x20\xb1\x3d\x16\xf8\xf4\x39\xab\x7a\xb0\x4c\x8e\xa5\xf6\x32\xce\x25\x71\xa9\x5e\x86\x21\x0d\x9f\x71\xc2\x44\x17\x4b\x9e\xe3\x6e\xfe\x0f\x31\xa5\x9d\xe2\x57\xfe\x3f\x98\x30\x1c\x88\x5e\x02\x38\xb7\x58\x2e\x97\x7c\x15\xc0\xe5\xaa\xbf\x76\xd0\x94\xba\x97\x8f\xdb\x52\x87\x66\x3e\xa0\xf8\x32\x17\xfd\x29\xd7\xfc\xf8\xbe\xe0\xcc\xd7\xee\x6e\x1c\xf1\x49\x86\x7e\x9e\xdb\xa5\xa5\x31\x98\x3b\xb8\xf3\x17\x95\xe2\x63\x46\xf6\x24\x6a\xc4\x11\x19\x97\x95\xf8\x52\x13\x27\xc5\x37\xa4\x88\xee\x5c\xf0\x36\x55\x14\xa1\xbc\xc2\x2f\xa7\x0f\xba\x87\x70\x98\xb8\xae\xc8\xd2\x46\x2f\xc7\xb4\x7a\xed\x4a\xbc\xf5\x45\xc1\x2d\x9c\xd2\xd9\xe3\x40\x3a\x38\xf6\x0c\x3d\x10\x7d\x9c\x0d\x71\xf7\xb7\xae\x22\x2f\x98\xde\xe4\xc6\x0a\x30\x1d\x9c\x7c\x26\x80\x86\x94\x73\xe2\x1f\xe2\x38\x26\xc5\x8a\xe8\xc6\xd7\x10\x18\x5e\xc4\xd9\x63\x51\x2c\x3f\xb8\x1e\x31\x7b\xaa\xba\x01\x77\xad\xc6\x68\x67\x67\x6f\x5a\x40\xf3\xef\xa9\x99\x87\x90\x31\x24\xdc\x1c\x06\x21\xeb\xaf\xbe\x0e\xf0\x01\xff\x37\xf6\x67\xfb\x58\x97\x7b\xa2\x3e\x9e\x8b\xbb\xea\xfd\x21\xae\x97\x56\x3c\x0e\x5c\x0f\xd6\x9d\xcc\x27\x0b\x1c\x35\x42\x3f\xf0\x1d\x47\x5c\xb6\xbb\xf6\x77\x48\xfb\xa9\x96\x99\x09\x39\x25\x5d\x71\x80\xbb\xa0\xb9\xbf\x4c\x15\xb2\x2a\xe1\x43\xf0\xc0\x11\x27\x59\x13\xa5\x7e\xca\x47\xf3\x11\x63\x4b\x2e\xe8\x39\xc9\xeb\xb3\x3e\x40\x23\x42\x48\xb0\x94\xd4\x07\x84\x05\x9e\x3a\x36\xfb\x3c\x7c\x8e\x97\x75\x2b\xda\x99\xc9\xb5\x21\x49\xd4\xcd\x72\xb3\x87\xcf\x21\x33\x23\x16\x86\x8f\x94\x07\x1f\x39\x63\xa0\x5c\x4b\x0a\x9c\xba\x3c\x0f\x6c\x23\xcc\x26\x7d\xc5\x89\xb5\x20\xe0\xd5\xa8\x69\x7f\x5b\xea\xc8\x3b\xc1\x38\x17\x01\x96\x4d\xd9\xf7\xa7\x29\xab\x1d\x07\xd1\x63\x27\xd0\x6b\xd9\x6d\x85\xe7\x7f\xa6\xd5\x1f\xee\x6a\x55\x7c\x77\xa6\x9a\x35\x8f\x32\xbd\x7e\x8c\x45\xcb\x21\x55\x3f\xd3\xda\x8f\xd6\x5a\xb8\x65\x7d\xa8\xaa\x5d\xd0\x44\xdc\xfd\xc0\xc3\x1e\xcc\x33\x76\xce\x99\xe0\x68\x7a\xb1\xcc\x6e\xa2\x1e\x60\xe2\xc1\x4e\x18\x78\x7f\xd8\x6e\xf6\x99\x5b\x37\xe3\x05\x62\x96\x3b\xc4\x01\x86\xf5\xce\xc1\xb0\xe5\x62\x1e\x70\x6e\xf8\x38\x1a\x4b\x9e\xa8\x4a\x7c\x27\x13\xb7\x14\x7f\x35\xd5\x75\xcd\x0a\x74\x87\xbb\x17\xbb\xc7\xe5\x13\x6e\x71\x0e\x94\x7d\x8f\x43\x62\xcd\xc5\xe3\x9c\xc7\x73\x12\x24\x1f\x2e\x90\xf8\x79\x47\x75\xc5\x7e\xde\x41\x07\x85\x8a\x0e\xd5\x73\x32\x59\x87\x52\x5e\x38\xb5\x7c\x03\xbd\xc6\x5d\xe3\xb9\x86\x45\xd2\x18\xd6\xe9\x65\x5f\xcd\xbd\x59\xb7\x41\x50\x0e\x71\x3e\xc7\x5e\x14\x76\x64\x16\x8f\xf5\x46\xc4\x13\xc5\x8b\x0a\x2b\x89\x14\x63\x7b\x8b\x89\x32\x50\x15\xb7\x7b\xda\x3a\x37\xf5\x07\x18\x78\x88\x30\x25\x6a\xe9\xf9\xe5\x15\xac\x3a\xb4\x00\x68\x1f\x5d\x31\xdf\xcd\xff\xba\xae\x1a\x04\xed\xe3\xe0\xa1\xca\x88\x96\x4b\xbe\x33\x52\x37\x1a\xd7\xec\xa6\x32\x4f\xde\xa6\xdc\x08\xdb\x0a\xaf\x16\x99\xf4\x20\xd6\x9d\x1c\x01\x42\x79\xa5\xf5\xbb\x6a\x49\x32\xf1\x8c\x4f\x6b\xba\x06\xe1\xbc\x73\x33\x08\xdf\xe9\x80\xe2\x46\x02\x4f\x10\x36\x02\x05\x68\x51\x94\x84\x46\x4d\xdd\x83\x47\xe8\x49\x41\xa7\xa4\x60\xc3\xf0\x5d\x32\x30\xf8\xab\x38\x90\xd6\xcc\xae\x73\x75\x81\xb8\xcb\x2f\xff\x60\x1f\xc2\xb8\x72\xd2\xf4\x67\x44\xe1\xb4\xaa\x99\xd7\xc7\x4d\x09\x9f\x00\xe9\x77\xad\xb8\xf4\xbd\xd5\xcf\x31\x90\x68\x4b\xdc\x93\x97\xf2\x35\x06\xd9\x69\xc0\x1a\x17\xba\x66\x0c\xb2\x68\x4b\xd6\x7f\x9e\xd1\xbf\xb1\x10\xed\x82\x5b\x9b\x24\x0d\xe2\xdc\xf1\x25\x69\x39\x1c\xe5\x0c\x42\x77\xb5\xb9\x96\x0b\xef\x6c\x71\x81\xba\x27\x06\x2c\x76\x24\x95\x78\x88\xec\xc8\x84\x0a\xf4\x7a\x13\x3c\xf7\x11\xe5\x29\xb4\x4e\xe9\x7d\xc8\xf0\x82\x5b\xda\x27\x18\xdb\xad\x5f\xaf\x44\x06\xc1\x34\x40\xb9\x95\x90\x5c\x47\xbc\xb5\xb0\x5e\x68\xc7\x5f\xb6\x01\xed\x24\x0c\x17\x5f\x4a\x21\xa2\x46\x0c\x09\x03\x11\x19\x56\xe2\x08\x07\x7e\xa4\x76\xcb\x14\xc4\x06\x84\x8d\x7b\xa4\x3e\xb8\x8c\x20\xf1\xbe\x1d\x41\xf8\xc3\x39\x00\xd9\x6d\x97\x74\x9f\x51\x70\xaf\x2b\xbc\x8c\xd6\x43\xc0\x51\xa2\xa8\xe3\xe8\xa8\x06\xd7\x12\xeb\x24\x73\x0a\x33\x4e\x06\x46\x40\xc6\x15\xfb\xdc\x05\xab\x9b\xb7\x69\x12\x8e\x44\x8a\xee\xaa\x55\xd1\x95\x16\x59\x43\x39\x0d\xdf\x24\x00\x47\x09\x6f\x4e\x16\x1b\x52\xbe\xb5\x0a\xe2\x8c\x04\xf2\x81\xbd\x79\x68\xbe\x59\xc6\x31\x7b\x03\x4b\x8b\xa5\xb0\x31\xbe\xb7\x45\xcc\x65\xbf\x63\x7e\x23\xcc\xcb\xda\xc1\x90\xbf\xfd\xd3\xe5\xf9\x9b\xa3\xfc\xd3\xc3\x9b\x9b\x9b\x87\x5c\xfc\xe1\xbe\xdb\xf0\x0d\xa7\x92\x23\x77\xfc\xf7\xb3\xd7\x47\x79\x35\x2c\xbf\x9b\x91\xa2\x0e\x36\xe4\x57\xb7\x3a\x17\xc2\x9c\xce\xd4\xc5\xa2\xe3\x1f\x67\x4f\xba\x62\x34\xae\x73\x18\xf0\x29\xdc\x20\x79\xf6\xcc\x67\x41\x27\x53\x7c\x17\xbc\x72\x58\x2d\xbb\x0a\x47\xfe\xf8\x08\x32\x36\xa4\x13\x4c\xdd\xd8\x4e\x41\x6a\x6a\x47\xbb\xf1\x6a\xa9\x71\xa5\x13\x10\x3b\xe1\x3a\xc1\xd9\x96\xcb\xc4\xc4\xb9\x6d\x85\x83\x73\xf5\xeb\x76\xbf\x29\x63\x8e\x49\x38\xd3\x89\xa8\xca\x9f\xd3\xc2\xf0\xa7\x43\x10\xda\x27\xf9\x9f\xd8\x52\xc4\x13\x25\xb4\xc5\x59\x46\x5b\x00\x9e\xa5\x85\x11\x2d\x2d\x10\x8c\x69\x00\x12\x05\xce\x04\x73\x9f\xe7\x84\xf3\x51\x25\xaa\xbf\xb1\xaf\xc0\x90\x6f\x9d\x3e\x07\x5a\x93\xea\xc6\x45\x62\x3b\xdd\x74\xb6\xe1\x45\x7c\xf4\x24\x38\x75\xb1\x32\x23\xd6\x14\x1e\x72\x71\x26\x9c\x44\x51\xc0\x1f\x01\xca\x5c\x24\xf4\x6e\xf4\x6b\x17\x8c\x29\xd7\xf0\x80\x55\x9a\xe1\x0d\xbd\xa7\xd5\x80\x0b\xc5\x53\x6b\x51\x34\x6a\x37\x6b\x7e\xf5\x18\x7f\xd3\x1d\x4e\x24\x13\xb9\x7e\x11\x71\x0f\xb0\x8e\x58\xe6\xba\x49\x77\xb1\x54\xdc\x52\xde\xe4\x45\x19\xe5\x4d\xa3\xed\x5a\x01\x93\x36\x46\xbb\xa4\x4a\xc7\x63\x99\xdf\xb7\x70\x48\x20\x10\xcf\x94\xb9\x8e\xd2\x02\x7d\xe0\x0e\xdb\xa9\x4b\x8b\xc5\x2b\x5b\xa5\xe0\xbb\xf1\x12\x65\x84\xc8\x3a\x0a\x39\x2a\x0b\x6a\xf1\x39\x36\x83\xe0\xea\x25\xfb\x9a\x9b\x5f\xf6\xe8\xe2\x69\x28\x42\x4b\xad\x76\x89\x48\x2e\x3b\x25\x99\x69\x20\xfd\x74\x65\x93\xac\x26\x6f\x7c\x9c\xc8\x57\x88\xad\xdd\xa6\xbd\xb5\xbb\xb9\xa7\xf8\xa5\x01\x3d\xc2\x91\x79\x30\x1d\x94\x87\x0c\x8c\x2f\xed\x3c\xae\xee\x6f\x41\x68\x47\x15\x71\x1b\xd6\x77\x51\x94\x60\x42\x35\x26\x32\x78\x4f\x74\x6f\xe2\x7a\xa7\x83\x4a\x2f\xa2\x9e\xba\x16\x0e\x5c\x44\x8d\x8b\x86\x97\x51\x83\xa2\x5f\x70\x19\x35\x46\xd2\xf8\xaa\xa9\x1f\xea\x17\xdc\x36\x9d\x1a\xf4\x58\xae\x9d\x42\xfc\x44\x81\x29\xe9\xb6\x0c\xc7\xf6\x05\xb7\x4e\x13\xcd\xf6\x4b\x04\xdc\xa9\x9e\x78\x94\x04\xc8\xfd\x9c\xc5\xb7\xac\xaf\xaf\x67\x8b\xae\xbd\xe9\xf9\x6a\x27\xa2\xd2\x33\x97\xe5\xdf\xf9\x25\x7e\x0b\x08\x1f\x5f\x83\x28\xe4\x43\x12\xd5\x4b\xe6\x89\x9e\x88\x49\x22\xce\x0e\xd3\xe8\xdb\xa7\x94\x23\xe7\x88\x6f\x48\x13\x3b\xb6\x9c\x99\x14\xa1\x8d\xee\x66\xce\x5f\xb8\x94\x0a\xeb\x33\x1b\x4b\x51\xe8\x92\x53\x14\x8c\x3f\x0d\xe1\xb6\x2b\xc1\x41\x4b\x4e\x5a\x45\x7c\xf5\x96\x23\x10\x96\xc1\x11\x18\x11\x43\x0d\xf9\xd4\x83\x84\x97\xcf\x08\xc2\x70\xe9\x21\x14\x41\x58\xf4\xcf\x5e\xbd\x91\x9f\xf0\xba\xd6\x00\x31\x70\xbb\xe6\x03\xdf\xcc\x7c\xb9\x67\x53\x3e\xdd\x96\x27\x1e\xf3\x62\xe6\xb0\xf7\x89\xf0\xcb\x41\x94\x5d\x71\x8d\x63\x20\xfe\xef\x52\x49\x06\xf6\xc5\x2e\xba\xea\x61\x5a\x8c\x90\x23\xa8\xbe\xc4\x87\x4b\xd7\x63\x1c\xfe\xe7\xd2\x0a\xb8\x1d\x3c\x09\x46\xee\x31\x62\xe7\xdb\x44\x77\xf7\xfb\xbc\xaf\xd9\x76\xaa\x04\x9a\x34\x08\xea\xf0\x31\x4f\x41\x3b\x78\xb1\xc7\x20\x68\x87\x76\xf7\x4b\x69\xb3\x6e\xe4\x8a\x9b\xe5\x41\x6d\xb5\x20\x55\x51\x19\x1f\xf8\xd4\xac\xc1\xfe\x3e\x00\xe5\x63\xf7\x5f\x86\xd7\x0c\x58\x14\xe0\x1b\xf7\x6c\x0e\xea\xd7\xb3\x74\x22\x9c\x39\x53\x71\x96\xe3\xb7\x83\x32\xc9\x90\xc9\x65\xbe\x2d\x03\xe1\x50\x08\x28\xdc\x56\xce\x8a\xee\x03\xc7\x84\x87\x53\x94\x55\x70\xd3\x69\x60\x21\xfe\x1f\xce\x98\xbe\x45\x70\x21\x5f\xa3\x06\x63\x47\x66\x94\x86\x3d\xc0\x98\xa9\x2b\xc0\xd2\xac\x88\x64\xaf\xe5\x4b\x5e\x55\x4a\x29\x63\x7c\xd3\x9a\xf2\x1e\xa6\xf3\x16\xc0\x3b\x44\xff\xb5\xfa\xdf\xff\xf3\x7f\xb1\xb9\xb4\xa5\xdd\x12\x61\x11\x34\xda\xa0\x9f\x77\xbb\x1c\xe5\x5f\xb4\x78\x08\x1e\x1d\x74\x44\xd0\x9f\x6b\xa4\x01\xfa\x1a\xd1\x28\x87\x95\x37\xfa\x66\xd7\xb0\x84\xc8\xa1\x24\x7a\x32\xc7\xd1\x63\x5a\x87\x11\xd5\x5c\xf7\x08\x17\xed\xcc\x26\x17\x93\x26\xe1\x86\x94\xe8\xa6\xb7\x94\xec\x5d\xdb\xad\xde\xfb\x98\x98\x6e\x22\xa2\x78\x98\xd0\x0c\x3d\x8c\x21\xec\x05\x93\xdf\xf8\x51\x21\xd1\xb4\x25\x00\x2f\x5c\x99\xec\x22\xe6\xcc\x6e\xcc\x48\x90\x3c\x3d\x92\x8e\x9e\x11\xc3\x3d\x1a\x33\x42\x9a\xbc\x56\x66\x7a\x56\xca\xb7\x38\xf8\x83\xe3\x18\xf2\x13\x4b\x4c\x27\x72\xca\xf5\x0a\x09\xb4\x00\x91\x80\x18\x9d\xb8\xbd\xc2\xff\x33\x44\x46\x53\x4b\x19\xa7\xea\x97\xa6\x27\xd1\xd7\xa2\x28\xf0\xc1\x0d\x1f\x44\x65\x8c\x42\xbb\x73\xe5\xc0\xca\xc4\x31\xf9\x28\x56\x27\x50\x88\xd4\xbb\xa0\xa3\x8b\x9a\x0f\x36\x38\x1a\xd1\xd8\x3e\x30\x38\xb3\x4b\x51\x23\x42\x1c\xe6\x16\x91\x22\x9b\xc8\xc7\xb1\x9f\xf9\x66\x02\xda\x5e\xcb\x19\xba\x2f\x86\xe7\x4e\x16\x44\xe5\x3f\x0b\x3c\x1f\x12\xd4\x7d\x1f\xec\xe6\x28\xe3\x93\xf3\x0d\x49\xf2\x9b\x48\x1f\x43\x45\x2c\x73\xfd\x7c\xe0\xaa\xe2\x38\xaa\xea\xd7\x5f\x56\x1c\xd7\x71\xf7\x75\xc5\x3f\x7a\x7c\x3b\x1d\x31\x2d\x34\x3a\x25\xa1\xd3\x5c\xd6\x54\x0c\xb5\x3f\x72\x98\x1a\x83\x06\xa2\x4c\x84\x02\x57\xd3\x97\x1a\xed\xf5\x8c\x96\x28\xf5\x9f\x3b\xa2\x8d\x63\x89\xa6\xbd\x1e\x45\xf7\x8a\x3a\xfd\x75\x51\xbe\x0e\x9e\x75\x46\xbc\x22\x55\xc2\x46\xb7\xf4\x31\xc0\x3b\x8b\xc4\x77\xf6\xc3\x0e\x3b\xb3\x5b\x70\x76\xa6\x96\x78\xb9\xad\x2f\xb6\xe4\xcf\x5f\xd9\x3f\x70\x38\x71\xd7\xdd\xfd\xb4\x97\xcc\x63\x9c\x07\x7f\xd8\xc9\x3b\x4b\x84\xfb\x60\x7c\xbe\xfd\xcf\xdc\xe7\x9f\x3e\x00\x60\x25\xed\xc6\x6c\x53\xd8\x35\x0d\x7f\x5e\xe3\x67\x21\xdf\xf0\x25\x5a\x80\x67\xb4\x1e\x73\x7b\xbc\x8b\x35\xa4\x9d\xe6\xd8\x24\xc2\xb5\x67\x7a\xde\x65\xa1\x7c\x92\x74\xcf\xf2\xe0\x41\xab\x27\x7a\x1e\x48\x7e\x43\x1e\x99\xcc\x49\xcb\xc7\x6d\xc4\x0e\xeb\x96\xea\xce\x60\xce\xf0\xe1\xd2\x09\x6b\xcb\x0a\xf7\xbb\x4f\xe4\xcb\xe5\xa8\x32\xa4\xf1\x80\x7d\x27\x24\xd6\x2b\x2e\x99\x04\xa9\xba\xdb\x29\xae\xf9\x8a\x2b\x4d\xca\xed\x8e\xa7\xb0\xc8\x9d\x39\x8e\xa6\x49\x00\x55\x1e\xd4\x5e\x41\x84\xfd\x29\xad\x4b\xde\xbd\xd0\x5d\xf3\x4d\x7b\x93\xc9\x96\x39\x83\xdf\xbc\xc4\x26\xd5\x94\xb8\x4b\x92\xc6\x42\x84\x06\x89\xc9\xe5\x06\xbe\x86\x11\x19\xe7\x27\x77\xbe\xb1\x63\xb8\xdb\xde\x16\x6a\x98\x25\x44\xdc\xaa\xc0\x35\x5b\x16\xbc\x43\xe2\x98\x69\xad\x90\x30\x7d\xb3\x22\x2a\x46\xed\x86\x10\x5f\xd2\x30\xf7\x73\xd4\xdc\x91\x19\xa0\x10\x7a\x4e\x2d\x63\x12\x5e\x4b\x5a\x91\xb7\x7d\x5c\x3f\xdc\xc3\x51\xbe\x1f\x21\xc4\x97\xf4\x83\x5b\x81\x27\x32\x26\xf1\xae\xfe\x90\xf6\xa6\x91\xf4\xa2\x93\xf6\xb4\x8b\xfe\xd2\xf3\x55\xb0\x4f\xc3\xbb\xa3\x4c\xe4\x0e\xb6\xf7\x8e\x37\x4c\xc9\x91\x53\xd8\x09\xd1\x40\x9c\x70\x26\xe3\xeb\x7c\x7e\x89\xc3\xe5\x9b\x4b\x3a\xd0\xc0\xbd\xc6\x83\x4d\xee\x3a\xd2\x2f\x2f\xca\x41\xb6\x3a\x53\x79\x4e\x32\x3f\xbf\xe1\x0a\x9c\x45\x96\x11\xb9\x2e\xdc\x32\x20\xd8\xd9\x4c\x96\x12\x77\xdd\xad\x71\x66\x75\x41\xab\xe3\xca\x1c\xab\x06\x94\x63\xd1\x63\x38\xe3\x9d\xa1\x54\x16\x58\x43\x99\x29\x1f\x99\xac\xea\xce\xfe\x01\xb5\x2d\x6e\x23\xef\x1a\x38\xd1\x6e\xe3\x67\x37\xef\x30\xa0\x8c\xbb\xe2\x77\x6d\x09\x66\xee\x08\xe6\xa0\xd5\x64\x16\x2e\xf5\x31\x81\x78\xb2\x5b\x75\xf0\x86\xb7\xb9\x66\x66\x11\x90\x02\x2a\xfc\xc9\x8d\xd2\xbd\x2c\xe7\xb9\x01\x8e\x77\xa9\xa2\x07\x77\x31\x85\xaf\xe8\x00\xd8\xc6\xdd\x3d\x00\x5b\x90\x3b\x50\xd4\x8d\x80\x05\xdc\xd5\x11\x7d\x12\xee\xcb\x3b\x02\xbe\xf1\x85\x1d\x39\xb2\x5e\x68\x20\xe0\xb2\x9c\x5c\xff\x77\xf5\x2f\x51\x73\x40\x9c\x51\xa4\xe9\x84\xe0\xa3\xf7\x8a\x1d\xd1\x07\x7e\x66\x56\x2d\x3c\x1a\xd4\xef\x4d\xb7\x33\x5f\x55\x43\x53\x08\x5d\xb3\x19\x42\xdf\xb8\x38\x20\x05\xbb\x65\x0d\xdd\xad\x8a\x24\x3c\xb8\x38\x1e\x86\x77\x89\x11\xe5\x0b\x67\xb4\x12\x7d\xfc\x1d\xd0\xfe\xfe\xc0\xbb\xe8\xf2\x5c\xa1\x9c\x53\xf5\xd1\xf3\xd9\xe3\x40\xd0\x77\x06\xe1\x8e\x83\x8f\xa7\x51\xe8\x7b\x89\xcb\xb4\x32\x59\xce\x5e\x84\xcb\xd4\x15\x88\x19\xeb\x2d\xe1\x60\x8b\xc7\x39\x97\x1c\x80\xb5\x6d\x6a\x71\x3a\x39\x93\x2f\x1a\x7b\xc6\xb6\x12\x35\x94\x70\x6c\x33\x7f\x93\xd3\x8f\x0e\xd6\x3f\x36\x02\xa9\x20\x20\xdf\x41\x7e\x10\x14\x1a\xbe\xe6\x9d\x85\xb9\xf6\x35\xa0\x27\xb0\x31\xee\x83\x9e\x69\x3f\x50\xe9\xbe\x9f\x6a\x71\xce\x27\x97\xb9\x9e\xdb\xba\xd7\x8c\x99\x49\x70\x74\xd0\x92\xa3\x83\xca\xfb\x90\x47\x41\x42\x84\xf3\x30\x63\xe7\xe2\x30\x46\xc9\xf1\xc6\xe7\xd3\x11\xfc\x23\x4e\xe2\x88\x1f\x51\x42\xb1\x1c\xb5\x62\x16\xe6\x30\xcd\x7c\xd8\x7c\x8a\x79\xb3\x45\xb5\xc7\xb1\xf8\xc2\x2c\x71\x01\x8c\x92\xf4\x0d\xba\x78\x24\x62\xf4\x0c\xd3\x36\xed\x8a\x63\xc1\xdb\x8b\xa3\xc1\xf0\x54\x76\x8e\xeb\x34\x77\xe6\xa8\x0a\xdc\xf6\x0b\x53\x70\xf0\x34\x14\x7d\x5c\x1a\x4b\x30\x4c\xd0\x9b\xd2\x23\x40\xd2\xa5\x8b\xe5\x1a\xe3\x9f\x4d\x11\x92\xa9\xc4\x8e\x98\xf4\x39\xee\x09\x48\x79\x27\x30\xb7\x57\x01\x27\x61\xf8\x3d\x66\x3c\xc2\x18\xe4\xf2\xf5\x80\x66\xae\xe1\x0a\x5b\x8d\x34\xc4\x77\x05\x5c\x68\xc2\xfc\x1c\x2b\xae\xbf\xb3\x50\xb0\x8b\xf1\x3d\x7b\x0d\x87\xa8\x25\x45\xe2\xb8\x63\x3b\xf3\x35\xeb\xc6\xa8\x1e\x19\x85\xd7\xd5\x7a\x2f\x27\xb0\x74\x63\x2e\x1b\x8e\x48\xbe\xa8\x8e\xa4\x97\x1e\xc2\x55\xf3\xf5\x5d\x85\xd5\x8c\x03\x95\x50\x6f\x92\x4e\x46\x6c\xcd\x40\x3e\x53\x43\xd2\xc5\xc9\x2a\xbe\xa2\x93\xfc\x70\xe9\x6a\xe9\x9e\x5b\x3c\xe5\x30\xb8\xdd\x82\x43\xa2\xf0\x1e\x56\x2d\xed\x3a\x53\x64\x79\x9b\x2e\x7e\x57\xcf\xd0\x21\xd6\xb9\xa7\xaa\x3f\xd4\xb7\xae\xea\x6f\x9b\xe5\x1c\xaf\x6e\xf6\x6b\x3d\x49\x7c\x5b\x89\x31\xfb\xc1\x8c\xd2\x1e\x15\x1a\xed\xaa\xc2\x99\x5b\xff\x40\xc2\xa5\x7f\xbb\xa4\x74\x38\xf8\xd2\x16\xf7\x10\x3c\x11\xa5\x4d\x80\x23\xf1\x6c\xf8\xee\xce\x86\x92\xb1\x04\x0c\x31\xc0\x6d\x87\xae\xf0\xab\xdd\x5f\x30\x82\xe0\x14\x3b\x1c\x06\x93\x81\xae\x7e\xf0\x8a\xf0\xb1\x0f\x46\xdc\xb7\xec\x91\xc0\x81\x8d\xd9\xdd\x42\xdd\x98\x74\x43\xb3\x57\x55\xf5\x6c\xe9\xc0\x80\xc2\x76\xef\x98\xa1\x07\x51\x2f\x3e\x3f\xc6\x70\x13\x92\x77\xac\xf7\x3b\x76\xb9\xcd\xdd\x03\xd6\xbf\xe2\x77\xc8\x14\x24\x00\xfb\x7c\xd5\x76\x2d\x4d\x8f\x44\x7d\xd1\xa0\xec\x2f\x2c\xad\x9f\x28\x00\x1b\xf5\xed\x7c\xaf\x91\x7a\xac\xcc\x19\x92\x49\x7e\xe0\xb0\x3d\xbe\xd4\xd0\x0e\xc5\xc6\xca\xb0\xe5\x71\xa9\xf6\xea\x2b\xce\xb0\x52\xc7\x96\x11\x94\xd4\x32\xed\x82\x7d\xe9\xf5\xd6\x22\x80\xcf\x35\x25\x80\xc5\x39\x04\x87\x52\x21\x74\xed\x77\x73\x1e\x2a\x62\x3e\x48\x72\xfe\x1a\xc9\xf9\x15\x27\x8f\x5b\xb0\x5e\xb9\x62\x49\xa7\x0e\x95\xe3\xeb\xf5\x69\x99\xe7\x7c\x0b\x3f\x85\x37\xcc\xad\xab\x62\x37\xc2\xdb\x4b\x4a\x1c\x61\x0d\x90\x63\x04\x00\xf6\x30\x16\xc2\x52\x75\x09\xc5\x2a\x2c\xf1\x8a\x92\x0e\x41\xe3\x88\x3e\x85\x6f\x58\x1a\x3c\x50\x42\xf7\xec\xb4\x57\x7a\xa8\x32\xea\x55\xbb\xf8\x3b\x1e\xc5\x57\xe8\x73\xf9\x19\x40\x2d\xda\x76\xe0\x27\x3a\x77\x2c\x6e\xc1\x75\x4a\xd0\xf4\xcc\xd2\x59\xdc\x5a\x7e\x18\x61\x4a\xa0\xc7\xa8\x12\xe8\xc3\xb8\xda\x72\x74\x3c\x6a\xab\xdb\x2f\x87\x3d\x2d\x50\xd7\xe0\xd9\x25\x47\xd5\xbb\x74\x19\xa3\x16\x47\x25\x43\x0a\x4d\x0b\x4f\xb5\xbc\x24\x21\xa2\x9a\x6c\xfa\x84\x73\xee\x6c\x7b\x54\x36\x6c\x7c\x54\x7c\x6a\xa5\xe0\xc9\x11\xb6\x99\x2f\xf6\xcb\x0f\xd5\xc0\xf7\x71\xd6\x73\x1c\x01\x87\x75\x5d\x18\x58\xfe\x0c\x60\xf9\x4b\x02\xcb\xaf\xe4\x65\xfb\x71\xad\xb4\xe9\x6c\xab\xa1\xc0\x51\x7e\x50\xcb\x8b\x13\x9a\x01\x4e\x2e\x8b\xa9\x52\xb0\xce\xcc\x55\xca\xd6\x55\xc8\x82\x4f\x50\x83\xbe\xb9\x2f\x82\xf7\xb1\x03\x99\xaa\x8d\xd5\x00\xd9\xfd\x96\xb7\x4b\x79\x7a\x83\x15\x03\xea\xc3\x5b\x49\x09\x60\x11\x3c\x9b\x60\x8d\x47\xe2\xd4\x1a\x51\xb4\x09\xfc\x2a\x66\x94\xc2\xc1\x3c\xb0\x30\x2e\x82\xbb\xe0\x8b\xbf\x53\x80\xbb\x42\x16\xd3\x41\x48\x6b\xde\x00\xad\xe5\x14\x4e\x1b\xed\x05\x95\xc2\x56\x44\x53\x13\xc7\x76\x8d\x41\x4d\x34\x07\x27\x22\xf8\xb5\x5b\x04\x6a\x4e\x53\xd8\xcf\xbe\xb8\xac\x60\x22\xbd\x42\x66\x95\x14\x93\xb7\xf0\x9a\x98\x7d\x5b\x5e\x14\xa5\x44\xd2\xa2\xe7\x9f\x35\xcd\xee\x8d\xba\x68\x4b\x9a\x1e\x46\xd3\xd0\x1a\x21\x98\x9a\x4f\x49\xf2\x7a\x99\xfa\x96\x08\xa4\x84\x84\x94\x23\xa4\x4d\x58\x1a\x5a\x83\x89\xe1\x49\x0d\xaf\xa1\x51\x04\xa3\x3b\xf8\x36\x8f\x45\xfe\xfd\xc2\xe7\x79\xfc\x78\x02\x2c\xe3\x2c\x3a\xc6\x6f\xdd\xcf\x43\x84\xa6\x81\x83\x8b\x04\xc1\x0c\xae\x38\x8e\x40\x71\x38\x1d\xbe\x26\x1d\x1c\x3c\x1a\xd2\x71\xc4\x87\x67\xf0\xd5\xd7\x6e\x54\x43\x50\x06\x16\x2f\x21\x0a\xf6\x70\x94\x9b\x96\x53\x28\xf2\xf6\x41\xc3\x90\x7b\xe6\x08\xd0\x77\x1e\x2e\xc5\xb8\x98\x7e\x7d\xed\xff\xca\x03\x74\x61\x07\xfc\x33\x74\x07\xda\xff\x0f\x79\x86\x2e\xb5\xcd\xba\x77\xe8\xf0\xce\xd6\x0c\x77\x53\xe2\x95\x1c\x1d\x5d\x45\x2b\x1a\x25\xc2\x95\x8a\x84\xf8\x10\x1f\x49\xde\xf0\x6b\x36\x5f\xb1\xdb\x60\x91\xa6\xed\x05\xd7\x89\xa2\xd6\xa4\xc4\x38\x20\x75\xdc\x05\x49\x19\x9f\x17\x49\xba\xda\x23\x72\x0d\x47\x5a\xa9\xfd\x68\x06\xa3\x84\x1e\xd2\x58\x5a\x1a\x3d\x13\xe6\x24\x5d\xdb\x49\x97\x93\xd5\x1d\x75\x5b\x4a\x49\xa0\x03\xbb\xaa\x34\xcd\x4f\x14\x32\x18\x8c\xa4\x84\x91\xea\x24\x45\x1e\x69\xc2\x53\xa4\xf2\xa5\xe9\x63\x0f\x8c\xa0\xcf\x5a\x4d\xd2\x76\x50\x2b\xa0\xa6\xf9\x55\xd0\x9b\xd4\x8d\x54\x52\x71\x85\x87\x7d\x5e\xfb\x41\x53\x76\xfa\x90\x33\xc7\x9f\x93\x14\xa8\xfc\x25\x9c\xd1\x58\xc3\x3f\x7d\x13\xa6\x07\xef\x36\x21\xd7\xbd\xd8\xa4\x23\xe3\x2d\x46\xa3\xe5\x60\x6b\xd1\x08\x9f\xcf\xd8\xbd\x46\xbb\x3f\x0c\x5d\xbd\xd8\xf3\x29\x99\x7a\x03\x30\x61\x8b\xeb\x81\xcb\x1b\xc1\xf6\x7b\xf3\x8a\xbf\xd4\xaf\xc3\xb0\xc9\x53\xd0\x09\x9c\x44\xe6\xb1\xfe\x49\x5c\x1e\xab\x02\x46\x66\x07\x20\x47\x4f\x11\xc4\x96\x19\xec\xbc\x2f\x78\x89\x10\x7f\x2a\xf3\xcb\x63\xcd\xe9\xb7\xc3\xce\xc2\x38\x5f\x9e\x5d\x5d\xdc\x31\x81\x0c\xaa\x13\x01\xc8\x60\x36\x38\x4b\x67\x04\x59\xc1\xb4\xe8\x13\x68\x83\xbc\x39\x25\xcf\x7f\x5d\xbd\xbe\xa4\xcf\x65\x77\x2b\x07\x4e\x5a\xc7\x87\x7a\xc7\x60\xfa\x88\x28\x57\x45\x29\x80\xfd\x0b\x52\x6c\xe6\xf9\x64\x82\x34\xbd\x7a\xe9\xa6\xe2\xe2\xf8\x0c\xca\x1f\x25\x85\xb4\xa4\x4d\x23\xfa\x88\xbc\x8b\x1f\x3e\xbb\x46\x03\x6d\x89\x1b\xf8\xe7\xf2\x6d\x3d\xf0\xeb\x99\xec\x05\xbc\xeb\xad\x9e\x20\xdc\x43\xba\xb6\xf4\x4d\x35\x9d\x88\xd1\x9e\x17\x43\x63\x3f\x73\x7b\x5f\xb8\xa8\xc2\x2d\x39\x79\x24\xf3\xcb\x9c\x23\xc2\xca\x82\xcd\xeb\xae\xde\x4e\x5e\x19\x8f\x4b\x44\x90\x73\x59\xe7\xf6\x66\x40\x5c\xb5\x7f\x23\x62\x54\x22\x7a\x3d\x20\x2e\x35\xed\x74\x70\xd7\xc3\x01\x62\x82\x30\xd5\xdf\x59\xd8\x55\xf5\x8f\x0d\xed\x0a\x5b\xec\x76\x8e\xef\x04\xef\x39\x80\x50\x02\x90\x8f\xb2\x78\x02\x08\x22\xbb\x3e\xa9\x47\xae\xaf\x84\x40\x7c\x8b\x45\x01\x52\xde\xa5\xc9\xed\xf5\x35\x47\xb6\xe1\xf0\x68\x1a\x5e\x01\x81\x6e\xce\xd8\x1f\xd4\x4a\xca\xa5\xac\x39\xdb\x22\xa0\xdb\xf3\x98\x4e\xf5\xa6\xd6\x5b\x24\xb2\x50\x67\xe0\xdd\xde\xbd\xab\xfa\x76\x0f\xd5\xb5\x0b\xb3\xb4\x21\xce\x0a\x1b\xc1\x6e\xd8\x91\x92\x69\x61\xc7\x83\xad\xf0\x2d\x25\x13\x53\x1c\xd6\x0e\xc1\x6c\xe0\x5f\xce\x25\xde\x72\x50\x06\xc7\x0b\x4b\x78\xf5\x8e\x0b\x51\xbf\xc7\x25\xa8\xdf\x07\xc0\xe5\xc8\xd9\x76\x8e\x4b\xfc\x12\x86\xe3\x7a\xcc\x0e\x6c\x4a\x46\x36\x60\x49\x4b\xe9\x2f\xc4\x41\xb9\xf0\x84\x71\x6a\x47\x12\x93\xa4\x41\x90\xe1\xf6\xe7\x53\xc3\x0d\xc7\xa7\x86\x9b\xa7\x4f\xd5\x8e\x25\x3d\xe8\xfb\x8d\x4d\xc4\xe5\xe5\xeb\x78\xb6\x7d\x6e\xf0\xf4\x03\x7b\xc2\xdc\xe3\x38\x89\x2b\xd2\x67\xef\xe5\x7c\x57\xe9\xbb\xa0\x84\x62\x33\xc4\x9f\xa6\xa6\x75\xf4\xbf\x6f\xea\xa1\xfa\x31\xa9\xc2\x58\x66\xb4\x64\xea\xe5\x01\xc4\x18\xbb\x8c\x1f\x8a\xcb\xe5\x86\x67\xdd\x55\xb6\x4b\x9d\x04\xcf\xb6\x8d\x88\xd9\xb3\x5c\x47\xca\x21\xbb\xb5\x8e\xb1\x87\x7b\x17\x64\x90\xba\x3e\x0c\xf2\xaa\x15\x3b\x9d\xbd\xb5\x6a\x9e\x21\xd9\xf7\x50\xa2\x3b\x5a\xb4\x47\x75\x28\xb6\xfe\x21\x58\xe3\xab\x06\x3e\xe8\x56\x04\x43\xc1\x45\x61\x04\xc8\xe1\xfe\xbf\x09\xae\x0d\x1b\x98\x3d\xda\x09\xfb\xc3\xe8\x7d\x4f\x18\x1e\xf4\x79\x4f\x63\x0c\x72\xe3\x89\xdd\xbd\xe7\x1b\x35\xb6\xcb\xad\x28\x38\x7d\xe7\xaf\x61\x5d\x77\xfd\x26\x8e\xee\xdf\x7a\x8c\x0a\xbd\xe5\x3c\xff\x5a\xfe\xb8\xb0\x5d\x96\x74\x93\x68\x97\x91\x26\x27\xf1\xf7\x7d\xb5\xa7\xca\xab\x66\x05\xd2\xf9\x33\xff\xcc\x5f\xe3\xa7\x9b\x2b\xb9\x65\x04\xdd\x9b\x7d\x9b\x9f\xd8\xbd\x23\xa8\xe0\x94\xe2\x66\xe9\xb3\xbb\x73\x80\xe4\x90\x33\x9f\xe1\xf7\x74\x07\x15\x76\x2c\x6f\xc6\xf9\x46\x50\x44\xe7\x6d\x40\x4c\x2f\x7f\x79\x7d\x9e\x40\x4e\x2c\x50\xcd\x99\x58\xd0\x9a\x33\xb1\x7c\xe5\xe0\xc8\x0d\x01\x87\x45\xd3\x23\x10\xc8\x83\x03\x10\x1a\xf2\xe7\xc0\x20\x9e\xc9\x8a\x94\xda\xca\x62\x27\x2b\x46\xe9\x4c\x7e\xc7\x40\xc1\x0b\x21\x02\x65\x0f\x84\x8c\x5a\x6d\xc2\x36\x1b\x39\xf4\xf0\xfc\x40\x1c\x12\x02\x7e\x20\x0e\xbd\x93\xdd\x33\x68\x52\x8f\x3f\xd6\xa5\xbe\xa5\x22\xf0\x17\x9a\x64\xa0\x06\xe2\x6b\x36\x08\xad\xda\x75\x93\x08\xb7\x76\x32\xdc\x09\x7e\x45\x53\xa7\x0b\x91\xd7\x8b\xc0\xfa\x65\xc8\x6f\x80\x4a\x09\x03\x5e\x2d\x1d\x62\xcc\x7c\xf5\xe2\xc4\xbf\x9d\x02\x4b\x57\x32\x98\x4d\x7d\x5d\x39\xbb\x98\x8e\xe6\x35\xa5\x45\xc0\xeb\x61\xd8\xf5\x76\x73\x14\x2f\x7d\xe4\xe7\xf4\x23\x19\x44\x58\x95\x8e\x64\x54\xd3\xae\x86\xad\x32\xc0\x8b\x24\x4c\x63\xdc\xa0\x95\x6f\x07\xe0\xca\xb8\x53\x76\x6b\xcf\x90\x07\x2b\xc4\x3f\x1f\xec\xf7\x67\xd7\x3a\xef\xcb\x93\x2d\x33\x94\xee\x5c\x0c\x83\x9d\xcb\x7c\x13\x66\xcb\x4e\xa2\x58\xf1\xbf\x2b\x3e\x35\x76\x39\xe1\xda\xb3\xb4\x9e\x68\xaf\xdc\xcb\xdd\x1b\xfd\xf4\xf0\xde\x97\x41\xd0\x64\x19\x13\x91\xac\x63\x80\xea\x53\xb5\xdc\x07\x87\x18\xbf\xc8\x6f\xb5\x1a\xfa\x6a\x5a\x73\x45\xdc\x37\x88\x62\x7e\x21\x29\x01\xcc\x54\x28\x3b\xeb\x3a\x1c\x2a\xcd\xb1\xf2\x60\xfb\xae\x79\x28\x4b\x0c\x65\xfe\x1d\xe6\x53\x21\x3f\xe7\x1b\xb9\x8a\x91\xb8\x7c\x18\x6c\x28\x85\x84\x69\x08\x87\x13\xb8\xd7\x58\xde\x44\xc7\x2d\xab\xdd\x31\xcb\xda\xcd\x02\x58\xc8\xe2\xc1\x8b\x7f\xd2\x07\xc9\xff\x9c\x43\x57\xf6\x4e\x3c\x28\xde\x27\x0f\x1c\x99\xb1\x33\x70\xda\x89\xae\x03\xdd\xef\xf5\x22\x50\x13\x44\xc0\x92\x5f\xe5\xe8\xe9\x12\x0b\x41\xfa\xbd\x0f\x41\x1a\xbd\x36\x9a\x46\x48\x77\x11\xab\x51\x2b\x7b\x41\x49\x34\xfc\xa0\x07\x8f\xfa\x6e\xf9\xe8\x7e\x18\x8c\x9a\x6d\x5a\x71\x9c\xd7\xa8\x4a\x19\x9d\x45\xf5\xfe\x4d\x23\x69\xcb\xef\xb0\x5e\x31\xdc\x48\xd5\x1c\x16\xd6\x85\xba\xd6\x1a\xd2\xa8\xb4\x86\xa8\x28\x3a\x68\x58\xa1\x06\x9b\x1d\xd7\x97\x04\x1a\x0f\x82\xa9\xb7\xcd\xd7\x74\x6c\x32\x74\xe6\x6f\x1a\xe3\xf4\xab\xbb\xe5\x42\xf4\x28\xf6\xed\x77\x42\x0b\x32\xa3\xd3\xd3\xe9\xc9\x03\x77\xce\xf9\x32\x92\x9f\x45\xfa\x71\xf7\x34\xc6\x94\x91\x4e\xa3\x06\x38\xfe\x21\x88\x46\x8b\x7b\x88\x92\x51\xf7\x1a\x75\x51\x62\x00\xff\xe0\xde\x70\xc9\xde\x71\xe0\xd1\xf7\x59\xb1\xe2\x31\xd1\xdf\x0c\x4f\x27\x89\x47\x34\x68\x94\x3e\x33\xf9\xc9\x5f\xdf\x73\xc5\xdf\x93\x76\x4e\x4c\x13\xa1\x3f\xbf\xdf\x22\x61\x4b\x7a\x2a\xb1\x22\x4e\x58\x23\x81\xdf\xec\xc2\xcf\x12\x3f\xcb\xe2\x16\xbf\x6e\xf0\xeb\xa6\xaa\x3e\x48\x61\x70\x55\x2a\x4e\x9a\xee\x1a\x29\xb7\xf8\xcd\xb1\x2c\xf9\xa7\xb4\xa3\x61\xbb\xed\x07\x02\x8e\x72\x73\x9a\x6e\x3f\x28\x5d\x1e\x59\x7e\xe2\xdf\x5b\xbe\xcf\x27\x90\xb7\x9a\x84\x2f\x4a\xe1\xe6\x35\x49\x3e\xef\x83\x35\x92\x02\xaf\x15\xca\x37\xa5\x72\x3f\x34\x51\x3e\x29\xad\x2b\x6e\xe6\xbe\x5f\xfa\x85\x54\xdf\x2b\xfd\x22\xf4\x96\x5d\xbb\xe3\xe0\x83\xef\xdd\x43\x68\xfe\x09\x9c\x53\xca\xd3\x00\x2b\x88\x38\xc7\x97\x18\xf9\xb5\x29\x79\x8e\x91\xaf\xf8\xcd\x32\x0b\x0a\x5a\x37\xbb\xbd\xd3\x19\x7d\xe4\x5a\x01\xf3\x51\x5a\xc4\x2d\x96\xdf\xb5\x90\x47\x7f\x68\x76\xe7\x0b\xec\x7b\xd0\x45\xfb\xfa\x1f\xd5\xb7\xff\xf6\x6f\x00\xa7\xcf\x7f\xff\xf7\xfc\xec\xd9\x77\x79\xf5\x89\x63\x4e\xf5\xf9\xb6\xf8\x54\x6f\xf7\x5b\x83\xa2\x9f\xcf\x23\x40\xbe\xd8\x07\x07\x47\x3d\x2a\xd0\x17\x59\x71\x3e\xf0\x7f\x02\x00\x00\xff\xff\x99\x48\xff\xd2\xc7\xa5\x00\x00") +var _confLocaleLocale_enUsIni = []byte("\x1f\x8b\x08\x00\x00\x09\x6e\x88\x00\xff\xc4\xbd\xeb\x72\xdc\x48\xae\x27\xfe\x9d\x4f\xc1\xf6\x09\xff\xdd\x1d\x21\x97\xa3\xbb\xff\x7b\x89\x0e\xdb\xbd\xb2\xd4\xbe\xcc\xb1\x2c\x8d\xa5\x9e\xd9\x59\x87\xa3\x9a\x55\xa4\xaa\x38\xae\x22\xab\x49\x96\x65\xcd\x89\x13\xb1\xaf\xb1\xaf\xb7\x4f\xb2\xc0\x0f\x40\xde\xc8\x92\xed\x9e\x13\xbb\x5f\x24\x56\x26\xf2\x86\x44\x22\x01\x24\x12\x59\xec\x76\xf3\xb2\xea\x97\xf9\x93\xfc\x38\xdf\x15\x75\xb3\xa9\xfa\x3e\xef\xab\xcd\xf5\xc3\x75\xdb\x0f\x55\x99\xbf\xa8\x07\xfa\xdd\x7d\xac\x97\x55\x96\xad\xdb\x6d\x45\xa0\x2f\xe9\x5f\x56\x16\xfd\x7a\xd1\x16\x5d\x49\x09\xa7\xf6\x9d\x55\x9f\x76\x9b\xb6\x63\xa0\x5f\xe4\x2b\x5b\x57\x9b\x1d\x97\xa1\x7f\x59\x5f\xaf\x9a\x79\xdd\xd0\xcf\x4b\xfa\xca\x5f\x35\x59\xdf\x2e\xeb\x62\x33\x0f\x32\x90\x60\xf9\x3f\xe5\x3f\x34\x65\x7e\x39\x54\xbb\xfc\x71\xbf\x2d\x36\x9b\xa7\x45\x8f\x22\x43\x95\x17\xcb\x65\xbb\x6f\x86\xc7\x8f\x24\x43\x2a\x6f\xf7\x83\xd5\x7e\xbe\x1f\x24\x6d\xbf\xb3\xa4\x5f\x77\x59\x57\xad\x6a\x1a\x58\x47\x49\x6f\xf5\x33\xbb\xa9\x16\x7d\x3d\x70\xa7\xff\x2a\x5f\xd9\xc7\xaa\xeb\xeb\x96\xfb\xf3\x17\xf9\xca\x76\xc5\x8a\x01\x2e\xe8\x5f\x36\x54\xdb\xdd\xa6\x40\x81\x2b\xfd\xcc\x36\x45\xb3\xda\x0b\xcc\x6b\xfd\xcc\x96\x5d\x45\x59\xf3\xa6\xba\xa1\xd4\x13\xfc\xc8\xe9\xc7\x6c\x36\xcb\xf6\x84\xd3\xf9\xae\x6b\xaf\xeb\x4d\x35\x2f\x9a\x72\xbe\x15\xac\xfd\x4a\xe9\xb9\xa6\xe7\x94\x9e\x73\x3a\x86\x51\x95\x84\xa0\x79\xd1\xeb\x58\x68\x6a\x08\x5f\x45\x9f\xa1\xaa\xa6\xd8\x5a\x69\xfe\xcc\xaa\x6d\x51\x6f\x78\x12\x1e\xf2\x07\x75\xbe\xef\x6f\x5a\x4c\xd5\x85\x7e\x12\x22\xe6\xc3\xed\xae\x02\x1e\x1e\x5e\xd1\x57\xb6\x2c\x76\xc3\x72\x5d\x70\x5f\xe5\x2b\x23\xa0\x5d\x4b\x08\x69\xbb\x5b\xc0\xd9\x8f\xac\xed\x56\x45\x53\xff\xa3\x18\x04\x49\xe7\xc1\xcf\x6c\x5b\x77\x5d\xcb\xf8\x3d\xc3\x47\x46\x23\x9e\x73\x3d\x94\xf2\x86\x30\x11\xd4\xc2\x39\xdb\x7a\xd5\x09\x2a\x39\xf3\x0c\xbf\xb8\x16\xce\xbb\x6e\xbb\x0f\x9a\xf1\x9c\x3f\x93\xa2\xd4\x09\xcd\x8d\xdb\x2f\x1a\x42\xbe\xe6\x9e\xe1\x47\x04\xd0\x67\x45\xb9\x25\x54\xee\x8a\xa6\x62\x1c\x1d\xf3\x2f\xc2\x0b\xfd\xca\x94\xa6\xe6\x7d\x35\x0c\x75\xb3\x62\x64\x1f\x4b\x52\x7e\xa9\x49\x59\x90\xe7\xd2\x6e\xdb\xbd\x9b\x4e\x4a\xff\x1b\xfd\xcc\x2f\xe4\xa7\xe4\x05\x85\x90\xe9\x4a\xf2\x48\xfa\xf9\x75\x55\x95\x32\x96\x3e\x7f\x4e\xdf\xd9\x6e\xbf\xd9\x10\xd6\x7e\xdf\x57\xfd\xc0\x85\x2e\xe8\x37\x8d\x5f\x7e\x67\x75\xdf\xd3\x07\x25\xbf\xc2\x47\x46\x53\xd7\x2c\x31\x98\x13\x7c\x64\xd9\xbb\xbe\x2a\xba\xe5\xfa\x7d\x26\xff\xd1\x57\xfe\x60\xda\x3b\x34\xa9\x4c\x48\x4a\x44\xd2\x82\x35\x90\x2d\xdb\x92\x7f\x9c\xd0\x3f\xaa\xba\x6e\xfa\x81\x56\xdc\xfb\x4c\x3f\x18\x4c\xbe\x64\x02\x86\x7a\x00\x16\x34\x11\xcb\xb7\xe7\x19\xcc\x9f\xd7\x5d\x3f\x3c\x1c\x6a\x22\xd6\xb7\xfb\x26\xe3\xf1\xd1\x6a\x9b\x97\x0b\x63\x42\x2f\x5a\x42\x11\x92\x3b\x1a\xdf\xd9\xed\xe5\x9f\x5f\x1f\xe5\x17\xc4\x89\x56\x5d\x45\xdf\x39\xd5\x41\xff\xa8\xcc\x8f\xb3\x8c\x4a\x59\x4b\xa7\xc5\x50\x2c\x8a\xbe\xf2\x68\xe5\x4c\xa1\x6e\x97\x07\x1a\x67\xae\x06\x0e\xd6\x0f\xd1\x78\xa7\x56\x08\xd5\xa1\xeb\xca\xd5\xf1\x86\x17\x17\xa5\x33\x53\x43\xe1\x8b\x4d\xc5\xe9\x54\x55\xfe\xea\xcd\x9b\xf3\xd3\x67\x79\xd5\xac\xea\xa6\xca\x6f\xea\x61\x9d\xef\x87\xeb\xff\x3a\x5f\x55\x4d\xd5\x11\x8f\x5b\xd6\x39\xad\xa9\x8e\x28\x21\x27\xc2\x96\xc1\xcd\xb2\xbe\xdf\xd0\xda\x07\x7a\x2f\x2f\x5f\xe7\x67\x8c\xe2\x5d\x31\xac\xd1\x91\x61\x9d\xf5\xbf\x6f\x18\x45\xae\xc1\xab\x75\x95\x83\xca\x00\xd4\x5e\x1b\x3e\xf2\x52\xfb\x38\xcb\xaa\xae\x9b\x13\x5b\x1a\x6e\xe7\x5a\x58\xeb\x4b\x21\xa5\x0a\x22\x9d\xa6\x1d\xf2\x45\x95\xa3\xcc\x2c\xcb\xac\xc3\x86\xdd\xe3\xdd\x6e\x53\x2f\x65\xad\xbf\x90\x3c\x8f\x68\xde\x41\x14\x4b\x21\x1c\x10\x65\x79\x01\xba\x88\x3d\xf3\x7a\xc8\x23\x06\x82\xf2\xeb\x8a\x18\xe0\x7a\xbf\x12\xb6\xb7\x69\xf7\xe5\x37\xa0\x54\xeb\xbd\x27\xd4\xfc\x6d\x4b\x1d\x06\x76\x1c\x80\x6f\xe2\x98\x28\x8e\x37\xad\xae\xda\xb6\xc4\x57\x1c\xb1\xd7\x44\x50\x37\x35\x65\xd2\x48\xfb\xe2\x23\xad\xb7\xa1\xcd\x87\x75\xdd\xe7\x25\x11\xdb\x92\x2b\xa6\xa5\xb1\xa7\xed\x42\xc8\x82\x08\x54\x48\xc3\xd2\xe2\x39\x00\xd4\x76\x4f\xd4\xb4\xa6\xca\x78\x33\xe2\x9d\x93\xaa\x9c\xea\x27\x86\x44\xf5\x80\xbe\x89\x72\x5b\xe2\xca\xcc\x37\x4f\xf1\xa1\xbf\xc3\xfa\xa9\x57\xc5\xf5\x35\xf5\xaa\x27\xaa\x78\x99\x2f\x37\x2d\x91\xd4\xaf\x6f\x5f\xf7\x4c\x30\xeb\xf9\xae\xed\xb0\xcd\x51\xd6\x05\x7d\xba\xb4\x00\xd1\x0c\xd1\xec\xb7\x0b\xfa\x75\xb3\xae\x89\x03\x00\xed\x5c\x82\x77\x73\x4a\xa5\x26\xf6\x3d\x4d\xe1\x51\x4e\x24\x4c\x23\x20\x94\x81\x00\x78\x0c\x65\xdd\x17\x0b\x9a\x7b\x06\xbf\xa6\x6d\x6b\xdf\x11\x59\xad\x87\x61\x67\x2d\xbf\xbc\xba\xba\x90\xa6\x5d\xea\x5d\x6d\x17\x01\x65\x60\x0e\x36\xbc\xf1\x36\x79\xdb\xcc\x40\x24\xfb\x6e\x93\xd0\x0f\x8d\xd5\x72\x0e\xe0\x85\xbb\xf0\x88\xff\x5c\x7a\xf4\x00\xcf\x3d\x49\x27\x37\xa0\x26\xc2\x71\x85\x0d\x90\x88\xba\xdd\x71\xbd\x01\x55\x9f\x6b\x82\x27\x65\x6c\x9a\x2e\x5f\xb6\x4e\xca\x85\xec\x13\xb0\xff\x2d\x0d\x58\xd9\xc8\xe5\x19\xa1\x01\xbc\x04\xa9\xd7\x5d\xbb\xa5\xd4\xe7\xf4\xcf\x27\xf8\xee\x9f\x71\x7d\x80\x29\xca\x92\xf8\x5b\x7f\x94\xbf\x7d\x7e\x92\xff\xa7\x1f\x7f\xf8\x61\x96\xbf\x1a\x78\x25\x32\x71\xfe\x9d\x89\x8a\x3e\x65\x0f\x77\xa0\xc4\x32\x06\xa2\xbb\x7b\xbc\xb2\xee\xe5\x8f\x91\xfb\xdf\xaa\x4f\x05\xc9\x1f\xd5\x6c\xd9\x6e\x9f\x32\x57\xd9\x16\xc3\x2c\xe3\x1c\x22\x57\xa5\xe3\xcb\xaa\x29\xe9\x43\x25\x01\xcd\x0b\xd8\x9d\xe6\x07\x72\x81\x48\x45\xf3\x65\xdb\x5c\xd7\x1d\x0f\xe8\x97\x06\xd4\x60\xf2\x12\xed\x03\xc8\xb1\xed\x96\x90\x46\x1c\xa4\xbe\xbe\xf5\xa0\x18\xea\x1b\x4e\xd4\x09\xcd\x84\xea\xe6\x2a\x4a\x3a\x2c\x5f\x0a\x31\xf2\xbc\x9d\xd3\xf0\x3a\xc3\x77\xef\x11\xde\x5e\x5f\x6f\x88\xa3\x1a\x97\xd4\x16\xce\x25\x55\x18\x66\x08\x42\xc4\xb8\x83\xc4\x77\xaa\x44\x7c\x72\xfa\x26\xaf\x3e\x12\xb5\x11\x39\xd0\x16\x5d\xee\x97\xa0\x30\x86\x3d\xca\x79\x7f\x22\xfc\xd2\xda\x58\x0a\x5f\x0d\x98\x04\x77\x8d\x39\xd1\x92\x80\x88\x37\xe8\xa2\x98\x93\x84\xf2\x91\x38\x68\x17\x34\xf1\xc2\x92\xb4\xf7\x23\xd8\x51\xa7\x5c\x09\x1e\xf9\x92\x66\x9c\xa8\x42\x7a\xd1\x4b\xa7\x24\x9b\xc8\x9d\xe8\x78\x4f\x92\x74\x51\x52\x5f\x16\xb7\xe0\x3b\x3d\x13\x43\x59\x5d\x17\xfb\xcd\xe0\xfb\x25\x13\xd7\x99\x4c\x66\x2d\x5d\xb2\x30\x1f\xe6\x4d\x16\x18\x75\x10\xd4\xd3\xa7\x65\x89\x0c\x9b\xcd\x6d\x0e\x01\x0a\xf4\x2a\x22\xae\xc9\xe2\xfd\x2c\xd3\xcd\xdb\x24\xfa\xf9\xc7\x1a\xd2\xaf\x23\x21\xe4\x9a\x78\xcf\xbc\xe6\x2f\x0c\xc0\x62\x75\x3f\x59\xd6\x75\xec\x9c\x1b\xee\x9d\xe4\x2b\x78\xe0\x2e\xa0\x05\x16\xcf\x09\x73\x1f\x6b\xb0\x5e\x9d\x44\xf4\x95\x66\x12\x4d\x53\x53\x7d\x55\xa1\x06\x2a\xff\x88\xea\x44\x99\x99\x4a\x83\x2a\xa0\x99\x20\x42\x42\x5a\x5e\xb6\x39\xef\x8c\xe0\xef\x54\xda\x86\xda\xe8\xf0\x75\xcc\x79\x57\xaf\xd6\xc4\xef\xda\x9b\x23\x41\xda\xcd\xba\xad\x98\xa6\x5f\x9d\x3e\xf9\x5e\xfa\xb1\x62\x6e\xef\x0a\xf1\x3e\x51\xec\x69\xc2\x09\xa3\x4a\x5a\xd2\x05\xb7\xdf\x02\x72\x24\x77\x0a\x50\x2a\xe9\x9b\x2c\x3b\x16\x5f\x74\xfd\x86\x79\xba\x70\x3d\x8c\x94\x4e\xb4\x05\x15\xeb\xe6\xab\x16\xf2\xaa\x89\x71\xbc\x77\x91\xea\xd3\x0f\xf3\x55\x3d\xcc\xaf\x99\x91\x70\x9d\xcf\xb9\x2c\x6f\xa5\x94\x93\x3f\xa0\xac\x07\x39\x71\x23\x12\xc2\xcb\x9f\xf2\xfb\x1f\x55\x7e\xf9\x91\x39\xc4\x9c\x68\xba\xde\x60\x32\x54\x0a\xee\x2a\x11\x9f\x4c\xdd\x2a\x5b\x5a\x7f\x8c\xf3\x7e\xbf\xc3\x4e\xa3\x22\xcb\x51\xbe\x13\xc0\xb2\xbd\x69\x78\x2d\x80\x15\xd2\xaa\xaf\xa1\x2c\x2e\xea\xa6\xa0\xed\xd6\x6a\x01\x8b\xbd\x4f\xd4\xf0\xe6\xfc\x0a\x80\xab\x76\xb1\xaf\x37\xa5\x01\xcc\x68\x84\x1f\x8b\x4d\x5d\xb2\xe0\xa9\xf3\x1e\x0a\x79\x96\x54\x4b\x5f\x96\x6d\xc7\xf2\x01\x46\x63\x05\x0f\x08\x26\x1d\x6f\xf8\x48\xa6\xb2\x0a\x8b\x72\x4e\x86\x60\x34\xd0\xc4\x43\x22\x67\x09\x03\x14\x53\xf7\xcd\x83\x01\x3d\x5d\xee\xa9\x2d\x9a\x74\x4e\xa6\x82\x7d\xfe\xf0\x29\xfd\xcd\x58\x5e\x11\x7e\xbc\x1a\x23\x9e\x33\x73\xc9\xdc\xcb\x2a\x8d\xba\x1a\x91\xb7\xa3\x2e\x23\xde\x60\xac\x61\x7f\x8d\x04\xfa\xbd\xd0\x2b\x6b\xc6\x1b\x9a\xd6\xea\x1b\xfa\x78\x40\x0b\x78\xb5\xc1\x24\x14\x10\xe7\x48\xae\x6d\x09\x6f\x4c\x20\x47\xb2\x5c\xae\x69\x68\xcc\xd9\x86\xe2\x03\xf5\xad\x60\xf1\x21\x7b\xc7\xd6\x83\xf7\xd9\x5e\x24\xc2\x76\x53\x3a\xe9\x1b\x34\xdd\x76\xa9\xb6\xea\x81\x1c\xbd\xf6\x24\x56\x2f\xd7\x73\x67\x7b\x60\xa4\x0c\xd5\x27\xec\xc5\xc8\xf2\xa6\x08\x26\x76\xce\xca\xb6\xb7\x98\x2e\x1e\xc4\xd9\xad\x9f\x2d\x92\x07\x69\x89\x90\xce\xb2\x68\x19\x6b\x1f\x2b\x07\x75\x12\xa6\xc6\x05\xa8\x2e\x92\x5c\xb5\xaa\x58\xa9\xa4\x2c\xd1\x7c\x35\x57\xb4\xdf\x3e\x03\x13\x53\xc3\x09\x78\x1d\xcd\xa7\x2a\x70\x33\x9a\x18\x68\x87\xd6\x32\x71\xc4\x5b\x59\x17\x41\x9b\xd9\x3b\x35\xaa\xbc\xcf\x0c\xee\x6d\x9c\x4f\xdc\x84\x34\x3d\x6f\x6d\x98\xdb\xec\x3a\xab\x03\x2b\xc9\xca\x50\xfc\x06\xbf\xae\x76\x2c\x0b\x6c\x7b\x90\xc5\x86\x20\xcb\x5b\x95\x66\x1d\x81\xfc\x2c\xac\x9a\x28\x86\x18\xdc\x37\x66\xae\xf9\xca\x2a\x9e\xd5\x44\x0a\x28\x1f\x6f\x3d\x62\x02\x21\xa1\x13\x76\x9f\xae\xbb\x3d\xca\xa3\x4d\x6c\x5d\xf4\xc4\xbe\x69\xe7\xd6\x62\xe5\xcc\xf4\x2d\x9e\xf6\x62\x29\x6b\x06\xa6\x1b\x50\xb9\x94\x6c\xbb\x74\x4f\xe4\x1e\x0a\x87\xd3\x56\x9c\x24\x03\x39\x25\x14\x67\x26\xda\x24\x84\x6d\x2b\x16\x66\xe7\x5b\xb1\x96\xc8\xaf\xfc\xac\xca\x48\xe2\x5a\xd1\x82\x36\x82\x7d\xc2\x4a\xee\x0a\x32\xbf\xd2\x2b\x03\x54\x43\xc8\x82\x15\xc2\x52\x7e\x36\x13\x15\x71\x86\x1b\x58\x00\x68\x6d\x8f\xd0\x4f\x9b\x15\x65\xcf\x8c\xa5\xcb\x8e\x0d\xc1\xab\x27\x6e\xe1\x91\x78\xcc\xe6\xa5\x3c\x84\x52\x01\xd8\x0f\x8b\x0b\x30\xd7\x78\xbc\x78\x7a\xbf\x7f\xfc\x68\xf1\xd4\xf1\xd6\xe5\xba\x5a\x7e\x10\xfa\xab\x9b\x45\xfb\x09\x2a\x2c\x4d\x3c\xe3\xb8\xe1\x35\x76\xbf\xcc\xd7\x94\x0b\x2d\x87\x78\x01\x15\x23\xc4\x73\x6e\x34\x69\xd4\x19\x66\x19\x33\x33\xf6\xb9\xdd\xc5\x08\x89\x4a\xa3\x11\xe9\x59\x46\xd3\xc8\x8b\x0f\xeb\xc0\xd3\xed\x31\xa7\x32\xe5\x62\x9f\xf0\xa4\x8b\xf1\x6e\xea\x6d\x3d\x8c\x48\x87\x19\x51\xa1\x24\xa8\x96\x13\xc3\x25\xea\x02\x36\xd0\x17\x62\xe7\x54\x0d\x6d\xbc\x46\x4e\x37\x05\x69\x3f\x3f\xe6\x44\x42\x7b\xda\xc6\x78\x4c\xd4\x4d\xe2\xe7\x05\xef\xdc\xa4\xf9\x14\xfd\x7c\xdf\x28\x5a\xab\xd2\x88\xe9\x65\x8d\x5d\x86\xdb\x35\x92\x0f\xa0\x0c\xf3\x2a\xc0\xe7\xdf\x3a\x8c\x7f\x47\xd2\xfe\xb5\x2b\xc6\xac\x9f\x3b\x54\xb3\xb0\x59\x4c\x4e\x1e\xb1\xc6\xa6\x12\x85\x15\x18\x60\x38\x9e\x68\xd2\x7a\xfc\xec\x91\xea\xf4\x81\x52\x30\x21\x8b\xfd\x30\xb4\xac\x4c\x6c\x98\x6a\xa4\x8c\xf5\xfa\x04\x80\xd0\x8f\x7c\x7d\x98\x90\x10\x4f\x32\x37\x95\x09\xf7\x73\x6f\x76\x55\x35\x2c\x19\x9d\xee\x95\x0e\xac\x14\x03\x48\xd1\xdc\x1a\x29\x13\x41\x70\x2f\xb8\xc1\x61\xba\x2f\xdf\x76\xd5\x77\xbe\x37\x6e\xcd\xa0\x84\xf5\x48\x8a\x07\xeb\xe9\x2d\x72\xc5\xe0\x66\xab\xce\xb6\x3e\x35\x5b\x79\xfa\xe8\x62\xf4\x22\x9f\x57\x06\x31\x58\x92\x3b\x4b\x20\x9a\x46\x81\xd2\xb3\xa4\x2d\xaf\xc7\x8d\x31\x38\xc4\x5d\xf6\x3b\xd8\xd0\xb6\xf3\x7e\x2d\x3a\xb3\x75\x8f\xf4\xed\x66\x15\x19\x5e\x60\x74\x07\xd1\xfd\x67\xde\x27\x49\x33\x29\x36\xef\xb3\x5b\x58\xf8\xfe\x46\x1c\xbe\x81\xed\xb4\xcd\x28\x43\xb4\xac\x33\x7c\x10\x28\xab\x7c\xef\x33\xde\x43\xdf\x24\x72\x21\x6f\x11\x9a\x16\x08\x28\xc8\xfa\x25\x12\xf7\x6c\x0a\xb3\x8b\x09\x19\xf2\x6d\xe5\x6d\xc4\xf8\x72\x43\xbc\xbc\x7c\x79\x65\x3a\xdc\xe5\xcb\xfc\x43\xa5\x95\xbf\x1c\x86\x5d\xff\x2b\xf4\x79\x51\xce\x59\x93\xbf\x28\x6e\x59\x6a\x93\x64\xfd\x81\x8c\xab\xaa\xd8\x6a\x2f\xf9\x53\xaa\x38\xa6\xed\x4c\x13\xf9\x93\x76\xb9\xc0\x4e\x94\x41\x7e\xb1\x21\x88\x30\xa3\x72\x83\xd3\x1f\x2a\x35\x40\xff\x36\x32\x6e\xfd\x96\x15\x9b\xdd\xba\x80\x00\x11\x80\xc1\x8e\x43\x40\x98\xf8\x1c\x20\xa0\x85\xfd\xb6\xea\xea\x25\xb4\x2d\x2a\xf0\xed\xc3\xf9\x77\x30\xe1\xd1\x42\x21\x49\x32\xae\xac\xa4\x45\xf2\x87\x2a\xe4\x6f\x96\x32\xc3\x7a\xfb\xfa\x1f\x36\x8a\xa8\x3a\x4e\x27\x9e\x43\x10\x90\xe9\x3c\x94\x03\xc2\xc6\xc8\xf2\xdd\xc0\x66\x1d\x4a\x20\x19\x32\xaa\x7a\x5b\x7c\xfa\x5c\xc1\x6d\x3b\x51\x4e\x58\x81\x2f\x64\x0b\x5e\x87\x18\xb3\x03\x82\x67\xc3\xcd\x41\x68\x9a\x7a\x06\x69\x3e\xd0\xae\xd6\x38\xb0\x5f\xe5\x77\x8e\xdf\x3f\xd9\x71\x04\x6d\x21\x2a\x81\xe7\xee\x60\x82\x36\xe7\x92\xf9\x26\x24\xe9\x99\x5f\x6e\xa1\x74\xed\xc8\x19\x1a\xb6\x2a\x3e\x8e\x71\xb0\x5a\x0d\x45\x83\x48\x6a\xe6\xcf\x50\xe6\xbc\x47\xce\x59\x6a\x6d\x42\xd9\xd4\xed\x9e\xb6\xbf\x00\x42\x2c\xe9\xf3\x71\xb9\x64\xc1\x1d\x2c\x4e\xa2\xc0\x44\xe9\xf3\xb1\x69\xf4\x40\xf9\x81\x96\xcc\x44\x05\x6e\x25\x1d\x2c\x28\x93\x89\x42\x34\xf2\x72\xc4\x0b\xc6\x05\x19\x8c\xf4\xa6\xcd\xa6\x5a\xb1\x0d\xcd\x1a\x8e\x5a\x53\x12\xa2\xcd\x40\xc0\x42\x02\xf2\x18\x76\x93\x15\xce\x6b\xa8\x05\xb8\x39\x8a\xf5\x2f\xea\x35\xc9\xf3\xf4\xc9\x25\x03\x2d\x4c\xbb\xa1\x3b\xf9\x96\x15\x8e\x7e\xcf\xac\x99\x95\x13\x91\x4e\xe2\xd9\xe0\x8d\x17\x55\x55\x68\xe2\x70\xf5\x44\x8b\xac\xb1\x7d\xae\x7e\x80\x7d\x65\xd5\xa1\xbe\x3e\xae\x58\x2b\x77\x40\x87\xaa\x75\x1a\x65\xf5\xa9\x86\x3d\xf2\x45\xcd\x76\x2e\xe8\x94\x4e\x95\x46\xde\x2c\xdb\x10\x33\x60\xdd\x45\x46\x25\x72\x6c\xfb\x91\x55\x3f\x6e\x8f\x73\xa5\x9c\xd8\x27\x75\x50\x3c\xcf\xaa\x9d\x92\x36\xd8\xde\x54\xe5\x11\x6d\xf1\x5c\x82\xfa\x09\xb6\x51\x6c\x6e\x8a\xdb\x1e\x46\x16\xe3\x38\x6c\x8b\x95\xe2\xcc\x4e\x48\x00\x58\xa1\x57\xa1\xc5\x9f\x56\x9c\x61\x82\x4d\xd7\xbc\x79\xb8\x6d\xfa\x06\xfa\x25\xb8\x85\x9a\x6d\x48\x6d\xe7\x6d\xcf\x19\xb0\x09\x9c\x75\x63\xd6\x24\x59\xc6\x97\xec\xa0\x22\x1c\x22\x29\xe7\x9f\x28\x7b\xc4\xe2\x11\x35\xc3\xc2\x0a\xf1\x63\xc1\x35\xc9\x7f\x84\x59\x74\x29\x30\x36\xec\xa9\xfe\x87\x22\x17\xd7\x84\x43\xd6\xb3\xbc\xfe\xcd\x7b\x13\xcd\x8a\x59\xac\x25\x1d\xda\x73\xd6\x0f\xb4\x04\x18\xd3\x76\xf0\xf9\x37\x91\xaf\x54\xe7\xe6\x5c\x2c\x31\xa0\xa9\x5f\xd7\xbb\xbc\x85\x15\x34\x44\xa1\x27\xdb\x40\xc4\x64\xdb\x7c\x05\xb9\x9b\xcd\xc1\x5d\xd1\xf4\xd7\x15\xec\xc2\xdb\xfc\x9a\xcf\xd6\x66\xda\x34\x4b\xac\x72\x00\x7a\xa0\x65\xd1\x61\xd0\x74\xb8\x5b\x60\xee\x82\x89\x8a\x9b\x96\x83\x02\xd8\x1e\xd1\x07\x60\xd5\xd7\xd4\x5b\x1f\x98\xcc\x46\x28\x80\xd4\x18\x1d\xfb\x58\x6f\x3e\x56\x21\x22\xae\xff\xe8\xc8\x03\xac\xab\xe9\x5b\xce\x0b\xe2\x69\x92\x46\x61\xee\xc0\xa9\xdd\xe2\x36\x1e\x3d\x17\x75\x14\xc0\x67\x48\x1f\x2b\x6d\x85\x17\x06\xaf\x95\xa4\x42\x98\x39\xbc\xae\x90\x0d\x05\x54\xbe\x05\x75\x71\xb9\x8e\x56\xe7\x15\x72\x72\xc9\x19\x2d\xd0\xec\x1d\x37\x4d\x6a\xfc\xba\x68\x56\xd5\xdc\xd9\x98\x4f\xf0\x5b\x25\x74\xb5\x19\x0f\xb9\x19\x96\xd9\xf2\x6f\x45\xc4\x8c\x7c\x67\xc9\xba\x31\x8b\x4f\x9f\xfd\xbd\x25\x19\x02\xa6\xe2\x3f\xd1\x17\x4b\xbf\x4d\x16\x9d\x96\x25\x76\x06\xa8\x07\xf5\x70\x8b\x63\xbc\x05\xc9\xc0\xa2\xa4\x51\x0a\xa9\xb9\xe0\x0e\x30\x7d\x3c\xb7\x6f\x9a\x8f\x82\x99\x1e\x2f\x6d\xf9\x52\x38\xb1\x43\x3d\xb7\xef\x8c\xb5\xe4\xed\x0c\x9b\x03\x0b\xd3\xb0\xba\x07\x5b\xc2\x83\xfb\xfd\x03\x9e\x30\xcb\x9b\x05\xf0\xbb\x62\x20\xb6\xd8\x88\x8a\x22\x1c\x2a\x2c\xaa\xd9\xae\x0a\x70\x15\x01\x9b\xe1\x8c\x5c\x50\xf1\x3e\xf3\x47\xf7\x76\x6a\x3f\x65\x51\x55\x16\xd3\xab\xcc\xfb\xaf\xf4\xa9\x16\x91\xdc\x39\xae\xa8\xaa\x8a\x83\x51\x3b\xcd\xea\xe3\xc3\xad\x3e\x53\x1b\x52\x6c\x40\x52\xf2\x7e\x92\x9f\xca\x87\x29\xbd\xfb\x1a\x63\xaa\xcb\x2c\xdb\x01\xef\x81\xa3\x81\x4e\x84\xeb\xb4\x3a\x94\x78\x23\x76\x97\xee\xec\x84\x05\xa9\x05\x84\x6b\x67\x1d\x90\x02\xf8\x54\x3a\x50\xd8\xd8\x3a\x0b\x4d\xae\x09\xce\x71\xf8\x74\x82\xf5\x4f\x02\xbb\xa9\x16\x39\xdb\x4b\x89\x70\x48\x2f\xd2\x81\x6e\x0b\x52\xa9\x3e\xd6\x85\xb3\xcc\xd0\x6c\xb1\x2b\x83\xee\xa2\xcf\xd9\x8d\x01\x67\xc3\x63\x9f\x1b\x3e\x68\xd1\xb3\x8b\xd7\xfa\x99\xed\x77\x25\xdb\xb4\xfc\x80\x7f\x45\x82\x1b\x70\x9c\x1f\x98\x2b\x31\x74\x2b\xe6\xa4\x19\x01\x2f\x73\x85\xe3\x9e\xdd\xce\x6c\xf9\x4c\xf8\xd1\xe8\x12\x2a\x53\x10\x6f\x7b\x00\x8b\x91\x5c\x41\xa6\x1c\x4f\x62\xf8\xb4\x33\xe6\xeb\xf6\x26\xdf\xd4\xcd\x87\x5e\xb1\xe9\xac\x1f\x4e\x2b\x66\xa9\xa9\x6e\xf6\xe2\x5f\x21\x9f\x63\x77\x8e\x4a\xb6\xba\x74\x85\xeb\xa9\xca\x89\x9c\x1f\x1d\x23\x79\x12\xd6\x2b\xaf\x5a\x04\x07\xdf\xc1\x49\xef\x75\xc5\x52\x33\x78\x9c\x1d\x4d\xd1\xa0\xdb\xb6\x57\x83\xa2\xe7\x29\x9c\x06\xeb\x83\x42\xe9\x14\x38\x08\x9d\xa1\x63\x3b\x10\xc3\x12\xcb\xec\x08\xcb\xfa\x83\x05\x3b\xaf\xb7\xe2\x31\xf5\xab\x1d\x70\x61\xba\x9c\xb2\x80\xec\x19\xa9\xbf\xc9\x60\xc2\x73\x84\x37\xad\x1d\x9f\x19\x73\xb4\xcc\x23\x93\x01\x04\x21\xd8\xc1\xa3\xce\xa6\xe4\xa2\x15\x98\x49\xfc\x33\x54\x63\x34\x11\x1e\xaf\x08\x1d\x38\x7e\xd1\x6e\x22\x49\xef\x44\x8d\xfb\x2e\x9f\x31\x1b\xe4\xbf\xc1\x41\x98\x3b\x86\x65\x7d\x7b\x9e\x80\xa8\x3e\x1e\x41\x4e\x0a\xd4\xd6\xd6\x41\x61\x3a\xe9\xfd\x68\xe9\x58\xb9\x1b\xc2\x42\x38\x70\x25\xf6\x72\x86\x23\x32\x3e\x7f\x63\xc3\x25\x4e\xd5\xe0\x4e\x20\x94\xd5\xe0\x48\x4e\xaa\x20\x54\x41\xdf\xe8\xbd\x9a\x71\x2c\xcc\x88\x0d\xea\xe2\xac\xe5\x00\xd4\x5f\x2b\x56\x27\x2b\x3b\x9b\x0f\xf9\xda\xae\x23\xf2\xa0\x7d\x37\x31\x44\x8d\x38\x5a\xc4\xbd\xc0\xbc\x5a\x1c\x34\x7b\xa6\x45\x0a\xa4\xd6\xc5\xec\x1f\x5f\x96\xe2\x8d\x97\x15\x1b\xb7\xac\x51\xe5\xd5\x2e\x57\x38\xb6\xeb\x24\xfd\x10\x3e\xa6\xc3\x3d\xd5\x94\x04\xc0\x86\xa3\xfc\x7e\x98\x30\xab\x61\x34\x2a\x85\x18\x3b\xae\x1b\x39\xe8\x77\x47\x5d\x11\x3f\xc9\x4f\xc1\x60\x68\xde\xc4\xce\x6b\xec\xe5\xe7\xb4\x71\x3f\xe1\xbf\x24\x26\x62\x19\x5c\x4c\xef\xdf\x64\xd4\x25\x50\x63\xe5\x4c\x2f\x25\xa6\x39\xee\x31\xc0\x42\x10\xb3\xf2\x5a\xf2\x3c\xb2\x61\xc3\x1a\xfd\xff\xcc\x6e\x1d\x35\xe8\xec\xd6\xbe\xab\xc9\x9a\xe0\x3e\x26\xbb\xe9\x68\x75\x50\x06\x64\x0b\xa5\xeb\x40\x62\x50\xca\x76\x82\x03\x37\x23\xfa\x0a\xa3\x89\x92\x20\x5e\x28\x49\x60\x5b\x61\xe1\x15\x9e\x32\x70\xf3\x12\xe5\xa5\x1f\x99\x58\xe3\xd9\x3f\x86\x76\x46\x58\x11\x58\x96\x75\x78\xb3\x16\xc9\x56\xb5\xbd\x2d\x23\x42\xce\xa4\x9d\xd7\xd2\xe8\xd8\xe9\x48\x55\xa2\x75\xbd\x5a\xd3\xb8\xea\x2d\x9f\xc7\x82\xa6\xec\xd0\xcf\x6b\xac\xfc\x8b\xb8\x4a\xbb\x6a\xd8\x3e\xc5\x2d\x88\x9b\x92\xdb\x74\x1e\xf7\x43\xd7\x36\xab\xa7\xa7\x2d\xab\x92\x6c\xe5\xe1\x8d\xf1\xe7\xc7\x8f\x34\x9d\x38\x27\xcf\x21\x3b\xef\xbe\xa8\x87\x97\xfb\xc5\x83\x3e\x5f\x91\xdc\x83\xed\xf2\x71\x91\xaf\xbb\xea\xfa\xc9\xbd\xfb\xfd\xbd\xa7\x7a\x08\x2f\x3e\x64\x37\x8d\x43\xcb\xe3\x47\xc5\x53\xd6\x0c\xfa\x76\x43\x4b\x25\x2e\xd2\x6e\xb7\x32\xbf\xb4\x0b\x6c\x05\x12\xfd\xc7\xb9\x7d\xd5\x00\x73\xd4\x4d\xc1\x0f\x55\x38\x73\xb4\xee\xe7\x47\xa7\xcd\x44\xc0\xc8\x76\xa2\x42\x18\x03\xe3\x38\xb2\x19\x82\xbd\x83\xed\x26\xb9\x2b\x06\xe1\x61\x5c\x0c\x13\xc9\xa6\x28\x6f\xb6\x31\xc3\x0b\xb4\x03\xd4\x61\xe5\xa9\x28\xf5\x44\xa4\x28\x4e\xb3\x36\x45\x7e\xa0\x2f\x23\xad\x80\x7e\x79\xc3\x30\x33\x2d\x84\x61\x6f\xe0\x61\x82\x4d\x96\xba\x72\x37\x19\xbd\xf2\x36\x1b\x41\xc0\xdd\x14\x27\x9e\xbd\xa5\x30\x53\x0c\xce\x7a\x11\x72\x36\x71\xc2\x11\xee\x26\x24\x49\xda\x07\xf3\xee\x2f\xe4\x6c\xa3\x76\xfd\xc0\xad\xb9\x2f\x60\x6e\x18\xd3\x31\xd0\x41\x63\x81\xbd\x44\x67\xea\xb5\x5a\x47\x90\x41\xd2\x48\xa0\x09\xbd\x69\xf5\x34\x29\xb7\x44\xcc\x09\xa9\x3e\x43\x15\x2d\x66\xee\x04\x5c\xee\xc4\x7d\x05\x06\x97\xff\x92\x97\x05\x71\x82\xa1\xfd\x40\xc4\x34\x2e\x82\xf4\x43\x85\x1c\x87\x31\xfd\x43\xf9\xcb\xb1\x67\x0f\xa9\x46\xa2\x87\xb7\x07\x59\x4c\xc0\x59\xb4\x56\xe7\xd6\x23\xd6\xa2\x0a\x72\xff\xa2\x6e\x4a\xe1\x24\xca\x08\xd4\x4f\xc6\x71\x00\x12\xb3\x1a\x06\x82\x49\x97\x3f\xf4\x77\x38\x2d\x51\xfd\xc1\x72\x21\x06\xbe\x6f\x02\x06\x2a\xe4\x30\x17\x54\xb8\x41\x5e\x90\x7a\x09\xdf\xbd\x63\xa9\xf0\x8a\xb3\x7b\x75\x5c\xd5\x33\x70\x2b\xf2\x42\x13\xb1\x06\x00\x28\x08\xef\x1d\x22\xf0\xcb\x5b\x1a\xac\x16\xf5\x6f\x50\xaf\x3c\xcc\x01\x51\x9d\xb1\xcc\xb5\xf8\x3b\xe4\xc7\x17\xaf\x68\xcf\x70\x0d\x5a\xa5\xbf\x14\x24\x4e\x4b\x17\x6e\x9c\x95\x83\x89\x2d\xe5\xb9\x4e\x0f\x90\xe2\x66\x54\x45\x49\x2c\x71\x37\xa8\xd1\x80\x64\x30\x71\xbe\xe0\xb8\xea\x03\xcb\x8f\xb4\x86\x9e\xa4\xbb\x95\x1b\xea\x37\x84\x59\x67\x7f\xe4\xa5\xb5\xbb\x65\xfe\x1f\xb8\x36\x15\x82\xa1\x1b\x70\xf0\xc4\xa7\x8a\x20\x61\xfd\xc8\x79\x09\x77\x8e\x7f\x58\x87\x95\x83\x84\x53\x19\xb2\x91\xc9\xc9\xf4\x4c\x65\xb2\xd8\x14\x67\xd9\x59\x3d\xf1\x98\x3f\xc7\x67\x98\xf0\xbd\x6e\x7e\x07\x97\x09\x47\x15\x90\xf2\xc5\x64\xb3\x8e\xa2\xa5\xe9\x84\xdf\xe4\xb2\x11\x8a\x77\x00\xb7\x22\x2a\x86\x52\x44\xe0\x06\x4b\xb5\xdc\x54\x1b\xf6\x5f\xd5\xd6\xfd\x09\xb9\x0e\x3d\x3a\x1f\x57\xa0\x40\x3b\xad\xbc\x9c\x2b\xa8\x08\x4d\x77\x56\x19\x41\xd0\x72\xc3\x91\xb8\xa8\xf7\xb6\x5f\x9f\x1c\xbf\x79\x73\x7e\xe5\xb7\x69\x5e\x07\x4d\x49\xc2\xc4\x37\xce\xbb\x6c\xd4\x2f\xf3\x31\x73\x13\x18\x43\x78\x2f\x37\x2d\x71\x08\x2e\x64\x53\x56\x3b\x7d\xae\x5a\xf0\x9e\x96\xfb\x62\xbc\x3c\xea\x7f\x79\x68\xfe\xb2\x77\x2c\xdf\xbc\xcf\xcc\x00\x7e\xce\xff\xb3\xf0\x0c\x21\x38\xb7\xc1\xd2\xf3\xc7\x3b\xde\xbb\x9c\x3a\xd0\x96\xa3\x33\x05\x30\xe9\x7d\x01\xfd\x88\x70\xdf\x62\xaf\xb8\xce\x71\xf4\x7b\xc4\x26\xd2\xb6\xc3\x82\x61\xe4\xee\x9b\xfa\xf7\x3d\x04\x34\xd6\x8e\x88\x79\xb0\xd3\xe2\xa2\xde\xc8\x86\xf2\x17\xf7\x43\xd2\xf9\x2b\xf1\x80\x0e\x1a\xa7\x5f\x8f\xfb\x1d\xfb\x61\xd2\xde\xd0\x3f\xb9\xb7\xaf\x73\xb6\xb8\xb1\xdf\xd3\xbd\xa7\xa4\xcb\xb0\x0b\x05\x4d\x1f\x41\x3c\x0d\xaa\xe3\x7b\x35\xbe\xce\x6f\x55\x6d\xa5\xfe\x62\x1d\x7d\x2c\x36\xfb\xd8\x98\xc1\xeb\x86\xcb\xf4\xdf\x65\x28\xaa\x16\xdd\xf4\x4e\x0e\xf2\xcc\x07\x9a\xf3\xe0\x08\x8d\xd4\x89\xa1\xa8\xfa\x28\x26\xb9\x41\x6c\xb9\x79\x80\x0a\x5e\x97\x68\xb5\x0a\xd1\xad\x67\x6e\x6e\xf9\xf7\xcb\xae\x86\x23\xb7\xa4\xf3\x2d\xac\x3c\xb8\x81\xe5\x12\x7d\xbb\x97\x44\x34\x34\xa6\xd9\xaa\x1e\x48\x69\xe5\x5b\x57\x70\xfb\xcd\x68\xcd\xd1\x36\x80\xfb\x5b\xf2\x65\x29\xa3\xa2\xbc\x63\x0a\x2c\x6c\x50\x2c\xa7\x29\xf9\xf0\x87\xfe\x9e\x28\xa5\x80\x76\x7b\x8c\x8f\x13\x5a\x52\xda\x6b\x5e\x35\xaf\xe8\x1f\xed\x88\x22\x3f\xc7\x73\xdc\xa3\xbc\x1a\x47\x44\x83\x75\x55\xa8\xcf\x97\x4e\x88\x3a\x7b\x05\x53\xa2\x4e\xc2\x6a\x8d\x06\xc6\x90\x90\x3f\x43\x82\xde\xd5\xa2\x4e\xd0\x04\x7c\x14\x31\x42\x6e\x6f\xbd\xb2\x94\x6f\x59\x75\xfa\xee\x80\x8d\x36\x3d\xe8\xfc\x7a\x53\x6d\x5a\xc3\xdd\x16\x5b\xf6\x82\x99\xb3\xfd\x3d\x57\x4f\xa9\xc8\x3f\x20\xd3\xbb\x64\x76\xf3\xc7\x5d\x26\x93\xab\x3f\x61\xee\xe1\x15\x65\xf6\x83\x22\x5e\x58\x70\x32\x5c\xd0\xc2\xb8\xf7\x54\x70\x66\xab\xca\x6a\xd5\x29\x38\xd3\xeb\x6c\xc1\x1c\x28\xc4\x0c\xb7\x14\xe6\xa6\x39\xb2\x1b\x09\x6b\x65\x6a\x0a\x99\x86\x8a\x98\xa0\x0a\x22\x45\x70\xf3\xe1\xd1\x8b\x57\x57\xb8\xf7\x40\x33\x06\x3f\x75\xbb\xdc\xc1\x3e\xa8\x33\x57\xa7\x9d\xb5\x01\xc4\xdc\x56\x5f\x49\xa2\x96\xe3\x44\xa8\x7c\xf1\xb1\x84\x79\xc4\x14\xe1\x25\x99\x4c\x56\xa5\x2d\x75\x5d\xa3\xd7\x6e\xb1\xe3\xd6\x03\xbb\x8e\xc7\xab\x1c\xb7\xf9\x02\x4c\x87\xfe\x5a\xcc\x93\x4b\xde\x54\x76\xb7\x73\x36\x97\x62\x1f\xd9\xdd\x66\xf0\x6a\xa2\x2d\x77\x0e\x89\x44\x12\xc1\xd5\x37\xf5\x4e\x2e\x9c\x52\x46\x5d\x89\x6f\x33\x3e\xce\xff\x35\x13\x14\xba\x19\x06\xa1\xe0\x16\x2a\x67\xd0\xee\xf1\x33\x98\xec\xc0\x5a\xa2\x1c\xd6\x3c\xb9\x37\x5f\x10\x93\xf8\x70\x2f\xd0\x1a\xf9\xbe\x2a\xab\x8a\xdf\x90\xf0\x7a\xa3\x2e\x05\xbf\xca\x57\x66\xbf\xff\x8a\x5f\x7b\xf6\x95\x15\xff\x05\xfe\xc8\xf4\x17\x9f\x79\x64\x7a\x83\x91\xb9\x61\xc6\x9a\x83\xce\x27\x69\x0d\x21\xeb\xfa\x7d\xcf\xa3\x14\x85\xf7\x49\xfe\x67\xfe\x95\xbf\xe0\x5f\x3a\x14\xe6\x08\x6e\x8d\x83\x6a\x12\x1e\x11\xfa\x7e\x82\xe5\xa9\x07\xb6\xe7\x09\xe2\x30\x16\x60\x5f\x3d\xc5\x0c\x90\xaf\x4f\x64\xbb\x3d\x7b\xc5\xf0\xbc\x5b\x6b\x17\x94\x82\xbb\x28\x9c\xc8\x1b\x6f\x50\x83\x3b\x10\x8b\xea\xc8\x1c\xab\x51\x16\x33\x74\x15\x24\x5a\xfa\xa7\x79\xb8\xef\x3a\x14\x38\x02\x11\x20\x22\xb9\xff\x2f\xbf\xa2\x14\x85\xa8\xc2\xac\x4c\x41\x91\x9f\xde\x7c\xe4\x7b\x92\xe3\xfb\x91\x9b\x62\x51\x21\xf9\x35\x3e\x68\x21\x10\xe7\x1c\x08\x71\x30\xc4\xb8\x1f\x19\xf7\xbc\x1e\xc4\xe7\x17\x5f\x99\x7a\xa4\xcb\xe1\x97\x7c\x66\x38\x5a\xe8\x0a\x76\xcf\x7c\x5b\xdc\xc8\x4f\xc2\xbf\x5e\xa0\x7c\x29\x5f\x92\x0c\x67\x5f\x01\x85\xaf\xaf\x83\x87\x88\xa2\x94\x7d\x61\xdf\x99\x75\x60\x36\xee\x88\xe5\x24\xf7\x37\xf3\x65\x92\x7f\x2d\x8a\xd6\x73\x56\xb3\x2c\xad\x00\x57\xcc\xcd\x7d\xca\xa5\x6f\x89\xa5\x88\xc1\xfd\x4c\xbe\x5c\x4e\x29\x9e\x7d\xa7\xd8\x53\x34\xcd\x9c\xaf\xcf\xf9\xbf\x4b\x25\x32\xd2\x55\x45\xff\x9d\x23\xb3\x5c\x71\x66\x0d\x4b\x2e\x8c\xfa\xe4\x59\x3a\x17\x41\x56\xc3\x7b\xf3\x02\x07\x1d\xb4\x22\x90\x1f\x66\x2f\x09\xff\xdd\xdc\x95\x3f\xe1\x9f\xf9\x66\x54\x8b\x9b\xdc\x70\x6e\x93\x66\x42\x18\x6a\x6a\x12\x4c\x9a\x0b\x21\xa5\xc5\xed\x14\x30\x49\xd5\x4d\x04\x7b\x4e\x09\x21\x69\x45\x15\xb3\x3c\x98\xd4\x0c\x11\x71\x1a\x9e\x36\x1c\xbe\xe6\x02\x21\x59\x3f\xc7\xfd\x0c\x80\xa4\x9b\xc5\x04\x28\xdb\x2a\x3c\x1c\x0d\x3c\x05\x52\x73\x9a\x63\x13\xe9\xec\xf9\xf9\xa1\xa9\x4d\x27\x48\x32\xe7\x24\x89\x2c\x2b\xe7\xaa\x0f\x20\xec\xe5\x7c\xd5\x38\x6a\xc6\x55\xa6\x8d\x45\xf5\x01\xa1\x43\xb1\xa0\xec\xfb\x25\xb0\xe9\x0a\x33\xae\x7c\x96\xa0\xce\x32\x69\x71\xb1\x7b\xb7\xd5\x1c\x55\x19\xe6\x91\xd8\x31\x17\x41\x4a\x10\xe1\x84\xaa\xcd\x44\x89\x3b\x29\x2a\x85\x39\x58\xf3\x88\x6e\xb4\xe4\x1d\xd3\xeb\x21\xf8\x0e\xf1\xe1\xaa\x0f\x94\x53\xb9\x07\xd2\xce\x38\x67\xc6\x17\x3a\x1c\xff\x3c\x86\x17\x04\x78\xe8\x14\x68\xaf\x21\x07\x68\xeb\xe5\x7d\xda\x75\xb5\x54\xc3\xc5\x54\x21\x99\xe5\x72\xbe\xb8\xd5\x32\x32\xcf\xb8\xb6\x76\xa0\xc8\x96\x1d\x29\xb0\x29\x6b\x91\x33\x97\x30\x51\xa4\xd7\x6b\xaf\x7c\xef\x74\x9c\x33\x63\x89\x18\x8e\x16\xcc\x9b\xfa\x49\x10\xa6\x52\x80\x9c\xe3\x63\x0a\x44\xcc\x79\xaa\x90\xf3\x2e\x20\xbe\xe2\x76\x0a\x38\xd9\x30\x7b\x8f\xb8\x12\xaf\xe1\x4b\xd2\x7d\x41\x39\x76\xb4\x64\xbe\x2a\xd6\xdb\xb3\x16\x6e\x98\xf8\x79\x47\x3b\xbe\x80\x34\x34\x2a\xc1\x2b\x09\xb3\x40\x20\xf2\x9d\xdf\x7f\xf7\xfd\xfb\x9e\xa7\xc1\x1b\xc6\xdf\xfd\xf0\x9e\xa4\x9c\xfb\xef\x7e\x7c\x0f\x8b\xf8\xa8\xf0\xfc\x9a\x0d\x42\xe3\x1a\x50\xd0\xa0\x77\x5d\xf5\xb1\x6e\xf7\xd8\x80\xf5\xd3\xf3\x87\x4f\x32\x15\x9f\x86\x78\x89\xbb\xeb\xb7\xc9\x0a\x2f\x5d\x56\xbc\xc2\x9b\xfd\x76\xae\x63\xec\x85\x03\xd8\x2f\x57\xdc\x30\x30\x2f\xb8\xc9\xdf\xdc\x6f\x1e\x6e\x5d\xf2\x60\xa9\xf3\x26\xdc\xfd\x8b\xfc\x7a\x8a\x81\xf0\xd0\x7f\x73\x2d\xb5\x81\x2d\xfd\x4a\x6e\x10\xb3\x2c\xec\xac\xfa\xb7\xd5\x30\x8b\xb9\x92\x85\x49\x40\x97\xe3\x2c\xed\x45\x0c\xa2\xce\xa8\xc8\x31\xf0\xae\x02\x62\x0c\xee\x2d\x7e\x26\x99\x69\x65\x02\x34\x55\x9b\xb2\x5a\x4f\x25\x27\x49\xbe\xe0\x5a\x31\x25\xdb\xd0\xd7\xa1\x49\xba\xe4\xea\xb0\x9f\x5f\x59\x8b\xc8\x13\x24\x67\x5e\xbb\x7a\xae\x09\xe3\xcd\x12\x76\x57\x98\xa6\x79\xa8\xea\x8e\x28\xd0\x5f\xd9\xc4\xae\xd5\x40\x2f\x17\xf8\xb0\x64\xb9\x88\xa9\xbe\xe3\x8e\x36\x23\xa3\x90\x26\xda\xd5\x1c\x92\xe2\x49\xa9\x01\xc7\xb6\xeb\x38\x7c\x3a\xc1\x49\x11\x68\xdd\xcc\xcd\x05\x5d\x05\x7d\x62\x96\xec\x66\x25\x23\x22\x32\xe2\x1b\x88\x6a\x67\x3c\x78\x5b\x2a\x3a\xbc\x0a\x2e\xcd\xe8\x94\x86\xab\xb5\x2a\x61\x3c\xf8\x85\xfe\x39\xbc\x26\xae\x23\xd6\x3f\x6e\x85\xba\x4f\xff\x2c\x49\xf6\x45\x5b\x74\x7e\xdf\x8e\xf3\x97\xed\xa6\xf5\xfb\x3a\x7e\xa5\x00\x62\xf7\xbb\x5f\x26\xb2\x99\x64\x7b\xda\xd6\xd5\x0b\xc2\x8d\x77\x1e\x81\x9c\x18\x8c\x64\x24\x8e\x51\x71\xa6\xbb\x13\x21\x1d\xc4\xcd\x08\xbb\x73\x3e\xae\x45\xdd\x8b\x00\xea\x0c\x8f\x93\x60\x53\x16\x66\x91\x32\x42\x8b\x32\xcb\xec\xe1\x79\x3c\x9f\xa9\x06\x46\x66\xad\xf9\xb0\x4d\x79\xba\x69\x6f\x5c\x96\x9e\x7e\xe6\xf0\x4a\x94\x20\x5e\x51\xbb\x82\x48\x4f\x1c\x34\x54\x97\xe0\x14\xf5\x4b\xe9\xa7\xe1\x6c\xa0\x06\x3c\xdc\xb4\xb9\xd3\xc2\x10\x81\x88\x37\x82\x22\xe7\xc2\x76\xaf\x0a\xe4\xaf\xe5\x67\x49\xb5\xb8\x42\xfb\x04\x9e\x61\x69\x83\xda\xc2\x93\x5c\xbf\x34\x5f\xb7\x38\xa7\x38\x3e\xc7\x6f\xed\x84\xc2\x10\x6f\xee\xaa\x7e\xbf\xc1\x1e\x80\x43\x37\xf9\x71\x2d\xc7\x45\x06\xc4\x07\xff\x2b\xb1\x17\x58\x5b\x01\x23\x47\xae\x79\x01\x70\xee\xa2\x5a\x16\x70\x02\x2d\x94\x35\xaf\x69\x49\x06\xa3\x27\x10\x8e\x1c\x60\xf5\xb3\x57\x6d\x18\x98\x87\xd9\x96\xab\xde\x4c\x19\x09\xa6\x16\xd5\x70\xc3\x53\x27\xa7\xf2\x8c\x5c\xb1\x39\xf4\x3f\x85\x9b\x31\x71\xb0\x47\x68\xe3\x11\xef\xc8\xa5\x72\xb3\x7f\xc1\x0f\xe1\x69\x8a\xca\x44\x5e\x0f\xd5\x5e\x05\xc1\x82\xb6\x49\x65\x8a\xc3\x59\xd3\xb6\xa2\x46\xb1\x8b\x97\xa6\x42\x0a\x6f\x7d\xcc\x97\xa0\x8c\x79\xe2\x9b\x88\x98\x4f\xdd\x35\xfd\x47\x97\xae\xf5\xa3\x26\xdd\xac\xad\x19\x49\xfb\xe7\xaa\xa7\xd2\xff\xff\x7b\xa3\x51\x92\xf6\xe7\x21\xbb\x04\x7d\xfa\x9f\x11\x54\xaa\x39\xfb\x3c\x31\x98\x82\xa0\x2a\xf3\xd2\x2b\x35\x5f\x37\x56\x22\x15\x41\x8d\x73\xc4\x97\x0c\x3d\x52\x0a\x67\x92\x7a\x4d\x5a\x3c\xaf\x75\xc5\xa6\x3b\x59\x99\x45\xa8\x81\x14\xdb\xf9\x96\x98\x6a\x5c\xce\xd5\xa8\x5a\xb7\xb8\x15\x26\x5e\xdb\x52\x05\x47\xec\xa1\xf5\x61\xe7\x69\xf4\xcb\x59\xeb\xa7\xeb\x52\xd8\x72\xef\x1d\xa7\x19\x8b\x54\x08\x16\xa9\x80\x65\xb9\xe5\x5b\x34\x73\x18\xa4\xd1\x8d\x30\x0c\x02\xdb\x1d\x6d\xe0\x0c\xf1\x30\x19\xbd\x98\x92\x92\xae\x04\xd5\xc2\xe0\x7b\xa8\xe6\x07\xc3\xdd\x75\xdb\x0a\x95\x2b\x07\xbc\x20\xf9\xe0\x69\x53\x73\x04\x18\x5b\x5a\x66\x9a\x38\xd8\xe4\x54\xb4\xa6\xd0\x68\x45\x38\x6a\xe5\x2a\x3d\xbc\x47\xea\x21\x9a\xd0\x74\xc9\x63\x72\xe3\x95\x17\x18\x98\x02\x53\x88\x57\x1d\x83\xec\x09\x3d\x37\xc8\x9d\xd6\x75\x53\x80\xd2\x5b\x10\xee\xf7\x51\xdb\xed\x9c\xa6\x7c\xae\x8a\x08\xb1\x49\x26\x00\xfc\x4a\xbb\x60\x12\x78\x5a\xb5\x93\x65\xe3\x11\xd1\x96\xb4\x60\xde\x28\xf7\x1f\x85\xf7\x04\x46\x35\x42\x9d\x7a\xf6\xeb\xc9\xa2\xee\x6b\x51\xf5\x09\xeb\x9a\xc4\x8e\x49\x23\xb8\x5a\x18\x66\x4c\x1c\xf8\x84\xb9\x7e\xd0\xa7\x34\x62\x36\x63\xe5\xdf\x5a\xc4\x9f\xef\xe2\x41\x56\xe2\xc7\xca\xff\xc3\x0c\x17\x12\x42\xab\x9a\xcb\x0a\xd1\x1a\x51\xb9\xa6\xf8\x50\x09\x47\xee\x62\xde\x83\x5b\xaa\xee\xe1\x76\xfb\xb0\x2c\x1f\x4c\x8c\x3a\xd8\xd1\xdd\xb0\x13\x3f\x1c\x55\x9e\x93\xe5\x1f\xd4\x14\x88\x47\xd3\xb8\x63\x80\x68\x9e\x7e\xe5\x9d\xad\xe2\xf3\x94\xbc\xf4\x78\xc3\xde\x1d\xcc\x5d\xcf\x6c\xad\xdd\x11\xda\xdd\xd9\x3e\x2f\x31\xb9\xf0\x15\x8e\x24\x11\x2c\x83\xac\xe4\x5e\xea\x9d\xdd\x33\x3c\xa8\x4c\xc2\x2c\x69\x7b\x00\x25\x12\xa5\xeb\x20\x42\x02\x81\xce\x23\xd5\x09\x75\x13\x80\x53\x22\x9d\x6f\xfb\x3f\x52\xac\x9b\x6a\x7c\x8a\x04\x3e\x27\xd8\x4d\x85\x1a\xb4\xb4\x99\xd0\x37\xee\x11\xc8\x97\xcf\x0a\xe2\x5a\xe8\xde\x19\xfc\xf6\x60\xeb\xb6\xfd\x20\xb1\x3d\x16\xf8\xf4\x39\xab\x7a\xb0\x4c\x8e\xa5\xf6\x32\xce\x25\x71\xa9\x5e\x86\x21\x0d\x9f\x71\xc2\x44\x17\x4b\x9e\xe3\x6e\xfe\x0f\x31\xa5\x9d\xe2\x57\xfe\x3f\x98\x30\x1c\x88\x5e\x02\x38\xb7\x58\x2e\x97\x7c\x15\xc0\xe5\xaa\xbf\x76\xd0\x94\xba\x97\x8f\xdb\x52\x87\x66\x3e\xa0\xf8\x32\x17\xfd\x29\xd7\xfc\xf8\xbe\xe0\xcc\xd7\xee\x6e\x1c\xf1\x49\x86\x7e\x9e\xdb\xa5\xa5\x31\x98\x3b\xb8\xf3\x17\x95\xe2\x63\x46\xf6\x24\x6a\xc4\x11\x19\x97\x95\xf8\x52\x13\x27\xc5\x37\xa4\x88\xee\x5c\xf0\x36\x55\x14\xa1\xbc\xc2\x2f\xa7\x0f\xba\x87\x70\x98\xb8\xae\xc8\xd2\x46\x2f\xc7\xb4\x7a\xed\x4a\xbc\xf5\x45\xc1\x2d\x9c\xd2\xd9\xe3\x40\x3a\x38\xf6\x0c\x3d\x10\x7d\x9c\x0d\x71\xf7\xb7\xae\x22\x2f\x98\xde\xe4\xc6\x0a\x30\x1d\x9c\x7c\x26\x80\x86\x94\x73\xe2\x1f\xe2\x38\x26\xc5\x8a\xe8\xc6\xd7\x10\x18\x5e\xc4\xd9\x63\x51\x2c\x3f\xb8\x1e\x31\x7b\xaa\xba\x01\x77\xad\xc6\x68\x67\x67\x6f\x5a\x40\xf3\xef\xa9\x99\x87\x90\x31\x24\xdc\x1c\x06\x21\xeb\xaf\xbe\x0e\xf0\x01\xff\x37\xf6\x67\xfb\x58\x97\x7b\xa2\x3e\x9e\x8b\xbb\xea\xfd\x21\xae\x97\x56\x3c\x0e\x5c\x0f\xd6\x9d\xcc\x27\x0b\x1c\x35\x42\x3f\xf0\x1d\x47\x5c\xb6\xbb\xf6\x77\x48\xfb\xa9\x96\x99\x09\x39\x25\x5d\x71\x80\xbb\xa0\xb9\xbf\x4c\x15\xb2\x2a\xe1\x43\xf0\xc0\x11\x27\x59\x13\xa5\x7e\xca\x47\xf3\x11\x63\x4b\x2e\xe8\x39\xc9\xeb\xb3\x3e\x40\x23\x42\x48\xb0\x94\xd4\x07\x84\x05\x9e\x3a\x36\xfb\x3c\x7c\x8e\x97\x75\x2b\xda\x99\xc9\xb5\x21\x49\xd4\xcd\x72\xb3\x87\xcf\x21\x33\x23\x16\x86\x8f\x94\x07\x1f\x39\x63\xa0\x5c\x4b\x0a\x9c\xba\x3c\x0f\x6c\x23\xcc\x26\x7d\xc5\x89\xb5\x20\xe0\xd5\xa8\x69\x7f\x5b\xea\xc8\x3b\xc1\x38\x17\x01\x96\x4d\xd9\xf7\xa7\x29\xab\x1d\x07\xd1\x63\x27\xd0\x6b\xd9\x6d\x85\xe7\x7f\xa6\xd5\x1f\xee\x6a\x55\x7c\x77\xa6\x9a\x35\x8f\x32\xbd\x7e\x8c\x45\xcb\x21\x55\x3f\xd3\xda\x8f\xd6\x5a\xb8\x65\x7d\xa8\xaa\x5d\xd0\x44\xdc\xfd\xc0\xc3\x1e\xcc\x33\x76\xce\x99\xe0\x68\x7a\xb1\xcc\x6e\xa2\x1e\x60\xe2\xc1\x4e\x18\x78\x7f\xd8\x6e\xf6\x99\x5b\x37\xe3\x05\x62\x96\x3b\xc4\x01\x86\xf5\xce\xc1\xb0\xe5\x62\x1e\x70\x6e\xf8\x38\x1a\x4b\x9e\xa8\x4a\x7c\x27\x13\xb7\x14\x7f\x35\xd5\x75\xcd\x0a\x74\x87\xbb\x17\xbb\xc7\xe5\x13\x6e\x71\x0e\x94\x7d\x8f\x43\x62\xcd\xc5\xe3\x9c\xc7\x73\x12\x24\x1f\x2e\x90\xf8\x79\x47\x75\xc5\x7e\xde\x41\x07\x85\x8a\x0e\xd5\x73\x32\x59\x87\x52\x5e\x38\xb5\x7c\x03\xbd\xc6\x5d\xe3\xb9\x86\x45\xd2\x18\xd6\xe9\x65\x5f\xcd\xbd\x59\xb7\x41\x50\x0e\x71\x3e\xc7\x5e\x14\x76\x64\x16\x8f\xf5\x46\xc4\x13\xc5\x8b\x0a\x2b\x89\x14\x63\x7b\x8b\x89\x32\x50\x15\xb7\x7b\xda\x3a\x37\xf5\x07\x18\x78\x88\x30\x25\x6a\xe9\xf9\xe5\x15\xac\x3a\xb4\x00\x68\x1f\x5d\x31\xdf\xcd\xff\xba\xae\x1a\x04\xed\xe3\xe0\xa1\xca\x88\x96\x4b\xbe\x33\x52\x37\x1a\xd7\xec\xa6\x32\x4f\xde\xa6\xdc\x08\xdb\x0a\xaf\x16\x99\xf4\x20\xd6\x9d\x1c\x01\x42\x79\xa5\xf5\xbb\x6a\x49\x32\xf1\x8c\x4f\x6b\xba\x06\xe1\xbc\x73\x33\x08\xdf\xe9\x80\xe2\x46\x02\x4f\x10\x36\x02\x05\x68\x51\x94\x84\x46\x4d\xdd\x83\x47\xe8\x49\x41\xa7\xa4\x60\xc3\xf0\x5d\x32\x30\xf8\xab\x38\x90\xd6\xcc\xae\x73\x75\x81\xb8\xcb\x2f\xff\x60\x1f\xc2\xb8\x72\xd2\xf4\x67\x44\xe1\xb4\xaa\x99\xd7\xc7\x4d\x09\x9f\x00\xe9\x77\xad\xb8\xf4\xbd\xd5\xcf\x31\x90\x68\x4b\xdc\x93\x97\xf2\x35\x06\xd9\x69\xc0\x1a\x17\xba\x66\x0c\xb2\x68\x4b\xd6\x7f\x9e\xd1\xbf\xb1\x10\xed\x82\x5b\x9b\x24\x0d\xe2\xdc\xf1\x25\x69\x39\x1c\xe5\x0c\x42\x77\xb5\xb9\x96\x0b\xef\x6c\x71\x81\xba\x27\x06\x2c\x76\x24\x95\x78\x88\xec\xc8\x84\x0a\xf4\x7a\x13\x3c\xf7\x11\xe5\x29\xb4\x4e\xe9\x7d\xc8\xf0\x82\x5b\xda\x27\x18\xdb\xad\x5f\xaf\x44\x06\xc1\x34\x40\xb9\x95\x90\x5c\x47\xbc\xb5\xb0\x5e\x68\xc7\x5f\xb6\x01\xed\x24\x0c\x17\x5f\x4a\x21\xa2\x46\x0c\x09\x03\x11\x19\x56\xe2\x08\x07\x7e\xa4\x76\xcb\x14\xc4\x06\x84\x8d\x7b\xa4\x3e\xb8\x8c\x20\xf1\xbe\x1d\x41\xf8\xc3\x39\x00\xd9\x6d\x97\x74\x9f\x51\x70\xaf\x2b\xbc\x8c\xd6\x43\xc0\x51\xa2\xa8\xe3\xe8\xa8\x06\xd7\x12\xeb\x24\x73\x0a\x33\x4e\x06\x46\x40\xc6\x15\xfb\xdc\x05\xab\x9b\xb7\x69\x12\x8e\x44\x8a\xee\xaa\x55\xd1\x95\x16\x59\x43\x39\x0d\xdf\x24\x00\x47\x09\x6f\x4e\x16\x1b\x52\xbe\xb5\x0a\xe2\x8c\x04\xf2\x81\xbd\x79\x68\xbe\x59\xc6\x31\x7b\x03\x4b\x8b\xa5\xb0\x31\xbe\xb7\x45\xcc\x65\xbf\x63\x7e\x23\xcc\xcb\xda\xc1\x90\xbf\xfd\xd3\xe5\xf9\x9b\xa3\xfc\xd3\xc3\x9b\x9b\x9b\x87\x5c\xfc\xe1\xbe\xdb\xf0\x0d\xa7\x92\x23\x77\xfc\xf7\xb3\xd7\x47\x79\x35\x2c\xbf\x9b\x91\xa2\x0e\x36\xe4\x57\xb7\x3a\x17\xc2\x9c\xce\xd4\xc5\xa2\xe3\x1f\x67\x4f\xba\x62\x34\xae\x73\x18\xf0\x29\xdc\x20\x79\xf6\xcc\x67\x41\x27\x53\x7c\x17\xbc\x72\x58\x2d\xbb\x0a\x47\xfe\xf8\x08\x32\x36\xa4\x13\x4c\xdd\xd8\x4e\x41\x6a\x6a\x47\xbb\xf1\x6a\xa9\x71\xa5\x13\x10\x3b\xe1\x3a\xc1\xd9\x96\xcb\xc4\xc4\xb9\x6d\x85\x83\x73\xf5\xeb\x76\xbf\x29\x63\x8e\x49\x38\xd3\x89\xa8\xca\x9f\xd3\xc2\xf0\xa7\x43\x10\xda\x27\xf9\x9f\xd8\x52\xc4\x13\x25\xb4\xc5\x59\x46\x5b\x00\x9e\xa5\x85\x11\x2d\x2d\x10\x8c\x69\x00\x12\x05\xce\x04\x73\x9f\xe7\x84\xf3\x51\x25\xaa\xbf\xb1\xaf\xc0\x90\x6f\x9d\x3e\x07\x5a\x93\xea\xc6\x45\x62\x3b\xdd\x74\xb6\xe1\x45\x7c\xf4\x24\x38\x75\xb1\x32\x23\xd6\x14\x1e\x72\x71\x26\x9c\x44\x51\xc0\x1f\x01\xca\x5c\x24\xf4\x6e\xf4\x6b\x17\x8c\x29\xd7\xf0\x80\x55\x9a\xe1\x0d\xbd\xa7\xd5\x80\x0b\xc5\x53\x6b\x51\x34\x6a\x37\x6b\x7e\xf5\x18\x7f\xd3\x1d\x4e\x24\x13\xb9\x7e\x11\x71\x0f\xb0\x8e\x58\xe6\xba\x49\x77\xb1\x54\xdc\x52\xde\xe4\x45\x19\xe5\x4d\xa3\xed\x5a\x01\x93\x36\x46\xbb\xa4\x4a\xc7\x63\x99\xdf\xb7\x70\x48\x20\x10\xcf\x94\xb9\x8e\xd2\x02\x7d\xe0\x0e\xdb\xa9\x4b\x8b\xc5\x2b\x5b\xa5\xe0\xbb\xf1\x12\x65\x84\xc8\x3a\x0a\x39\x2a\x0b\x6a\xf1\x39\x36\x83\xe0\xea\x25\xfb\x9a\x9b\x5f\xf6\xe8\xe2\x69\x28\x42\x4b\xad\x76\x89\x48\x2e\x3b\x25\x99\x69\x20\xfd\x74\x65\x93\xac\x26\x6f\x7c\x9c\xc8\x57\x88\xad\xdd\xa6\xbd\xb5\xbb\xb9\xa7\xf8\xa5\x01\x3d\xc2\x91\x79\x30\x1d\x94\x87\x0c\x8c\x2f\xed\x3c\xae\xee\x6f\x41\x68\x47\x15\x71\x1b\xd6\x77\x51\x94\x60\x42\x35\x26\x32\x78\x4f\x74\x6f\xe2\x7a\xa7\x83\x4a\x2f\xa2\x9e\xba\x16\x0e\x5c\x44\x8d\x8b\x86\x97\x51\x83\xa2\x5f\x70\x19\x35\x46\xd2\xf8\xaa\xa9\x1f\xea\x17\xdc\x36\x9d\x1a\xf4\x58\xae\x9d\x42\xfc\x44\x81\x29\xe9\xb6\x0c\xc7\xf6\x05\xb7\x4e\x13\xcd\xf6\x4b\x04\xdc\xa9\x9e\x78\x94\x04\xc8\xfd\x9c\xc5\xb7\xac\xaf\xaf\x67\x8b\xae\xbd\xe9\xf9\x6a\x27\xa2\xd2\x33\x97\xe5\xdf\xf9\x25\x7e\x0b\x08\x1f\x5f\x83\x28\xe4\x43\x12\xd5\x4b\xe6\x89\x9e\x88\x49\x22\xce\x0e\xd3\xe8\xdb\xa7\x94\x23\xe7\x88\x6f\x48\x13\x3b\xb6\x9c\x99\x14\xa1\x8d\xee\x66\xce\x5f\xb8\x94\x0a\xeb\x33\x1b\x4b\x51\xe8\x92\x53\x14\x8c\x3f\x0d\xe1\xb6\x2b\xc1\x41\x4b\x4e\x5a\x45\x7c\xf5\x96\x23\x10\x96\xc1\x11\x18\x11\x43\x0d\xf9\xd4\x83\x84\x97\xcf\x08\xc2\x70\xe9\x21\x14\x41\x58\xf4\xcf\x5e\xbd\x91\x9f\xf0\xba\xd6\x00\x31\x70\xbb\xe6\x03\xdf\xcc\x7c\xb9\x67\x53\x3e\xdd\x96\x27\x1e\xf3\x62\xe6\xb0\xf7\x89\xf0\xcb\x41\x94\x5d\x71\x8d\x63\x20\xfe\xef\x52\x49\x06\xf6\xc5\x2e\xba\xea\x61\x5a\x8c\x90\x23\xa8\xbe\xc4\x87\x4b\xd7\x63\x1c\xfe\xe7\xd2\x0a\xb8\x1d\x3c\x09\x46\xee\x31\x62\xe7\xdb\x44\x77\xf7\xfb\xbc\xaf\xd9\x76\xaa\x04\x9a\x34\x08\xea\xf0\x31\x4f\x41\x3b\x78\xb1\xc7\x20\x68\x87\x76\xf7\x4b\x69\xb3\x6e\xe4\x8a\x9b\xe5\x41\x6d\xb5\x20\x55\x51\x19\x1f\xf8\xd4\xac\xc1\xfe\x3e\x00\xe5\x63\xf7\x5f\x86\xd7\x0c\x58\x14\xe0\x1b\xf7\x6c\x0e\xea\xd7\xb3\x74\x22\x9c\x39\x53\x71\x96\xe3\xb7\x83\x32\xc9\x90\xc9\x65\xbe\x2d\x03\xe1\x50\x08\x28\xdc\x56\xce\x8a\xee\x03\xc7\x84\x87\x53\x94\x55\x70\xd3\x69\x60\x21\xfe\x1f\xce\x98\xbe\x45\x70\x21\x5f\xa3\x06\x63\x47\x66\x94\x86\x3d\xc0\x98\xa9\x2b\xc0\xd2\xac\x88\x64\xaf\xe5\x4b\x5e\x55\x4a\x29\x63\x7c\xd3\x9a\xf2\x1e\xa6\xf3\x16\xc0\x3b\x44\xff\xb5\xfa\xdf\xff\xf3\x7f\xb1\xb9\xb4\xa5\xdd\x12\x61\x11\x34\xda\xa0\x9f\x77\xbb\x1c\xe5\x5f\xb4\x78\x08\x1e\x1d\x74\x44\xd0\x9f\x6b\xa4\x01\xfa\x1a\xd1\x28\x87\x95\x37\xfa\x66\xd7\xb0\x84\xc8\xa1\x24\x7a\x32\xc7\xd1\x63\x5a\x87\x11\xd5\x5c\xf7\x08\x17\xed\xcc\x26\x17\x93\x26\xe1\x86\x94\xe8\xa6\xb7\x94\xec\x5d\xdb\xad\xde\xfb\x98\x98\x6e\x22\xa2\x78\x98\xd0\x0c\x3d\x8c\x21\xec\x05\x93\xdf\xf8\x51\x21\xd1\xb4\x25\x00\x2f\x5c\x99\xec\x22\xe6\xcc\x6e\xcc\x48\x90\x3c\x3d\x92\x8e\x9e\x11\xc3\x3d\x1a\x33\x42\x9a\xbc\x56\x66\x7a\x56\xca\xb7\x38\xf8\x83\xe3\x18\xf2\x13\x4b\x4c\x27\x72\xca\xf5\x0a\x09\xb4\x00\x91\x80\x18\x9d\xb8\xbd\xc2\xff\x33\x44\x46\x53\x4b\x19\xa7\xea\x97\xa6\x27\xd1\xd7\xa2\x28\xf0\xc1\x0d\x1f\x44\x65\x8c\x42\xbb\x73\xe5\xc0\xca\xc4\x31\xf9\x28\x56\x27\x50\x88\xd4\xbb\xa0\xa3\x8b\x9a\x0f\x36\x38\x1a\xd1\xd8\x3e\x30\x38\xb3\x4b\x51\x23\x42\x1c\xe6\x16\x91\x22\x9b\xc8\xc7\xb1\x9f\xf9\x66\x02\xda\x5e\xcb\x19\xba\x2f\x86\xe7\x4e\x16\x44\xe5\x3f\x0b\x3c\x1f\x12\xd4\x7d\x1f\xec\xe6\x28\xe3\x93\xf3\x0d\x49\xf2\x9b\x48\x1f\x43\x45\x2c\x73\xfd\x7c\xe0\xaa\xe2\x38\xaa\xea\xd7\x5f\x56\x1c\xd7\x71\xf7\x75\xc5\x3f\x7a\x7c\x3b\x1d\x31\x2d\x34\x3a\x25\xa1\xd3\x5c\xd6\x54\x0c\xb5\x3f\x72\x98\x1a\x83\x06\xa2\x4c\x84\x02\x57\xd3\x97\x1a\xed\xf5\x8c\x96\x28\xf5\x9f\x3b\xa2\x8d\x63\x89\xa6\xbd\x1e\x45\xf7\x8a\x3a\xfd\x75\x51\xbe\x0e\x9e\x75\x46\xbc\x22\x55\xc2\x46\xb7\xf4\x31\xc0\x3b\x8b\xc4\x77\xf6\xc3\x0e\x3b\xb3\x5b\x70\x76\xa6\x96\x78\xb9\xad\x2f\xb6\xe4\xcf\x5f\xd9\x3f\x70\x38\x71\xd7\xdd\xfd\xb4\x97\xcc\x63\x9c\x07\x7f\xd8\xc9\x3b\x4b\x84\xfb\x60\x7c\xbe\xfd\xcf\xdc\xe7\x9f\x3e\x00\x60\x25\xed\xc6\x6c\x53\xd8\x35\x0d\x7f\x5e\xe3\x67\x21\xdf\xf0\x25\x5a\x80\x67\xb4\x1e\x73\x7b\xbc\x8b\x35\xa4\x9d\xe6\xd8\x24\xc2\xb5\x67\x7a\xde\x65\xa1\x7c\x92\x74\xcf\xf2\xe0\x41\xab\x27\x7a\x1e\x48\x7e\x43\x1e\x99\xcc\x49\xcb\xc7\x6d\xc4\x0e\xeb\x96\xea\xce\x60\xce\xf0\xe1\xd2\x09\x6b\xcb\x0a\xf7\xbb\x4f\xe4\xcb\xe5\xa8\x32\xa4\xf1\x80\x7d\x27\x24\xd6\x2b\x2e\x99\x04\xa9\xba\xdb\x29\xae\xf9\x8a\x2b\x4d\xca\xed\x8e\xa7\xb0\xc8\x9d\x39\x8e\xa6\x49\x00\x55\x1e\xd4\x5e\x41\x84\xfd\x29\xad\x4b\xde\xbd\xd0\x5d\xf3\x4d\x7b\x93\xc9\x96\x39\x83\xdf\xbc\xc4\x26\xd5\x94\xb8\x4b\x92\xc6\x42\x84\x06\x89\xc9\xe5\x06\xbe\x86\x11\x19\xe7\x27\x77\xbe\xb1\x63\xb8\xdb\xde\x16\x6a\x98\x25\x44\xdc\xaa\xc0\x35\x5b\x16\xbc\x43\xe2\x98\x69\xad\x90\x30\x7d\xb3\x22\x2a\x46\xed\x86\x10\x5f\xd2\x30\xf7\x73\xd4\xdc\x91\x19\xa0\x10\x7a\x4e\x2d\x63\x12\x5e\x4b\x5a\x91\xb7\x7d\x5c\x3f\xdc\xc3\x51\xbe\x1f\x21\xc4\x97\xf4\x83\x5b\x81\x27\x32\x26\xf1\xae\xfe\x90\xf6\xa6\x91\xf4\xa2\x93\xf6\xb4\x8b\xfe\xd2\xf3\x55\xb0\x4f\xc3\xbb\xa3\x4c\xe4\x0e\xb6\xf7\x8e\x37\x4c\xc9\x91\x53\xd8\x09\xd1\x40\x9c\x70\x26\xe3\xeb\x7c\x7e\x89\xc3\xe5\x9b\x4b\x3a\xd0\xc0\xbd\xc6\x83\x4d\xee\x3a\xd2\x2f\x2f\xca\x41\xb6\x3a\x53\x79\x4e\x32\x3f\xbf\xe1\x0a\x9c\x45\x96\x11\xb9\x2e\xdc\x32\x20\xd8\xd9\x4c\x96\x12\x77\xdd\xad\x71\x66\x75\x41\xab\xe3\xca\x1c\xab\x06\x94\x63\xd1\x63\x38\xe3\x9d\xa1\x54\x16\x58\x43\x99\x29\x1f\x99\xac\xea\xce\xfe\x01\xb5\x2d\x6e\x23\xef\x1a\x38\xd1\x6e\xe3\x67\x37\xef\x30\xa0\x8c\xbb\xe2\x77\x6d\x09\x66\xee\x08\xe6\xa0\xd5\x64\x16\x2e\xf5\x31\x81\x78\xb2\x5b\x75\xf0\x86\xb7\xb9\x66\x66\x11\x90\x02\x2a\xfc\xc9\x8d\xd2\xbd\x2c\xe7\xb9\x01\x8e\x77\xa9\xa2\x07\x77\x31\x85\xaf\xe8\x00\xd8\xc6\xdd\x3d\x00\x5b\x90\x3b\x50\xd4\x8d\x80\x05\xdc\xd5\x11\x7d\x12\xee\xcb\x3b\x02\xbe\xf1\x85\x1d\x39\xb2\x5e\x68\x20\xe0\xb2\x9c\x5c\xff\x77\xf5\x2f\x51\x73\x40\x9c\x51\xa4\xe9\x84\xe0\xa3\xf7\x8a\x1d\xd1\x07\x7e\x66\x56\x2d\x3c\x1a\xd4\xef\x4d\xb7\x33\x5f\x55\x43\x53\x08\x5d\xb3\x19\x42\xdf\xb8\x38\x20\x05\xbb\x65\x0d\xdd\xad\x8a\x24\x3c\xb8\x38\x1e\x86\x77\x89\x11\xe5\x0b\x67\xb4\x12\x7d\xfc\x1d\xd0\xfe\xfe\xc0\xbb\xe8\xf2\x5c\xa1\x9c\x53\xf5\xd1\xf3\xd9\xe3\x40\xd0\x77\x06\xe1\x8e\x83\x8f\xa7\x51\xe8\x7b\x89\xcb\xb4\x32\x59\xce\x5e\x84\xcb\xd4\x15\x88\x19\xeb\x2d\xe1\x60\x8b\xc7\x39\x97\x1c\x80\xb5\x6d\x6a\x71\x3a\x39\x93\x2f\x1a\x7b\xc6\xb6\x12\x35\x94\x70\x6c\x33\x7f\x93\xd3\x8f\x0e\xd6\x3f\x36\x02\xa9\x20\x20\xdf\x41\x7e\x10\x14\x1a\xbe\xe6\x9d\x85\xb9\xf6\x35\xa0\x27\xb0\x31\xee\x83\x9e\x69\x3f\x50\xe9\xbe\x9f\x6a\x71\xce\x27\x97\xb9\x9e\xdb\xba\xd7\x8c\x99\x49\x70\x74\xd0\x92\xa3\x83\xca\xfb\x90\x47\x41\x42\x84\xf3\x30\x63\xe7\xe2\x30\x46\xc9\xf1\xc6\xe7\xd3\x11\xfc\x23\x4e\xe2\x88\x1f\x51\x42\xb1\x1c\xb5\x62\x16\xe6\x30\xcd\x7c\xd8\x7c\x8a\x79\xb3\x45\xb5\xc7\xb1\xf8\xc2\x2c\x71\x01\x8c\x92\xf4\x0d\xba\x78\x24\x62\xf4\x0c\xd3\x36\xed\x8a\x63\xc1\xdb\x8b\xa3\xc1\xf0\x54\x76\x8e\xeb\x34\x77\xe6\xa8\x0a\xdc\xf6\x0b\x53\x70\xf0\x34\x14\x7d\x5c\x1a\x4b\x30\x4c\xd0\x9b\xd2\x23\x40\xd2\xa5\x8b\xe5\x1a\xe3\x9f\x4d\x11\x92\xa9\xc4\x8e\x98\xf4\x39\xee\x09\x48\x79\x27\x30\xb7\x57\x01\x27\x61\xf8\x3d\x66\x3c\xc2\x18\xe4\xf2\xf5\x80\x66\xae\xe1\x0a\x5b\x8d\x34\xc4\x77\x05\x5c\x68\xc2\xfc\x1c\x2b\xae\xbf\xb3\x50\xb0\x8b\xf1\x3d\x7b\x0d\x87\xa8\x25\x45\xe2\xb8\x63\x3b\xf3\x35\xeb\xc6\xa8\x1e\x19\x85\xd7\xd5\x7a\x2f\x27\xb0\x74\x63\x2e\x1b\x8e\x48\xbe\xa8\x8e\xa4\x97\x1e\xc2\x55\xf3\xf5\x5d\x85\xd5\x8c\x03\x95\x50\x6f\x92\x4e\x46\x6c\xcd\x40\x3e\x53\x43\xd2\xc5\xc9\x2a\xbe\xa2\x93\xfc\x70\xe9\x6a\xe9\x9e\x5b\x3c\xe5\x30\xb8\xdd\x82\x43\xa2\xf0\x1e\x56\x2d\xed\x3a\x53\x64\x79\x9b\x2e\x7e\x57\xcf\xd0\x21\xd6\xb9\xa7\xaa\x3f\xd4\xb7\xae\xea\x6f\x9b\xe5\x1c\xaf\x6e\xf6\x6b\x3d\x49\x7c\x5b\x89\x31\xfb\xc1\x8c\xd2\x1e\x15\x1a\xed\xaa\xc2\x99\x5b\xff\x40\xc2\xa5\x7f\xbb\xa4\x74\x38\xf8\xd2\x16\xf7\x10\x3c\x11\xa5\x4d\x80\x23\xf1\x6c\xf8\xee\xce\x86\x92\xb1\x04\x0c\x31\xc0\x6d\x87\xae\xf0\xab\xdd\x5f\x30\x82\xe0\x14\x3b\x1c\x06\x93\x81\xae\x7e\xf0\x8a\xf0\xb1\x0f\x46\xdc\xb7\xec\x91\xc0\x81\x8d\xd9\xdd\x42\xdd\x98\x74\x43\xb3\x57\x55\xf5\x6c\xe9\xc0\x80\xc2\x76\xef\x98\xa1\x07\x51\x2f\x3e\x3f\xc6\x70\x13\x92\x77\xac\xf7\x3b\x76\xb9\xcd\xdd\x03\xd6\xbf\xe2\x77\xc8\x14\x24\x00\xfb\x7c\xd5\x76\x2d\x4d\x8f\x44\x7d\xd1\xa0\xec\x2f\x2c\xad\x9f\x28\x00\x1b\xf5\xed\x7c\xaf\x91\x7a\xac\xcc\x19\x92\x49\x7e\xe0\xb0\x3d\xbe\xd4\xd0\x0e\xc5\xc6\xca\xb0\xe5\x71\xa9\xf6\xea\x2b\xce\xb0\x52\xc7\x96\x11\x94\xd4\x32\xed\x82\x7d\xe9\xf5\xd6\x22\x80\xcf\x35\x25\x80\xc5\x39\x04\x87\x52\x21\x74\xed\x77\x73\x1e\x2a\x62\x3e\x48\x72\xfe\x1a\xc9\xf9\x15\x27\x8f\x5b\xb0\x5e\xb9\x62\x49\xa7\x0e\x95\xe3\xeb\xf5\x69\x99\xe7\x7c\x0b\x3f\x85\x37\xcc\xad\xab\x62\x37\xc2\xdb\x4b\x4a\x1c\x61\x0d\x90\x63\x04\x00\xf6\x30\x16\xc2\x52\x75\x09\xc5\x2a\x2c\xf1\x8a\x92\x0e\x41\xe3\x88\x3e\x85\x6f\x58\x1a\x3c\x50\x42\xf7\xec\xb4\x57\x7a\xa8\x32\xea\x55\xbb\xf8\x3b\x1e\xc5\x57\xe8\x73\xf9\x19\x40\x2d\xda\x76\xe0\x27\x3a\x77\x2c\x6e\xc1\x75\x4a\xd0\xf4\xcc\xd2\x59\xdc\x5a\x7e\x18\x61\x4a\xa0\xc7\xa8\x12\xe8\xc3\xb8\xda\x72\x74\x3c\x6a\xab\xdb\x2f\x87\x3d\x2d\x50\xd7\xe0\xd9\x25\x47\xd5\xbb\x74\x19\xa3\x16\x47\x25\x43\x0a\x4d\x0b\x4f\xb5\xbc\x24\x21\xa2\x9a\x6c\xfa\x84\x73\xee\x6c\x7b\x54\x36\x6c\x7c\x54\x7c\x6a\xa5\xe0\xc9\x11\xb6\x99\x2f\xf6\xcb\x0f\xd5\xc0\xf7\x71\xd6\x73\x1c\x01\x87\x75\x5d\x18\x58\xfe\x0c\x60\xf9\x4b\x02\xcb\xaf\xe4\x65\xfb\x71\xad\xb4\xe9\x6c\xab\xa1\xc0\x51\x7e\x50\xcb\x8b\x13\x9a\x01\x4e\x2e\x8b\xa9\x52\xb0\xce\xcc\x55\xca\xd6\x55\xc8\x82\x4f\x50\x83\xbe\xb9\x2f\x82\xf7\xb1\x03\x99\xaa\x8d\xd5\x00\xd9\xfd\x96\xb7\x4b\x79\x7a\x83\x15\x03\xea\xc3\x5b\x49\x09\x60\x11\x3c\x9b\x60\x8d\x47\xe2\xd4\x1a\x51\xb4\x09\xfc\x2a\x66\x94\xc2\xc1\x3c\xb0\x30\x2e\x82\xbb\xe0\x8b\xbf\x53\x80\xbb\x42\x16\xd3\x41\x48\x6b\xde\x00\xad\xe5\x14\x4e\x1b\xed\x05\x95\xc2\x56\x44\x53\x13\xc7\x76\x8d\x41\x4d\x34\x07\x27\x22\xf8\xb5\x5b\x04\x6a\x4e\x53\xd8\xcf\xbe\xb8\xac\x60\x22\xbd\x42\x66\x95\x14\x93\xb7\xf0\x9a\x98\x7d\x5b\x5e\x14\xa5\x44\xd2\xa2\xe7\x9f\x35\xcd\xee\x8d\xba\x68\x4b\x9a\x1e\x46\xd3\xd0\x1a\x21\x98\x9a\x4f\x49\xf2\x7a\x99\xfa\x96\x08\xa4\x84\x84\x94\x23\xa4\x4d\x58\x1a\x5a\x83\x89\xe1\x49\x0d\xaf\xa1\x51\x04\xa3\x3b\xf8\x36\x8f\x45\xfe\xfd\xc2\xe7\x79\xfc\x78\x02\x2c\xe3\x2c\x3a\xc6\x6f\xdd\xcf\x43\x84\xa6\x81\x83\x8b\x04\xc1\x0c\xae\x38\x8e\x40\x71\x38\x1d\xbe\x26\x1d\x1c\x3c\x1a\xd2\x71\xc4\x87\x67\xf0\xd5\xd7\x6e\x54\x43\x50\x06\x16\x2f\x21\x0a\xf6\x70\x94\x9b\x96\x53\x28\xf2\xf6\x41\xc3\x90\x7b\xe6\x08\xd0\x77\x1e\x2e\xc5\xb8\x98\x7e\x7d\xed\xff\xca\x03\x74\x61\x07\xfc\x33\x74\x07\xda\xff\x0f\x79\x86\x2e\xb5\xcd\xba\x77\xe8\xf0\xce\xd6\x0c\x77\x53\xe2\x95\x1c\x1d\x5d\x45\x2b\x1a\x25\xc2\x95\x8a\x84\xf8\x10\x1f\x49\xde\xf0\x6b\x36\x5f\xb1\xdb\x60\x91\xa6\xed\x05\xd7\x89\xa2\xd6\xa4\xc4\x38\x20\x75\xdc\x05\x49\x19\x9f\x17\x49\xba\xda\x23\x72\x0d\x47\x5a\xa9\xfd\x68\x06\xa3\x84\x1e\xd2\x58\x5a\x1a\x3d\x13\xe6\x24\x5d\xdb\x49\x97\x93\xd5\x1d\x75\x5b\x4a\x49\xa0\x03\xbb\xaa\x34\xcd\x4f\x14\x32\x18\x8c\xa4\x84\x91\xea\x24\x45\x1e\x69\xc2\x53\xa4\xf2\xa5\xe9\x63\x0f\x8c\xa0\xcf\x5a\x4d\xd2\x76\x50\x2b\xa0\xa6\xf9\x55\xd0\x9b\xd4\x8d\x54\x52\x71\x85\x87\x7d\x5e\xfb\x41\x53\x76\xfa\x90\x33\xc7\x9f\x93\x14\xa8\xfc\x25\x9c\xd1\x58\xc3\x3f\x7d\x13\xa6\x07\xef\x36\x21\xd7\xbd\xd8\xa4\x23\xe3\x2d\x46\xa3\xe5\x60\x6b\xd1\x08\x9f\xcf\xd8\xbd\x26\x00\x29\xed\x29\x5a\x5f\x7d\x31\x0c\x5d\xbd\xd8\xf3\xe9\x99\x7a\x09\x30\xc1\x8b\x4b\x82\xcb\x1b\xc1\xf6\x7b\xf3\x96\xbf\xd4\xaf\xc3\xb0\xc9\x13\xd1\x09\x9c\x44\xec\xb1\x6e\x49\xbc\x1e\xab\x02\xc6\x67\x07\x20\x47\x52\x11\xc4\x96\x19\xef\xbc\x2f\x78\xe9\x10\xdf\x2a\xf3\xcb\x63\xcd\xe9\xb7\xc3\xce\xc2\x3b\x5f\x9e\x5d\x5d\xdc\x31\xb1\x0c\xaa\x13\x04\xc8\x60\x96\x38\x4b\x67\x0a\x59\xc1\x74\xe9\xd3\x68\x83\xbc\x45\x25\xcf\x82\x5d\xbd\xbe\xa4\xcf\x65\x77\x2b\x07\x51\x5a\xc7\x87\x7a\xc7\x60\xfa\xb8\x28\x57\x45\x29\x80\xfd\x0b\x52\x8c\x22\xf8\xc4\x82\x34\xc0\x7a\xe9\xa6\xe2\xe2\xf8\x0c\x4a\x21\x25\x85\x34\xa6\x4d\x23\x2a\x89\xbc\x97\x1f\x3e\xc7\x46\x03\x6d\x89\x4b\xf8\x67\xf4\x6d\x9d\xf0\xab\x9a\xec\x1d\xbc\xeb\xad\x9e\x20\x0c\x44\xba\xe6\xf4\xad\x35\x9d\x88\xd1\x5e\x18\x43\x63\x9f\x73\x7b\x62\xb8\xd8\xc2\xad\x3a\x79\x3c\xf3\xcb\x9c\x26\xc2\xca\x82\x4d\xed\xae\xde\x4e\x5e\x25\x8f\x4b\x44\x90\x73\x59\xff\xf6\x96\x40\x5c\xb5\x7f\x3b\x62\x54\x22\x7a\x55\x20\x2e\x35\xed\x8c\x70\xd7\x83\x02\x62\x9a\x30\x93\x80\xb3\xbc\xab\x49\x20\x36\xc0\x2b\x6c\xb1\xdb\x39\x7e\x14\xbc\xf3\x00\x42\x09\x40\x3e\xca\xe2\x09\x20\x88\xec\xfa\xa4\x1e\xb9\xd6\x12\x02\xf1\xed\x16\x05\x48\x79\x9a\x26\xb7\xd7\xd7\x1c\xf1\x86\xc3\xa6\x69\xd8\x05\x04\xc0\x39\x63\x3f\x51\x2b\x29\x97\xb5\xe6\x6c\xa3\x80\xce\xcf\x63\x3a\xd5\x1b\x5c\x6f\x91\xc8\xc2\x9e\x81\x77\x7b\xf7\xde\xea\xdb\x3d\x54\xda\x2e\xcc\xd2\x86\x38\x2b\x6c\x04\xbb\x64\x47\xca\xa7\x85\x23\x0f\xb6\xc8\xb7\x94\x4c\xcc\x72\x58\x3b\x04\xb3\xe1\x7f\x39\x97\x38\xcc\x41\x19\x1c\x3b\x2c\xe1\xed\x3b\x2e\x44\xfd\x1e\x97\xa0\x7e\x1f\x00\x97\xa3\x68\xdb\x51\x2e\xf1\x4b\x18\x8e\xeb\x31\x3b\xb6\x29\x19\xd9\x80\x25\x2d\xa5\xbf\x10\x07\xe5\xc2\x13\xc6\xa9\x1d\x55\x4c\x92\x06\x41\x86\xdb\xa2\x4f\x0d\x37\x22\x9f\x1a\x6e\xaa\x3e\x55\x3b\x96\xf4\xa0\xef\x37\x36\x11\x97\x97\xaf\xe3\xd9\xf6\xb9\xc1\x93\x10\xec\x21\x73\x8f\xe3\x27\xae\x48\xcf\xbd\x97\xf3\x1d\xa6\xef\x82\x12\x8a\xcd\x10\x7f\x9a\x9a\xd6\xd1\xff\xbe\xa9\x87\xea\xc7\xa4\x0a\x63\x99\xd1\x92\xa9\x97\x07\x10\x63\xec\x32\x7e\x40\x2e\x97\x9b\x9f\x75\x57\xd9\x2e\x75\x12\x3c\xe7\x36\x22\x66\xcf\x72\x1d\x29\x87\xec\xd6\x3a\xc6\x9e\xef\x5d\x90\x41\x6a\xfc\x30\xc8\x6b\x57\xec\x8c\xf6\xd6\xaa\x79\x86\x64\xdf\x43\x89\xfa\x68\x51\x20\xd5\xd1\xd8\xfa\x87\x20\x8e\xaf\x1a\xf8\xa6\x5b\x11\x0c\x05\x17\x88\x11\x38\x87\xfb\xff\x26\xb8\x4e\x6c\x60\xf6\x98\x27\xec\x12\xa3\x77\x3f\x61\x90\xd0\x67\x3f\x8d\x31\xc8\x4d\x28\x76\x03\x9f\x6f\xd4\x08\x2f\xb7\xa5\xe0\x0c\x9e\xbf\x86\xd5\xdd\xf5\x9b\x38\xba\x7f\x03\x32\x2a\xf4\x96\xf3\xfc\x2b\xfa\xe3\xc2\x76\x89\xd2\x4d\xa2\x5d\x52\x9a\x9c\xc4\xdf\xf7\xd5\x9e\x2a\xaf\x9a\x15\x48\xe7\xcf\xfc\x33\x7f\x8d\x9f\x6e\xae\xe4\xf6\x11\x74\x72\xf6\x79\x7e\x62\xf7\x91\xa0\x9a\x53\x8a\x9b\xa5\xcf\xee\xce\x01\x92\x43\xce\x7c\x86\xdf\xd3\x1d\x54\xd8\xb1\x1c\x1a\xe7\x1b\x41\x11\x9d\xb7\x01\x31\xbd\xfc\xe5\xf5\x79\x02\x39\xb1\x40\x35\x67\x62\x41\x6b\xce\xc4\xf2\x95\x03\x25\x37\x04\x1c\x22\x4d\x8f\x40\x20\x0f\x0e\x40\x68\xc8\x9f\x0f\x83\x78\x26\x2b\x52\x6a\x2b\x8b\x9d\xac\x18\xa5\x33\xf9\x1d\x03\x05\x2f\x87\x08\x94\x3d\x1c\x32\x6a\xb5\x09\xdb\x6c\xe4\x30\xc4\xf3\x03\x71\x54\x08\xf8\x81\x38\xfa\x4e\x76\xcf\xa0\x49\x6d\xfe\x58\x97\xfa\xc6\x8a\xc0\x5f\x68\x92\x81\x1a\x88\xaf\xd9\x20\xb4\x6a\xd7\x4d\x22\xdc\xda\xc9\x70\x27\xf8\x15\x4d\x9d\x2e\x44\x5e\x2f\x02\xeb\x97\x21\xbf\x0d\x2a\x25\x0c\x78\xb5\x74\x88\x31\xb3\xd6\x8b\x13\xff\xa6\x0a\x2c\x60\xc9\x60\x36\xf5\x75\xe5\xec\x65\x3a\x9a\xd7\x94\x16\x01\xaf\x87\x61\xd7\xdb\x8d\x52\xbc\x00\x92\x9f\xd3\x8f\x64\x10\x61\x55\x3a\x92\x51\x4d\xbb\x1a\x36\xcc\x00\x2f\x92\x30\x8d\x71\x83\x56\xbe\x1d\x80\x2b\xe3\x4e\xd9\xad\x3d\x4f\x1e\xac\x10\xff\xac\xb0\xdf\x9f\x5d\xeb\xbc\x2f\x4f\xb6\xcc\x50\xba\x73\x31\x0c\x76\x2e\xf3\x59\x98\x2d\x3b\x89\x6e\xc5\xff\xae\xf8\x34\xd9\xe5\x84\x6b\xcf\xd2\x7a\xa2\xbd\x72\x2f\x77\x72\xf4\xd3\xc3\x7b\x1f\x07\x41\x93\x65\x4c\x44\xb8\x8e\x01\xaa\x4f\xd5\x72\x1f\x1c\x6e\xfc\x22\xbf\xd5\x9a\xe8\xab\x69\xcd\x45\x71\xdf\x20\xba\xf9\x85\xa4\x04\x30\x53\x21\xee\xac\xeb\x70\xb4\x34\x87\xcb\x83\xed\xbb\xe6\xa1\x2c\x31\x94\xf9\x7d\x98\xaf\x85\xfc\x9c\x6f\xe4\x8a\x46\xe2\x0a\x62\xb0\xa1\x14\x12\xa6\x21\x4c\x4e\xe0\x76\x63\x79\x13\x1d\xb7\xac\x76\xc7\x2c\x6b\x37\x0b\x60\x21\x8b\x07\x2f\x01\x4a\x1f\x24\xff\x73\x8e\x5e\xd9\x3b\xf1\xac\x78\x9f\x3c\x7c\x64\x46\xd0\xc0\x99\x27\xba\x26\x74\xbf\xd7\x0b\x42\x4d\x10\x19\x4b\x7e\x95\xa3\x27\x4d\x2c\x34\xe9\xf7\x3e\x34\x69\xf4\x0a\x69\x1a\x39\xdd\x45\xb2\x46\xad\xec\x1d\x25\x51\xf2\x83\x1e\x3c\xea\xbb\xe5\xa3\xfb\x61\x90\x6a\xb6\x75\xc5\xf1\x5f\xa3\x2a\x65\x74\x16\xed\xfb\x37\x8d\xb0\x2d\xbf\xc3\x7a\xc5\xa0\x23\x55\x73\xb8\x58\x17\x02\x5b\x6b\x48\xa3\xd5\x1a\xa2\xa2\xa8\xa1\x61\x85\x1a\x84\x76\x5c\x5f\x12\x80\x3c\x08\xb2\xde\x36\x5f\xd3\xb1\xc9\x90\x9a\xbf\x69\xec\xd3\xaf\xee\x96\x0b\xdd\xa3\xd8\xb7\xdf\x09\x2d\xc8\x8c\x4e\x4f\xa7\x27\x0f\xdc\x45\xe7\x4b\x4a\x7e\x16\xe9\xc7\xdd\xd3\x18\x53\x46\x3a\x8d\x1a\xf8\xf8\x87\x20\x4a\x2d\xee\x27\x4a\x46\xdd\x6b\x34\x46\x89\x0d\xfc\x83\x7b\xdb\x25\x7b\xc7\x01\x49\xdf\x67\xc5\x8a\xc7\x44\x7f\x33\x3c\xa9\x24\x9e\xd2\xa0\x51\xfa\xcc\xe4\x27\x7f\x7d\xcf\x15\x7f\x4f\xda\x39\x31\x4d\x84\x04\xfd\x7e\x8b\x84\x2d\xe9\xa9\xc4\x8a\x38\x61\x8d\x04\x7e\xcb\x0b\x3f\x4b\xfc\x2c\x8b\x5b\xfc\xba\xc1\xaf\x9b\xaa\xfa\x20\x85\xc1\x55\xa9\x38\x69\xba\x6b\xa4\xdc\xe2\x37\xc7\xb8\xe4\x9f\xd2\x8e\x86\xf3\xb6\x1f\x08\x44\xca\xcd\x69\xba\xfd\xa0\x74\x79\x7c\xf9\x89\x7f\x87\xf9\x3e\x9f\x4c\xde\x6a\x12\xbe\x28\x85\x9b\xd7\x24\xf9\xbc\x0f\xd6\x48\x0a\xbc\x56\x28\xdf\x94\xca\xfd\xd0\x44\xf9\xa4\xb4\xae\xb8\x99\xfb\x7e\xe9\x17\x52\x7d\xaf\xf4\x8b\xd0\x5b\x76\xed\x8e\x83\x12\xbe\x77\x0f\xa4\xf9\xa7\x71\x4e\x29\x4f\x03\xaf\x20\x12\x1d\x5f\x6e\xe4\x57\xa8\xe4\x99\x46\xbe\xfa\x37\xcb\x2c\x58\x68\xdd\xec\xf6\x4e\x67\xf4\x11\x6d\x05\xcc\x47\x6f\x11\x77\x59\x7e\xef\x42\x1e\x03\xa2\xd9\x9d\x2f\xb0\xef\x41\x17\xed\xeb\x7f\x54\xdf\xfe\xdb\xbf\x01\x9c\x3e\xff\xfd\xdf\xf3\xb3\x67\xdf\xe5\xd5\x27\x8e\x45\xd5\xe7\xdb\xe2\x53\xbd\xdd\x6f\x0d\x8a\x7e\x3e\x8f\x00\xf9\xc2\x1f\x1c\x1f\xf5\x08\x41\x5f\x6a\xc5\xb9\xc1\xff\x09\x00\x00\xff\xff\x72\x2f\x6b\x7e\xdf\xa5\x00\x00") func confLocaleLocale_enUsIniBytes() ([]byte, error) { return bindataRead( @@ -4379,7 +4379,7 @@ func confLocaleLocale_enUsIni() (*asset, error) { return nil, err } - info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 42439, mode: os.FileMode(420), modTime: time.Unix(1441898772, 0)} + info := bindataFileInfo{name: "conf/locale/locale_en-US.ini", size: 42463, mode: os.FileMode(420), modTime: time.Unix(1441911299, 0)} a := &asset{bytes: bytes, info: info} return a, nil } diff --git a/public/ng/js/gogs.js b/public/ng/js/gogs.js index e4a0afe9f9..f804816292 100644 --- a/public/ng/js/gogs.js +++ b/public/ng/js/gogs.js @@ -57,10 +57,10 @@ var Gogs = {}; }); $.fn.extend({ toggleHide: function () { - $(this).addClass("hidden"); + $(this).each(function(n, v) { $(v).addClass("hidden"); }); }, toggleShow: function () { - $(this).removeClass("hidden"); + $(this).each(function(n, v) { $(v).removeClass("hidden"); }); }, toggleAjax: function (successCallback, errorCallback) { var url = $(this).data("ajax"); @@ -775,24 +775,20 @@ function initAdmin() { $form.attr('action', $form.data('delete-url')); }); - // Create authorization. + // Create authorization. Keep list in sync with models/login.go. + var all_auths = ['none', 'plain', 'ldap', 'dldap', 'smtp', 'pam']; $('#auth-type').on("change", function () { var v = $(this).val(); - if (v == 2) { - $('.ldap').toggleShow(); - $('.smtp').toggleHide(); - $('.pam').toggleHide(); - } - if (v == 3) { - $('.smtp').toggleShow(); - $('.ldap').toggleHide(); - $('.pam').toggleHide(); - } - if (v == 4) { - $('.pam').toggleShow(); - $('.smtp').toggleHide(); - $('.ldap').toggleHide(); - } + if (v >= all_auths.length) return; + + // Hide all through their class names. + $.each(all_auths, function(i, type) { + $('.' + type).toggleHide(); + }); + + // Show the selected one. + var selected = all_auths[v]; + $('.' + selected).toggleShow(); }); // Delete authorization. diff --git a/routers/admin/auths.go b/routers/admin/auths.go index 3e552082ee..1f4be231e9 100644 --- a/routers/admin/auths.go +++ b/routers/admin/auths.go @@ -61,6 +61,8 @@ func NewAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) { var u core.Conversion switch models.LoginType(form.Type) { case models.LDAP: + fallthrough + case models.DLDAP: u = &models.LDAPConfig{ Ldapsource: ldap.Ldapsource{ Name: form.Name, @@ -68,13 +70,14 @@ func NewAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) { Port: form.Port, UseSSL: form.UseSSL, BindDN: form.BindDN, + UserDN: form.UserDN, BindPassword: form.BindPassword, UserBase: form.UserBase, - Filter: form.Filter, - AdminFilter: form.AdminFilter, AttributeName: form.AttributeName, AttributeSurname: form.AttributeSurname, AttributeMail: form.AttributeMail, + Filter: form.Filter, + AdminFilter: form.AdminFilter, Enabled: true, }, } @@ -149,6 +152,8 @@ func EditAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) { var config core.Conversion switch models.LoginType(form.Type) { case models.LDAP: + fallthrough + case models.DLDAP: config = &models.LDAPConfig{ Ldapsource: ldap.Ldapsource{ Name: form.Name, @@ -156,6 +161,7 @@ func EditAuthSourcePost(ctx *middleware.Context, form auth.AuthenticationForm) { Port: form.Port, UseSSL: form.UseSSL, BindDN: form.BindDN, + UserDN: form.UserDN, BindPassword: form.BindPassword, UserBase: form.UserBase, AttributeName: form.AttributeName, diff --git a/templates/admin/auth/edit.tmpl b/templates/admin/auth/edit.tmpl index 6da77f1282..5569ce19e5 100644 --- a/templates/admin/auth/edit.tmpl +++ b/templates/admin/auth/edit.tmpl @@ -30,7 +30,7 @@ - {{if eq $type 2}} + {{if eq $type 2 3}}
@@ -43,6 +43,7 @@
+ {{if eq $type 2}}
@@ -55,6 +56,13 @@
+ {{end}} + {{if eq $type 3}} +
+ + +
+ {{end}}
@@ -76,7 +84,8 @@
- {{else if eq $type 3}} + + {{else if eq $type 4}}
- {{else if eq $type 4}} + {{else if eq $type 5}}
@@ -104,7 +113,7 @@ {{end}}
- {{if eq $type 3}} + {{if eq $type 4}} {{.i18n.Tr "admin.auths.enable_tls"}} diff --git a/templates/admin/auth/new.tmpl b/templates/admin/auth/new.tmpl index f16db0a513..ca5d6be17b 100644 --- a/templates/admin/auth/new.tmpl +++ b/templates/admin/auth/new.tmpl @@ -26,48 +26,52 @@
-
-
+
+
-
+
-
+
-
+
-
+
-
+
-
+ +
-
+
-
+
-
+
-
+